The ironicclient.v1.chassis Module

class ironicclient.v1.chassis.Chassis(manager, info, loaded=False)[source]

Bases: ironicclient.common.base.Resource

class ironicclient.v1.chassis.ChassisManager(api)[source]

Bases: ironicclient.common.base.Manager

create(**kwargs)[source]
delete(chassis_id)[source]
get(chassis_id)[source]
list(marker=None, limit=None, sort_key=None, sort_dir=None, detail=False)[source]

Retrieve a list of chassis.

Parameters:
  • marker – Optional, the UUID of a chassis, eg the last chassis from a previous result set. Return the next result set.
  • limit
    The maximum number of results to return per
    request, if:
    1. limit > 0, the maximum number of chassis to return.
    2. limit == 0, return the entire list of chassis.
    3. 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’.
  • detail – Optional, boolean whether to return detailed information about chassis.
Returns:

A list of chassis.

list_nodes(chassis_id, marker=None, limit=None, sort_key=None, sort_dir=None, detail=False)[source]

List all the nodes for a given chassis.

Parameters:
  • chassis_id – The UUID of the chassis.
  • marker – Optional, the UUID of a node, eg the last node from a previous result set. Return the next result set.
  • limit
    The maximum number of results to return per
    request, if:
    1. limit > 0, the maximum number of nodes to return.
    2. limit == 0, return the entire list of nodes.
    3. 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’.
  • detail – Optional, boolean whether to return detailed information about nodes.
Returns:

A list of nodes.

resource_class

alias of Chassis

update(chassis_id, patch)[source]

Previous topic

The ironicclient.tests.unit.v1.test_resource_fields Module

Next topic

The ironicclient.v1.chassis_shell Module

This Page