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/service-bus/src/serviceBusAtomManagementClient.ts
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -639,7 +639,7 @@ export class ServiceBusAdministrationClient extends ServiceClient {
639
639
* All queue properties must be set even though only a subset of them are actually updatable.
640
640
* Therefore, the suggested flow is to use the output from `getQueue()`, update the desired properties in it, and then pass the modified object to `updateQueue()`.
641
641
*
642
-
* See https://docs.microsoft.com/rest/api/servicebus/update-queue for more details.
642
+
* The properties that cannot be updated are marked as readonly in the `QueueProperties` interface.
643
643
*
644
644
* @param queue - Object representing the properties of the queue and the raw response.
645
645
* `requiresSession`, `requiresDuplicateDetection`, `enablePartitioning`, and `name` can't be updated after creating the queue.
@@ -1127,7 +1127,7 @@ export class ServiceBusAdministrationClient extends ServiceClient {
1127
1127
* All topic properties must be set even though only a subset of them are actually updatable.
1128
1128
* Therefore, the suggested flow is to use the output from `getTopic()`, update the desired properties in it, and then pass the modified object to `updateTopic()`.
1129
1129
*
1130
-
* See https://docs.microsoft.com/rest/api/servicebus/update-topic for more details.
1130
+
* The properties that cannot be updated are marked as readonly in the `TopicProperties` interface.
1131
1131
*
1132
1132
* @param topic - Object representing the properties of the topic and the raw response.
1133
1133
* `requiresDuplicateDetection`, `enablePartitioning`, and `name` can't be updated after creating the topic.
@@ -1642,6 +1642,7 @@ export class ServiceBusAdministrationClient extends ServiceClient {
1642
1642
* All subscription properties must be set even though only a subset of them are actually updatable.
1643
1643
* Therefore, the suggested flow is to use the output from `getSubscription()`, update the desired properties in it, and then pass the modified object to `updateSubscription()`.
1644
1644
*
1645
+
* The properties that cannot be updated are marked as readonly in the `SubscriptionProperties` interface.
1645
1646
* @param subscription - Object representing the properties of the subscription and the raw response.
1646
1647
* `subscriptionName`, `topicName`, and `requiresSession` can't be updated after creating the subscription.
1647
1648
* @param operationOptions - The options that can be used to abort, trace and control other configurations on the HTTP request.
0 commit comments