GET /api/puppetclasses 200 { "total": 9, "subtotal": 9, "page": 1, "per_page": 20, "search": null, "sort": { "by": null, "order": null }, "results": { "apache": [ { "id": 298486374, "name": "apache", "created_at": "2021-05-18T15:44:49.267Z", "updated_at": "2021-05-18T15:44:49.267Z" } ], "auth": [ { "id": 638205575, "name": "auth", "created_at": "2021-05-18T15:44:49.267Z", "updated_at": "2021-05-18T15:44:49.267Z" } ], "base": [ { "id": 980190962, "name": "base", "created_at": "2021-05-18T15:44:49.267Z", "updated_at": "2021-05-18T15:44:49.267Z" }, { "id": 980190962, "name": "base", "created_at": "2021-05-18T15:44:49.267Z", "updated_at": "2021-05-18T15:44:49.267Z" } ], "chkmk": [ { "id": 51848956, "name": "chkmk", "created_at": "2021-05-18T15:44:49.267Z", "updated_at": "2021-05-18T15:44:49.267Z" } ], "class2": [ { "id": 1018350796, "name": "class2", "created_at": "2021-05-18T15:44:56.586Z", "updated_at": "2021-05-18T15:44:56.586Z" } ], "nagios": [ { "id": 1018350795, "name": "nagios", "created_at": "2021-05-18T15:44:49.267Z", "updated_at": "2021-05-18T15:44:49.267Z" } ], "pam": [ { "id": 374648174, "name": "pam", "created_at": "2021-05-18T15:44:49.267Z", "updated_at": "2021-05-18T15:44:49.267Z" } ], "vim": [ { "id": 281110143, "name": "vim", "created_at": "2021-05-18T15:44:49.267Z", "updated_at": "2021-05-18T15:44:49.267Z" } ] } }
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:
|
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 |
Page number, starting at 1 Validations:
|
per_page optional |
Number of results per page to return, ‘all’ to return all results Validations:
|
Field name | Type | Possible values |
---|---|---|
config_group | string | |
environment | string | |
host | string | |
hostgroup | string | |
key | string | |
location | string | |
name | string | |
organization | string |
GET /api/hosts/host2115/puppetclasses/1018350796 200 { "created_at": "2021-05-18 16:18:02 UTC", "updated_at": "2021-05-18 16:18:02 UTC", "id": 1018350796, "name": "class102", "module_name": "class102", "environments": [ { "name": "environment265", "id": 687036938 } ], "hostgroups": [], "smart_class_parameters": [] }
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:
|
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": "2021-05-18 16:18:02 UTC", "updated_at": "2021-05-18 16:18:02 UTC", "id": 1018350797, "name": "test_puppetclass", "module_name": "test_puppetclass", "environments": [], "hostgroups": [], "smart_class_parameters": [] }
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:
|
puppetclass required |
Validations:
|
puppetclass[name] required |
Validations:
|
PUT /api/puppetclasses/980190962-base { "puppetclass": { "name": "test_puppetclass" } } 200 { "created_at": "2021-05-18 16:18:01 UTC", "updated_at": "2021-05-18 16:18:02 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_class_parameters": [ { "parameter": "cluster", "id": 328495940 } ] }
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:
|
puppetclass required |
Validations:
|
puppetclass[name] optional |
Validations:
|
DELETE /api/puppetclasses/980190962-base { "puppetclass": {} } 200 { "id": 980190962, "name": "base", "created_at": "2021-05-18T16:18:01.897Z", "updated_at": "2021-05-18T16:18:01.897Z" }
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:
|