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
[Service Bus] Service Bus Namespace API Topic, Subscription, Rule and NamespaceProperties (#12227)
* Since resource names can be programmatically constructed, add scrubber at base preparer level so as to ensure recordings get the real resource name swapped out with a consistent moniker.
* In CI (but not locally) self.test_class_instance was not set before _preparer_wrapper is called, and thus self.is_live was failing. Since we have the test_class_instance, let's just use that.
* Merge SB management client to central repo dev branch (#12205)
* resource_moniker isn't guaranteed to be populated, so use moniker instead for default scrubbing strategy.
Add remaining notes for how to run Keyvault tests to mgmt_settings_fake.
* Update validation and type hints
* Update models from swagger
* Fix pylint
* Fix update_subscription
* Fix mypy errors
* Remove start_index and max_page_size of list operations
* add test and fix minor bugs
* fix pylint
* skip test of list with param and update recordings
* Update msrest dependency to 0.6.17
* Fix code review feedback
* Fix pylint and mypy error
* Small fix type annotation
* Do not call copy() in update_xxx
* Update ivar
* Link to swagger file in repo
* clear queue/topic before the actual test
Co-authored-by: Kieran Brantner-Magee <[email protected]>
Co-authored-by: Adam Ling <[email protected]>
Copy file name to clipboardExpand all lines: sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/aio/_service_bus_management_client_async.py
+19-4
Original file line number
Diff line number
Diff line change
@@ -12,16 +12,25 @@
12
12
frommsrestimportDeserializer, Serializer
13
13
14
14
from ._configuration_asyncimportServiceBusManagementClientConfiguration
15
-
from .operations_asyncimportQueueOperations
15
+
from .operations_asyncimportEntityOperations
16
16
from .operations_asyncimportServiceBusManagementClientOperationsMixin
17
+
from .operations_asyncimportSubscriptionOperations
Copy file name to clipboardExpand all lines: sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/aio/operations_async/_entity_operations_async.py
0 commit comments