The ironic.api.controllers.v1.portgroup
Module¶
-
class
ironic.api.controllers.v1.portgroup.
Portgroup
(**kwargs)[source]¶ Bases:
ironic.api.controllers.base.APIBase
API representation of a portgroup.
This class enforces type checking and value constraints, and converts between the internal object model and the API representation of a portgroup.
-
class
ironic.api.controllers.v1.portgroup.
PortgroupCollection
(**kwargs)[source]¶ Bases:
ironic.api.controllers.v1.collection.Collection
API representation of a collection of portgroups.
-
class
ironic.api.controllers.v1.portgroup.
PortgroupsController
(node_ident=None)[source]¶ Bases:
pecan.rest.RestController
REST controller for portgroups.
-
delete
(*args, **kwargs)[source]¶ Delete a portgroup.
Parameters: portgroup_ident – UUID or logical name of a portgroup.
-
detail
(*args, **kwargs)[source]¶ Retrieve a list of portgroups with detail.
Parameters: - node – UUID or name of a node, to get only portgroups for that node.
- address – MAC address of a portgroup, to get the portgroup which has this MAC address.
- 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.
-
get_all
(*args, **kwargs)[source]¶ Retrieve a list of portgroups.
Parameters: - node – UUID or name of a node, to get only portgroups for that node.
- address – MAC address of a portgroup, to get the portgroup which has this MAC address.
- 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.
-
get_one
(*args, **kwargs)[source]¶ Retrieve information about the given portgroup.
Parameters: - portgroup_ident – UUID or logical name of a portgroup.
- fields – Optional, a list with a specified set of fields of the resource to be returned.
-