GET /api/smart_variables
List all smart variables

GET /api/hosts/:host_id/smart_variables
List of smart variables for a specific host

GET /api/hostgroups/:hostgroup_id/smart_variables
List of smart variables for a specific host group

GET /api/puppetclasses/:puppetclass_id/smart_variables
List of smart variables for a specific Puppet class

参数

参数名字 描述
host_id
选填

Validations:

  • Must be an identifier, string from 1 to 128 characters containing only alphanumeric characters, space, underscore(_), hypen(-) with no leading or trailing space.

hostgroup_id
选填

Validations:

  • Must be an identifier, string from 1 to 128 characters containing only alphanumeric characters, space, underscore(_), hypen(-) with no leading or trailing space.

puppetclass_id
选填

Validations:

  • Must be an identifier, string from 1 to 128 characters containing only alphanumeric characters, space, underscore(_), hypen(-) with no leading or trailing space.

search
选填

过滤结果

Validations:

  • Must be String

order
选填

结果排序

Validations:

  • Must be String

page
选填

页数

Validations:

  • Must be String

per_page
选填

每个请求中的条目数

Validations:

  • Must be String


GET /api/smart_variables/:id
Show a smart variable

参数

参数名字 描述
id
必填

Validations:

  • Must be an identifier, string from 1 to 128 characters containing only alphanumeric characters, space, underscore(_), hypen(-) with no leading or trailing space.


POST /api/smart_variables
Create a smart variable

参数

参数名字 描述
smart_variable
必填

Validations:

  • Must be a Hash

smart_variable[variable]
必填

Name of variable

Validations:

  • Must be String

smart_variable[puppetclass_id]
选填 , 允许空值

Puppet class ID

Validations:

  • Must be a number.

smart_variable[default_value]
选填 , 允许空值

Default value of variable

Validations:

  • Must be String

smart_variable[hidden_value]
选填 , 允许空值

When enabled the parameter is hidden in the UI

Validations:

  • Must be 'true' or 'false' or '1' or '0'

smart_variable[override_value_order]
选填 , 允许空值

解析数值的指令

Validations:

  • Must be String

smart_variable[description]
选填 , 允许空值

Description of variable

Validations:

  • Must be String

smart_variable[validator_type]
选填 , 允许空值

Types of validation values

Validations:

  • Must be one of: regexp, list.

smart_variable[validator_rule]
选填 , 允许空值

Used to enforce certain values for the parameter values

Validations:

  • Must be String

smart_variable[variable_type]
选填 , 允许空值

Types of variable values

Validations:

  • Must be one of: string, boolean, integer, real, array, hash, yaml, json.

smart_variable[merge_overrides]
选填 , 允许空值

Merge all matching values (only array/hash type)

Validations:

  • Must be 'true' or 'false' or '1' or '0'

smart_variable[merge_default]
选填 , 允许空值

Include default value when merging all matching values

Validations:

  • Must be 'true' or 'false' or '1' or '0'

smart_variable[avoid_duplicates]
选填 , 允许空值

Remove duplicate values (only array type)

Validations:

  • Must be 'true' or 'false' or '1' or '0'


PUT /api/smart_variables/:id
Update a smart variable

参数

参数名字 描述
id
必填

Validations:

  • Must be an identifier, string from 1 to 128 characters containing only alphanumeric characters, space, underscore(_), hypen(-) with no leading or trailing space.

smart_variable
必填

Validations:

  • Must be a Hash

smart_variable[variable]
选填

Name of variable

Validations:

  • Must be String

smart_variable[puppetclass_id]
选填 , 允许空值

Puppet class ID

Validations:

  • Must be a number.

smart_variable[default_value]
选填 , 允许空值

Default value of variable

Validations:

  • Must be String

smart_variable[hidden_value]
选填 , 允许空值

When enabled the parameter is hidden in the UI

Validations:

  • Must be 'true' or 'false' or '1' or '0'

smart_variable[override_value_order]
选填 , 允许空值

解析数值的指令

Validations:

  • Must be String

smart_variable[description]
选填 , 允许空值

Description of variable

Validations:

  • Must be String

smart_variable[validator_type]
选填 , 允许空值

Types of validation values

Validations:

  • Must be one of: regexp, list.

smart_variable[validator_rule]
选填 , 允许空值

Used to enforce certain values for the parameter values

Validations:

  • Must be String

smart_variable[variable_type]
选填 , 允许空值

Types of variable values

Validations:

  • Must be one of: string, boolean, integer, real, array, hash, yaml, json.

smart_variable[merge_overrides]
选填 , 允许空值

Merge all matching values (only array/hash type)

Validations:

  • Must be 'true' or 'false' or '1' or '0'

smart_variable[merge_default]
选填 , 允许空值

Include default value when merging all matching values

Validations:

  • Must be 'true' or 'false' or '1' or '0'

smart_variable[avoid_duplicates]
选填 , 允许空值

Remove duplicate values (only array type)

Validations:

  • Must be 'true' or 'false' or '1' or '0'


DELETE /api/smart_variables/:id
Delete a smart variable

参数

参数名字 描述
id
必填

Validations:

  • Must be an identifier, string from 1 to 128 characters containing only alphanumeric characters, space, underscore(_), hypen(-) with no leading or trailing space.