class Azure::IotHub::Mgmt::V2019_07_01_preview::Models::IotHubSkuDescription
SKU properties.
Attributes
capacity[RW]
@return [IotHubCapacity] IotHub
capacity
resource_type[RW]
@return [String] The type of the resource.
sku[RW]
@return [IotHubSkuInfo] The type of the resource.
Public Class Methods
mapper()
click to toggle source
Mapper for IotHubSkuDescription
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2019-07-01-preview/generated/azure_mgmt_iot_hub/models/iot_hub_sku_description.rb, line 29 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'IotHubSkuDescription', type: { name: 'Composite', class_name: 'IotHubSkuDescription', model_properties: { resource_type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'resourceType', type: { name: 'String' } }, sku: { client_side_validation: true, required: true, serialized_name: 'sku', type: { name: 'Composite', class_name: 'IotHubSkuInfo' } }, capacity: { client_side_validation: true, required: true, serialized_name: 'capacity', type: { name: 'Composite', class_name: 'IotHubCapacity' } } } } } end