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