class Azure::IotHub::Mgmt::V2018_01_22::Models::RoutingServiceBusTopicEndpointProperties

The properties related to service bus topic endpoint types.

Attributes

connection_string[RW]

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

name[RW]

@return [String] The name that identifies this 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 topic name.

resource_group[RW]

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

subscription_id[RW]

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

Public Class Methods

mapper() click to toggle source

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

# File lib/2018-01-22/generated/azure_mgmt_iot_hub/models/routing_service_bus_topic_endpoint_properties.rb, line 40
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'RoutingServiceBusTopicEndpointProperties',
    type: {
      name: 'Composite',
      class_name: 'RoutingServiceBusTopicEndpointProperties',
      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