Skip to content

Commit 510ed7e

Browse files
committed
Generated java-async 2020-05-18 for dataworks-public.
1 parent 29061c9 commit 510ed7e

File tree

5 files changed

+49
-1
lines changed

5 files changed

+49
-1
lines changed

dataworks-public-20200518/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-09-15 Version: 5.0.3
2+
- Generated java-async 2020-05-18 for dataworks-public.
3+
14
2025-09-02 Version: 5.0.1
25
- Generated java-async 2020-05-18 for dataworks-public.
36

dataworks-public-20200518/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-dataworks_public20200518</artifactId>
6-
<version>5.0.1</version>
6+
<version>5.0.3</version>
77
<packaging>jar</packaging>
88
<name>alibabacloud-dataworks_public20200518</name>
99
<description>Alibaba Cloud dataworks-public (20200518) Async SDK for Java

dataworks-public-20200518/src/main/java/com/aliyun/sdk/service/dataworks_public20200518/models/GetDataServicePublishedApiRequest.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,9 @@ private Builder(GetDataServicePublishedApiRequest request) {
104104

105105
/**
106106
* <p>This parameter is required.</p>
107+
*
108+
* <strong>example:</strong>
109+
* <p>cn-shanghai</p>
107110
*/
108111
public Builder regionId(String regionId) {
109112
this.putHostParameter("RegionId", regionId);

dataworks-public-20200518/src/main/java/com/aliyun/sdk/service/dataworks_public20200518/models/GetDataServicePublishedApiResponseBody.java

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2357,6 +2357,9 @@ public static class Data extends TeaModel {
23572357
@com.aliyun.core.annotation.NameInMap("ScriptDetails")
23582358
private ScriptDetails scriptDetails;
23592359

2360+
@com.aliyun.core.annotation.NameInMap("SqlMode")
2361+
private Integer sqlMode;
2362+
23602363
@com.aliyun.core.annotation.NameInMap("Status")
23612364
private Integer status;
23622365

@@ -2389,6 +2392,7 @@ private Data(Builder builder) {
23892392
this.requestMethod = builder.requestMethod;
23902393
this.responseContentType = builder.responseContentType;
23912394
this.scriptDetails = builder.scriptDetails;
2395+
this.sqlMode = builder.sqlMode;
23922396
this.status = builder.status;
23932397
this.tenantId = builder.tenantId;
23942398
this.timeout = builder.timeout;
@@ -2516,6 +2520,13 @@ public ScriptDetails getScriptDetails() {
25162520
return this.scriptDetails;
25172521
}
25182522

2523+
/**
2524+
* @return sqlMode
2525+
*/
2526+
public Integer getSqlMode() {
2527+
return this.sqlMode;
2528+
}
2529+
25192530
/**
25202531
* @return status
25212532
*/
@@ -2568,6 +2579,7 @@ public static final class Builder {
25682579
private Integer requestMethod;
25692580
private Integer responseContentType;
25702581
private ScriptDetails scriptDetails;
2582+
private Integer sqlMode;
25712583
private Integer status;
25722584
private Long tenantId;
25732585
private Integer timeout;
@@ -2594,6 +2606,7 @@ private Builder(Data model) {
25942606
this.requestMethod = model.requestMethod;
25952607
this.responseContentType = model.responseContentType;
25962608
this.scriptDetails = model.scriptDetails;
2609+
this.sqlMode = model.sqlMode;
25972610
this.status = model.status;
25982611
this.tenantId = model.tenantId;
25992612
this.timeout = model.timeout;
@@ -2768,6 +2781,14 @@ public Builder scriptDetails(ScriptDetails scriptDetails) {
27682781
return this;
27692782
}
27702783

2784+
/**
2785+
* SqlMode.
2786+
*/
2787+
public Builder sqlMode(Integer sqlMode) {
2788+
this.sqlMode = sqlMode;
2789+
return this;
2790+
}
2791+
27712792
/**
27722793
* <p>The status of the API. Valid values: 0 and 1. The value 0 indicates that the API is not published. The value 1 indicates that the API is published.</p>
27732794
*

dataworks-public-20200518/src/main/java/com/aliyun/sdk/service/dataworks_public20200518/models/ListDataServicePublishedApisResponseBody.java

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2374,6 +2374,9 @@ public static class Apis extends TeaModel {
23742374
@com.aliyun.core.annotation.NameInMap("ScriptDetails")
23752375
private ScriptDetails scriptDetails;
23762376

2377+
@com.aliyun.core.annotation.NameInMap("SqlMode")
2378+
private Integer sqlMode;
2379+
23772380
@com.aliyun.core.annotation.NameInMap("Status")
23782381
private Integer status;
23792382

@@ -2406,6 +2409,7 @@ private Apis(Builder builder) {
24062409
this.requestMethod = builder.requestMethod;
24072410
this.responseContentType = builder.responseContentType;
24082411
this.scriptDetails = builder.scriptDetails;
2412+
this.sqlMode = builder.sqlMode;
24092413
this.status = builder.status;
24102414
this.tenantId = builder.tenantId;
24112415
this.timeout = builder.timeout;
@@ -2533,6 +2537,13 @@ public ScriptDetails getScriptDetails() {
25332537
return this.scriptDetails;
25342538
}
25352539

2540+
/**
2541+
* @return sqlMode
2542+
*/
2543+
public Integer getSqlMode() {
2544+
return this.sqlMode;
2545+
}
2546+
25362547
/**
25372548
* @return status
25382549
*/
@@ -2585,6 +2596,7 @@ public static final class Builder {
25852596
private Integer requestMethod;
25862597
private Integer responseContentType;
25872598
private ScriptDetails scriptDetails;
2599+
private Integer sqlMode;
25882600
private Integer status;
25892601
private Long tenantId;
25902602
private Integer timeout;
@@ -2611,6 +2623,7 @@ private Builder(Apis model) {
26112623
this.requestMethod = model.requestMethod;
26122624
this.responseContentType = model.responseContentType;
26132625
this.scriptDetails = model.scriptDetails;
2626+
this.sqlMode = model.sqlMode;
26142627
this.status = model.status;
26152628
this.tenantId = model.tenantId;
26162629
this.timeout = model.timeout;
@@ -2785,6 +2798,14 @@ public Builder scriptDetails(ScriptDetails scriptDetails) {
27852798
return this;
27862799
}
27872800

2801+
/**
2802+
* SqlMode.
2803+
*/
2804+
public Builder sqlMode(Integer sqlMode) {
2805+
this.sqlMode = sqlMode;
2806+
return this;
2807+
}
2808+
27882809
/**
27892810
* <p>The status of the API. Valid values: 0 and 1. The value 0 indicates that the API is not published. The value 1 indicates that the API is published.</p>
27902811
*

0 commit comments

Comments
 (0)