class Azure::Automation::Mgmt::V2015_10_31::Models::JobCreateParameters
The parameters supplied to the create job operation.
Attributes
parameters[RW]
@return [Hash{String => String}] Gets or sets the parameters of the job.
run_on[RW]
@return [String] Gets or sets the runOn which specifies the group name where the job is to be executed.
runbook[RW]
@return [RunbookAssociationProperty] Gets or sets the runbook.
Private Class Methods
mapper()
click to toggle source
Mapper for JobCreateParameters
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2015-10-31/generated/azure_mgmt_automation/models/job_create_parameters.rb, line 31 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'JobCreateParameters', type: { name: 'Composite', class_name: 'JobCreateParameters', model_properties: { runbook: { client_side_validation: true, required: true, serialized_name: 'properties.runbook', type: { name: 'Composite', class_name: 'RunbookAssociationProperty' } }, 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' } } } }, run_on: { client_side_validation: true, required: false, serialized_name: 'properties.runOn', type: { name: 'String' } } } } } end