ServiceBusArgs

data class ServiceBusArgs(val authenticationType: Output<Either<String, AuthenticationType>>? = null, val deadLetterSecret: Output<String>? = null, val deadLetterUri: Output<String>? = null, val endpointType: Output<String>, val endpointUri: Output<String>? = null, val entityPath: Output<String>? = null, val identity: Output<ManagedIdentityReferenceArgs>? = null, val primaryConnectionString: Output<String>? = null, val secondaryConnectionString: Output<String>? = null) : ConvertibleToJava<ServiceBusArgs>

Properties related to ServiceBus.

Constructors

Link copied to clipboard
constructor(authenticationType: Output<Either<String, AuthenticationType>>? = null, deadLetterSecret: Output<String>? = null, deadLetterUri: Output<String>? = null, endpointType: Output<String>, endpointUri: Output<String>? = null, entityPath: Output<String>? = null, identity: Output<ManagedIdentityReferenceArgs>? = null, primaryConnectionString: Output<String>? = null, secondaryConnectionString: Output<String>? = null)

Properties

Link copied to clipboard
val authenticationType: Output<Either<String, AuthenticationType>>? = null

Specifies the authentication type being used for connecting to the endpoint. Defaults to 'KeyBased'. If 'KeyBased' is selected, a connection string must be specified (at least the primary connection string). If 'IdentityBased' is select, the endpointUri and entityPath properties must be specified.

Link copied to clipboard
val deadLetterSecret: Output<String>? = null

Dead letter storage secret for key-based authentication. Will be obfuscated during read.

Link copied to clipboard
val deadLetterUri: Output<String>? = null

Dead letter storage URL for identity-based authentication.

Link copied to clipboard
val endpointType: Output<String>

The type of Digital Twins endpoint Expected value is 'ServiceBus'.

Link copied to clipboard
val endpointUri: Output<String>? = null

The URL of the ServiceBus namespace for identity-based authentication. It must include the protocol 'sb://'.

Link copied to clipboard
val entityPath: Output<String>? = null

The ServiceBus Topic name for identity-based authentication.

Link copied to clipboard

Managed identity properties for the endpoint.

Link copied to clipboard
val primaryConnectionString: Output<String>? = null

PrimaryConnectionString of the endpoint for key-based authentication. Will be obfuscated during read.

Link copied to clipboard
val secondaryConnectionString: Output<String>? = null

SecondaryConnectionString of the endpoint for key-based authentication. Will be obfuscated during read.

Functions

Link copied to clipboard
open override fun toJava(): ServiceBusArgs