Skip to content

Commit 0ba0ca2

Browse files
committed
Update docs metadata
1 parent 672d53b commit 0ba0ca2

File tree

2 files changed

+24
-18
lines changed

2 files changed

+24
-18
lines changed

docs-ref-services/latest/servicebus-readme.md

Lines changed: 22 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ title: Azure Service Bus client library for Python
33
keywords: Azure, python, SDK, API, azure-servicebus, servicebus
44
author: annatisch
55
ms.author: antisch
6-
ms.date: 03/09/2023
6+
ms.date: 04/11/2023
77
ms.topic: reference
88
ms.devlang: python
99
ms.service: servicebus
1010
---
11-
# Azure Service Bus client library for Python - version 7.8.3
11+
# Azure Service Bus client library for Python - version 7.9.0
1212

1313

1414
Azure Service Bus is a high performance cloud-managed messaging service for providing real-time and fault-tolerant communication between distributed senders and receivers.
@@ -22,7 +22,13 @@ Use the Service Bus client library for Python to communicate between application
2222
* Send and receive messages within your Service Bus channels.
2323
* Utilize message locks, sessions, and dead letter functionality to implement complex messaging patterns.
2424

25-
[Source code](https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.8.3/sdk/servicebus/azure-servicebus/) | [Package (PyPi)][pypi] | [API reference documentation][api_docs] | [Product documentation][product_docs] | [Samples](https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.8.3/sdk/servicebus/azure-servicebus/samples) | [Changelog](https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.8.3/sdk/servicebus/azure-servicebus/CHANGELOG.md)
25+
[Source code](https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.9.0/sdk/servicebus/azure-servicebus/)
26+
| [Package (PyPi)][pypi]
27+
| [Package (Conda)](https://anaconda.org/microsoft/azure-servicebus)
28+
| [API reference documentation][api_docs]
29+
| [Product documentation][product_docs]
30+
| [Samples](https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.9.0/sdk/servicebus/azure-servicebus/samples)
31+
| [Changelog](https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.9.0/sdk/servicebus/azure-servicebus/CHANGELOG.md)
2632

2733
**NOTE**: If you are using version 0.50 or lower and want to migrate to the latest version
2834
of this package please look at our [migration guide to move from Service Bus V0.50 to Service Bus V7][migration_guide].
@@ -96,9 +102,9 @@ To interact with these resources, one should be familiar with the following SDK
96102

97103
* [ServiceBusClient][client_reference]: This is the object a user should first initialize to connect to a Service Bus Namespace. To interact with a queue, topic, or subscription, one would spawn a sender or receiver off of this client.
98104

99-
* [ServiceBusSender][sender_reference]: To send messages to a Queue or Topic, one would use the corresponding `get_queue_sender` or `get_topic_sender` method off of a `ServiceBusClient` instance as seen [here](https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.8.3/sdk/servicebus/azure-servicebus/samples/sync_samples/send_queue.py).
105+
* [ServiceBusSender][sender_reference]: To send messages to a Queue or Topic, one would use the corresponding `get_queue_sender` or `get_topic_sender` method off of a `ServiceBusClient` instance as seen [here](https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.9.0/sdk/servicebus/azure-servicebus/samples/sync_samples/send_queue.py).
100106

101-
* [ServiceBusReceiver][receiver_reference]: To receive messages from a Queue or Subscription, one would use the corresponding `get_queue_receiver` or `get_subscription_receiver` method off of a `ServiceBusClient` instance as seen [here](https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.8.3/sdk/servicebus/azure-servicebus/samples/sync_samples/receive_queue.py).
107+
* [ServiceBusReceiver][receiver_reference]: To receive messages from a Queue or Subscription, one would use the corresponding `get_queue_receiver` or `get_subscription_receiver` method off of a `ServiceBusClient` instance as seen [here](https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.9.0/sdk/servicebus/azure-servicebus/samples/sync_samples/receive_queue.py).
102108

103109
* [ServiceBusMessage][message_reference]: When sending, this is the type you will construct to contain your payload. When receiving, this is where you will access the payload.
104110

@@ -115,7 +121,7 @@ The following sections provide several code snippets covering some of the most c
115121

116122
To perform management tasks such as creating and deleting queues/topics/subscriptions, please utilize the azure-mgmt-servicebus library, available [here][servicebus_management_repository].
117123

118-
Please find further examples in the [samples](https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.8.3/sdk/servicebus/azure-servicebus/samples) directory demonstrating common Service Bus scenarios such as sending, receiving, session management and message handling.
124+
Please find further examples in the [samples](https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.9.0/sdk/servicebus/azure-servicebus/samples) directory demonstrating common Service Bus scenarios such as sending, receiving, session management and message handling.
119125

120126
### Send messages to a queue
121127
> **NOTE:** see reference documentation [here][send_reference].
@@ -142,7 +148,7 @@ with ServiceBusClient.from_connection_string(connstr) as client:
142148

143149
> **NOTE:** A message may be scheduled for delayed delivery using the `ServiceBusSender.schedule_messages()` method, or by specifying `ServiceBusMessage.scheduled_enqueue_time_utc` before calling `ServiceBusSender.send_messages()`
144150
145-
> For more detail on scheduling and schedule cancellation please see a sample [here](https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.8.3/sdk/servicebus/azure-servicebus/samples/sync_samples/schedule_messages_and_cancellation.py).
151+
> For more detail on scheduling and schedule cancellation please see a sample [here](https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.9.0/sdk/servicebus/azure-servicebus/samples/sync_samples/schedule_messages_and_cancellation.py).
146152
147153
### Receive messages from a queue
148154

@@ -301,7 +307,7 @@ with ServiceBusClient.from_connection_string(connstr) as client:
301307

302308
#### [DeadLetter][deadletter_reference]
303309

304-
Transfer the message from the primary queue into a special "dead-letter sub-queue" where it can be accessed using the `ServiceBusClient.get_<queue|subscription>_receiver` function with parameter `sub_queue=ServiceBusSubQueue.DEAD_LETTER` and consumed from like any other receiver. (see sample [here](https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.8.3/sdk/servicebus/azure-servicebus/samples/sync_samples/receive_deadlettered_messages.py))
310+
Transfer the message from the primary queue into a special "dead-letter sub-queue" where it can be accessed using the `ServiceBusClient.get_<queue|subscription>_receiver` function with parameter `sub_queue=ServiceBusSubQueue.DEAD_LETTER` and consumed from like any other receiver. (see sample [here](https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.9.0/sdk/servicebus/azure-servicebus/samples/sync_samples/receive_deadlettered_messages.py))
305311

306312
```python
307313
from azure.servicebus import ServiceBusClient
@@ -320,7 +326,7 @@ with ServiceBusClient.from_connection_string(connstr) as client:
320326
#### [Defer][defer_reference]
321327

322328
Defer is subtly different from the prior settlement methods. It prevents the message from being directly received from the queue
323-
by setting it aside such that it must be received by sequence number in a call to `ServiceBusReceiver.receive_deferred_messages` (see sample [here](https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.8.3/sdk/servicebus/azure-servicebus/samples/sync_samples/receive_deferred_message_queue.py))
329+
by setting it aside such that it must be received by sequence number in a call to `ServiceBusReceiver.receive_deferred_messages` (see sample [here](https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.9.0/sdk/servicebus/azure-servicebus/samples/sync_samples/receive_deferred_message_queue.py))
324330

325331
```python
326332
from azure.servicebus import ServiceBusClient
@@ -473,7 +479,7 @@ Please view the [exceptions reference docs][exception_reference] for detailed de
473479

474480
### More sample code
475481

476-
Please find further examples in the [samples](https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.8.3/sdk/servicebus/azure-servicebus/samples) directory demonstrating common Service Bus scenarios such as sending, receiving, session management and message handling.
482+
Please find further examples in the [samples](https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.9.0/sdk/servicebus/azure-servicebus/samples) directory demonstrating common Service Bus scenarios such as sending, receiving, session management and message handling.
477483

478484
### Additional documentation
479485

@@ -483,7 +489,7 @@ For more extensive documentation on the Service Bus service, see the [Service Bu
483489

484490
For users seeking to perform management operations against ServiceBus (Creating a queue/topic/etc, altering filter rules, enumerating entities)
485491
please see the [azure-mgmt-servicebus documentation][service_bus_mgmt_docs] for API documentation. Terse usage examples can be found
486-
[here](https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.8.3/sdk/servicebus/azure-mgmt-servicebus/tests) as well.
492+
[here](https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.9.0/sdk/servicebus/azure-mgmt-servicebus/tests) as well.
487493

488494
### Building uAMQP wheel from source
489495

@@ -529,10 +535,10 @@ contact [[email protected]](mailto:[email protected]) with any additio
529535
[topic_concept]: /azure/service-bus-messaging/service-bus-messaging-overview#topics
530536
[subscription_concept]: /azure/service-bus-messaging/service-bus-queues-topics-subscriptions#topics-and-subscriptions
531537
[azure_namespace_creation]: /azure/service-bus-messaging/service-bus-create-namespace-portal
532-
[servicebus_management_repository]: https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.8.3/sdk/servicebus/azure-mgmt-servicebus
538+
[servicebus_management_repository]: https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.9.0/sdk/servicebus/azure-mgmt-servicebus
533539
[get_servicebus_conn_str]: /azure/service-bus-messaging/service-bus-create-namespace-portal#get-the-connection-string
534540
[servicebus_aad_authentication]: /azure/service-bus-messaging/service-bus-authentication-and-authorization
535-
[token_credential_interface]: https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.8.3/sdk/core/azure-core/azure/core/credentials.py
541+
[token_credential_interface]: https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.9.0/sdk/core/azure-core/azure/core/credentials.py
536542
[pypi_azure_identity]: https://pypi.org/project/azure-identity/
537543
[message_reference]: https://azuresdkdocs.blob.core.windows.net/$web/python/azure-servicebus/latest/azure.servicebus.html#azure.servicebus.ServiceBusMessage
538544
[receiver_reference]: https://azuresdkdocs.blob.core.windows.net/$web/python/azure-servicebus/latest/azure.servicebus.html#azure.servicebus.ServiceBusReceiver
@@ -551,7 +557,7 @@ contact [[email protected]](mailto:[email protected]) with any additio
551557
[exception_reference]: https://azuresdkdocs.blob.core.windows.net/$web/python/azure-servicebus/latest/azure.servicebus.html#module-azure.servicebus.exceptions
552558
[subscription_reference]: https://azuresdkdocs.blob.core.windows.net/$web/python/azure-servicebus/latest/azure.servicebus.aio.html?highlight=subscription#azure.servicebus.aio.ServiceBusClient.get_subscription_receiver
553559
[topic_reference]: https://azuresdkdocs.blob.core.windows.net/$web/python/azure-servicebus/latest/azure.servicebus.html?highlight=topic#azure.servicebus.ServiceBusClient.get_topic_sender
554-
[sample_authenticate_client_connstr]: https://github.com/Azure/azure-sdk-for-python/blob/azure-servicebus_7.8.3/sdk/servicebus/azure-servicebus/samples/sync_samples/authenticate_client_connstr.py
555-
[sample_authenticate_client_aad]: https://github.com/Azure/azure-sdk-for-python/blob/azure-servicebus_7.8.3/sdk/servicebus/azure-servicebus/samples/sync_samples/client_identity_authentication.py
556-
[migration_guide]: https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.8.3/sdk/servicebus/azure-servicebus/migration_guide.md
560+
[sample_authenticate_client_connstr]: https://github.com/Azure/azure-sdk-for-python/blob/azure-servicebus_7.9.0/sdk/servicebus/azure-servicebus/samples/sync_samples/authenticate_client_connstr.py
561+
[sample_authenticate_client_aad]: https://github.com/Azure/azure-sdk-for-python/blob/azure-servicebus_7.9.0/sdk/servicebus/azure-servicebus/samples/sync_samples/client_identity_authentication.py
562+
[migration_guide]: https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.9.0/sdk/servicebus/azure-servicebus/migration_guide.md
557563

metadata/latest/azure-servicebus.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"Name": "azure-servicebus",
3-
"Version": "7.8.3",
3+
"Version": "7.9.0",
44
"DevVersion": null,
55
"DirectoryPath": "sdk/servicebus/azure-servicebus",
66
"ServiceDirectory": "servicebus",
@@ -10,5 +10,5 @@
1010
"SdkType": "client",
1111
"IsNewSdk": true,
1212
"ArtifactName": "azure-servicebus",
13-
"ReleaseStatus": "2023-03-09"
13+
"ReleaseStatus": "2023-04-11"
1414
}

0 commit comments

Comments
 (0)