Class: Ansible::Ruby::Modules::Os_ironic
- Inherits:
-
Base
- Object
- Ansible::Ruby::Models::Base
- Base
- Ansible::Ruby::Modules::Os_ironic
- Defined in:
- lib/ansible/ruby/modules/generated/core/cloud/openstack/os_ironic.rb
Overview
Create or Remove Ironic nodes from OpenStack.
Instance Method Summary collapse
-
#chassis_uuid ⇒ String?
Associate the node with a pre-defined chassis.
-
#driver ⇒ String
The name of the Ironic Driver to use with this node.
-
#driver_info ⇒ Hash?
Information for this server’s driver.
-
#ironic_url ⇒ Object?
If noauth mode is utilized, this is required to be set to the endpoint URL for the Ironic API.
-
#name ⇒ Object?
Unique name identifier to be given to the resource.
-
#nics ⇒ Array<Hash>, Hash
A list of network interface cards, eg, “ - mac: aa:bb:cc:aa:bb:cc”.
-
#properties ⇒ Hash?
Definition of the physical characteristics of this server, used for scheduling purposes.
-
#skip_update_of_driver_password ⇒ Boolean?
Allows the code that would assert changes to nodes to skip the update if the change is a single line consisting of the password field.
-
#state ⇒ :present, ...
Indicates desired state of the resource.
-
#uuid ⇒ String?
Globally unique identifier (UUID) to be given to the resource.
Methods inherited from Base
Methods inherited from Ansible::Ruby::Models::Base
attr_option, attr_options, attribute, #initialize, remove_existing_validations, #to_h, validates
Constructor Details
This class inherits a constructor from Ansible::Ruby::Models::Base
Instance Method Details
#chassis_uuid ⇒ String?
Returns Associate the node with a pre-defined chassis.
26 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/openstack/os_ironic.rb', line 26 attribute :chassis_uuid |
#driver ⇒ String
Returns The name of the Ironic Driver to use with this node.
22 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/openstack/os_ironic.rb', line 22 attribute :driver |
#driver_info ⇒ Hash?
Returns Information for this server’s driver. Will vary based on which driver is in use. Any sub-field which is populated will be validated during creation.
33 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/openstack/os_ironic.rb', line 33 attribute :driver_info |
#ironic_url ⇒ Object?
Returns If noauth mode is utilized, this is required to be set to the endpoint URL for the Ironic API. Use with “auth” and “auth_type” settings set to None.
30 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/openstack/os_ironic.rb', line 30 attribute :ironic_url |
#name ⇒ Object?
Returns unique name identifier to be given to the resource.
19 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/openstack/os_ironic.rb', line 19 attribute :name |
#nics ⇒ Array<Hash>, Hash
Returns A list of network interface cards, eg, “ - mac: aa:bb:cc:aa:bb:cc”.
37 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/openstack/os_ironic.rb', line 37 attribute :nics |
#properties ⇒ Hash?
Returns Definition of the physical characteristics of this server, used for scheduling purposes.
41 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/openstack/os_ironic.rb', line 41 attribute :properties |
#skip_update_of_driver_password ⇒ Boolean?
Returns Allows the code that would assert changes to nodes to skip the update if the change is a single line consisting of the password field. As of Kilo, by default, passwords are always masked to API requests, which means the logic as a result always attempts to re-assert the password field.
45 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/openstack/os_ironic.rb', line 45 attribute :skip_update_of_driver_password |
#state ⇒ :present, ...
Returns Indicates desired state of the resource.
11 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/openstack/os_ironic.rb', line 11 attribute :state |
#uuid ⇒ String?
Returns globally unique identifier (UUID) to be given to the resource. Will be auto-generated if not specified, and name is specified.,Definition of a UUID will always take precedence to a name value.
15 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/openstack/os_ironic.rb', line 15 attribute :uuid |