Skip to content

Commit

Permalink
doc
Browse files Browse the repository at this point in the history
  • Loading branch information
l0lawrence committed Nov 15, 2024
1 parent 95f2c8f commit 6d4038d
Show file tree
Hide file tree
Showing 10 changed files with 24 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ class EventHubConsumerClient(ClientBase): # pylint: disable=client-accepts-api-
:keyword custom_endpoint_address: The custom endpoint address to use for establishing a connection to
the Event Hubs service, allowing network requests to be routed through any application gateways or
other paths needed for the host environment. Default is None.
Unless specified otherwise, default transport type is TransportType.AmqpOverWebsockets.
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.
:paramtype custom_endpoint_address: str or None
Expand Down Expand Up @@ -307,6 +308,7 @@ def from_connection_string(
:keyword custom_endpoint_address: The custom endpoint address to use for establishing a connection to
the Event Hubs service, allowing network requests to be routed through any application gateways or
other paths needed for the host environment. Default is None.
Unless specified otherwise, default transport type is TransportType.AmqpOverWebsockets.
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.
:paramtype custom_endpoint_address: str or None
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ class EventHubProducerClient(ClientBase): # pylint: disable=client-accepts-api-
:keyword custom_endpoint_address: The custom endpoint address to use for establishing a connection to
the Event Hubs service, allowing network requests to be routed through any application gateways or
other paths needed for the host environment. Default is None.
Unless specified otherwise, default transport type is TransportType.AmqpOverWebsockets.
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.
:paramtype custom_endpoint_address: Optional[str]
Expand Down Expand Up @@ -504,6 +505,7 @@ def from_connection_string(
:keyword custom_endpoint_address: The custom endpoint address to use for establishing a connection to
the Event Hubs service, allowing network requests to be routed through any application gateways or
other paths needed for the host environment. Default is None.
Unless specified otherwise, default transport type is TransportType.AmqpOverWebsockets.
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.
:paramtype custom_endpoint_address: Optional[str]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ class AMQPClientAsync(AMQPClientSync):
:keyword custom_endpoint_address: The custom endpoint address to use for establishing a connection to
the Event Hubs service, allowing network requests to be routed through any application gateways or
other paths needed for the host environment. Default is None.
Unless specified otherwise, default transport type is TransportType.AmqpOverWebsockets.
If port is not specified in the `custom_endpoint_address`, by default port 443 will be used.
:paramtype custom_endpoint_address: str
:keyword connection_verify: Path to the custom CA_BUNDLE file of the SSL certificate which is used to
Expand Down Expand Up @@ -478,6 +479,7 @@ class SendClientAsync(SendClientSync, AMQPClientAsync):
:keyword custom_endpoint_address: The custom endpoint address to use for establishing a connection to
the Event Hubs service, allowing network requests to be routed through any application gateways or
other paths needed for the host environment. Default is None.
Unless specified otherwise, default transport type is TransportType.AmqpOverWebsockets.
If port is not specified in the `custom_endpoint_address`, by default port 443 will be used.
:paramtype custom_endpoint_address: str
:keyword connection_verify: Path to the custom CA_BUNDLE file of the SSL certificate which is used to
Expand Down Expand Up @@ -686,6 +688,7 @@ class ReceiveClientAsync(ReceiveClientSync, AMQPClientAsync):
:keyword custom_endpoint_address: The custom endpoint address to use for establishing a connection to
the Event Hubs service, allowing network requests to be routed through any application gateways or
other paths needed for the host environment. Default is None.
Unless specified otherwise, default transport type is TransportType.AmqpOverWebsockets.
If port is not specified in the `custom_endpoint_address`, by default port 443 will be used.
:paramtype custom_endpoint_address: str
:keyword connection_verify: Path to the custom CA_BUNDLE file of the SSL certificate which is used to
Expand Down
3 changes: 3 additions & 0 deletions sdk/eventhub/azure-eventhub/azure/eventhub/_pyamqp/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ class AMQPClient(object): # pylint: disable=too-many-instance-attributes
:keyword custom_endpoint_address: The custom endpoint address to use for establishing a connection to
the service, allowing network requests to be routed through any application gateways or
other paths needed for the host environment. Default is None.
Unless specified otherwise, default transport type is TransportType.AmqpOverWebsockets.
If port is not specified in the `custom_endpoint_address`, by default port 443 will be used.
:paramtype custom_endpoint_address: str
:keyword connection_verify: Path to the custom CA_BUNDLE file of the SSL certificate which is used to
Expand Down Expand Up @@ -561,6 +562,7 @@ class SendClient(AMQPClient):
:keyword custom_endpoint_address: The custom endpoint address to use for establishing a connection to
the service, allowing network requests to be routed through any application gateways or
other paths needed for the host environment. Default is None.
Unless specified otherwise, default transport type is TransportType.AmqpOverWebsockets.
If port is not specified in the `custom_endpoint_address`, by default port 443 will be used.
:paramtype custom_endpoint_address: str
:keyword connection_verify: Path to the custom CA_BUNDLE file of the SSL certificate which is used to
Expand Down Expand Up @@ -786,6 +788,7 @@ class ReceiveClient(AMQPClient): # pylint:disable=too-many-instance-attributes
:keyword custom_endpoint_address: The custom endpoint address to use for establishing a connection to
the service, allowing network requests to be routed through any application gateways or
other paths needed for the host environment. Default is None.
Unless specified otherwise, default transport type is TransportType.AmqpOverWebsockets.
If port is not specified in the `custom_endpoint_address`, by default port 443 will be used.
:paramtype custom_endpoint_address: str
:keyword connection_verify: Path to the custom CA_BUNDLE file of the SSL certificate which is used to
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ class EventHubConsumerClient(ClientBaseAsync): # pylint: disable=client-accepts
:keyword custom_endpoint_address: The custom endpoint address to use for establishing a connection to
the Event Hubs service, allowing network requests to be routed through any application gateways or
other paths needed for the host environment. Default is None.
Unless specified otherwise, default transport type is TransportType.AmqpOverWebsockets.
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.
:paramtype custom_endpoint_address: Optional[str]
Expand Down Expand Up @@ -319,6 +320,7 @@ def from_connection_string(
:keyword custom_endpoint_address: The custom endpoint address to use for establishing a connection to
the Event Hubs service, allowing network requests to be routed through any application gateways or
other paths needed for the host environment. Default is None.
Unless specified otherwise, default transport type is TransportType.AmqpOverWebsockets.
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.
:paramtype custom_endpoint_address: Optional[str]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ class EventHubProducerClient(ClientBaseAsync): # pylint: disable=client-accepts
:keyword custom_endpoint_address: The custom endpoint address to use for establishing a connection to
the Event Hubs service, allowing network requests to be routed through any application gateways or
other paths needed for the host environment. Default is None.
Unless specified otherwise, default transport type is TransportType.AmqpOverWebsockets.
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.
:paramtype custom_endpoint_address: Optional[str]
Expand Down Expand Up @@ -471,6 +472,7 @@ def from_connection_string(
:keyword custom_endpoint_address: The custom endpoint address to use for establishing a connection to
the Event Hubs service, allowing network requests to be routed through any application gateways or
other paths needed for the host environment. Default is None.
Unless specified otherwise, default transport type is TransportType.AmqpOverWebsockets.
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.
:paramtype custom_endpoint_address: Optional[str]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ class AMQPClientAsync(AMQPClientSync):
:keyword custom_endpoint_address: The custom endpoint address to use for establishing a connection to
the Event Hubs service, allowing network requests to be routed through any application gateways or
other paths needed for the host environment. Default is None.
Unless specified otherwise, default transport type is TransportType.AmqpOverWebsockets.
If port is not specified in the `custom_endpoint_address`, by default port 443 will be used.
:paramtype custom_endpoint_address: str
:keyword connection_verify: Path to the custom CA_BUNDLE file of the SSL certificate which is used to
Expand Down Expand Up @@ -478,6 +479,7 @@ class SendClientAsync(SendClientSync, AMQPClientAsync):
:keyword custom_endpoint_address: The custom endpoint address to use for establishing a connection to
the Event Hubs service, allowing network requests to be routed through any application gateways or
other paths needed for the host environment. Default is None.
Unless specified otherwise, default transport type is TransportType.AmqpOverWebsockets.
If port is not specified in the `custom_endpoint_address`, by default port 443 will be used.
:paramtype custom_endpoint_address: str
:keyword connection_verify: Path to the custom CA_BUNDLE file of the SSL certificate which is used to
Expand Down Expand Up @@ -686,6 +688,7 @@ class ReceiveClientAsync(ReceiveClientSync, AMQPClientAsync):
:keyword custom_endpoint_address: The custom endpoint address to use for establishing a connection to
the Event Hubs service, allowing network requests to be routed through any application gateways or
other paths needed for the host environment. Default is None.
Unless specified otherwise, default transport type is TransportType.AmqpOverWebsockets.
If port is not specified in the `custom_endpoint_address`, by default port 443 will be used.
:paramtype custom_endpoint_address: str
:keyword connection_verify: Path to the custom CA_BUNDLE file of the SSL certificate which is used to
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ class AMQPClient(object): # pylint: disable=too-many-instance-attributes
:keyword custom_endpoint_address: The custom endpoint address to use for establishing a connection to
the service, allowing network requests to be routed through any application gateways or
other paths needed for the host environment. Default is None.
Unless specified otherwise, default transport type is TransportType.AmqpOverWebsockets.
If port is not specified in the `custom_endpoint_address`, by default port 443 will be used.
:paramtype custom_endpoint_address: str
:keyword connection_verify: Path to the custom CA_BUNDLE file of the SSL certificate which is used to
Expand Down Expand Up @@ -561,6 +562,7 @@ class SendClient(AMQPClient):
:keyword custom_endpoint_address: The custom endpoint address to use for establishing a connection to
the service, allowing network requests to be routed through any application gateways or
other paths needed for the host environment. Default is None.
Unless specified otherwise, default transport type is TransportType.AmqpOverWebsockets.
If port is not specified in the `custom_endpoint_address`, by default port 443 will be used.
:paramtype custom_endpoint_address: str
:keyword connection_verify: Path to the custom CA_BUNDLE file of the SSL certificate which is used to
Expand Down Expand Up @@ -786,6 +788,7 @@ class ReceiveClient(AMQPClient): # pylint:disable=too-many-instance-attributes
:keyword custom_endpoint_address: The custom endpoint address to use for establishing a connection to
the service, allowing network requests to be routed through any application gateways or
other paths needed for the host environment. Default is None.
Unless specified otherwise, default transport type is TransportType.AmqpOverWebsockets.
If port is not specified in the `custom_endpoint_address`, by default port 443 will be used.
:paramtype custom_endpoint_address: str
:keyword connection_verify: Path to the custom CA_BUNDLE file of the SSL certificate which is used to
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ class ServiceBusClient(object): # pylint: disable=client-accepts-api-version-ke
: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.
Unless specified otherwise, default transport type is TransportType.AmqpOverWebsockets.
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
Expand Down Expand Up @@ -233,6 +234,7 @@ def from_connection_string(
: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.
Unless specified otherwise, default transport type is TransportType.AmqpOverWebsockets.
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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ class ServiceBusClient(object): # pylint: disable=client-accepts-api-version-ke
: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.
Unless specified otherwise, default transport type is TransportType.AmqpOverWebsockets.
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
Expand Down Expand Up @@ -200,6 +201,7 @@ def from_connection_string(
: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.
Unless specified otherwise, default transport type is TransportType.AmqpOverWebsockets.
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
Expand Down

0 comments on commit 6d4038d

Please sign in to comment.