GET /api/models?include_permissions=true 200 { "total": 2, "subtotal": 2, "page": 1, "per_page": 20, "search": null, "can_create": true, "sort": { "by": null, "order": null }, "results": [ { "info": "Virtual Machine", "created_at": "2019-09-11 10:40:36 -0400", "updated_at": "2019-09-11 10:40:36 -0400", "vendor_class": null, "hardware_model": null, "id": 980190962, "name": "KVM", "can_edit": true, "can_delete": true, "hosts_count": 0 }, { "info": null, "created_at": "2019-09-11 10:40:36 -0400", "updated_at": "2019-09-11 10:40:36 -0400", "vendor_class": "Sun-Fire-V210", "hardware_model": "SUN4U", "id": 139037058, "name": "SUN V210", "can_edit": true, "can_delete": true, "hosts_count": 0 } ] }
參數名字 | 描述 |
---|---|
location_id 選填 |
位置範圍 Validations:
|
organization_id 選填 |
組織範圍 Validations:
|
search 選填 |
篩選結果 Validations:
|
order 選填 |
Sort field and order, eg. ‘id DESC’ Validations:
|
page 選填 |
頁數,從 1 開始 Validations:
|
per_page 選填 |
每頁要傳回的結果數量 Validations:
|
Field name | 類型 | Possible values |
---|---|---|
hardware_model | string | |
info | text | |
name | string | |
vendor_class | string |
GET /api/models/980190962-KVM 200 { "info": "Virtual Machine", "created_at": "2019-09-11 14:48:32 UTC", "updated_at": "2019-09-11 14:48:32 UTC", "vendor_class": null, "hardware_model": null, "id": 980190962, "name": "KVM", "can_edit": true, "can_delete": true, "hosts_count": 0 }
參數名字 | 描述 |
---|---|
location_id 選填 |
位置範圍 Validations:
|
organization_id 選填 |
組織範圍 Validations:
|
id 必填 |
Validations:
|
POST /api/models { "model": { "name": "new model" } } 201 { "info": null, "created_at": "2019-09-11 14:48:52 UTC", "updated_at": "2019-09-11 14:48:52 UTC", "vendor_class": null, "hardware_model": null, "id": 980190965, "name": "new model", "hosts_count": 0 }
參數名字 | 描述 |
---|---|
location_id 選填 |
位置範圍 Validations:
|
organization_id 選填 |
組織範圍 Validations:
|
model 必填 |
Validations:
|
model[name] 必填 |
Validations:
|
model[info] 選填 , 允許空值 |
Validations:
|
model[vendor_class] 選填 , 允許空值 |
Validations:
|
model[hardware_model] 選填 , 允許空值 |
Validations:
|
PUT /api/models/980190962-KVM { "name": "KVM", "model": { "name": "KVM" } } 200 { "info": "Virtual Machine", "created_at": "2019-09-11 14:48:32 UTC", "updated_at": "2019-09-11 14:48:32 UTC", "vendor_class": null, "hardware_model": null, "id": 980190962, "name": "KVM", "hosts_count": 0 }
參數名字 | 描述 |
---|---|
location_id 選填 |
位置範圍 Validations:
|
organization_id 選填 |
組織範圍 Validations:
|
id 必填 |
Validations:
|
model 必填 |
Validations:
|
model[name] 選填 |
Validations:
|
model[info] 選填 , 允許空值 |
Validations:
|
model[vendor_class] 選填 , 允許空值 |
Validations:
|
model[hardware_model] 選填 , 允許空值 |
Validations:
|
DELETE /api/models/980190962-KVM { "model": {} } 200 { "id": 980190962, "name": "KVM", "info": "Virtual Machine", "created_at": "2019-09-11T14:48:32.036Z", "updated_at": "2019-09-11T14:48:32.036Z", "vendor_class": null, "hardware_model": null }
參數名字 | 描述 |
---|---|
location_id 選填 |
位置範圍 Validations:
|
organization_id 選填 |
組織範圍 Validations:
|
id 必填 |
Validations:
|