GET /api/architectures 403 { "error": { "message": "Access denied", "details": "Missing one of the required permissions: view_architectures", "missing_permissions": [ "view_architectures" ] } }
Param name | Description |
---|---|
location_id
optional |
Set the current location context for the request Validations:
|
organization_id
optional |
Set the current organization context for the request Validations:
|
search
optional |
filter results Validations:
|
order
optional |
Sort and order by a searchable field, e.g. '<field> DESC' Validations:
|
page
optional |
Page number, starting at 1 Validations:
|
per_page
optional |
Number of results per page to return, 'all' to return all results Validations:
|
operatingsystem_id
optional |
ID of operating system Validations:
|
Field name | Type | Possible values |
---|---|---|
id | integer | |
name | string |
GET /api/architectures/501905019-x86_64 200 { "created_at": "2024-02-22 15:41:34 UTC", "updated_at": "2024-02-22 15:41:34 UTC", "name": "x86_64", "id": 501905019, "operatingsystems": [ { "id": 309172073, "name": "centos", "title": "centos 5.3" }, { "id": 750842046, "name": "OpenSuse", "title": "OpenSuSE 12.3" }, { "id": 1073012828, "name": "Redhat", "title": "RHEL 6.1" }, { "id": 331303656, "name": "Ubuntu", "title": "Ubuntu 10.10" }, { "id": 272342666, "name": "Ubuntu", "title": "Ubuntu 12.10" } ], "images": [ { "id": 980190962, "name": "centos-1" }, { "id": 298486374, "name": "centos-2" } ] }
Param name | Description |
---|---|
location_id
optional |
Set the current location context for the request Validations:
|
organization_id
optional |
Set the current organization context for the request Validations:
|
id
required |
Validations:
|
POST /api/architectures { "architecture": { "name": "i386" } } 201 { "created_at": "2024-02-22 15:41:38 UTC", "updated_at": "2024-02-22 15:41:38 UTC", "name": "i386", "id": 922134524, "operatingsystems": [], "images": [] }
Param name | Description |
---|---|
location_id
optional |
Set the current location context for the request Validations:
|
organization_id
optional |
Set the current organization context for the request Validations:
|
architecture
required |
Validations:
|
architecture[name]
required |
Validations:
|
architecture[operatingsystem_ids]
optional , nil allowed |
Operating system IDs Validations:
|
PUT /api/architectures/501905019-x86_64 { "architecture": { "name": "newx86_64" } } 403 { "error": { "message": "Access denied", "details": "Missing one of the required permissions: edit_architectures", "missing_permissions": [ "edit_architectures" ] } }
Param name | Description |
---|---|
location_id
optional |
Set the current location context for the request Validations:
|
organization_id
optional |
Set the current organization context for the request Validations:
|
id
required |
Validations:
|
architecture
required |
Validations:
|
architecture[name]
optional |
Validations:
|
architecture[operatingsystem_ids]
optional , nil allowed |
Operating system IDs Validations:
|
DELETE /api/architectures/501905019-x86_64 { "architecture": {} } 422 { "error": { "id": 501905019, "errors": { "base": [ "x86_64 is used by host1.example.com", "x86_64 is used by Parent", "x86_64 is used by db", "x86_64 is used by Common" ] }, "full_messages": [ "x86_64 is used by host1.example.com", "x86_64 is used by Parent", "x86_64 is used by db", "x86_64 is used by Common" ] } }
Param name | Description |
---|---|
location_id
optional |
Set the current location context for the request Validations:
|
organization_id
optional |
Set the current organization context for the request Validations:
|
id
required |
Validations:
|