class Azure::IotHub::Mgmt::V2018_12_01_preview::Models::RoutingServiceBusQueueEndpointProperties
The properties related to service bus queue endpoint types.
Attributes
@return [String] The connection string of the service bus queue endpoint.
@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, fileNotifications, $default. Endpoint names must be unique across endpoint types. The name need not be the same as the actual queue name.
@return [String] The name of the resource group of the service bus queue endpoint.
@return [String] The subscription identifier of the service bus queue endpoint.
Public Class Methods
Mapper for RoutingServiceBusQueueEndpointProperties
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2018-12-01-preview/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