Skip to content

Commit c7187b2

Browse files
committed
Generated java-async 2019-05-31 for mse.
1 parent e7a5365 commit c7187b2

File tree

5 files changed

+90
-3
lines changed

5 files changed

+90
-3
lines changed

mse-20190531/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-04-15 Version: 6.0.39
2+
- Generated java-async 2019-05-31 for mse.
3+
14
2025-04-08 Version: 6.0.38
25
- Generated java-async 2019-05-31 for mse.
36

mse-20190531/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.aliyun</groupId>
55
<artifactId>alibabacloud-mse20190531</artifactId>
6-
<version>6.0.38</version>
6+
<version>6.0.39</version>
77
<packaging>jar</packaging>
88
<name>alibabacloud-mse20190531</name>
99
<description>Alibaba Cloud mse (20190531) Async SDK for Java

mse-20190531/src/main/java/com/aliyun/sdk/service/mse20190531/DefaultAsyncClient.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3326,7 +3326,7 @@ public CompletableFuture<QueryGatewayTypeResponse> queryGatewayType(QueryGateway
33263326
public CompletableFuture<QueryGovernanceKubernetesClusterResponse> queryGovernanceKubernetesCluster(QueryGovernanceKubernetesClusterRequest request) {
33273327
try {
33283328
this.handler.validateRequestModel(request);
3329-
TeaRequest teaRequest = REQUEST.copy().setStyle(RequestStyle.RPC).setAction("QueryGovernanceKubernetesCluster").setMethod(HttpMethod.GET).setPathRegex("/").setBodyType(BodyType.JSON).setBodyIsForm(false).setReqBodyType(BodyType.JSON).formModel(request);
3329+
TeaRequest teaRequest = REQUEST.copy().setStyle(RequestStyle.RPC).setAction("QueryGovernanceKubernetesCluster").setMethod(HttpMethod.POST).setPathRegex("/").setBodyType(BodyType.JSON).setBodyIsForm(false).setReqBodyType(BodyType.JSON).formModel(request);
33303330
ClientExecutionParams params = new ClientExecutionParams().withInput(request).withRequest(teaRequest).withOutput(QueryGovernanceKubernetesClusterResponse.create());
33313331
return this.handler.execute(params);
33323332
} catch (Exception e) {
@@ -3434,7 +3434,7 @@ public CompletableFuture<QuerySwimmingLaneByIdResponse> querySwimmingLaneById(Qu
34343434
public CompletableFuture<QueryZnodeDetailResponse> queryZnodeDetail(QueryZnodeDetailRequest request) {
34353435
try {
34363436
this.handler.validateRequestModel(request);
3437-
TeaRequest teaRequest = REQUEST.copy().setStyle(RequestStyle.RPC).setAction("QueryZnodeDetail").setMethod(HttpMethod.GET).setPathRegex("/").setBodyType(BodyType.JSON).setBodyIsForm(false).setReqBodyType(BodyType.JSON).formModel(request);
3437+
TeaRequest teaRequest = REQUEST.copy().setStyle(RequestStyle.RPC).setAction("QueryZnodeDetail").setMethod(HttpMethod.POST).setPathRegex("/").setBodyType(BodyType.JSON).setBodyIsForm(false).setReqBodyType(BodyType.JSON).formModel(request);
34383438
ClientExecutionParams params = new ClientExecutionParams().withInput(request).withRequest(teaRequest).withOutput(QueryZnodeDetailResponse.create());
34393439
return this.handler.execute(params);
34403440
} catch (Exception e) {

mse-20190531/src/main/java/com/aliyun/sdk/service/mse20190531/models/GetGovernanceKubernetesClusterResponseBody.java

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -249,21 +249,29 @@ public static class Data extends TeaModel {
249249
@com.aliyun.core.annotation.NameInMap("PilotStartTime")
250250
private String pilotStartTime;
251251

252+
@com.aliyun.core.annotation.NameInMap("PilotVersion")
253+
private String pilotVersion;
254+
252255
@com.aliyun.core.annotation.NameInMap("Region")
253256
private String region;
254257

255258
@com.aliyun.core.annotation.NameInMap("UpdateTime")
256259
private String updateTime;
257260

261+
@com.aliyun.core.annotation.NameInMap("VersionLifeCycle")
262+
private String versionLifeCycle;
263+
258264
private Data(Builder builder) {
259265
this.clusterId = builder.clusterId;
260266
this.clusterName = builder.clusterName;
261267
this.k8sVersion = builder.k8sVersion;
262268
this.namespaceInfos = builder.namespaceInfos;
263269
this.namespaces = builder.namespaces;
264270
this.pilotStartTime = builder.pilotStartTime;
271+
this.pilotVersion = builder.pilotVersion;
265272
this.region = builder.region;
266273
this.updateTime = builder.updateTime;
274+
this.versionLifeCycle = builder.versionLifeCycle;
267275
}
268276

269277
public static Builder builder() {
@@ -316,6 +324,13 @@ public String getPilotStartTime() {
316324
return this.pilotStartTime;
317325
}
318326

327+
/**
328+
* @return pilotVersion
329+
*/
330+
public String getPilotVersion() {
331+
return this.pilotVersion;
332+
}
333+
319334
/**
320335
* @return region
321336
*/
@@ -330,15 +345,24 @@ public String getUpdateTime() {
330345
return this.updateTime;
331346
}
332347

348+
/**
349+
* @return versionLifeCycle
350+
*/
351+
public String getVersionLifeCycle() {
352+
return this.versionLifeCycle;
353+
}
354+
333355
public static final class Builder {
334356
private String clusterId;
335357
private String clusterName;
336358
private String k8sVersion;
337359
private String namespaceInfos;
338360
private java.util.List<Namespaces> namespaces;
339361
private String pilotStartTime;
362+
private String pilotVersion;
340363
private String region;
341364
private String updateTime;
365+
private String versionLifeCycle;
342366

343367
private Builder() {
344368
}
@@ -350,8 +374,10 @@ private Builder(Data model) {
350374
this.namespaceInfos = model.namespaceInfos;
351375
this.namespaces = model.namespaces;
352376
this.pilotStartTime = model.pilotStartTime;
377+
this.pilotVersion = model.pilotVersion;
353378
this.region = model.region;
354379
this.updateTime = model.updateTime;
380+
this.versionLifeCycle = model.versionLifeCycle;
355381
}
356382

357383
/**
@@ -417,6 +443,14 @@ public Builder pilotStartTime(String pilotStartTime) {
417443
return this;
418444
}
419445

446+
/**
447+
* PilotVersion.
448+
*/
449+
public Builder pilotVersion(String pilotVersion) {
450+
this.pilotVersion = pilotVersion;
451+
return this;
452+
}
453+
420454
/**
421455
* <p>The ID of the region in which the instance resides. The region is supported by MSE.</p>
422456
*
@@ -439,6 +473,14 @@ public Builder updateTime(String updateTime) {
439473
return this;
440474
}
441475

476+
/**
477+
* VersionLifeCycle.
478+
*/
479+
public Builder versionLifeCycle(String versionLifeCycle) {
480+
this.versionLifeCycle = versionLifeCycle;
481+
return this;
482+
}
483+
442484
public Data build() {
443485
return new Data(this);
444486
}

mse-20190531/src/main/java/com/aliyun/sdk/service/mse20190531/models/QueryGovernanceKubernetesClusterResponseBody.java

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,16 +161,24 @@ public static class Result extends TeaModel {
161161
@com.aliyun.core.annotation.NameInMap("PilotStartTime")
162162
private String pilotStartTime;
163163

164+
@com.aliyun.core.annotation.NameInMap("PilotVersion")
165+
private String pilotVersion;
166+
164167
@com.aliyun.core.annotation.NameInMap("Region")
165168
private String region;
166169

170+
@com.aliyun.core.annotation.NameInMap("VersionLifeCycle")
171+
private String versionLifeCycle;
172+
167173
private Result(Builder builder) {
168174
this.clusterId = builder.clusterId;
169175
this.clusterName = builder.clusterName;
170176
this.k8sVersion = builder.k8sVersion;
171177
this.namespaceInfos = builder.namespaceInfos;
172178
this.pilotStartTime = builder.pilotStartTime;
179+
this.pilotVersion = builder.pilotVersion;
173180
this.region = builder.region;
181+
this.versionLifeCycle = builder.versionLifeCycle;
174182
}
175183

176184
public static Builder builder() {
@@ -216,20 +224,36 @@ public String getPilotStartTime() {
216224
return this.pilotStartTime;
217225
}
218226

227+
/**
228+
* @return pilotVersion
229+
*/
230+
public String getPilotVersion() {
231+
return this.pilotVersion;
232+
}
233+
219234
/**
220235
* @return region
221236
*/
222237
public String getRegion() {
223238
return this.region;
224239
}
225240

241+
/**
242+
* @return versionLifeCycle
243+
*/
244+
public String getVersionLifeCycle() {
245+
return this.versionLifeCycle;
246+
}
247+
226248
public static final class Builder {
227249
private String clusterId;
228250
private String clusterName;
229251
private String k8sVersion;
230252
private String namespaceInfos;
231253
private String pilotStartTime;
254+
private String pilotVersion;
232255
private String region;
256+
private String versionLifeCycle;
233257

234258
private Builder() {
235259
}
@@ -240,7 +264,9 @@ private Builder(Result model) {
240264
this.k8sVersion = model.k8sVersion;
241265
this.namespaceInfos = model.namespaceInfos;
242266
this.pilotStartTime = model.pilotStartTime;
267+
this.pilotVersion = model.pilotVersion;
243268
this.region = model.region;
269+
this.versionLifeCycle = model.versionLifeCycle;
244270
}
245271

246272
/**
@@ -298,6 +324,14 @@ public Builder pilotStartTime(String pilotStartTime) {
298324
return this;
299325
}
300326

327+
/**
328+
* PilotVersion.
329+
*/
330+
public Builder pilotVersion(String pilotVersion) {
331+
this.pilotVersion = pilotVersion;
332+
return this;
333+
}
334+
301335
/**
302336
* <p>The region where the cluster resides.</p>
303337
*
@@ -309,6 +343,14 @@ public Builder region(String region) {
309343
return this;
310344
}
311345

346+
/**
347+
* VersionLifeCycle.
348+
*/
349+
public Builder versionLifeCycle(String versionLifeCycle) {
350+
this.versionLifeCycle = versionLifeCycle;
351+
return this;
352+
}
353+
312354
public Result build() {
313355
return new Result(this);
314356
}

0 commit comments

Comments
 (0)