You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sdk/servicebus/azure-servicebus/CHANGELOG.md
+4-6Lines changed: 4 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,12 @@
1
1
# Release History
2
2
3
-
## 7.3.4 (Unreleased)
3
+
## 7.4.0b1 (2021-10-05)
4
4
5
5
### Features Added
6
6
7
-
### Breaking Changes
8
-
9
-
### Bugs Fixed
10
-
11
-
### Other Changes
7
+
- Added support to create and update queues and topics of large message size to `ServiceBusAdministrationClient`. This feature is only available for Service Bus of Premium Tier.
8
+
- Methods`create_queue`, `create_topic`, `update_queue`, `update_topic` on `ServiceBusAdministrationClient` now take a new keyword argument `max_message_size_in_kilobytes`.
9
+
-`QueueProperties` and `TopicProperties` now have a new instance variable `max_message_size_in_kilobytes`.
Copy file name to clipboardExpand all lines: sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/aio/operations_async/_entity_operations_async.py
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -43,7 +43,7 @@ async def get(
43
43
self,
44
44
entity_name: str,
45
45
enrich: Optional[bool] =False,
46
-
api_version: Optional[str] ="2017_04",
46
+
api_version: Optional[str] ="2021_05",
47
47
**kwargs
48
48
) ->object:
49
49
"""Get the details about the Queue or Topic with the given entityName.
@@ -106,7 +106,7 @@ async def put(
106
106
self,
107
107
entity_name: str,
108
108
request_body: object,
109
-
api_version: Optional[str] ="2017_04",
109
+
api_version: Optional[str] ="2021_05",
110
110
if_match: Optional[str] =None,
111
111
**kwargs
112
112
) ->object:
@@ -183,7 +183,7 @@ async def put(
183
183
asyncdefdelete(
184
184
self,
185
185
entity_name: str,
186
-
api_version: Optional[str] ="2017_04",
186
+
api_version: Optional[str] ="2021_05",
187
187
**kwargs
188
188
) ->object:
189
189
"""Delete the Queue or Topic with the given entityName.
Copy file name to clipboardExpand all lines: sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/aio/operations_async/_namespace_operations_async.py
Copy file name to clipboardExpand all lines: sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/aio/operations_async/_rule_operations_async.py
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -45,7 +45,7 @@ async def get(
45
45
subscription_name: str,
46
46
rule_name: str,
47
47
enrich: Optional[bool] =False,
48
-
api_version: Optional[str] ="2017_04",
48
+
api_version: Optional[str] ="2021_05",
49
49
**kwargs
50
50
) ->object:
51
51
"""Get the details about the rule of a subscription of a topic.
@@ -116,7 +116,7 @@ async def put(
116
116
subscription_name: str,
117
117
rule_name: str,
118
118
request_body: object,
119
-
api_version: Optional[str] ="2017_04",
119
+
api_version: Optional[str] ="2021_05",
120
120
if_match: Optional[str] =None,
121
121
**kwargs
122
122
) ->object:
@@ -201,7 +201,7 @@ async def delete(
201
201
topic_name: str,
202
202
subscription_name: str,
203
203
rule_name: str,
204
-
api_version: Optional[str] ="2017_04",
204
+
api_version: Optional[str] ="2021_05",
205
205
**kwargs
206
206
) ->object:
207
207
"""Delete the rule with the given topicName, subscriptionName and ruleName.
Copy file name to clipboardExpand all lines: sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/aio/operations_async/_service_bus_management_client_operations_async.py
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ async def list_subscriptions(
24
24
topic_name: str,
25
25
skip: Optional[int] =0,
26
26
top: Optional[int] =100,
27
-
api_version: Optional[str] ="2017_04",
27
+
api_version: Optional[str] ="2021_05",
28
28
**kwargs
29
29
) ->object:
30
30
"""Get the details about the subscriptions of the given topic.
@@ -93,7 +93,7 @@ async def list_rules(
93
93
subscription_name: str,
94
94
skip: Optional[int] =0,
95
95
top: Optional[int] =100,
96
-
api_version: Optional[str] ="2017_04",
96
+
api_version: Optional[str] ="2021_05",
97
97
**kwargs
98
98
) ->object:
99
99
"""Get the details about the rules of the given topic subscription.
@@ -164,7 +164,7 @@ async def list_entities(
164
164
entity_type: str,
165
165
skip: Optional[int] =0,
166
166
top: Optional[int] =100,
167
-
api_version: Optional[str] ="2017_04",
167
+
api_version: Optional[str] ="2021_05",
168
168
**kwargs
169
169
) ->object:
170
170
"""Get the details about the entities of the given Service Bus namespace.
Copy file name to clipboardExpand all lines: sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/aio/operations_async/_subscription_operations_async.py
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,7 @@ async def get(
44
44
topic_name: str,
45
45
subscription_name: str,
46
46
enrich: Optional[bool] =False,
47
-
api_version: Optional[str] ="2017_04",
47
+
api_version: Optional[str] ="2021_05",
48
48
**kwargs
49
49
) ->object:
50
50
"""Get the details about the subscription of a topic.
@@ -111,7 +111,7 @@ async def put(
111
111
topic_name: str,
112
112
subscription_name: str,
113
113
request_body: object,
114
-
api_version: Optional[str] ="2017_04",
114
+
api_version: Optional[str] ="2021_05",
115
115
if_match: Optional[str] =None,
116
116
**kwargs
117
117
) ->object:
@@ -192,7 +192,7 @@ async def delete(
192
192
self,
193
193
topic_name: str,
194
194
subscription_name: str,
195
-
api_version: Optional[str] ="2017_04",
195
+
api_version: Optional[str] ="2021_05",
196
196
**kwargs
197
197
) ->object:
198
198
"""Delete the subscription with the given topicName and subscriptionName.
0 commit comments