class Azure::Logic::Mgmt::V2016_06_01::Models::BatchConfigurationProperties
The batch configuration properties definition.
Attributes
batch_group_name[RW]
@return [String] The name of the batch group.
release_criteria[RW]
@return [BatchReleaseCriteria] The batch release criteria.
Public Class Methods
mapper()
click to toggle source
Mapper for BatchConfigurationProperties
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2016-06-01/generated/azure_mgmt_logic/models/batch_configuration_properties.rb, line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'BatchConfigurationProperties', type: { name: 'Composite', class_name: 'BatchConfigurationProperties', model_properties: { created_time: { client_side_validation: true, required: false, serialized_name: 'createdTime', type: { name: 'DateTime' } }, changed_time: { client_side_validation: true, required: false, serialized_name: 'changedTime', type: { name: 'DateTime' } }, metadata: { client_side_validation: true, required: false, serialized_name: 'metadata', type: { name: 'Object' } }, batch_group_name: { client_side_validation: true, required: true, serialized_name: 'batchGroupName', type: { name: 'String' } }, release_criteria: { client_side_validation: true, required: true, serialized_name: 'releaseCriteria', type: { name: 'Composite', class_name: 'BatchReleaseCriteria' } } } } } end