ironic.api.controllers.v1.deploy_template.
DeployTemplatesController
(*args, **kwargs)[source]¶Bases: pecan.rest.RestController
REST controller for deploy templates.
delete
(template_ident)[source]¶Delete a deploy template.
template_ident – UUID or logical name of a deploy template.
get_all
(marker=None, limit=None, sort_key='id', sort_dir='asc', fields=None, detail=None)[source]¶Retrieve a list of deploy templates.
marker – pagination marker for large data sets.
limit – maximum number of resources to return in a single result. This value cannot be larger than the value of max_limit in the [api] section of the ironic configuration, or only max_limit resources will be returned.
sort_key – column to sort results by. Default: id.
sort_dir – direction to sort. “asc” or “desc”. Default: asc.
fields – Optional, a list with a specified set of fields of the resource to be returned.
detail – Optional, boolean to indicate whether retrieve a list of deploy templates with detail.
get_one
(template_ident, fields=None)[source]¶Retrieve information about the given deploy template.
template_ident – UUID or logical name of a deploy template.
fields – Optional, a list with a specified set of fields of the resource to be returned.
invalid_sort_key_list
= ['extra', 'steps']¶ironic.api.controllers.v1.deploy_template.
convert_with_links
(rpc_template, fields=None, sanitize=True)[source]¶Add links to the deploy template.
ironic.api.controllers.v1.deploy_template.
duplicate_steps
(name, value)[source]¶Argument validator to check template for duplicate steps
Except where otherwise noted, this document is licensed under Creative Commons Attribution 3.0 License. See all OpenStack Legal Documents.