GET /api/hosts/host1917/puppetclasses
200
{
"total": 1,
"subtotal": 1,
"page": 1,
"per_page": 20,
"search": null,
"sort": {
"by": null,
"order": null
},
"results": {
"class352": [
{
"id": 1018350799,
"name": "class352",
"created_at": "2018-07-24T13:11:15.703Z",
"updated_at": "2018-07-24T13:11:15.703Z"
}
]
}
}
| Param name | Description |
|---|---|
|
location_id optional |
Scope by locations Validations:
|
|
organization_id optional |
Scope by organizations Validations:
|
|
host_id optional |
ID of host Validations:
|
|
hostgroup_id optional |
ID of host group Validations:
|
|
environment_id optional |
ID of environment 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 |
|---|---|---|
| config_group | string | |
| environment | string | |
| host | string | |
| hostgroup | string | |
| key | string | |
| name | string |
GET /api/puppetclasses/980190962-base
200
{
"created_at": "2018-07-24 13:11:08 UTC",
"updated_at": "2018-07-24 13:11:08 UTC",
"id": 980190962,
"name": "base",
"module_name": "base",
"environments": [
{
"name": "production",
"id": 334344675
}
],
"hostgroups": [
{
"id": 636252244,
"name": "Common",
"title": "Common",
"description": null
}
],
"smart_variables": [
{
"variable": "bool_test",
"id": 638205575
},
{
"variable": "ssl_port",
"id": 298486374
}
],
"smart_class_parameters": [
{
"parameter": "cluster",
"id": 328495940
}
]
}
| Param name | Description |
|---|---|
|
location_id optional |
Scope by locations Validations:
|
|
organization_id optional |
Scope by organizations Validations:
|
|
host_id optional |
ID of host Validations:
|
|
hostgroup_id optional |
ID of host group Validations:
|
|
environment_id optional |
ID of environment Validations:
|
|
id required |
ID of Puppet class Validations:
|
POST /api/puppetclasses
{
"puppetclass": {
"name": "test_puppetclass"
}
}
201
{
"created_at": "2018-07-24 13:11:15 UTC",
"updated_at": "2018-07-24 13:11:15 UTC",
"id": 1018350798,
"name": "test_puppetclass",
"module_name": "test_puppetclass",
"environments": [],
"hostgroups": [],
"smart_variables": [],
"smart_class_parameters": []
}
| Param name | Description |
|---|---|
|
location_id optional |
Scope by locations Validations:
|
|
organization_id optional |
Scope by organizations Validations:
|
|
puppetclass required |
Validations:
|
|
puppetclass[name] required |
Validations:
|
PUT /api/puppetclasses/980190962-base
{
"puppetclass": {
"name": "test_puppetclass"
}
}
200
{
"created_at": "2018-07-24 13:11:08 UTC",
"updated_at": "2018-07-24 13:11:15 UTC",
"id": 980190962,
"name": "test_puppetclass",
"module_name": "test_puppetclass",
"environments": [
{
"name": "production",
"id": 334344675
}
],
"hostgroups": [
{
"id": 636252244,
"name": "Common",
"title": "Common",
"description": null
}
],
"smart_variables": [
{
"variable": "bool_test",
"id": 638205575
},
{
"variable": "ssl_port",
"id": 298486374
}
],
"smart_class_parameters": [
{
"parameter": "cluster",
"id": 328495940
}
]
}
| Param name | Description |
|---|---|
|
location_id optional |
Scope by locations Validations:
|
|
organization_id optional |
Scope by organizations Validations:
|
|
id required |
Validations:
|
|
puppetclass required |
Validations:
|
|
puppetclass[name] optional |
Validations:
|
DELETE /api/puppetclasses/980190962-base
{
"puppetclass": {}
}
200
{
"id": 980190962,
"name": "base",
"created_at": "2018-07-24T13:11:08.999Z",
"updated_at": "2018-07-24T13:11:08.999Z"
}
| Param name | Description |
|---|---|
|
location_id optional |
Scope by locations Validations:
|
|
organization_id optional |
Scope by organizations Validations:
|
|
id required |
Validations:
|