ironicclient.v1.conductor module¶
-
class
ironicclient.v1.conductor.
ConductorManager
(api)[source]¶ Bases:
ironicclient.common.base.Manager
-
list
(marker=None, limit=None, sort_key=None, sort_dir=None, fields=None, detail=False)[source]¶ Retrieve a list of conductors.
Parameters: - marker – Optional, the hostname of a conductor, eg the last conductor from a previous result set. Return the next result set.
- limit –
- The maximum number of results to return per
- request, if:
- limit > 0, the maximum number of ports to return.
- limit == 0, return the entire list of ports.
- limit param is NOT specified (None), the number of items returned respect the maximum imposed by the Ironic API (see Ironic’s api.max_limit option).
- sort_key – Optional, field used for sorting.
- sort_dir – Optional, direction of sorting, either ‘asc’ (the default) or ‘desc’.
- fields – Optional, a list with a specified set of fields of the resource to be returned. Can not be used when ‘detail’ is set.
- detail – Optional, boolean whether to return detailed information about conductors.
Returns: A list of conductors.
-