Class: Azure::Labservices::Mgmt::V2018_10_15::Models::GalleryImageFragment
- Inherits:
-
Resource
- Object
- Resource
- Azure::Labservices::Mgmt::V2018_10_15::Models::GalleryImageFragment
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-10-15/generated/azure_mgmt_labservices/models/gallery_image_fragment.rb
Overview
Represents an image from the Azure Marketplace
Instance Attribute Summary collapse
-
#is_enabled ⇒ Boolean
Indicates whether this gallery image is enabled.
-
#is_override ⇒ Boolean
for this lab account.
-
#is_plan_authorized ⇒ Boolean
programmatic deployment.
-
#provisioning_state ⇒ String
The provisioning status of the resource.
-
#unique_identifier ⇒ String
The unique immutable identifier of a resource (Guid).
Attributes inherited from Resource
#id, #location, #name, #tags, #type
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for GalleryImageFragment class as Ruby Hash.
Methods inherited from Resource
Instance Attribute Details
#is_enabled ⇒ Boolean
Returns Indicates whether this gallery image is enabled.
16 17 18 |
# File 'lib/2018-10-15/generated/azure_mgmt_labservices/models/gallery_image_fragment.rb', line 16 def is_enabled @is_enabled end |
#is_override ⇒ Boolean
for this lab account
20 21 22 |
# File 'lib/2018-10-15/generated/azure_mgmt_labservices/models/gallery_image_fragment.rb', line 20 def is_override @is_override end |
#is_plan_authorized ⇒ Boolean
programmatic deployment.
24 25 26 |
# File 'lib/2018-10-15/generated/azure_mgmt_labservices/models/gallery_image_fragment.rb', line 24 def @is_plan_authorized end |
#provisioning_state ⇒ String
Returns The provisioning status of the resource.
27 28 29 |
# File 'lib/2018-10-15/generated/azure_mgmt_labservices/models/gallery_image_fragment.rb', line 27 def provisioning_state @provisioning_state end |
#unique_identifier ⇒ String
Returns The unique immutable identifier of a resource (Guid).
30 31 32 |
# File 'lib/2018-10-15/generated/azure_mgmt_labservices/models/gallery_image_fragment.rb', line 30 def unique_identifier @unique_identifier end |
Class Method Details
.mapper ⇒ Object
Mapper for GalleryImageFragment class as Ruby Hash. This will be used for serialization/deserialization.
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 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 |
# File 'lib/2018-10-15/generated/azure_mgmt_labservices/models/gallery_image_fragment.rb', line 37 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'GalleryImageFragment', type: { name: 'Composite', class_name: 'GalleryImageFragment', model_properties: { id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, location: { client_side_validation: true, required: false, serialized_name: 'location', type: { name: 'String' } }, tags: { client_side_validation: true, required: false, serialized_name: 'tags', type: { name: 'Dictionary', value: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, is_enabled: { client_side_validation: true, required: false, serialized_name: 'properties.isEnabled', type: { name: 'Boolean' } }, is_override: { client_side_validation: true, required: false, serialized_name: 'properties.isOverride', type: { name: 'Boolean' } }, is_plan_authorized: { client_side_validation: true, required: false, serialized_name: 'properties.isPlanAuthorized', type: { name: 'Boolean' } }, provisioning_state: { client_side_validation: true, required: false, serialized_name: 'properties.provisioningState', type: { name: 'String' } }, unique_identifier: { client_side_validation: true, required: false, serialized_name: 'properties.uniqueIdentifier', type: { name: 'String' } } } } } end |