GET /api/operatingsystems
200
{
"total": 7,
"subtotal": 7,
"page": 1,
"per_page": 20,
"search": null,
"sort": {
"by": null,
"order": null
},
"results": [
{
"description": null,
"major": "1",
"minor": "1",
"family": "Redhat",
"release_name": null,
"password_hash": "SHA256",
"created_at": "2018-11-15 19:01:27 UTC",
"updated_at": "2018-11-15 19:01:27 UTC",
"id": 775246587,
"name": "NoHosts",
"title": "NoHosts 1.1"
},
{
"description": null,
"major": "12",
"minor": "3",
"family": "Suse",
"release_name": null,
"password_hash": "SHA256",
"created_at": "2018-11-15 19:01:27 UTC",
"updated_at": "2018-11-15 19:01:27 UTC",
"id": 750842046,
"name": "OpenSuse",
"title": "OpenSuSE 12.3"
},
{
"description": "RHEL 6.1",
"major": "6",
"minor": "1",
"family": "Redhat",
"release_name": null,
"password_hash": "SHA256",
"created_at": "2018-11-15 19:01:27 UTC",
"updated_at": "2018-11-15 19:01:27 UTC",
"id": 1073012828,
"name": "Redhat",
"title": "RHEL 6.1"
},
{
"description": null,
"major": "5",
"minor": "10",
"family": "Solaris",
"release_name": "hw0910",
"password_hash": "SHA256",
"created_at": "2018-11-15 19:01:27 UTC",
"updated_at": "2018-11-15 19:01:27 UTC",
"id": 442321401,
"name": "Solaris",
"title": "Solaris 5.10"
},
{
"description": null,
"major": "10",
"minor": "10",
"family": "Debian",
"release_name": null,
"password_hash": "SHA256",
"created_at": "2018-11-15 19:01:27 UTC",
"updated_at": "2018-11-15 19:01:27 UTC",
"id": 331303656,
"name": "Ubuntu",
"title": "Ubuntu 10.10"
},
{
"description": null,
"major": "12",
"minor": "10",
"family": "Debian",
"release_name": null,
"password_hash": "SHA256",
"created_at": "2018-11-15 19:01:27 UTC",
"updated_at": "2018-11-15 19:01:27 UTC",
"id": 272342666,
"name": "Ubuntu",
"title": "Ubuntu 12.10"
},
{
"description": null,
"major": "5",
"minor": "3",
"family": "Redhat",
"release_name": null,
"password_hash": "SHA256",
"created_at": "2018-11-15 19:01:27 UTC",
"updated_at": "2018-11-15 19:01:27 UTC",
"id": 309172073,
"name": "centos",
"title": "centos 5.3"
}
]
}
| Param name | Description |
|---|---|
|
location_id optional |
Scope by locations Validations:
|
|
organization_id optional |
Scope by organizations Validations:
|
|
architecture_id optional |
ID of architecture Validations:
|
|
medium_id optional |
ID of medium Validations:
|
|
ptable_id optional |
ID of partition table Validations:
|
|
config_template_id optional |
ID of template Validations:
|
|
provisioning_template_id optional |
ID of template Validations:
|
|
os_parameters_attributes optional |
Array of parameters Validations:
|
|
os_parameters_attributes[name] required |
Name of the parameter Validations:
|
|
os_parameters_attributes[value] required |
Parameter value Validations:
|
|
search optional |
filter results Validations:
|
|
order optional |
Sort field and order, eg. ‘id DESC’ Validations:
|
|
page optional |
paginate results Validations:
|
|
per_page optional |
number of entries per request Validations:
|
| Field name | Type | Possible values |
|---|---|---|
| architecture | string | |
| description | string | |
| family | string | |
| major | string | |
| medium | string | |
| minor | string | |
| name | string | |
| params | text | |
| template | string | |
| title | string |
GET /api/operatingsystems/1073012829
200
{
"description": null,
"major": "5",
"minor": "",
"family": null,
"release_name": null,
"password_hash": "SHA256",
"created_at": "2018-11-15 19:01:55 UTC",
"updated_at": "2018-11-15 19:01:55 UTC",
"id": 1073012829,
"name": "operatingsystem5",
"title": "operatingsystem5 5",
"media": [],
"architectures": [],
"ptables": [],
"config_templates": [],
"provisioning_templates": [],
"os_default_templates": [],
"images": [],
"parameters": [
{
"priority": 50,
"created_at": "2018-11-15 19:01:55 UTC",
"updated_at": "2018-11-15 19:01:55 UTC",
"id": 767575239,
"name": "foo",
"value": "*****"
}
]
}
| Param name | Description |
|---|---|
|
location_id optional |
Scope by locations Validations:
|
|
organization_id optional |
Scope by organizations Validations:
|
|
id required |
Validations:
|
|
show_hidden_parameters optional |
Display hidden parameter values Validations:
|
POST /api/operatingsystems
{
"operatingsystem": {
"name": "awsome_os",
"minor": "2"
}
}
422
{
"error": {
"id": null,
"errors": {
"major": [
"is not a number",
"Operating System version is required"
]
},
"full_messages": [
"Major is not a number",
"Major Operating System version is required"
]
}
}
| Param name | Description |
|---|---|
|
location_id optional |
Scope by locations Validations:
|
|
organization_id optional |
Scope by organizations Validations:
|
|
operatingsystem required |
Validations:
|
|
operatingsystem[name] required |
Validations:
|
|
operatingsystem[major] required |
Validations:
|
|
operatingsystem[minor] optional , nil allowed |
Validations:
|
|
operatingsystem[description] optional , nil allowed |
Validations:
|
|
operatingsystem[family] optional , nil allowed |
Validations:
|
|
operatingsystem[release_name] optional , nil allowed |
Validations:
|
|
operatingsystem[os_parameters_attributes] optional , nil allowed |
Array of parameters Validations:
|
|
operatingsystem[os_parameters_attributes][name] required |
Name of the parameter Validations:
|
|
operatingsystem[os_parameters_attributes][value] required |
Parameter value Validations:
|
|
operatingsystem[password_hash] optional , nil allowed |
Root password hash function to use, one of MD5, SHA256, SHA512, Base64 Validations:
|
|
operatingsystem[architecture_ids] optional , nil allowed |
IDs of associated architectures Validations:
|
|
operatingsystem[config_template_ids] optional , nil allowed |
IDs of associated provisioning templates Validations:
|
|
operatingsystem[provisioning_template_ids] optional , nil allowed |
IDs of associated provisioning templates Validations:
|
|
operatingsystem[medium_ids] optional , nil allowed |
IDs of associated media Validations:
|
|
operatingsystem[ptable_ids] optional , nil allowed |
IDs of associated partition tables Validations:
|
PUT /api/operatingsystems/1073012828
{
"operatingsystem": {
"minor": "-30"
}
}
422
{
"error": {
"id": 1073012828,
"errors": {
"minor": [
"must be greater than or equal to 0"
]
},
"full_messages": [
"Minor must be greater than or equal to 0"
]
}
}
| Param name | Description |
|---|---|
|
location_id optional |
Scope by locations Validations:
|
|
organization_id optional |
Scope by organizations Validations:
|
|
id required |
Validations:
|
|
operatingsystem required |
Validations:
|
|
operatingsystem[name] optional |
Validations:
|
|
operatingsystem[major] optional |
Validations:
|
|
operatingsystem[minor] optional , nil allowed |
Validations:
|
|
operatingsystem[description] optional , nil allowed |
Validations:
|
|
operatingsystem[family] optional , nil allowed |
Validations:
|
|
operatingsystem[release_name] optional , nil allowed |
Validations:
|
|
operatingsystem[os_parameters_attributes] optional , nil allowed |
Array of parameters Validations:
|
|
operatingsystem[os_parameters_attributes][name] optional |
Name of the parameter Validations:
|
|
operatingsystem[os_parameters_attributes][value] optional |
Parameter value Validations:
|
|
operatingsystem[password_hash] optional , nil allowed |
Root password hash function to use, one of MD5, SHA256, SHA512, Base64 Validations:
|
|
operatingsystem[architecture_ids] optional , nil allowed |
IDs of associated architectures Validations:
|
|
operatingsystem[config_template_ids] optional , nil allowed |
IDs of associated provisioning templates Validations:
|
|
operatingsystem[provisioning_template_ids] optional , nil allowed |
IDs of associated provisioning templates Validations:
|
|
operatingsystem[medium_ids] optional , nil allowed |
IDs of associated media Validations:
|
|
operatingsystem[ptable_ids] optional , nil allowed |
IDs of associated partition tables Validations:
|
DELETE /api/operatingsystems/775246587-NoHosts%201-1
{
"operatingsystem": {}
}
200
{
"id": 775246587,
"major": "1",
"name": "NoHosts",
"minor": "1",
"nameindicator": null,
"created_at": "2018-11-15T19:01:27.687Z",
"updated_at": "2018-11-15T19:01:27.687Z",
"release_name": null,
"description": null,
"password_hash": "SHA256",
"title": "NoHosts 1.1"
}
| Param name | Description |
|---|---|
|
location_id optional |
Scope by locations Validations:
|
|
organization_id optional |
Scope by organizations Validations:
|
|
id required |
Validations:
|
| Param name | Description |
|---|---|
|
location_id optional |
Scope by locations Validations:
|
|
organization_id optional |
Scope by organizations Validations:
|
|
id required |
Validations:
|
|
medium optional |
Validations:
|
|
architecture optional |
Validations:
|