Skip to content

Commit 9bb186d

Browse files
committed
Update API ListFunctions: add request parameters Name.
1 parent 4d0bebc commit 9bb186d

File tree

6 files changed

+52
-1
lines changed

6 files changed

+52
-1
lines changed

dataworks-public-20240518/ChangeLog.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
2025-06-05 Version: 7.1.2
2+
- Update API ListFunctions: add request parameters Name.
3+
- Update API ListNodes: add request parameters Name.
4+
- Update API ListResources: add request parameters Name.
5+
- Update API ListWorkflowDefinitions: add request parameters Name.
6+
7+
18
2025-06-03 Version: 7.1.1
29
- Generated java 2024-05-18 for dataworks-public.
310

dataworks-public-20240518/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>dataworks_public20240518</artifactId>
6-
<version>7.1.1</version>
6+
<version>7.1.2</version>
77
<packaging>jar</packaging>
88
<name>dataworks_public20240518</name>
99
<description>Alibaba Cloud dataworks-public (20240518) SDK for Java

dataworks-public-20240518/src/main/java/com/aliyun/dataworks_public20240518/models/ListFunctionsRequest.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
import com.aliyun.tea.*;
55

66
public class ListFunctionsRequest extends TeaModel {
7+
@NameInMap("Name")
8+
public String name;
9+
710
/**
811
* <p>The ID of the owner of the UDF. This parameter specifies a filter condition.</p>
912
*
@@ -65,6 +68,14 @@ public static ListFunctionsRequest build(java.util.Map<String, ?> map) throws Ex
6568
return TeaModel.build(map, self);
6669
}
6770

71+
public ListFunctionsRequest setName(String name) {
72+
this.name = name;
73+
return this;
74+
}
75+
public String getName() {
76+
return this.name;
77+
}
78+
6879
public ListFunctionsRequest setOwner(String owner) {
6980
this.owner = owner;
7081
return this;

dataworks-public-20240518/src/main/java/com/aliyun/dataworks_public20240518/models/ListNodesRequest.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ public class ListNodesRequest extends TeaModel {
1313
@NameInMap("ContainerId")
1414
public Long containerId;
1515

16+
@NameInMap("Name")
17+
public String name;
18+
1619
/**
1720
* <p>The page number.</p>
1821
*
@@ -98,6 +101,14 @@ public Long getContainerId() {
98101
return this.containerId;
99102
}
100103

104+
public ListNodesRequest setName(String name) {
105+
this.name = name;
106+
return this;
107+
}
108+
public String getName() {
109+
return this.name;
110+
}
111+
101112
public ListNodesRequest setPageNumber(Integer pageNumber) {
102113
this.pageNumber = pageNumber;
103114
return this;

dataworks-public-20240518/src/main/java/com/aliyun/dataworks_public20240518/models/ListResourcesRequest.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
import com.aliyun.tea.*;
55

66
public class ListResourcesRequest extends TeaModel {
7+
@NameInMap("Name")
8+
public String name;
9+
710
/**
811
* <p>The ID of the Alibaba Cloud account used by the workspace administrator. You can log on to the Alibaba Cloud Management Console and view the ID on the Security Settings page.</p>
912
*
@@ -63,6 +66,14 @@ public static ListResourcesRequest build(java.util.Map<String, ?> map) throws Ex
6366
return TeaModel.build(map, self);
6467
}
6568

69+
public ListResourcesRequest setName(String name) {
70+
this.name = name;
71+
return this;
72+
}
73+
public String getName() {
74+
return this.name;
75+
}
76+
6677
public ListResourcesRequest setOwner(String owner) {
6778
this.owner = owner;
6879
return this;

dataworks-public-20240518/src/main/java/com/aliyun/dataworks_public20240518/models/ListWorkflowDefinitionsRequest.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
import com.aliyun.tea.*;
55

66
public class ListWorkflowDefinitionsRequest extends TeaModel {
7+
@NameInMap("Name")
8+
public String name;
9+
710
/**
811
* <p>The ID of the Alibaba Cloud account used by the workspace administrator. You can log on to the Alibaba Cloud Management Console and view the ID on the Security Settings page.</p>
912
*
@@ -61,6 +64,14 @@ public static ListWorkflowDefinitionsRequest build(java.util.Map<String, ?> map)
6164
return TeaModel.build(map, self);
6265
}
6366

67+
public ListWorkflowDefinitionsRequest setName(String name) {
68+
this.name = name;
69+
return this;
70+
}
71+
public String getName() {
72+
return this.name;
73+
}
74+
6475
public ListWorkflowDefinitionsRequest setOwner(String owner) {
6576
this.owner = owner;
6677
return this;

0 commit comments

Comments
 (0)