Class: Azure::Kusto::Mgmt::V2019_01_21::Models::AzureSku
- Inherits:
-
Object
- Object
- Azure::Kusto::Mgmt::V2019_01_21::Models::AzureSku
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-01-21/generated/azure_mgmt_kusto/models/azure_sku.rb
Overview
Azure SKU definition.
Instance Attribute Summary collapse
-
#capacity ⇒ Integer
The number of instances of the cluster.
-
#name ⇒ AzureSkuName
‘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 ⇒ AzureSkuTier
‘Standard’.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for AzureSku class as Ruby Hash.
Instance Attribute Details
#capacity ⇒ Integer
Returns The number of instances of the cluster.
24 25 26 |
# File 'lib/2019-01-21/generated/azure_mgmt_kusto/models/azure_sku.rb', line 24 def capacity @capacity end |
#name ⇒ AzureSkuName
‘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’
21 22 23 |
# File 'lib/2019-01-21/generated/azure_mgmt_kusto/models/azure_sku.rb', line 21 def name @name end |
#tier ⇒ AzureSkuTier
‘Standard’
28 29 30 |
# File 'lib/2019-01-21/generated/azure_mgmt_kusto/models/azure_sku.rb', line 28 def tier @tier end |
Class Method Details
.mapper ⇒ Object
Mapper for AzureSku class as Ruby Hash. This will be used for serialization/deserialization.
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 63 64 65 66 67 68 69 70 71 |
# 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 |