File tree Expand file tree Collapse file tree 4 files changed +22
-3
lines changed
src/main/java/com/aliyun/cloudapi20160714 Expand file tree Collapse file tree 4 files changed +22
-3
lines changed Original file line number Diff line number Diff line change 1+ 2025-03-18 Version: 3.14.1
2+ - Update API DescribeDatasetList: add param DatasetName.
3+
4+
152025-03-06 Version: 3.14.0
26- Support API AttachGroupPlugin.
37- Support API DescribePluginGroups.
Original file line number Diff line number Diff line change 33 <modelVersion >4.0.0</modelVersion >
44 <groupId >com.aliyun</groupId >
55 <artifactId >cloudapi20160714</artifactId >
6- <version >3.14.0 </version >
6+ <version >3.14.1 </version >
77 <packaging >jar</packaging >
88 <name >cloudapi20160714</name >
99 <description >Alibaba Cloud CloudAPI (20160714) SDK for Java
4646 <dependency >
4747 <groupId >com.aliyun</groupId >
4848 <artifactId >tea-openapi</artifactId >
49- <version >0.3.6 </version >
49+ <version >0.3.7 </version >
5050 </dependency >
5151 <dependency >
5252 <groupId >com.aliyun</groupId >
7878 <plugin >
7979 <groupId >org.apache.maven.plugins</groupId >
8080 <artifactId >maven-gpg-plugin</artifactId >
81- <version >1.6 </version >
81+ <version >3.1.0 </version >
8282 <executions >
8383 <execution >
8484 <id >sign-artifacts</id >
Original file line number Diff line number Diff line change @@ -6864,6 +6864,10 @@ public DescribeDatasetListResponse describeDatasetListWithOptions(DescribeDatase
68646864 query.put("DatasetIds", request.datasetIds);
68656865 }
68666866
6867+ if (!com.aliyun.teautil.Common.isUnset(request.datasetName)) {
6868+ query.put("DatasetName", request.datasetName);
6869+ }
6870+
68676871 if (!com.aliyun.teautil.Common.isUnset(request.pageNumber)) {
68686872 query.put("PageNumber", request.pageNumber);
68696873 }
Original file line number Diff line number Diff line change @@ -13,6 +13,9 @@ public class DescribeDatasetListRequest extends TeaModel {
1313 @ NameInMap ("DatasetIds" )
1414 public String datasetIds ;
1515
16+ @ NameInMap ("DatasetName" )
17+ public String datasetName ;
18+
1619 /**
1720 * <p>The number of the page to return. Pages start from page 1. Default value: 1.</p>
1821 *
@@ -53,6 +56,14 @@ public String getDatasetIds() {
5356 return this .datasetIds ;
5457 }
5558
59+ public DescribeDatasetListRequest setDatasetName (String datasetName ) {
60+ this .datasetName = datasetName ;
61+ return this ;
62+ }
63+ public String getDatasetName () {
64+ return this .datasetName ;
65+ }
66+
5667 public DescribeDatasetListRequest setPageNumber (Integer pageNumber ) {
5768 this .pageNumber = pageNumber ;
5869 return this ;
You can’t perform that action at this time.
0 commit comments