SBSubscription Class
Description of subscription resource.
Variables are only populated by the server, and will be ignored when sending a request.
- Inheritance
-
azure.mgmt.servicebus.v2021_06_01_preview.models._models_py3.ResourceSBSubscription
Constructor
SBSubscription(*, lock_duration: timedelta | None = None, requires_session: bool | None = None, default_message_time_to_live: timedelta | None = None, dead_lettering_on_filter_evaluation_exceptions: bool | None = None, dead_lettering_on_message_expiration: bool | None = None, duplicate_detection_history_time_window: timedelta | None = None, max_delivery_count: int | None = None, status: str | _models.EntityStatus | None = None, enable_batched_operations: bool | None = None, auto_delete_on_idle: timedelta | None = None, forward_to: str | None = None, forward_dead_lettered_messages_to: str | None = None, is_client_affine: bool | None = None, client_affine_properties: _models.SBClientAffineProperties | None = None, **kwargs: Any)
Keyword-Only Parameters
Name | Description |
---|---|
lock_duration
|
ISO 8061 lock duration timespan for the subscription. The default value is 1 minute. |
requires_session
|
Value indicating if a subscription supports the concept of sessions. |
default_message_time_to_live
|
ISO 8061 Default message timespan to live value. This is the duration after which the message expires, starting from when the message is sent to Service Bus. This is the default value used when TimeToLive is not set on a message itself. |
dead_lettering_on_filter_evaluation_exceptions
|
Value that indicates whether a subscription has dead letter support on filter evaluation exceptions. |
dead_lettering_on_message_expiration
|
Value that indicates whether a subscription has dead letter support when a message expires. |
duplicate_detection_history_time_window
|
ISO 8601 timeSpan structure that defines the duration of the duplicate detection history. The default value is 10 minutes. |
max_delivery_count
|
Number of maximum deliveries. |
status
|
str or
EntityStatus
Enumerates the possible values for the status of a messaging entity. Known values are: "Active", "Disabled", "Restoring", "SendDisabled", "ReceiveDisabled", "Creating", "Deleting", "Renaming", and "Unknown". |
enable_batched_operations
|
Value that indicates whether server-side batched operations are enabled. |
auto_delete_on_idle
|
ISO 8061 timeSpan idle interval after which the topic is automatically deleted. The minimum duration is 5 minutes. |
forward_to
|
Queue/Topic name to forward the messages. |
forward_dead_lettered_messages_to
|
Queue/Topic name to forward the Dead Letter message. |
is_client_affine
|
Value that indicates whether the subscription has an affinity to the client id. |
client_affine_properties
|
Properties specific to client affine subscriptions. |
Variables
Name | Description |
---|---|
id
|
Resource Id. |
name
|
Resource name. |
type
|
Resource type. |
system_data
|
The system meta data relating to this resource. |
message_count
|
Number of messages. |
created_at
|
Exact time the message was created. |
accessed_at
|
Last time there was a receive request to this subscription. |
updated_at
|
The exact time the message was updated. |
count_details
|
Message count details. |
lock_duration
|
ISO 8061 lock duration timespan for the subscription. The default value is 1 minute. |
requires_session
|
Value indicating if a subscription supports the concept of sessions. |
default_message_time_to_live
|
ISO 8061 Default message timespan to live value. This is the duration after which the message expires, starting from when the message is sent to Service Bus. This is the default value used when TimeToLive is not set on a message itself. |
dead_lettering_on_filter_evaluation_exceptions
|
Value that indicates whether a subscription has dead letter support on filter evaluation exceptions. |
dead_lettering_on_message_expiration
|
Value that indicates whether a subscription has dead letter support when a message expires. |
duplicate_detection_history_time_window
|
ISO 8601 timeSpan structure that defines the duration of the duplicate detection history. The default value is 10 minutes. |
max_delivery_count
|
Number of maximum deliveries. |
status
|
str or
EntityStatus
Enumerates the possible values for the status of a messaging entity. Known values are: "Active", "Disabled", "Restoring", "SendDisabled", "ReceiveDisabled", "Creating", "Deleting", "Renaming", and "Unknown". |
enable_batched_operations
|
Value that indicates whether server-side batched operations are enabled. |
auto_delete_on_idle
|
ISO 8061 timeSpan idle interval after which the topic is automatically deleted. The minimum duration is 5 minutes. |
forward_to
|
Queue/Topic name to forward the messages. |
forward_dead_lettered_messages_to
|
Queue/Topic name to forward the Dead Letter message. |
is_client_affine
|
Value that indicates whether the subscription has an affinity to the client id. |
client_affine_properties
|
Properties specific to client affine subscriptions. |
Azure SDK for Python