class Azure::IotHub::Mgmt::V2017_01_19::Models::RoutingServiceBusQueueEndpointProperties

The properties related to service bus queue endpoint types.

Attributes

connection_string[RW]

@return [String] The connection string of the service bus queue endpoint.

name[RW]

@return [String] The name of the service bus queue endpoint. The name can only include alphanumeric characters, periods, underscores, hyphens and has a maximum length of 64 characters. The following names are reserved; events, operationsMonitoringEvents, fileNotifications, $default. Endpoint names must be unique across endpoint types. The name need not be the same as the actual queue name.

resource_group[RW]

@return [String] The name of the resource group of the service bus queue endpoint.

subscription_id[RW]

@return [String] The subscription identifier of the service bus queue endpoint.

Public Class Methods

mapper() click to toggle source

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

# File lib/2017-01-19/generated/azure_mgmt_iot_hub/models/routing_service_bus_queue_endpoint_properties.rb, line 40
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'RoutingServiceBusQueueEndpointProperties',
    type: {
      name: 'Composite',
      class_name: 'RoutingServiceBusQueueEndpointProperties',
      model_properties: {
        connection_string: {
          client_side_validation: true,
          required: true,
          serialized_name: 'connectionString',
          type: {
            name: 'String'
          }
        },
        name: {
          client_side_validation: true,
          required: true,
          serialized_name: 'name',
          constraints: {
            Pattern: '^[A-Za-z0-9-._]{1,64}$'
          },
          type: {
            name: 'String'
          }
        },
        subscription_id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'subscriptionId',
          type: {
            name: 'String'
          }
        },
        resource_group: {
          client_side_validation: true,
          required: false,
          serialized_name: 'resourceGroup',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end