class Azure::Automation::Mgmt::V2015_10_31::Models::DscCompilationJobCreateParameters

The parameters supplied to the create compilation job operation.

Attributes

configuration[RW]

@return [DscConfigurationAssociationProperty] Gets or sets the configuration.

increment_node_configuration_build[RW]

@return [Boolean] If a new build version of NodeConfiguration is required.

location[RW]

@return [String] Gets or sets the location of the resource.

name[RW]

@return [String] Gets or sets name of the resource.

parameters[RW]

@return [Hash{String => String}] Gets or sets the parameters of the job.

tags[RW]

@return [Hash{String => String}] Gets or sets the tags attached to the resource.

Private Class Methods

mapper() click to toggle source

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

# File lib/2015-10-31/generated/azure_mgmt_automation/models/dsc_compilation_job_create_parameters.rb, line 42
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'DscCompilationJobCreateParameters',
    type: {
      name: 'Composite',
      class_name: 'DscCompilationJobCreateParameters',
      model_properties: {
        configuration: {
          client_side_validation: true,
          required: true,
          serialized_name: 'properties.configuration',
          type: {
            name: 'Composite',
            class_name: 'DscConfigurationAssociationProperty'
          }
        },
        parameters: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.parameters',
          type: {
            name: 'Dictionary',
            value: {
                client_side_validation: true,
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        increment_node_configuration_build: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.incrementNodeConfigurationBuild',
          type: {
            name: 'Boolean'
          }
        },
        name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        location: {
          client_side_validation: true,
          required: false,
          serialized_name: 'location',
          type: {
            name: 'String'
          }
        },
        tags: {
          client_side_validation: true,
          required: false,
          serialized_name: 'tags',
          type: {
            name: 'Dictionary',
            value: {
                client_side_validation: true,
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        }
      }
    }
  }
end