class Azure::Kusto::Mgmt::V2020_06_14::Models::SkuLocationInfoItem
The locations and zones info for SKU.
Attributes
location[RW]
@return [String] The available location of the SKU.
zones[RW]
@return [Array<String>] The available zone of the SKU.
Public Class Methods
mapper()
click to toggle source
Mapper for SkuLocationInfoItem
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2020-06-14/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