Skip to content

Commit ff4e8a6

Browse files
committed
Add apis about data standard.
1 parent 664d2dc commit ff4e8a6

257 files changed

Lines changed: 37640 additions & 1 deletion

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2026-01-23 Version: 1.0.14
2+
- Add apis about data standard.
3+
- Add apis about data quality.
4+
- Add apis about data security.
5+
16
2025-12-30 Version: 1.0.13
27
- Add api GetCheckConnectivityJobs
38
- Add api CreateBizMetric

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.13</version>
7+
<version>1.0.14</version>
88
<name>aliyun-java-sdk-dataphin-public</name>
99
<url>http://www.aliyun.com</url>
1010
<description>Aliyun Open API SDK for Java
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
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 java.util.List;
19+
import com.google.gson.Gson;
20+
import com.google.gson.annotations.SerializedName;
21+
import com.aliyuncs.http.ProtocolType;
22+
import com.aliyuncs.http.MethodType;
23+
24+
/**
25+
* @author auto create
26+
* @version
27+
*/
28+
public class AssignQualityRuleOfAllRuleScopeSchedulesRequest extends RpcAcsRequest<AssignQualityRuleOfAllRuleScopeSchedulesResponse> {
29+
30+
31+
private Long opTenantId;
32+
33+
@SerializedName("assignCommand")
34+
private AssignCommand assignCommand;
35+
public AssignQualityRuleOfAllRuleScopeSchedulesRequest() {
36+
super("dataphin-public", "2023-06-30", "AssignQualityRuleOfAllRuleScopeSchedules");
37+
setProtocol(ProtocolType.HTTPS);
38+
setMethod(MethodType.POST);
39+
}
40+
41+
public Long getOpTenantId() {
42+
return this.opTenantId;
43+
}
44+
45+
public void setOpTenantId(Long opTenantId) {
46+
this.opTenantId = opTenantId;
47+
if(opTenantId != null){
48+
putQueryParameter("OpTenantId", opTenantId.toString());
49+
}
50+
}
51+
52+
public AssignCommand getAssignCommand() {
53+
return this.assignCommand;
54+
}
55+
56+
public void setAssignCommand(AssignCommand assignCommand) {
57+
this.assignCommand = assignCommand;
58+
if (assignCommand != null) {
59+
putBodyParameter("AssignCommand" , new Gson().toJson(assignCommand));
60+
}
61+
}
62+
63+
public static class AssignCommand {
64+
65+
@SerializedName("RuleIdList")
66+
private List<Long> ruleIdList;
67+
68+
@SerializedName("WatchId")
69+
private Long watchId;
70+
71+
@SerializedName("ScheduleIdList")
72+
private List<Long> scheduleIdList;
73+
74+
public List<Long> getRuleIdList() {
75+
return this.ruleIdList;
76+
}
77+
78+
public void setRuleIdList(List<Long> ruleIdList) {
79+
this.ruleIdList = ruleIdList;
80+
}
81+
82+
public Long getWatchId() {
83+
return this.watchId;
84+
}
85+
86+
public void setWatchId(Long watchId) {
87+
this.watchId = watchId;
88+
}
89+
90+
public List<Long> getScheduleIdList() {
91+
return this.scheduleIdList;
92+
}
93+
94+
public void setScheduleIdList(List<Long> scheduleIdList) {
95+
this.scheduleIdList = scheduleIdList;
96+
}
97+
}
98+
99+
@Override
100+
public Class<AssignQualityRuleOfAllRuleScopeSchedulesResponse> getResponseClass() {
101+
return AssignQualityRuleOfAllRuleScopeSchedulesResponse.class;
102+
}
103+
104+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
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.AcsResponse;
18+
import com.aliyuncs.dataphin_public.transform.v20230630.AssignQualityRuleOfAllRuleScopeSchedulesResponseUnmarshaller;
19+
import com.aliyuncs.transform.UnmarshallerContext;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class AssignQualityRuleOfAllRuleScopeSchedulesResponse extends AcsResponse {
26+
27+
private String requestId;
28+
29+
private Boolean success;
30+
31+
private Integer httpStatusCode;
32+
33+
private String code;
34+
35+
private String message;
36+
37+
private Boolean data;
38+
39+
public String getRequestId() {
40+
return this.requestId;
41+
}
42+
43+
public void setRequestId(String requestId) {
44+
this.requestId = requestId;
45+
}
46+
47+
public Boolean getSuccess() {
48+
return this.success;
49+
}
50+
51+
public void setSuccess(Boolean success) {
52+
this.success = success;
53+
}
54+
55+
public Integer getHttpStatusCode() {
56+
return this.httpStatusCode;
57+
}
58+
59+
public void setHttpStatusCode(Integer httpStatusCode) {
60+
this.httpStatusCode = httpStatusCode;
61+
}
62+
63+
public String getCode() {
64+
return this.code;
65+
}
66+
67+
public void setCode(String code) {
68+
this.code = code;
69+
}
70+
71+
public String getMessage() {
72+
return this.message;
73+
}
74+
75+
public void setMessage(String message) {
76+
this.message = message;
77+
}
78+
79+
public Boolean getData() {
80+
return this.data;
81+
}
82+
83+
public void setData(Boolean data) {
84+
this.data = data;
85+
}
86+
87+
@Override
88+
public AssignQualityRuleOfAllRuleScopeSchedulesResponse getInstance(UnmarshallerContext context) {
89+
return AssignQualityRuleOfAllRuleScopeSchedulesResponseUnmarshaller.unmarshall(this, context);
90+
}
91+
92+
@Override
93+
public boolean checkShowJsonItemName() {
94+
return false;
95+
}
96+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,115 @@
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 java.util.List;
19+
import com.google.gson.Gson;
20+
import com.google.gson.annotations.SerializedName;
21+
import com.aliyuncs.http.ProtocolType;
22+
import com.aliyuncs.http.MethodType;
23+
24+
/**
25+
* @author auto create
26+
* @version
27+
*/
28+
public class CreateSecurityClassifyCatalogRequest extends RpcAcsRequest<CreateSecurityClassifyCatalogResponse> {
29+
30+
31+
private Long opTenantId;
32+
33+
@SerializedName("createCommand")
34+
private CreateCommand createCommand;
35+
public CreateSecurityClassifyCatalogRequest() {
36+
super("dataphin-public", "2023-06-30", "CreateSecurityClassifyCatalog");
37+
setProtocol(ProtocolType.HTTPS);
38+
setMethod(MethodType.POST);
39+
}
40+
41+
public Long getOpTenantId() {
42+
return this.opTenantId;
43+
}
44+
45+
public void setOpTenantId(Long opTenantId) {
46+
this.opTenantId = opTenantId;
47+
if(opTenantId != null){
48+
putQueryParameter("OpTenantId", opTenantId.toString());
49+
}
50+
}
51+
52+
public CreateCommand getCreateCommand() {
53+
return this.createCommand;
54+
}
55+
56+
public void setCreateCommand(CreateCommand createCommand) {
57+
this.createCommand = createCommand;
58+
if (createCommand != null) {
59+
putBodyParameter("CreateCommand" , new Gson().toJson(createCommand));
60+
}
61+
}
62+
63+
public static class CreateCommand {
64+
65+
@SerializedName("Name")
66+
private String name;
67+
68+
@SerializedName("ParentPath")
69+
private String parentPath;
70+
71+
@SerializedName("OwnerList")
72+
private List<String> ownerList;
73+
74+
@SerializedName("VisibleType")
75+
private String visibleType;
76+
77+
public String getName() {
78+
return this.name;
79+
}
80+
81+
public void setName(String name) {
82+
this.name = name;
83+
}
84+
85+
public String getParentPath() {
86+
return this.parentPath;
87+
}
88+
89+
public void setParentPath(String parentPath) {
90+
this.parentPath = parentPath;
91+
}
92+
93+
public List<String> getOwnerList() {
94+
return this.ownerList;
95+
}
96+
97+
public void setOwnerList(List<String> ownerList) {
98+
this.ownerList = ownerList;
99+
}
100+
101+
public String getVisibleType() {
102+
return this.visibleType;
103+
}
104+
105+
public void setVisibleType(String visibleType) {
106+
this.visibleType = visibleType;
107+
}
108+
}
109+
110+
@Override
111+
public Class<CreateSecurityClassifyCatalogResponse> getResponseClass() {
112+
return CreateSecurityClassifyCatalogResponse.class;
113+
}
114+
115+
}

0 commit comments

Comments
 (0)