Skip to content

Commit 98c52c3

Browse files
committed
Add API Ram meta.
1 parent 33cbaf2 commit 98c52c3

File tree

148 files changed

+3738
-3713
lines changed

Some content is hidden

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

148 files changed

+3738
-3713
lines changed

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2024-09-18 Version: 2.1.9
2+
- Add API Ram meta.
3+
14
2024-08-07 Version: 2.1.8
25
- Add QueryData, ModifyCopilotEmbedConfig, QueryCopilotEmbedConfig and QueryDataRange APIs.
36

aliyun-java-sdk-quickbi-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-quickbi-public</artifactId>
66
<packaging>jar</packaging>
7-
<version>2.1.8</version>
7+
<version>2.1.9</version>
88
<name>aliyun-java-sdk-quickbi-public</name>
99
<url>http://www.aliyun.com</url>
1010
<description>Aliyun Open API SDK for Java

aliyun-java-sdk-quickbi-public/src/main/java/com/aliyuncs/quickbi_public/model/v20220101/AddDataLevelPermissionWhiteListRequest.java

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ public class AddDataLevelPermissionWhiteListRequest extends RpcAcsRequest<AddDat
2626

2727
private String targetType;
2828

29+
private String cubeId;
30+
2931
private String targetIds;
3032

3133
private String ruleType;
3234

33-
private String operateType;
34-
35-
private String cubeId;
35+
private String operateType;
3636
public AddDataLevelPermissionWhiteListRequest() {
3737
super("quickbi-public", "2022-01-01", "AddDataLevelPermissionWhiteList", "2.2.0");
3838
setMethod(MethodType.POST);
@@ -49,6 +49,17 @@ public void setTargetType(String targetType) {
4949
}
5050
}
5151

52+
public String getCubeId() {
53+
return this.cubeId;
54+
}
55+
56+
public void setCubeId(String cubeId) {
57+
this.cubeId = cubeId;
58+
if(cubeId != null){
59+
putQueryParameter("CubeId", cubeId);
60+
}
61+
}
62+
5263
public String getTargetIds() {
5364
return this.targetIds;
5465
}
@@ -80,17 +91,6 @@ public void setOperateType(String operateType) {
8091
if(operateType != null){
8192
putQueryParameter("OperateType", operateType);
8293
}
83-
}
84-
85-
public String getCubeId() {
86-
return this.cubeId;
87-
}
88-
89-
public void setCubeId(String cubeId) {
90-
this.cubeId = cubeId;
91-
if(cubeId != null){
92-
putQueryParameter("CubeId", cubeId);
93-
}
9494
}
9595

9696
@Override

aliyun-java-sdk-quickbi-public/src/main/java/com/aliyuncs/quickbi_public/model/v20220101/AddShareReportRequest.java

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@
2424
public class AddShareReportRequest extends RpcAcsRequest<AddShareReportResponse> {
2525

2626

27-
private Integer authPoint;
28-
2927
private Long expireDate;
3028

29+
private Integer authPoint;
30+
3131
private Integer shareToType;
3232

3333
private String worksId;
@@ -38,17 +38,6 @@ public AddShareReportRequest() {
3838
setMethod(MethodType.POST);
3939
}
4040

41-
public Integer getAuthPoint() {
42-
return this.authPoint;
43-
}
44-
45-
public void setAuthPoint(Integer authPoint) {
46-
this.authPoint = authPoint;
47-
if(authPoint != null){
48-
putQueryParameter("AuthPoint", authPoint.toString());
49-
}
50-
}
51-
5241
public Long getExpireDate() {
5342
return this.expireDate;
5443
}
@@ -60,6 +49,17 @@ public void setExpireDate(Long expireDate) {
6049
}
6150
}
6251

52+
public Integer getAuthPoint() {
53+
return this.authPoint;
54+
}
55+
56+
public void setAuthPoint(Integer authPoint) {
57+
this.authPoint = authPoint;
58+
if(authPoint != null){
59+
putQueryParameter("AuthPoint", authPoint.toString());
60+
}
61+
}
62+
6363
public Integer getShareToType() {
6464
return this.shareToType;
6565
}

