Sha256: 64f6eb2de713ed8a11cd9ce81f13e165e2945e755d539b0291cb16724beb1538
Contents?: true
Size: 2 KB
Versions: 8
Compression:
Stored size: 2 KB
Contents
# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::IotHub::Mgmt::V2016_02_03 module Models # # Information about the SKU of the IoT hub. # class IotHubSkuInfo include MsRestAzure # @return [IotHubSku] The name of the SKU. Possible values include: 'F1', # 'S1', 'S2', 'S3' attr_accessor :name # @return [IotHubSkuTier] The billing tier for the IoT hub. Possible # values include: 'Free', 'Standard' attr_accessor :tier # @return [Integer] The number of provisioned IoT Hub units. See: # https://docs.microsoft.com/azure/azure-subscription-service-limits#iot-hub-limits. attr_accessor :capacity # # Mapper for IotHubSkuInfo class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'IotHubSkuInfo', type: { name: 'Composite', class_name: 'IotHubSkuInfo', model_properties: { name: { client_side_validation: true, required: true, serialized_name: 'name', type: { name: 'String' } }, tier: { client_side_validation: true, required: false, read_only: true, serialized_name: 'tier', type: { name: 'Enum', module: 'IotHubSkuTier' } }, capacity: { client_side_validation: true, required: true, serialized_name: 'capacity', type: { name: 'Number' } } } } } end end end end
Version data entries
8 entries across 8 versions & 1 rubygems