class Azure::IotHub::Mgmt::V2016_02_03::Models::IotHubDescription

The description of the IoT hub.

Attributes

etag[RW]

@return [String] The Etag field is not required. If it is provided in the response body, it must also be provided as a header per the normal ETag convention.

properties[RW]

@return [IotHubProperties]

resourcegroup[RW]

@return [String] The name of the resource group that contains the IoT hub. A resource group name uniquely identifies the resource group within the subscription.

sku[RW]

@return [IotHubSkuInfo]

subscriptionid[RW]

@return [String] The subscription identifier.

Public Class Methods

mapper() click to toggle source

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

# File lib/2016-02-03/generated/azure_mgmt_iot_hub/models/iot_hub_description.rb, line 39
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'IotHubDescription',
    type: {
      name: 'Composite',
      class_name: 'IotHubDescription',
      model_properties: {
        id: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        name: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'name',
          constraints: {
            Pattern: '^(?![0-9]+$)(?!-)[a-zA-Z0-9-]{2,49}[a-zA-Z0-9]$'
          },
          type: {
            name: 'String'
          }
        },
        type: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'type',
          type: {
            name: 'String'
          }
        },
        location: {
          client_side_validation: true,
          required: true,
          serialized_name: 'location',
          type: {
            name: 'String'
          }
        },
        tags: {
          client_side_validation: true,
          required: false,
          serialized_name: 'tags',
          type: {
            name: 'Dictionary',
            value: {
                client_side_validation: true,
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        subscriptionid: {
          client_side_validation: true,
          required: true,
          serialized_name: 'subscriptionid',
          type: {
            name: 'String'
          }
        },
        resourcegroup: {
          client_side_validation: true,
          required: true,
          serialized_name: 'resourcegroup',
          type: {
            name: 'String'
          }
        },
        etag: {
          client_side_validation: true,
          required: false,
          serialized_name: 'etag',
          type: {
            name: 'String'
          }
        },
        properties: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties',
          type: {
            name: 'Composite',
            class_name: 'IotHubProperties'
          }
        },
        sku: {
          client_side_validation: true,
          required: true,
          serialized_name: 'sku',
          type: {
            name: 'Composite',
            class_name: 'IotHubSkuInfo'
          }
        }
      }
    }
  }
end