Skip to content

Commit 45b1df6

Browse files
committed
Dataphin OpenAPI v5.3.0 changes
1 parent c318827 commit 45b1df6

13 files changed

+987
-1
lines changed

aliyun-java-sdk-dataphin-public/ChangeLog.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
2025-08-29 Version: 1.0.10
2+
- Dataphin OpenAPI v5.3.0 changes
3+
- Add api GetTransferInfo.
4+
- Add api RetryTransferOwnership.
5+
- Add api TransferOwnershipForAllObject.
6+
17
2025-07-30 Version: 1.0.9
28
- Generated 2023-06-30 for `dataphin-public`.
39

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.aliyun</groupId>
55
<artifactId>aliyun-java-sdk-dataphin-public</artifactId>
66
<packaging>jar</packaging>
7-
<version>1.0.9</version>
7+
<version>1.0.10</version>
88
<name>aliyun-java-sdk-dataphin-public</name>
99
<url>http://www.aliyun.com</url>
1010
<description>Aliyun Open API SDK for Java

aliyun-java-sdk-dataphin-public/src/main/java/com/aliyuncs/dataphin_public/model/v20230630/CreateStreamBatchJobMappingResponse.java

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

9191
private String url;
9292

93+
private Long jobId;
94+
9395
public String getFileId() {
9496
return this.fileId;
9597
}
@@ -105,6 +107,14 @@ public String getUrl() {
105107
public void setUrl(String url) {
106108
this.url = url;
107109
}
110+
111+
public Long getJobId() {
112+
return this.jobId;
113+
}
114+
115+
public void setJobId(Long jobId) {
116+
this.jobId = jobId;
117+
}
108118
}
109119

110120
@Override
Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License");
3+
* you may not use this file except in compliance with the License.
4+
* You may obtain a copy of the License at
5+
*
6+
* http://www.apache.org/licenses/LICENSE-2.0
7+
*
8+
* Unless required by applicable law or agreed to in writing, software
9+
* distributed under the License is distributed on an "AS IS" BASIS,
10+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
* See the License for the specific language governing permissions and
12+
* limitations under the License.
13+
*/
14+
15+
package com.aliyuncs.dataphin_public.model.v20230630;
16+
17+
import com.aliyuncs.RpcAcsRequest;
18+
import com.aliyuncs.http.ProtocolType;
19+
import com.aliyuncs.http.MethodType;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class GetTransferInfoRequest extends RpcAcsRequest<GetTransferInfoResponse> {
26+
27+
28+
private Long opTenantId;
29+
30+
private Long proposalId;
31+
public GetTransferInfoRequest() {
32+
super("dataphin-public", "2023-06-30", "GetTransferInfo");
33+
setProtocol(ProtocolType.HTTPS);
34+
setMethod(MethodType.POST);
35+
}
36+
37+
public Long getOpTenantId() {
38+
return this.opTenantId;
39+
}
40+
41+
public void setOpTenantId(Long opTenantId) {
42+
this.opTenantId = opTenantId;
43+
if(opTenantId != null){
44+
putQueryParameter("OpTenantId", opTenantId.toString());
45+
}
46+
}
47+
48+
public Long getProposalId() {
49+
return this.proposalId;
50+
}
51+
52+
public void setProposalId(Long proposalId) {
53+
this.proposalId = proposalId;
54+
if(proposalId != null){
55+
putQueryParameter("ProposalId", proposalId.toString());
56+
}
57+
}
58+
59+
@Override
60+
public Class<GetTransferInfoResponse> getResponseClass() {
61+
return GetTransferInfoResponse.class;
62+
}
63+
64+
}

0 commit comments

Comments
 (0)