class Azure::IotHub::Mgmt::V2019_07_01_preview::Models::EventHubConsumerGroupInfo

The properties of the EventHubConsumerGroupInfo object.

Attributes

etag[RW]

@return [String] The etag.

id[RW]

@return [String] The Event Hub-compatible consumer group identifier.

name[RW]

@return [String] The Event Hub-compatible consumer group name.

properties[RW]

@return [Hash{String => String}] The tags.

type[RW]

@return [String] the resource type.

Public Class Methods

mapper() click to toggle source

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

# File lib/2019-07-01-preview/generated/azure_mgmt_iot_hub/models/event_hub_consumer_group_info.rb, line 35
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'EventHubConsumerGroupInfo',
    type: {
      name: 'Composite',
      class_name: 'EventHubConsumerGroupInfo',
      model_properties: {
        properties: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties',
          type: {
            name: 'Dictionary',
            value: {
                client_side_validation: true,
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        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',
          type: {
            name: 'String'
          }
        },
        type: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'type',
          type: {
            name: 'String'
          }
        },
        etag: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'etag',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end