Class: Azure::BatchAI::Mgmt::V2017_09_01_preview::Models::ContainerSettings
- Inherits:
-
Object
- Object
- Azure::BatchAI::Mgmt::V2017_09_01_preview::Models::ContainerSettings
- Includes:
- MsRestAzure
- Defined in:
- lib/2017-09-01-preview/generated/azure_mgmt_batchai/models/container_settings.rb
Overview
Settings for the container to be downloaded.
Instance Attribute Summary collapse
-
#image_source_registry ⇒ ImageSourceRegistry
Registry to download the container from.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ContainerSettings class as Ruby Hash.
Instance Attribute Details
#image_source_registry ⇒ ImageSourceRegistry
Returns Registry to download the container from.
16 17 18 |
# File 'lib/2017-09-01-preview/generated/azure_mgmt_batchai/models/container_settings.rb', line 16 def image_source_registry @image_source_registry end |
Class Method Details
.mapper ⇒ Object
Mapper for ContainerSettings class as Ruby Hash. This will be used for serialization/deserialization.
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
# File 'lib/2017-09-01-preview/generated/azure_mgmt_batchai/models/container_settings.rb', line 23 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ContainerSettings', type: { name: 'Composite', class_name: 'ContainerSettings', model_properties: { image_source_registry: { client_side_validation: true, required: true, serialized_name: 'imageSourceRegistry', type: { name: 'Composite', class_name: 'ImageSourceRegistry' } } } } } end |