class Azure::Automation::Mgmt::V2015_10_31::Models::DscNodeUpdateParameters
The parameters supplied to the update dsc node operation.
Attributes
node_configuration[RW]
@return [DscNodeConfigurationAssociationProperty] Gets or sets the configuration of the node.
node_id[RW]
@return [String] Gets or sets the id of the dsc node.
Private Class Methods
mapper()
click to toggle source
Mapper for DscNodeUpdateParameters
class as Ruby Hash. This will be used for serialization/deserialization.
# 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