class Azure::Kusto::Mgmt::V2019_01_21::Models::AzureSku

Azure SKU definition.

Attributes

capacity[RW]

@return [Integer] The number of instances of the cluster.

name[RW]

@return [AzureSkuName] SKU name. Possible values include: 'Standard_DS13_v2+1TB_PS', 'Standard_DS13_v2+2TB_PS', 'Standard_DS14_v2+3TB_PS', 'Standard_DS14_v2+4TB_PS', 'Standard_D13_v2', 'Standard_D14_v2', 'Standard_L8s', 'Standard_L16s', 'Standard_D11_v2', 'Standard_D12_v2', 'Standard_L4s', 'Dev(No SLA)_Standard_D11_v2'

tier[RW]

@return [AzureSkuTier] SKU tier. Possible values include: 'Basic', 'Standard'

Public Class Methods

mapper() click to toggle source

Mapper for AzureSku class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2019-01-21/generated/azure_mgmt_kusto/models/azure_sku.rb, line 35
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'AzureSku',
    type: {
      name: 'Composite',
      class_name: 'AzureSku',
      model_properties: {
        name: {
          client_side_validation: true,
          required: true,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        capacity: {
          client_side_validation: true,
          required: false,
          serialized_name: 'capacity',
          type: {
            name: 'Number'
          }
        },
        tier: {
          client_side_validation: true,
          required: true,
          serialized_name: 'tier',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end