Skip to content

Commit d88a182

Browse files
committed
Generated java-async 2018-12-12 for vs.
1 parent 9667c6a commit d88a182

File tree

5 files changed

+431
-2
lines changed

5 files changed

+431
-2
lines changed

vs-20181212/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-06-10 Version: 3.0.5
2+
- Generated java-async 2018-12-12 for vs.
3+
14
2025-05-29 Version: 3.0.4
25
- Generated java-async 2018-12-12 for vs.
36

vs-20181212/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-vs20181212</artifactId>
6-
<version>3.0.4</version>
6+
<version>3.0.5</version>
77
<packaging>jar</packaging>
88
<name>alibabacloud-vs20181212</name>
99
<description>Alibaba Cloud vs (20181212) Async SDK for Java

vs-20181212/src/main/java/com/aliyun/sdk/service/vs20181212/DefaultAsyncClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1331,7 +1331,7 @@ public CompletableFuture<DescribeRecordsResponse> describeRecords(DescribeRecord
13311331
public CompletableFuture<DescribeRenderingInstanceResponse> describeRenderingInstance(DescribeRenderingInstanceRequest request) {
13321332
try {
13331333
this.handler.validateRequestModel(request);
1334-
TeaRequest teaRequest = REQUEST.copy().setStyle(RequestStyle.RPC).setAction("DescribeRenderingInstance").setMethod(HttpMethod.GET).setPathRegex("/").setBodyType(BodyType.JSON).setBodyIsForm(false).setReqBodyType(BodyType.JSON).formModel(request);
1334+
TeaRequest teaRequest = REQUEST.copy().setStyle(RequestStyle.RPC).setAction("DescribeRenderingInstance").setMethod(HttpMethod.POST).setPathRegex("/").setBodyType(BodyType.JSON).setBodyIsForm(false).setReqBodyType(BodyType.JSON).formModel(request);
13351335
ClientExecutionParams params = new ClientExecutionParams().withInput(request).withRequest(teaRequest).withOutput(DescribeRenderingInstanceResponse.create());
13361336
return this.handler.execute(params);
13371337
} catch (Exception e) {

vs-20181212/src/main/java/com/aliyun/sdk/service/vs20181212/models/DescribeRenderingInstanceResponseBody.java

Lines changed: 213 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
* <p>DescribeRenderingInstanceResponseBody</p>
1818
*/
1919
public class DescribeRenderingInstanceResponseBody extends TeaModel {
20+
@com.aliyun.core.annotation.NameInMap("AdditionalIngresses")
21+
private java.util.List<AdditionalIngresses> additionalIngresses;
22+
2023
@com.aliyun.core.annotation.NameInMap("ConfigInfo")
2124
private ConfigInfo configInfo;
2225

@@ -29,6 +32,9 @@ public class DescribeRenderingInstanceResponseBody extends TeaModel {
2932
@com.aliyun.core.annotation.NameInMap("Hostname")
3033
private String hostname;
3134

35+
@com.aliyun.core.annotation.NameInMap("Isp")
36+
private String isp;
37+
3238
@com.aliyun.core.annotation.NameInMap("PortMappings")
3339
private java.util.List<PortMappings> portMappings;
3440

@@ -51,10 +57,12 @@ public class DescribeRenderingInstanceResponseBody extends TeaModel {
5157
private SystemInfo systemInfo;
5258

5359
private DescribeRenderingInstanceResponseBody(Builder builder) {
60+
this.additionalIngresses = builder.additionalIngresses;
5461
this.configInfo = builder.configInfo;
5562
this.creationTime = builder.creationTime;
5663
this.egressIp = builder.egressIp;
5764
this.hostname = builder.hostname;
65+
this.isp = builder.isp;
5866
this.portMappings = builder.portMappings;
5967
this.renderingInstanceId = builder.renderingInstanceId;
6068
this.renderingSpec = builder.renderingSpec;
@@ -76,6 +84,13 @@ public Builder toBuilder() {
7684
return new Builder(this);
7785
}
7886

87+
/**
88+
* @return additionalIngresses
89+
*/
90+
public java.util.List<AdditionalIngresses> getAdditionalIngresses() {
91+
return this.additionalIngresses;
92+
}
93+
7994
/**
8095
* @return configInfo
8196
*/
@@ -104,6 +119,13 @@ public String getHostname() {
104119
return this.hostname;
105120
}
106121

122+
/**
123+
* @return isp
124+
*/
125+
public String getIsp() {
126+
return this.isp;
127+
}
128+
107129
/**
108130
* @return portMappings
109131
*/
@@ -154,10 +176,12 @@ public SystemInfo getSystemInfo() {
154176
}
155177

156178
public static final class Builder {
179+
private java.util.List<AdditionalIngresses> additionalIngresses;
157180
private ConfigInfo configInfo;
158181
private String creationTime;
159182
private String egressIp;
160183
private String hostname;
184+
private String isp;
161185
private java.util.List<PortMappings> portMappings;
162186
private String renderingInstanceId;
163187
private String renderingSpec;
@@ -170,10 +194,12 @@ private Builder() {
170194
}
171195

172196
private Builder(DescribeRenderingInstanceResponseBody model) {
197+
this.additionalIngresses = model.additionalIngresses;
173198
this.configInfo = model.configInfo;
174199
this.creationTime = model.creationTime;
175200
this.egressIp = model.egressIp;
176201
this.hostname = model.hostname;
202+
this.isp = model.isp;
177203
this.portMappings = model.portMappings;
178204
this.renderingInstanceId = model.renderingInstanceId;
179205
this.renderingSpec = model.renderingSpec;
@@ -183,6 +209,14 @@ private Builder(DescribeRenderingInstanceResponseBody model) {
183209
this.systemInfo = model.systemInfo;
184210
}
185211

212+
/**
213+
* AdditionalIngresses.
214+
*/
215+
public Builder additionalIngresses(java.util.List<AdditionalIngresses> additionalIngresses) {
216+
this.additionalIngresses = additionalIngresses;
217+
return this;
218+
}
219+
186220
/**
187221
* ConfigInfo.
188222
*/
@@ -215,6 +249,14 @@ public Builder hostname(String hostname) {
215249
return this;
216250
}
217251

252+
/**
253+
* Isp.
254+
*/
255+
public Builder isp(String isp) {
256+
this.isp = isp;
257+
return this;
258+
}
259+
218260
/**
219261
* PortMappings.
220262
*/
@@ -277,6 +319,177 @@ public DescribeRenderingInstanceResponseBody build() {
277319

278320
}
279321

322+
/**
323+
*
324+
* {@link DescribeRenderingInstanceResponseBody} extends {@link TeaModel}
325+
*
326+
* <p>DescribeRenderingInstanceResponseBody</p>
327+
*/
328+
public static class AdditionalIngressesPortMappings extends TeaModel {
329+
@com.aliyun.core.annotation.NameInMap("ExternalPort")
330+
private String externalPort;
331+
332+
@com.aliyun.core.annotation.NameInMap("InternalPort")
333+
private String internalPort;
334+
335+
private AdditionalIngressesPortMappings(Builder builder) {
336+
this.externalPort = builder.externalPort;
337+
this.internalPort = builder.internalPort;
338+
}
339+
340+
public static Builder builder() {
341+
return new Builder();
342+
}
343+
344+
public static AdditionalIngressesPortMappings create() {
345+
return builder().build();
346+
}
347+
348+
/**
349+
* @return externalPort
350+
*/
351+
public String getExternalPort() {
352+
return this.externalPort;
353+
}
354+
355+
/**
356+
* @return internalPort
357+
*/
358+
public String getInternalPort() {
359+
return this.internalPort;
360+
}
361+
362+
public static final class Builder {
363+
private String externalPort;
364+
private String internalPort;
365+
366+
private Builder() {
367+
}
368+
369+
private Builder(AdditionalIngressesPortMappings model) {
370+
this.externalPort = model.externalPort;
371+
this.internalPort = model.internalPort;
372+
}
373+
374+
/**
375+
* ExternalPort.
376+
*/
377+
public Builder externalPort(String externalPort) {
378+
this.externalPort = externalPort;
379+
return this;
380+
}
381+
382+
/**
383+
* InternalPort.
384+
*/
385+
public Builder internalPort(String internalPort) {
386+
this.internalPort = internalPort;
387+
return this;
388+
}
389+
390+
public AdditionalIngressesPortMappings build() {
391+
return new AdditionalIngressesPortMappings(this);
392+
}
393+
394+
}
395+
396+
}
397+
/**
398+
*
399+
* {@link DescribeRenderingInstanceResponseBody} extends {@link TeaModel}
400+
*
401+
* <p>DescribeRenderingInstanceResponseBody</p>
402+
*/
403+
public static class AdditionalIngresses extends TeaModel {
404+
@com.aliyun.core.annotation.NameInMap("Hostname")
405+
private String hostname;
406+
407+
@com.aliyun.core.annotation.NameInMap("Isp")
408+
private String isp;
409+
410+
@com.aliyun.core.annotation.NameInMap("PortMappings")
411+
private java.util.List<AdditionalIngressesPortMappings> portMappings;
412+
413+
private AdditionalIngresses(Builder builder) {
414+
this.hostname = builder.hostname;
415+
this.isp = builder.isp;
416+
this.portMappings = builder.portMappings;
417+
}
418+
419+
public static Builder builder() {
420+
return new Builder();
421+
}
422+
423+
public static AdditionalIngresses create() {
424+
return builder().build();
425+
}
426+
427+
/**
428+
* @return hostname
429+
*/
430+
public String getHostname() {
431+
return this.hostname;
432+
}
433+
434+
/**
435+
* @return isp
436+
*/
437+
public String getIsp() {
438+
return this.isp;
439+
}
440+
441+
/**
442+
* @return portMappings
443+
*/
444+
public java.util.List<AdditionalIngressesPortMappings> getPortMappings() {
445+
return this.portMappings;
446+
}
447+
448+
public static final class Builder {
449+
private String hostname;
450+
private String isp;
451+
private java.util.List<AdditionalIngressesPortMappings> portMappings;
452+
453+
private Builder() {
454+
}
455+
456+
private Builder(AdditionalIngresses model) {
457+
this.hostname = model.hostname;
458+
this.isp = model.isp;
459+
this.portMappings = model.portMappings;
460+
}
461+
462+
/**
463+
* Hostname.
464+
*/
465+
public Builder hostname(String hostname) {
466+
this.hostname = hostname;
467+
return this;
468+
}
469+
470+
/**
471+
* Isp.
472+
*/
473+
public Builder isp(String isp) {
474+
this.isp = isp;
475+
return this;
476+
}
477+
478+
/**
479+
* PortMappings.
480+
*/
481+
public Builder portMappings(java.util.List<AdditionalIngressesPortMappings> portMappings) {
482+
this.portMappings = portMappings;
483+
return this;
484+
}
485+
486+
public AdditionalIngresses build() {
487+
return new AdditionalIngresses(this);
488+
}
489+
490+
}
491+
492+
}
280493
/**
281494
*
282495
* {@link DescribeRenderingInstanceResponseBody} extends {@link TeaModel}

0 commit comments

Comments
 (0)