Class: Azure::ContainerInstance::Mgmt::V2019_12_01::Models::CachedImages
- Inherits:
-
Object
- Object
- Azure::ContainerInstance::Mgmt::V2019_12_01::Models::CachedImages
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-12-01/generated/azure_mgmt_container_instance/models/cached_images.rb
Overview
The cached image and OS type.
Instance Attribute Summary collapse
-
#image ⇒ String
The cached image name.
-
#os_type ⇒ String
The OS type of the cached image.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for CachedImages class as Ruby Hash.
Instance Attribute Details
#image ⇒ String
Returns The cached image name.
19 20 21 |
# File 'lib/2019-12-01/generated/azure_mgmt_container_instance/models/cached_images.rb', line 19 def image @image end |
#os_type ⇒ String
Returns The OS type of the cached image.
16 17 18 |
# File 'lib/2019-12-01/generated/azure_mgmt_container_instance/models/cached_images.rb', line 16 def os_type @os_type end |
Class Method Details
.mapper ⇒ Object
Mapper for CachedImages 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 |
# File 'lib/2019-12-01/generated/azure_mgmt_container_instance/models/cached_images.rb', line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'cachedImages', type: { name: 'Composite', class_name: 'CachedImages', model_properties: { os_type: { client_side_validation: true, required: true, serialized_name: 'osType', type: { name: 'String' } }, image: { client_side_validation: true, required: true, serialized_name: 'image', type: { name: 'String' } } } } } end |