Skip to content

Commit 65feac1

Browse files
committed
Add SqlMode for GetDataServicePublishedApi and ListDataServicePublishedApi.
1 parent f407f26 commit 65feac1

File tree

6 files changed

+32
-7
lines changed

6 files changed

+32
-7
lines changed

aliyun-java-sdk-dataworks-public/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: 6.1.13
2+
- Add SqlMode for GetDataServicePublishedApi and ListDataServicePublishedApi.
3+
14
2025-04-27 Version: 6.1.12
25
- Generated 2020-05-18 for `dataworks-public`.
36

aliyun-java-sdk-dataworks-public/pom.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.aliyun</groupId>
55
<artifactId>aliyun-java-sdk-dataworks-public</artifactId>
66
<packaging>jar</packaging>
7-
<version>6.1.12</version>
7+
<version>6.1.13</version>
88
<name>aliyun-java-sdk-dataworks-public</name>
99
<url>http://www.aliyun.com</url>
1010
<description>Aliyun Open API SDK for Java
@@ -104,14 +104,14 @@ http://www.aliyun.com</description>
104104
</executions>
105105
</plugin>
106106
<plugin>
107-
<groupId>org.sonatype.plugins</groupId>
108-
<artifactId>nexus-staging-maven-plugin</artifactId>
109-
<version>1.6.3</version>
107+
<groupId>org.sonatype.central</groupId>
108+
<artifactId>central-publishing-maven-plugin</artifactId>
109+
<version>0.8.0</version>
110110
<extensions>true</extensions>
111111
<configuration>
112-
<serverId>sonatype-nexus-staging</serverId>
113-
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
114-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
112+
<publishingServerId>central</publishingServerId>
113+
<autoPublish>true</autoPublish>
114+
<waitUntil>published</waitUntil>
115115
</configuration>
116116
</plugin>
117117
</plugins>

aliyun-java-sdk-dataworks-public/src/main/java/com/aliyuncs/dataworks_public/model/v20200518/GetDataServicePublishedApiResponse.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,8 @@ public static class Data {
121121

122122
private String apiPath;
123123

124+
private Integer sqlMode;
125+
124126
private List<Integer> protocols;
125127

126128
private RegistrationDetails registrationDetails;
@@ -265,6 +267,14 @@ public void setApiPath(String apiPath) {
265267
this.apiPath = apiPath;
266268
}
267269

270+
public Integer getSqlMode() {
271+
return this.sqlMode;
272+
}
273+
274+
public void setSqlMode(Integer sqlMode) {
275+
this.sqlMode = sqlMode;
276+
}
277+
268278
public List<Integer> getProtocols() {
269279
return this.protocols;
270280
}

aliyun-java-sdk-dataworks-public/src/main/java/com/aliyuncs/dataworks_public/model/v20200518/ListDataServicePublishedApisResponse.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,8 @@ public static class Api {
163163

164164
private String apiPath;
165165

166+
private Integer sqlMode;
167+
166168
private List<Integer> protocols;
167169

168170
private RegistrationDetails registrationDetails;
@@ -307,6 +309,14 @@ public void setApiPath(String apiPath) {
307309
this.apiPath = apiPath;
308310
}
309311

312+
public Integer getSqlMode() {
313+
return this.sqlMode;
314+
}
315+
316+
public void setSqlMode(Integer sqlMode) {
317+
this.sqlMode = sqlMode;
318+
}
319+
310320
public List<Integer> getProtocols() {
311321
return this.protocols;
312322
}

aliyun-java-sdk-dataworks-public/src/main/java/com/aliyuncs/dataworks_public/transform/v20200518/GetDataServicePublishedApiResponseUnmarshaller.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ public static GetDataServicePublishedApiResponse unmarshall(GetDataServicePublis
6363
data.setApiName(_ctx.stringValue("GetDataServicePublishedApiResponse.Data.ApiName"));
6464
data.setTenantId(_ctx.longValue("GetDataServicePublishedApiResponse.Data.TenantId"));
6565
data.setApiPath(_ctx.stringValue("GetDataServicePublishedApiResponse.Data.ApiPath"));
66+
data.setSqlMode(_ctx.integerValue("GetDataServicePublishedApiResponse.Data.SqlMode"));
6667

6768
List<Integer> protocols = new ArrayList<Integer>();
6869
for (int i = 0; i < _ctx.lengthValue("GetDataServicePublishedApiResponse.Data.Protocols.Length"); i++) {

aliyun-java-sdk-dataworks-public/src/main/java/com/aliyuncs/dataworks_public/transform/v20200518/ListDataServicePublishedApisResponseUnmarshaller.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ public static ListDataServicePublishedApisResponse unmarshall(ListDataServicePub
7171
api.setApiName(_ctx.stringValue("ListDataServicePublishedApisResponse.Data.Apis["+ i +"].ApiName"));
7272
api.setTenantId(_ctx.longValue("ListDataServicePublishedApisResponse.Data.Apis["+ i +"].TenantId"));
7373
api.setApiPath(_ctx.stringValue("ListDataServicePublishedApisResponse.Data.Apis["+ i +"].ApiPath"));
74+
api.setSqlMode(_ctx.integerValue("ListDataServicePublishedApisResponse.Data.Apis["+ i +"].SqlMode"));
7475

7576
List<Integer> protocols = new ArrayList<Integer>();
7677
for (int j = 0; j < _ctx.lengthValue("ListDataServicePublishedApisResponse.Data.Apis["+ i +"].Protocols.Length"); j++) {

0 commit comments

Comments
 (0)