Skip to content

Commit 3b3d47d

Browse files
committed
mgmt, local generation for Container Service - 2024-05-01
1 parent 9365f24 commit 3b3d47d

File tree

157 files changed

+4077
-4336
lines changed

Some content is hidden

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

157 files changed

+4077
-4336
lines changed

sdk/resourcemanager/api-specs.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
"dir": "azure-resourcemanager-containerservice",
7171
"source": "specification/containerservice/resource-manager/Microsoft.ContainerService/aks/readme.md",
7272
"package": "com.azure.resourcemanager.containerservice",
73-
"args": "--tag=package-2024-02 --modelerfour.lenient-model-deduplication --preserve-model=ContainerServiceVMSizeTypes --rename-model=Ossku:OSSku"
73+
"args": "--tag=package-2024-05 --modelerfour.lenient-model-deduplication --preserve-model=ContainerServiceVMSizeTypes --rename-model=Ossku:OSSku"
7474
},
7575
"containerservice-hybrid": {
7676
"dir": "../resourcemanagerhybrid/azure-resourcemanager-containerservice",

sdk/resourcemanager/azure-resourcemanager-containerservice/CHANGELOG.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,11 @@
22

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

5-
### Features Added
6-
7-
### Breaking Changes
5+
### Other Changes
86

9-
### Bugs Fixed
7+
#### Dependency Updates
108

11-
### Other Changes
9+
- Updated `api-version` to `2024-05-01`.
1210

1311
## 2.40.0 (2024-06-24)
1412

sdk/resourcemanager/azure-resourcemanager-containerservice/assets.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
"AssetsRepo": "Azure/azure-sdk-assets",
33
"AssetsRepoPrefixPath": "java",
44
"TagPrefix": "java/resourcemanager/azure-resourcemanager-containerservice",
5-
"Tag": "java/resourcemanager/azure-resourcemanager-containerservice_3d3e4d5564"
5+
"Tag": "java/resourcemanager/azure-resourcemanager-containerservice_1d3c03c5f5"
66
}

sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/ManagedClustersClient.java

Lines changed: 201 additions & 253 deletions
Large diffs are not rendered by default.

sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/models/AgentPoolAvailableVersionsInner.java

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
import com.azure.core.util.logging.ClientLogger;
99
import com.azure.resourcemanager.containerservice.models.AgentPoolAvailableVersionsPropertiesAgentPoolVersionsItem;
1010
import com.fasterxml.jackson.annotation.JsonProperty;
11+
1112
import java.util.List;
1213

1314
/**
@@ -47,7 +48,7 @@ public AgentPoolAvailableVersionsInner() {
4748

4849
/**
4950
* Get the id property: The ID of the agent pool version list.
50-
*
51+
*
5152
* @return the id value.
5253
*/
5354
public String id() {
@@ -56,7 +57,7 @@ public String id() {
5657

5758
/**
5859
* Get the name property: The name of the agent pool version list.
59-
*
60+
*
6061
* @return the name value.
6162
*/
6263
public String name() {
@@ -65,7 +66,7 @@ public String name() {
6566

6667
/**
6768
* Get the type property: Type of the agent pool version list.
68-
*
69+
*
6970
* @return the type value.
7071
*/
7172
public String type() {
@@ -74,7 +75,7 @@ public String type() {
7475

7576
/**
7677
* Get the innerProperties property: Properties of agent pool available versions.
77-
*
78+
*
7879
* @return the innerProperties value.
7980
*/
8081
private AgentPoolAvailableVersionsProperties innerProperties() {
@@ -83,7 +84,7 @@ private AgentPoolAvailableVersionsProperties innerProperties() {
8384

8485
/**
8586
* Get the agentPoolVersions property: List of versions available for agent pool.
86-
*
87+
*
8788
* @return the agentPoolVersions value.
8889
*/
8990
public List<AgentPoolAvailableVersionsPropertiesAgentPoolVersionsItem> agentPoolVersions() {
@@ -92,7 +93,7 @@ public List<AgentPoolAvailableVersionsPropertiesAgentPoolVersionsItem> agentPool
9293

9394
/**
9495
* Set the agentPoolVersions property: List of versions available for agent pool.
95-
*
96+
*
9697
* @param agentPoolVersions the agentPoolVersions value to set.
9798
* @return the AgentPoolAvailableVersionsInner object itself.
9899
*/
@@ -107,13 +108,14 @@ public List<AgentPoolAvailableVersionsPropertiesAgentPoolVersionsItem> agentPool
107108

108109
/**
109110
* Validates the instance.
110-
*
111+
*
111112
* @throws IllegalArgumentException thrown if the instance is not valid.
112113
*/
113114
public void validate() {
114115
if (innerProperties() == null) {
115-
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
116-
"Missing required property innerProperties in model AgentPoolAvailableVersionsInner"));
116+
throw LOGGER.atError()
117+
.log(new IllegalArgumentException(
118+
"Missing required property innerProperties in model AgentPoolAvailableVersionsInner"));
117119
} else {
118120
innerProperties().validate();
119121
}

0 commit comments

Comments
 (0)