Skip to content

Commit a00f2f0

Browse files
committed
Update API GetDataSourceOrderConfig: add response parameters Body.Data.UserConfigDataSourceList.$.Enable.
1 parent 1580ddd commit a00f2f0

File tree

3 files changed

+16
-1
lines changed

3 files changed

+16
-1
lines changed

aimiaobi-20230801/ChangeLog.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2025-05-07 Version: 1.23.2
2+
- Update API GetDataSourceOrderConfig: add response parameters Body.Data.UserConfigDataSourceList.$.Enable.
3+
4+
15
2025-05-06 Version: 1.23.1
26
- Update API CreateDataset: add request parameters InvokeType.
37

aimiaobi-20230801/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>aimiaobi20230801</artifactId>
6-
<version>1.23.1</version>
6+
<version>1.23.2</version>
77
<packaging>jar</packaging>
88
<name>aimiaobi20230801</name>
99
<description>Alibaba Cloud AiMiaoBi (20230801) SDK for Java

aimiaobi-20230801/src/main/java/com/aliyun/aimiaobi20230801/models/GetDataSourceOrderConfigResponseBody.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,9 @@ public static class GetDataSourceOrderConfigResponseBodyDataUserConfigDataSource
103103
@NameInMap("Code")
104104
public String code;
105105

106+
@NameInMap("Enable")
107+
public Boolean enable;
108+
106109
@NameInMap("Name")
107110
public String name;
108111

@@ -133,6 +136,14 @@ public String getCode() {
133136
return this.code;
134137
}
135138

139+
public GetDataSourceOrderConfigResponseBodyDataUserConfigDataSourceList setEnable(Boolean enable) {
140+
this.enable = enable;
141+
return this;
142+
}
143+
public Boolean getEnable() {
144+
return this.enable;
145+
}
146+
136147
public GetDataSourceOrderConfigResponseBodyDataUserConfigDataSourceList setName(String name) {
137148
this.name = name;
138149
return this;

0 commit comments

Comments
 (0)