Class: Azure::Kusto::Mgmt::V2019_11_09::Models::SkuLocationInfoItem
- Inherits:
-
Object
- Object
- Azure::Kusto::Mgmt::V2019_11_09::Models::SkuLocationInfoItem
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-11-09/generated/azure_mgmt_kusto/models/sku_location_info_item.rb
Overview
The locations and zones info for SKU.
Instance Attribute Summary collapse
-
#location ⇒ String
The available location of the SKU.
-
#zones ⇒ Array<String>
The available zone of the SKU.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for SkuLocationInfoItem class as Ruby Hash.
Instance Attribute Details
#location ⇒ String
Returns The available location of the SKU.
16 17 18 |
# File 'lib/2019-11-09/generated/azure_mgmt_kusto/models/sku_location_info_item.rb', line 16 def location @location end |
#zones ⇒ Array<String>
Returns The available zone of the SKU.
19 20 21 |
# File 'lib/2019-11-09/generated/azure_mgmt_kusto/models/sku_location_info_item.rb', line 19 def zones @zones end |
Class Method Details
.mapper ⇒ Object
Mapper for SkuLocationInfoItem 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 |
# File 'lib/2019-11-09/generated/azure_mgmt_kusto/models/sku_location_info_item.rb', line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'SkuLocationInfoItem', type: { name: 'Composite', class_name: 'SkuLocationInfoItem', model_properties: { location: { client_side_validation: true, required: true, serialized_name: 'location', type: { name: 'String' } }, zones: { client_side_validation: true, required: false, serialized_name: 'zones', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } } } } } end |