Skip to content

Commit 63dabee

Browse files
committed
Update docs metadata
1 parent 599ebbf commit 63dabee

File tree

2 files changed

+19
-19
lines changed

2 files changed

+19
-19
lines changed

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

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ 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: 02/11/2022
6+
ms.date: 04/12/2022
77
ms.topic: reference
88
ms.prod: azure
99
ms.technology: azure
1010
ms.devlang: python
1111
ms.service: servicebus
1212
---
13-
# Azure Service Bus client library for Python - Version 7.6.0
13+
# Azure Service Bus client library for Python - Version 7.6.1
1414

1515

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

27-
[Source code](https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.6.0/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.6.0/sdk/servicebus/azure-servicebus/samples) | [Changelog](https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.6.0/sdk/servicebus/azure-servicebus/CHANGELOG.md)
27+
[Source code](https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.6.1/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.6.1/sdk/servicebus/azure-servicebus/samples) | [Changelog](https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.6.1/sdk/servicebus/azure-servicebus/CHANGELOG.md)
2828

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

9999
* [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.
100100

101-
* [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.6.0/sdk/servicebus/azure-servicebus/samples/sync_samples/send_queue.py).
101+
* [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.6.1/sdk/servicebus/azure-servicebus/samples/sync_samples/send_queue.py).
102102

103-
* [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.6.0/sdk/servicebus/azure-servicebus/samples/sync_samples/receive_queue.py).
103+
* [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.6.1/sdk/servicebus/azure-servicebus/samples/sync_samples/receive_queue.py).
104104

105105
* [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.
106106

@@ -117,7 +117,7 @@ The following sections provide several code snippets covering some of the most c
117117

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

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

122122
### Send messages to a queue
123123
> **NOTE:** see reference documentation [here][send_reference].
@@ -144,7 +144,7 @@ with ServiceBusClient.from_connection_string(connstr) as client:
144144

145145
> **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()`
146146
147-
> 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.6.0/sdk/servicebus/azure-servicebus/samples/sync_samples/schedule_messages_and_cancellation.py).
147+
> 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.6.1/sdk/servicebus/azure-servicebus/samples/sync_samples/schedule_messages_and_cancellation.py).
148148
149149
### Receive messages from a queue
150150

@@ -303,7 +303,7 @@ with ServiceBusClient.from_connection_string(connstr) as client:
303303

304304
#### [DeadLetter][deadletter_reference]
305305

306-
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.6.0/sdk/servicebus/azure-servicebus/samples/sync_samples/receive_deadlettered_messages.py))
306+
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.6.1/sdk/servicebus/azure-servicebus/samples/sync_samples/receive_deadlettered_messages.py))
307307

308308
```Python
309309
from azure.servicebus import ServiceBusClient
@@ -322,7 +322,7 @@ with ServiceBusClient.from_connection_string(connstr) as client:
322322
#### [Defer][defer_reference]
323323

324324
Defer is subtly different from the prior settlement methods. It prevents the message from being directly received from the queue
325-
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.6.0/sdk/servicebus/azure-servicebus/samples/sync_samples/receive_deferred_message_queue.py))
325+
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.6.1/sdk/servicebus/azure-servicebus/samples/sync_samples/receive_deferred_message_queue.py))
326326

