Class: Azure::Automation::Mgmt::V2015_10_31::Models::DscNodeUpdateParameters

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2015-10-31/generated/azure_mgmt_automation/models/dsc_node_update_parameters.rb

Overview

The parameters supplied to the update dsc node operation.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#node_configurationDscNodeConfigurationAssociationProperty

configuration of the node.

Returns:



20
21
22
# File 'lib/2015-10-31/generated/azure_mgmt_automation/models/dsc_node_update_parameters.rb', line 20

def node_configuration
  @node_configuration
end

#node_idString

Returns Gets or sets the id of the dsc node.

Returns:

  • (String)

    Gets or sets the id of the dsc node.



16
17
18
# File 'lib/2015-10-31/generated/azure_mgmt_automation/models/dsc_node_update_parameters.rb', line 16

def node_id
  @node_id
end

Class Method Details

.mapperObject

Mapper for DscNodeUpdateParameters class as Ruby Hash. This will be used for serialization/deserialization.



27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# File 'lib/2015-10-31/generated/azure_mgmt_automation/models/dsc_node_update_parameters.rb', line 27

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'DscNodeUpdateParameters',
    type: {
      name: 'Composite',
      class_name: 'DscNodeUpdateParameters',
      model_properties: {
        node_id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'nodeId',
          type: {
            name: 'String'
          }
        },
        node_configuration: {
          client_side_validation: true,
          required: false,
          serialized_name: 'nodeConfiguration',
          type: {
            name: 'Composite',
            class_name: 'DscNodeConfigurationAssociationProperty'
          }
        }
      }
    }
  }
end