Skip to content

Commit 40544ab

Browse files
author
SDKAuto
committed
CodeGen from PR 33659 in Azure/azure-rest-api-specs
Merge f53428eb243ddbb4bdc3c121ab91539d5bad66c9 into 9d92b4dae0a6ac2f23afeffecce650bb008ed688
1 parent 98281a1 commit 40544ab

File tree

75 files changed

+2285
-67
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+2285
-67
lines changed

sdk/devcenter/azure-developer-devcenter/CHANGELOG.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,15 @@
22

33
## 1.1.0-beta.1 (Unreleased)
44

5-
### Features Added
6-
75
### Breaking Changes
86

9-
### Bugs Fixed
7+
#### `models.DevCenterOperationDetails` was modified
108

11-
### Other Changes
9+
* `java.lang.Object getProperties()` -> `java.util.Map getProperties()`
10+
11+
#### `models.DevBox` was modified
12+
13+
* `setLocalAdministratorStatus(models.LocalAdministratorStatus)` was removed
1214

1315
## 1.0.8 (2025-03-24)
1416

sdk/devcenter/azure-developer-devcenter/src/main/java/com/azure/developer/devcenter/DeploymentEnvironmentsAsyncClient.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,9 @@ public PollerFlux<BinaryData, BinaryData> beginCreateOrUpdateEnvironment(String
293293
* startTime: OffsetDateTime (Optional)
294294
* endTime: OffsetDateTime (Optional)
295295
* percentComplete: Double (Optional)
296-
* properties: Object (Optional)
296+
* properties (Optional): {
297+
* String: Object (Required)
298+
* }
297299
* error (Optional): {
298300
* code: String (Required)
299301
* message: String (Required)

sdk/devcenter/azure-developer-devcenter/src/main/java/com/azure/developer/devcenter/DeploymentEnvironmentsClient.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,9 @@ public SyncPoller<BinaryData, BinaryData> beginCreateOrUpdateEnvironment(String
288288
* startTime: OffsetDateTime (Optional)
289289
* endTime: OffsetDateTime (Optional)
290290
* percentComplete: Double (Optional)
291-
* properties: Object (Optional)
291+
* properties (Optional): {
292+
* String: Object (Required)
293+
* }
292294
* error (Optional): {
293295
* code: String (Required)
294296
* message: String (Required)

sdk/devcenter/azure-developer-devcenter/src/main/java/com/azure/developer/devcenter/DevBoxesAsyncClient.java

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -633,7 +633,9 @@ public PollerFlux<BinaryData, BinaryData> beginCreateDevBox(String projectName,
633633
* startTime: OffsetDateTime (Optional)
634634
* endTime: OffsetDateTime (Optional)
635635
* percentComplete: Double (Optional)
636-
* properties: Object (Optional)
636+
* properties (Optional): {
637+
* String: Object (Required)
638+
* }
637639
* error (Optional): {
638640
* code: String (Required)
639641
* message: String (Required)
@@ -682,7 +684,9 @@ public PollerFlux<BinaryData, Void> beginDeleteDevBox(String projectName, String
682684
* startTime: OffsetDateTime (Optional)
683685
* endTime: OffsetDateTime (Optional)
684686
* percentComplete: Double (Optional)
685-
* properties: Object (Optional)
687+
* properties (Optional): {
688+
* String: Object (Required)
689+
* }
686690
* error (Optional): {
687691
* code: String (Required)
688692
* message: String (Required)
@@ -738,7 +742,9 @@ public PollerFlux<BinaryData, BinaryData> beginStartDevBox(String projectName, S
738742
* startTime: OffsetDateTime (Optional)
739743
* endTime: OffsetDateTime (Optional)
740744
* percentComplete: Double (Optional)
741-
* properties: Object (Optional)
745+
* properties (Optional): {
746+
* String: Object (Required)
747+
* }
742748
* error (Optional): {
743749
* code: String (Required)
744750
* message: String (Required)
@@ -787,7 +793,9 @@ public PollerFlux<BinaryData, BinaryData> beginStopDevBox(String projectName, St
787793
* startTime: OffsetDateTime (Optional)
788794
* endTime: OffsetDateTime (Optional)
789795
* percentComplete: Double (Optional)
790-
* properties: Object (Optional)
796+
* properties (Optional): {
797+
* String: Object (Required)
798+
* }
791799
* error (Optional): {
792800
* code: String (Required)
793801
* message: String (Required)

sdk/devcenter/azure-developer-devcenter/src/main/java/com/azure/developer/devcenter/DevBoxesClient.java

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,9 @@ public SyncPoller<BinaryData, BinaryData> beginCreateDevBox(String projectName,
627627
* startTime: OffsetDateTime (Optional)
628628
* endTime: OffsetDateTime (Optional)
629629
* percentComplete: Double (Optional)
630-
* properties: Object (Optional)
630+
* properties (Optional): {
631+
* String: Object (Required)
632+
* }
631633
* error (Optional): {
632634
* code: String (Required)
633635
* message: String (Required)
@@ -676,7 +678,9 @@ public SyncPoller<BinaryData, Void> beginDeleteDevBox(String projectName, String
676678
* startTime: OffsetDateTime (Optional)
677679
* endTime: OffsetDateTime (Optional)
678680
* percentComplete: Double (Optional)
679-
* properties: Object (Optional)
681+
* properties (Optional): {
682+
* String: Object (Required)
683+
* }
680684
* error (Optional): {
681685
* code: String (Required)
682686
* message: String (Required)
@@ -732,7 +736,9 @@ public SyncPoller<BinaryData, BinaryData> beginStartDevBox(String projectName, S
732736
* startTime: OffsetDateTime (Optional)
733737
* endTime: OffsetDateTime (Optional)
734738
* percentComplete: Double (Optional)
735-
* properties: Object (Optional)
739+
* properties (Optional): {
740+
* String: Object (Required)
741+
* }
736742
* error (Optional): {
737743
* code: String (Required)
738744
* message: String (Required)
@@ -781,7 +787,9 @@ public SyncPoller<BinaryData, BinaryData> beginStopDevBox(String projectName, St
781787
* startTime: OffsetDateTime (Optional)
782788
* endTime: OffsetDateTime (Optional)
783789
* percentComplete: Double (Optional)
784-
* properties: Object (Optional)
790+
* properties (Optional): {
791+
* String: Object (Required)
792+
* }
785793
* error (Optional): {
786794
* code: String (Required)
787795
* message: String (Required)

sdk/devcenter/azure-developer-devcenter/src/main/java/com/azure/developer/devcenter/implementation/DeploymentEnvironmentsClientImpl.java

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1596,7 +1596,9 @@ public SyncPoller<DevCenterOperationDetails, DevCenterEnvironment> beginCreateOr
15961596
* startTime: OffsetDateTime (Optional)
15971597
* endTime: OffsetDateTime (Optional)
15981598
* percentComplete: Double (Optional)
1599-
* properties: Object (Optional)
1599+
* properties (Optional): {
1600+
* String: Object (Required)
1601+
* }
16001602
* error (Optional): {
16011603
* code: String (Required)
16021604
* message: String (Required)
@@ -1648,7 +1650,9 @@ private Mono<Response<BinaryData>> deleteEnvironmentWithResponseAsync(String pro
16481650
* startTime: OffsetDateTime (Optional)
16491651
* endTime: OffsetDateTime (Optional)
16501652
* percentComplete: Double (Optional)
1651-
* properties: Object (Optional)
1653+
* properties (Optional): {
1654+
* String: Object (Required)
1655+
* }
16521656
* error (Optional): {
16531657
* code: String (Required)
16541658
* message: String (Required)
@@ -1698,7 +1702,9 @@ private Response<BinaryData> deleteEnvironmentWithResponse(String projectName, S
16981702
* startTime: OffsetDateTime (Optional)
16991703
* endTime: OffsetDateTime (Optional)
17001704
* percentComplete: Double (Optional)
1701-
* properties: Object (Optional)
1705+
* properties (Optional): {
1706+
* String: Object (Required)
1707+
* }
17021708
* error (Optional): {
17031709
* code: String (Required)
17041710
* message: String (Required)
@@ -1754,7 +1760,9 @@ public PollerFlux<BinaryData, Void> beginDeleteEnvironmentAsync(String projectNa
17541760
* startTime: OffsetDateTime (Optional)
17551761
* endTime: OffsetDateTime (Optional)
17561762
* percentComplete: Double (Optional)
1757-
* properties: Object (Optional)
1763+
* properties (Optional): {
1764+
* String: Object (Required)
1765+
* }
17581766
* error (Optional): {
17591767
* code: String (Required)
17601768
* message: String (Required)
@@ -1810,7 +1818,9 @@ public SyncPoller<BinaryData, Void> beginDeleteEnvironment(String projectName, S
18101818
* startTime: OffsetDateTime (Optional)
18111819
* endTime: OffsetDateTime (Optional)
18121820
* percentComplete: Double (Optional)
1813-
* properties: Object (Optional)
1821+
* properties (Optional): {
1822+
* String: Object (Required)
1823+
* }
18141824
* error (Optional): {
18151825
* code: String (Required)
18161826
* message: String (Required)
@@ -1866,7 +1876,9 @@ public PollerFlux<DevCenterOperationDetails, Void> beginDeleteEnvironmentWithMod
18661876
* startTime: OffsetDateTime (Optional)
18671877
* endTime: OffsetDateTime (Optional)
18681878
* percentComplete: Double (Optional)
1869-
* properties: Object (Optional)
1879+
* properties (Optional): {
1880+
* String: Object (Required)
1881+
* }
18701882
* error (Optional): {
18711883
* code: String (Required)
18721884
* message: String (Required)

0 commit comments

Comments
 (0)