Class: Azure::ContainerInstance::Mgmt::V2018_10_01::Models::CachedImages
- Inherits:
-
Object
- Object
- Azure::ContainerInstance::Mgmt::V2018_10_01::Models::CachedImages
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-10-01/generated/azure_mgmt_container_instance/models/cached_images.rb
Overview
The cached image and OS type.
Instance Attribute Summary collapse
-
#id ⇒ String
The resource Id of the cached image.
-
#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
#id ⇒ String
16 17 18 |
# File 'lib/2018-10-01/generated/azure_mgmt_container_instance/models/cached_images.rb', line 16 def id @id end |
#image ⇒ String
22 23 24 |
# File 'lib/2018-10-01/generated/azure_mgmt_container_instance/models/cached_images.rb', line 22 def image @image end |
#os_type ⇒ String
19 20 21 |
# File 'lib/2018-10-01/generated/azure_mgmt_container_instance/models/cached_images.rb', line 19 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.
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 |
# File 'lib/2018-10-01/generated/azure_mgmt_container_instance/models/cached_images.rb', line 29 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'cachedImages', type: { name: 'Composite', class_name: 'CachedImages', model_properties: { id: { client_side_validation: true, required: false, serialized_name: 'id', type: { name: 'String' } }, 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 |