Skip to content

Commit

Permalink
[servicebus] missing docstring async ce (Azure#24698)
Browse files Browse the repository at this point in the history
* missing docstring

* trailing whitespace
  • Loading branch information
l0lawrence authored and sarkar-rajarshi committed Jun 9, 2022
1 parent cf9b6b2 commit 512aa8c
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,14 @@ class ServiceBusClient(object): # pylint: disable=client-accepts-api-version-key
:keyword retry_mode: The delay behavior between retry attempts. Supported values are "fixed" or "exponential",
where default is "exponential".
:paramtype retry_mode: str
:keyword str custom_endpoint_address: The custom endpoint address to use for establishing a connection to
the Service Bus service, allowing network requests to be routed through any application gateways or
other paths needed for the host environment. Default is None.
The format would be like "sb://<custom_endpoint_hostname>:<custom_endpoint_port>".
If port is not specified in the custom_endpoint_address, by default port 443 will be used.
:keyword str connection_verify: Path to the custom CA_BUNDLE file of the SSL certificate which is used to
authenticate the identity of the connection endpoint.
Default is None in which case `certifi.where()` will be used.
.. admonition:: Example:
Expand Down Expand Up @@ -168,6 +176,14 @@ def from_connection_string(
:keyword retry_mode: The delay behavior between retry attempts. Supported values are 'fixed' or 'exponential',
where default is 'exponential'.
:paramtype retry_mode: str
:keyword str custom_endpoint_address: The custom endpoint address to use for establishing a connection to
the Service Bus service, allowing network requests to be routed through any application gateways or
other paths needed for the host environment. Default is None.
The format would be like "sb://<custom_endpoint_hostname>:<custom_endpoint_port>".
If port is not specified in the custom_endpoint_address, by default port 443 will be used.
:keyword str connection_verify: Path to the custom CA_BUNDLE file of the SSL certificate which is used to
authenticate the identity of the connection endpoint.
Default is None in which case `certifi.where()` will be used.
:rtype: ~azure.servicebus.aio.ServiceBusClient
.. admonition:: Example:
Expand Down

0 comments on commit 512aa8c

Please sign in to comment.