Class: Azure::Kusto::Mgmt::V2020_02_15::Models::AzureSku

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2020-02-15/generated/azure_mgmt_kusto/models/azure_sku.rb

Overview

Azure SKU definition.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#capacityInteger

Returns The number of instances of the cluster.

Returns:

  • (Integer)

    The number of instances of the cluster.



27
28
29
# File 'lib/2020-02-15/generated/azure_mgmt_kusto/models/azure_sku.rb', line 27

def capacity
  @capacity
end

#nameAzureSkuName

‘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’, ‘Standard_E2a_v4’, ‘Standard_E4a_v4’, ‘Standard_E8a_v4’, ‘Standard_E16a_v4’, ‘Standard_E8as_v4+1TB_PS’, ‘Standard_E8as_v4+2TB_PS’, ‘Standard_E16as_v4+3TB_PS’, ‘Standard_E16as_v4+4TB_PS’, ‘Dev(No SLA)_Standard_E2a_v4’

Returns:



24
25
26
# File 'lib/2020-02-15/generated/azure_mgmt_kusto/models/azure_sku.rb', line 24

def name
  @name
end

#tierAzureSkuTier

‘Standard’

Returns:

  • (AzureSkuTier)

    SKU tier. Possible values include: ‘Basic’,



31
32
33
# File 'lib/2020-02-15/generated/azure_mgmt_kusto/models/azure_sku.rb', line 31

def tier
  @tier
end

Class Method Details

.mapperObject

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



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
# File 'lib/2020-02-15/generated/azure_mgmt_kusto/models/azure_sku.rb', line 38

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