Class: Azure::Logic::Mgmt::V2016_06_01::Models::BatchConfigurationProperties
- Inherits:
-
ArtifactProperties
- Object
- ArtifactProperties
- Azure::Logic::Mgmt::V2016_06_01::Models::BatchConfigurationProperties
- Includes:
- MsRestAzure
- Defined in:
- lib/2016-06-01/generated/azure_mgmt_logic/models/batch_configuration_properties.rb
Overview
The batch configuration properties definition.
Instance Attribute Summary collapse
-
#batch_group_name ⇒ String
The name of the batch group.
-
#release_criteria ⇒ BatchReleaseCriteria
The batch release criteria.
Attributes inherited from ArtifactProperties
#changed_time, #created_time, #metadata
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for BatchConfigurationProperties class as Ruby Hash.
Instance Attribute Details
#batch_group_name ⇒ String
Returns The name of the batch group.
16 17 18 |
# File 'lib/2016-06-01/generated/azure_mgmt_logic/models/batch_configuration_properties.rb', line 16 def batch_group_name @batch_group_name end |
#release_criteria ⇒ BatchReleaseCriteria
Returns The batch release criteria.
19 20 21 |
# File 'lib/2016-06-01/generated/azure_mgmt_logic/models/batch_configuration_properties.rb', line 19 def release_criteria @release_criteria end |
Class Method Details
.mapper ⇒ Object
Mapper for BatchConfigurationProperties class as Ruby Hash. This will be used for serialization/deserialization.
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
# 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 |