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 任意 |
フィールドと順序のソート (例: ‘id DESC’) Validations:
|
page 任意 |
1 から始まるページ番号 Validations:
|
per_page 任意 |
戻されるページごとの結果数 Validations:
|
フィールド名 | タイプ | 設定可能な値 |
---|---|---|
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] 任意 , nil可 |
Validations:
|
model[vendor_class] 任意 , nil可 |
Validations:
|
model[hardware_model] 任意 , nil可 |
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] 任意 , nil可 |
Validations:
|
model[vendor_class] 任意 , nil可 |
Validations:
|
model[hardware_model] 任意 , nil可 |
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:
|