aliyun-java-sdk-quickbi-public/src/main/java/com/aliyuncs/quickbi_public/model/v20220101/AddUserRequest.java

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ public class AddUserRequest extends RpcAcsRequest<AddUserResponse> {
2626

2727
private Boolean adminUser;
2828

29-
private Integer userType;
30-
3129
private String roleIds;
3230

3331
private String accountName;
3432

3533
private String nickName;
3634

37-
private Boolean authAdminUser;
35+
private Boolean authAdminUser;
36+
37+
private Integer userType;
3838
public AddUserRequest() {
3939
super("quickbi-public", "2022-01-01", "AddUser", "2.2.0");
4040
setMethod(MethodType.POST);
@@ -51,17 +51,6 @@ public void setAdminUser(Boolean adminUser) {
5151
}
5252
}
5353

54-
public Integer getUserType() {
55-
return this.userType;
56-
}
57-
58-
public void setUserType(Integer userType) {
59-
this.userType = userType;
60-
if(userType != null){
61-
putQueryParameter("UserType", userType.toString());
62-
}
63-
}
64-
6554
public String getRoleIds() {
6655
return this.roleIds;
6756
}
@@ -104,6 +93,17 @@ public void setAuthAdminUser(Boolean authAdminUser) {
10493
if(authAdminUser != null){
10594
putQueryParameter("AuthAdminUser", authAdminUser.toString());
10695
}
96+
}
97+
98+
public Integer getUserType() {
99+
return this.userType;
100+
}
101+
102+
public void setUserType(Integer userType) {
103+
this.userType = userType;
104+
if(userType != null){
105+
putQueryParameter("UserType", userType.toString());
106+
}
107107
}
108108

109109
@Override

aliyun-java-sdk-quickbi-public/src/main/java/com/aliyuncs/quickbi_public/model/v20220101/AddUserResponse.java

Lines changed: 45 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -25,19 +25,11 @@
2525
*/
2626
public class AddUserResponse extends AcsResponse {
2727

28-
private Boolean success;
29-
3028
private String requestId;
3129

32-
private Result result;
33-
34-
public Boolean getSuccess() {
35-
return this.success;
36-
}
30+
private Boolean success;
3731

38-
public void setSuccess(Boolean success) {
39-
this.success = success;
40-
}
32+
private Result result;
4133

4234
public String getRequestId() {
4335
return this.requestId;
@@ -47,6 +39,14 @@ public void setRequestId(String requestId) {
4739
this.requestId = requestId;
4840
}
4941

42+
public Boolean getSuccess() {
43+
return this.success;
44+
}
45+
46+
public void setSuccess(Boolean success) {
47+
this.success = success;
48+
}
49+
5050
public Result getResult() {
5151
return this.result;
5252
}
@@ -57,46 +57,38 @@ public void setResult(Result result) {
5757

5858
public static class Result {
5959

60-
private Integer userType;
61-
62-
private String email;
60+
private String accountName;
6361

64-
private String userId;
62+
private Boolean adminUser;
6563

6664
private Boolean authAdminUser;
6765

68-
private String nickName;
66+
private String email;
6967

70-
private Boolean adminUser;
68+
private String nickName;
7169

7270
private String phone;
7371

74-
private String accountName;
75-
76-
private List<Long> roleIdList;
72+
private String userId;
7773

78-
public Integer getUserType() {
79-
return this.userType;
80-
}
74+
private Integer userType;
8175

82-
public void setUserType(Integer userType) {
83-
this.userType = userType;
84-
}
76+
private List<Long> roleIdList;
8577

86-
public String getEmail() {
87-
return this.email;
78+
public String getAccountName() {
79+
return this.accountName;
8880
}
8981

90-
public void setEmail(String email) {
91-
this.email = email;
82+
public void setAccountName(String accountName) {
83+
this.accountName = accountName;
9284
}
9385

94-
public String getUserId() {
95-
return this.userId;
86+
public Boolean getAdminUser() {
87+
return this.adminUser;
9688
}
9789

98-
public void setUserId(String userId) {
99-
this.userId = userId;
90+
public void setAdminUser(Boolean adminUser) {
91+
this.adminUser = adminUser;
10092
}
10193

10294
public Boolean getAuthAdminUser() {
@@ -107,20 +99,20 @@ public void setAuthAdminUser(Boolean authAdminUser) {
10799
this.authAdminUser = authAdminUser;
108100
}
109101

110-
public String getNickName() {
111-
return this.nickName;
102+
public String getEmail() {
103+
return this.email;
112104
}
113105

114-
public void setNickName(String nickName) {
115-
this.nickName = nickName;
106+
public void setEmail(String email) {
107+
this.email = email;
116108
}
117109

118-
public Boolean getAdminUser() {
119-
return this.adminUser;
110+
public String getNickName() {
111+
return this.nickName;
120112
}
121113

122-
public void setAdminUser(Boolean adminUser) {
123-
this.adminUser = adminUser;
114+
public void setNickName(String nickName) {
115+
this.nickName = nickName;
124116
}
125117

126118
public String getPhone() {
@@ -131,12 +123,20 @@ public void setPhone(String phone) {
131123
this.phone = phone;
132124
}
133125

134-
public String getAccountName() {
135-
return this.accountName;
126+
public String getUserId() {
127+
return this.userId;
136128
}
137129

138-
public void setAccountName(String accountName) {
139-
this.accountName = accountName;
130+
public void setUserId(String userId) {
131+
this.userId = userId;
132+
}
133+
134+
public Integer getUserType() {
135+
return this.userType;
136+
}
137+
138+
public void setUserType(Integer userType) {
139+
this.userType = userType;
140140
}
141141

142142
public List<Long> getRoleIdList() {

aliyun-java-sdk-quickbi-public/src/main/java/com/aliyuncs/quickbi_public/model/v20220101/AddUserTagMetaRequest.java

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -24,25 +24,14 @@
2424
public class AddUserTagMetaRequest extends RpcAcsRequest<AddUserTagMetaResponse> {
2525

2626

27-
private String tagDescription;
27+
private String tagName;
2828

29-
private String tagName;
29+
private String tagDescription;
3030
public AddUserTagMetaRequest() {
3131
super("quickbi-public", "2022-01-01", "AddUserTagMeta", "2.2.0");
3232
setMethod(MethodType.POST);
3333
}
3434

35-
public String getTagDescription() {
36-
return this.tagDescription;
37-
}
38-
39-
public void setTagDescription(String tagDescription) {
40-
this.tagDescription = tagDescription;
41-
if(tagDescription != null){
42-
putQueryParameter("TagDescription", tagDescription);
43-
}
44-
}
45-
4635
public String getTagName() {
4736
return this.tagName;
4837
}
@@ -52,6 +41,17 @@ public void setTagName(String tagName) {
5241
if(tagName != null){
5342
putQueryParameter("TagName", tagName);
5443
}
44+
}
45+
46+
public String getTagDescription() {
47+
return this.tagDescription;
48+
}
49+
50+
public void setTagDescription(String tagDescription) {
51+
this.tagDescription = tagDescription;
52+
if(tagDescription != null){
53+
putQueryParameter("TagDescription", tagDescription);
54+
}
5555
}
5656

5757
@Override

0 commit comments

Comments
 (0)