327327
```Python
328328
from azure.servicebus import ServiceBusClient
@@ -475,7 +475,7 @@ Please view the [exceptions reference docs][exception_reference] for detailed de
475475

476476
### More sample code
477477

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

480480
### Additional documentation
481481

@@ -485,7 +485,7 @@ For more extensive documentation on the Service Bus service, see the [Service Bu
485485

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

490490
### Building uAMQP wheel from source
491491

@@ -526,15 +526,15 @@ contact [[email protected]](mailto:[email protected]) with any additio
526526
[service_bus_overview]: https://docs.microsoft.com/azure/service-bus-messaging/service-bus-messaging-overview
527527
[queue_status_codes]: https://docs.microsoft.com/rest/api/servicebus/create-queue#response-codes
528528
[service_bus_docs]: https://docs.microsoft.com/azure/service-bus/
529-
[service_bus_mgmt_docs]: https://docs.microsoft.com/python/api/overview/azure/servicebus/management?view=azure-python
529+
[service_bus_mgmt_docs]: https://docs.microsoft.com/python/api/azure-mgmt-servicebus/?view=azure-python
530530
[queue_concept]: https://docs.microsoft.com/azure/service-bus-messaging/service-bus-messaging-overview#queues
531531
[topic_concept]: https://docs.microsoft.com/azure/service-bus-messaging/service-bus-messaging-overview#topics
532532
[subscription_concept]: https://docs.microsoft.com/azure/service-bus-messaging/service-bus-queues-topics-subscriptions#topics-and-subscriptions
533533
[azure_namespace_creation]: https://docs.microsoft.com/azure/service-bus-messaging/service-bus-create-namespace-portal
534-
[servicebus_management_repository]: https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.6.0/sdk/servicebus/azure-mgmt-servicebus
534+
[servicebus_management_repository]: https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.6.1/sdk/servicebus/azure-mgmt-servicebus
535535
[get_servicebus_conn_str]: https://docs.microsoft.com/azure/service-bus-messaging/service-bus-create-namespace-portal#get-the-connection-string
536536
[servicebus_aad_authentication]: https://docs.microsoft.com/azure/service-bus-messaging/service-bus-authentication-and-authorization
537-
[token_credential_interface]: https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.6.0/sdk/core/azure-core/azure/core/credentials.py
537+
[token_credential_interface]: https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.6.1/sdk/core/azure-core/azure/core/credentials.py
538538
[pypi_azure_identity]: https://pypi.org/project/azure-identity/
539539
[message_reference]: https://azuresdkdocs.blob.core.windows.net/$web/python/azure-servicebus/latest/azure.servicebus.html#azure.servicebus.ServiceBusMessage
540540
[receiver_reference]: https://azuresdkdocs.blob.core.windows.net/$web/python/azure-servicebus/latest/azure.servicebus.html#azure.servicebus.ServiceBusReceiver
@@ -553,7 +553,7 @@ contact [[email protected]](mailto:[email protected]) with any additio
553553
[exception_reference]: https://azuresdkdocs.blob.core.windows.net/$web/python/azure-servicebus/latest/azure.servicebus.html#module-azure.servicebus.exceptions
554554
[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
555555
[topic_reference]: https://azuresdkdocs.blob.core.windows.net/$web/python/azure-servicebus/latest/azure.servicebus.html?highlight=topic#azure.servicebus.ServiceBusClient.get_topic_sender
556-
[sample_authenticate_client_connstr]: https://github.com/Azure/azure-sdk-for-python/blob/azure-servicebus_7.6.0/sdk/servicebus/azure-servicebus/samples/sync_samples/authenticate_client_connstr.py
557-
[sample_authenticate_client_aad]: https://github.com/Azure/azure-sdk-for-python/blob/azure-servicebus_7.6.0/sdk/servicebus/azure-servicebus/samples/sync_samples/client_identity_authentication.py
558-
[migration_guide]: https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.6.0/sdk/servicebus/azure-servicebus/migration_guide.md
556+
[sample_authenticate_client_connstr]: https://github.com/Azure/azure-sdk-for-python/blob/azure-servicebus_7.6.1/sdk/servicebus/azure-servicebus/samples/sync_samples/authenticate_client_connstr.py
557+
[sample_authenticate_client_aad]: https://github.com/Azure/azure-sdk-for-python/blob/azure-servicebus_7.6.1/sdk/servicebus/azure-servicebus/samples/sync_samples/client_identity_authentication.py
558+
[migration_guide]: https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.6.1/sdk/servicebus/azure-servicebus/migration_guide.md
559559

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.6.0",
3+
"Version": "7.6.1",
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": "2022-02-10"
13+
"ReleaseStatus": "2022-04-11"
1414
}

0 commit comments

Comments
 (0)