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
-`listQueues` returns `PagedIterable<RouterQueue>` rather than `PagedIterable<RouterQueueItem>`
12
+
-`listDistributionPolicies` returns `PagedIterable<DistributionPolicy>` rather than `PagedIterable<DistributionPolicyItem>`
13
+
-`listClassificationPolicies` returns `PagedIterable<ClassificationPolicy>` rather than `PagedIterable<ClassificationPolicyItem>`
14
+
-`listExceptionPolicies` returns `PagedIterable<ExceptionPolicy>` rather than `PagedIterable<ExceptionPolicyItem>`
15
+
16
+
- Response objects of create, update, get and list methods are changed to return BinaryData.
17
+
- update, get, list and delete methods are updated to take RequestOptions in request instead of entity options classes like UpdateClassificationPolicyOptions.
18
+
19
+
#### RouterClient
20
+
-`listJobs` returns `PagedIterable<RouterJob>` rather than `PagedIterable<RouterJobItem>`
21
+
-`listWorkers` returns `PagedIterable<RouterWorker>` rather than `PagedIterable<RouterJobWorker>`
22
+
23
+
- Response objects of create, update, get and list methods are changed to return BinaryData.
24
+
- update, get, list and delete methods are updated to take RequestOptions in request instead of entity options classes like UpdateWorkerOptions.
25
+
26
+
##### RouterJobNote
27
+
- Changed constructor from `RouterJobNote()` to `RouterJobNote(string message)`
Copy file name to clipboardExpand all lines: sdk/communication/azure-communication-jobrouter/src/main/java/com/azure/communication/jobrouter/AzureCommunicationRoutingServiceVersion.java
+11-5Lines changed: 11 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,18 @@
1
1
// Copyright (c) Microsoft Corporation. All rights reserved.
2
2
// Licensed under the MIT License.
3
-
// Code generated by Microsoft (R) AutoRest Code Generator.
3
+
// Code generated by Microsoft (R) TypeSpec Code Generator.
4
4
5
5
packagecom.azure.communication.jobrouter;
6
6
7
7
importcom.azure.core.util.ServiceVersion;
8
8
9
-
/** Service version of AzureCommunicationRoutingServiceClient. */
9
+
/**
10
+
* Service version of AzureCommunicationRoutingServiceClient.
0 commit comments