@@ -73,12 +73,12 @@ class QueueClient(StorageAccountHostsMixin, StorageEncryptionMixin):
7373 :keyword str secondary_hostname:
7474 The hostname of the secondary endpoint.
7575 :keyword message_encode_policy: The encoding policy to use on outgoing messages.
76- Default is not to encode messages. Other options include :class:` TextBase64EncodePolicy` ,
77- :class:` BinaryBase64EncodePolicy` or `None`.
76+ Default is not to encode messages. Other options include ~azure.storage.queue. TextBase64EncodePolicy,
77+ ~azure.storage.queue. BinaryBase64EncodePolicy or `None`.
7878 :paramtype message_encode_policy: BinaryBase64EncodePolicy or TextBase64EncodePolicy or None
7979 :keyword message_decode_policy: The decoding policy to use on incoming messages.
80- Default value is not to decode messages. Other options include :class:` TextBase64DecodePolicy` ,
81- :class:` BinaryBase64DecodePolicy` or `None`.
80+ Default value is not to decode messages. Other options include ~azure.storage.queue. TextBase64DecodePolicy,
81+ ~azure.storage.queue. BinaryBase64DecodePolicy or `None`.
8282 :paramtype message_decode_policy: BinaryBase64DecodePolicy or TextBase64DecodePolicy or None
8383 :keyword str audience: The audience to use when requesting tokens for Azure Active Directory
8484 authentication. Only has an effect when credential is of type TokenCredential. The value could be
@@ -167,12 +167,12 @@ def from_queue_url(
167167 :keyword str secondary_hostname:
168168 The hostname of the secondary endpoint.
169169 :keyword message_encode_policy: The encoding policy to use on outgoing messages.
170- Default is not to encode messages. Other options include :class:` TextBase64EncodePolicy` ,
171- :class:` BinaryBase64EncodePolicy` or `None`.
170+ Default is not to encode messages. Other options include ~azure.storage.queue. TextBase64EncodePolicy,
171+ ~azure.storage.queue. BinaryBase64EncodePolicy or `None`.
172172 :paramtype message_encode_policy: BinaryBase64EncodePolicy or TextBase64EncodePolicy or None
173173 :keyword message_decode_policy: The decoding policy to use on incoming messages.
174- Default value is not to decode messages. Other options include :class:` TextBase64DecodePolicy` ,
175- :class:` BinaryBase64DecodePolicy` or `None`.
174+ Default value is not to decode messages. Other options include ~azure.storage.queue. TextBase64DecodePolicy,
175+ ~azure.storage.queue. BinaryBase64DecodePolicy or `None`.
176176 :paramtype message_decode_policy: BinaryBase64DecodePolicy or TextBase64DecodePolicy or None
177177 :keyword str audience: The audience to use when requesting tokens for Azure Active Directory
178178 authentication. Only has an effect when credential is of type TokenCredential. The value could be
@@ -232,12 +232,12 @@ def from_connection_string(
232232 :keyword str secondary_hostname:
233233 The hostname of the secondary endpoint.
234234 :keyword message_encode_policy: The encoding policy to use on outgoing messages.
235- Default is not to encode messages. Other options include :class:` TextBase64EncodePolicy` ,
236- :class:` BinaryBase64EncodePolicy` or `None`.
235+ Default is not to encode messages. Other options include ~azure.storage.queue. TextBase64EncodePolicy,
236+ ~azure.storage.queue. BinaryBase64EncodePolicy or `None`.
237237 :paramtype message_encode_policy: BinaryBase64EncodePolicy or TextBase64EncodePolicy or None
238238 :keyword message_decode_policy: The decoding policy to use on incoming messages.
239- Default value is not to decode messages. Other options include :class:` TextBase64DecodePolicy` ,
240- :class:` BinaryBase64DecodePolicy` or `None`.
239+ Default value is not to decode messages. Other options include ~azure.storage.queue. TextBase64DecodePolicy,
240+ ~azure.storage.queue. BinaryBase64DecodePolicy or `None`.
241241 :paramtype message_decode_policy: BinaryBase64DecodePolicy or TextBase64DecodePolicy or None
242242 :keyword str audience: The audience to use when requesting tokens for Azure Active Directory
243243 authentication. Only has an effect when credential is of type TokenCredential. The value could be
@@ -325,7 +325,7 @@ def delete_queue(self, *, timeout: Optional[int] = None, **kwargs: Any) -> None:
325325
326326 Note that deleting a queue is likely to take at least 40 seconds to complete.
327327 If an operation is attempted against the queue while it was being deleted,
328- an :class:` HttpResponseError` will be thrown.
328+ an ~azure.core.exceptions. HttpResponseError will be thrown.
329329
330330 :keyword int timeout:
331331 Sets the server-side timeout for the operation in seconds. For more details see
@@ -467,7 +467,7 @@ def set_queue_access_policy(
467467 When you establish a stored access policy on a queue, it may take up to
468468 30 seconds to take effect. During this interval, a shared access signature
469469 that is associated with the stored access policy will throw an
470- :class:` HttpResponseError` until the access policy becomes active.
470+ ~azure.core.exceptions. HttpResponseError until the access policy becomes active.
471471
472472 :param signed_identifiers:
473473 SignedIdentifier access policies to associate with the queue.
@@ -550,7 +550,7 @@ def send_message(
550550 see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-queue
551551 #other-client--per-operation-configuration>`__.
552552 :return:
553- A :class:` ~azure.storage.queue.QueueMessage` object.
553+ A ~azure.storage.queue.QueueMessage object.
554554 This object is also populated with the content, although it is not
555555 returned from the service.
556556 :rtype: ~azure.storage.queue.QueueMessage
@@ -831,7 +831,7 @@ def update_message(
831831 see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-queue
832832 #other-client--per-operation-configuration>`__.
833833 :return:
834- A :class:` ~azure.storage.queue.QueueMessage` object. For convenience,
834+ A ~azure.storage.queue.QueueMessage object. For convenience,
835835 this object is also populated with the content, although it is not returned by the service.
836836 :rtype: ~azure.storage.queue.QueueMessage
837837
@@ -948,10 +948,10 @@ def peek_messages(
948948 see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-queue
949949 #other-client--per-operation-configuration>`__.
950950 :return:
951- A list of :class:` ~azure.storage.queue.QueueMessage` objects. Note that
951+ A list of ~azure.storage.queue.QueueMessage objects. Note that
952952 next_visible_on and pop_receipt will not be populated as peek does
953953 not pop the message and can only retrieve already visible messages.
954- :rtype: list [~azure.storage.queue.QueueMessage]
954+ :rtype: List [~azure.storage.queue.QueueMessage]
955955
956956 .. admonition:: Example:
957957
0 commit comments