ServiceBusConnectionStringProperties Class

Properties of a connection string.

Inheritance
azure.servicebus.management._models.DictMixin
ServiceBusConnectionStringProperties

Constructor

ServiceBusConnectionStringProperties(*, fully_qualified_namespace: str, endpoint: str, entity_path: str | None = None, shared_access_signature: str | None = None, shared_access_key_name: str | None = None, shared_access_key: str | None = None)

Keyword-Only Parameters

Name Description
fully_qualified_namespace
Required
endpoint
Required
entity_path
Required
shared_access_signature
Required
shared_access_key_name
Required
shared_access_key
Required

Methods

get
has_key
items
keys
update
values

get

get(key: str, default: Any | None = None) -> Any

Parameters

Name Description
key
Required
default
default value: None

has_key

has_key(k: str) -> bool

Parameters

Name Description
k
Required

items

items() -> List[Tuple[str, Any]]

keys

keys() -> List[str]

update

update(*args: Any, **kwargs: Any) -> None

values

values() -> List[Any]

Attributes

endpoint

/// :rtype: str

entity_path

Optional. Represents the name of the queue/topic. :rtype: str or None

fully_qualified_namespace

The fully qualified host name for the Service Bus namespace. The namespace format is: .servicebus.windows.net. :rtype: str

shared_access_key

The shared_access_key can be used along with the shared_access_key_name as a credential. :rtype: str or None

shared_access_key_name

The name of the shared_access_key. This must be used along with the shared_access_key. :rtype: str or None

shared_access_signature

This can be provided instead of the shared_access_key_name and the shared_access_key. :rtype: str or None