你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

EventHubConnectionStringProperties 类

συμβολοσειρά σύνδεσης的属性。

继承
azure.eventhub._mixin.DictMixin
EventHubConnectionStringProperties

构造函数

EventHubConnectionStringProperties(*, fully_qualified_namespace: str, endpoint: str, eventhub_name: str | None = None, shared_access_signature: str | None = None, shared_access_key_name: str | None = None, shared_access_key: str | None = None, **kwargs: Any)

仅限关键字的参数

名称 说明
fully_qualified_namespace
必需
endpoint
必需
eventhub_name
必需
shared_access_signature
必需
shared_access_key_name
必需
shared_access_key
必需

方法

get
has_key
items
keys
update
values

get

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

参数

名称 说明
key
必需
default
默认值: None

has_key

has_key(k: str) -> bool

参数

名称 说明
k
必需

items

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

keys

keys() -> List[str]

update

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

values

values() -> List[Any]

属性

endpoint

///

返回

类型 说明
str

eventhub_name

可选。 事件中心的名称,由συμβολοσειρά σύνδεσης中的 EntityPath 表示。

返回

类型 说明
str

fully_qualified_namespace

事件中心命名空间的完全限定主机名。 命名空间格式为: .servicebus.windows.net

返回

类型 说明
str

shared_access_key

可以将shared_access_key与shared_access_key_name一起使用作为凭据。

返回

类型 说明
str

shared_access_key_name

shared_access_key的名称。 这必须与shared_access_key一起使用。

返回

类型 说明
str

shared_access_signature

可以不提供shared_access_key_name和shared_access_key。

返回

类型 说明
str