Skip to content

Commit 45eb2f4

Browse files
committed
Add some APIs.
1 parent fd7ca82 commit 45eb2f4

26 files changed

+1444
-1
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+
2025-09-11 Version: 2.1.19
2+
- Add some APIs.
3+
14
2025-08-11 Version: 2.1.18
25
- Add QueryDashboardNl2sql, QueryLastAccelerationEngineJob 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.18</version>
7+
<version>2.1.19</version>
88
<name>aliyun-java-sdk-quickbi-public</name>
99
<url>http://www.aliyun.com</url>
1010
<description>Aliyun Open API SDK for Java
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
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.quickbi_public.model.v20220101;
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 AddDataSourceRequest extends RpcAcsRequest<AddDataSourceResponse> {
26+
27+
28+
private String addModel;
29+
public AddDataSourceRequest() {
30+
super("quickbi-public", "2022-01-01", "AddDataSource", "2.2.0");
31+
setProtocol(ProtocolType.HTTPS);
32+
setMethod(MethodType.POST);
33+
}
34+
35+
public String getAddModel() {
36+
return this.addModel;
37+
}
38+
39+
public void setAddModel(String addModel) {
40+
this.addModel = addModel;
41+
if(addModel != null){
42+
putQueryParameter("AddModel", addModel);
43+
}
44+
}
45+
46+
@Override
47+
public Class<AddDataSourceResponse> getResponseClass() {
48+
return AddDataSourceResponse.class;
49+
}
50+
51+
}
Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
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.quickbi_public.model.v20220101;
16+
17+
import com.aliyuncs.AcsResponse;
18+
import com.aliyuncs.quickbi_public.transform.v20220101.AddDataSourceResponseUnmarshaller;
19+
import com.aliyuncs.transform.UnmarshallerContext;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class AddDataSourceResponse extends AcsResponse {
26+
27+
private String requestId;
28+
29+
private String result;
30+
31+
private Boolean success;
32+
33+
public String getRequestId() {
34+
return this.requestId;
35+
}
36+
37+
public void setRequestId(String requestId) {
38+
this.requestId = requestId;
39+
}
40+
41+
public String getResult() {
42+
return this.result;
43+
}
44+
45+
public void setResult(String result) {
46+
this.result = result;
47+
}
48+
49+
public Boolean getSuccess() {
50+
return this.success;
51+
}
52+
53+
public void setSuccess(Boolean success) {
54+
this.success = success;
55+
}
56+
57+
@Override
58+
public AddDataSourceResponse getInstance(UnmarshallerContext context) {
59+
return AddDataSourceResponseUnmarshaller.unmarshall(this, context);
60+
}
61+
62+
@Override
63+
public boolean checkShowJsonItemName() {
64+
return false;
65+
}
66+
}
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
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.quickbi_public.model.v20220101;
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 CheckDatasetExistedRequest extends RpcAcsRequest<CheckDatasetExistedResponse> {
26+
27+
28+
private String cubeId;
29+
public CheckDatasetExistedRequest() {
30+
super("quickbi-public", "2022-01-01", "CheckDatasetExisted", "2.2.0");
31+
setProtocol(ProtocolType.HTTPS);
32+
setMethod(MethodType.POST);
33+
}
34+
35+
public String getCubeId() {
36+
return this.cubeId;
37+
}
38+
39+
public void setCubeId(String cubeId) {
40+
this.cubeId = cubeId;
41+
if(cubeId != null){
42+
putQueryParameter("CubeId", cubeId);
43+
}
44+
}
45+
46+
@Override
47+
public Class<CheckDatasetExistedResponse> getResponseClass() {
48+
return CheckDatasetExistedResponse.class;
49+
}
50+
51+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
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.quickbi_public.model.v20220101;
16+
17+
import com.aliyuncs.AcsResponse;
18+
import com.aliyuncs.quickbi_public.transform.v20220101.CheckDatasetExistedResponseUnmarshaller;
19+
import com.aliyuncs.transform.UnmarshallerContext;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class CheckDatasetExistedResponse extends AcsResponse {
26+
27+
private String requestId;
28+
29+
private Boolean result;
30+
31+
private Boolean success;
32+
33+
public String getRequestId() {
34+
return this.requestId;
35+
}
36+
37+
public void setRequestId(String requestId) {
38+
this.requestId = requestId;
39+
}
40+
41+
public Boolean getResult() {
42+
return this.result;
43+
}
44+
45+
public void setResult(Boolean result) {
46+
this.result = result;
47+
}
48+
49+
public Boolean getSuccess() {
50+
return this.success;
51+
}
52+
53+
public void setSuccess(Boolean success) {
54+
this.success = success;
55+
}
56+
57+
@Override
58+
public CheckDatasetExistedResponse getInstance(UnmarshallerContext context) {
59+
return CheckDatasetExistedResponseUnmarshaller.unmarshall(this, context);
60+
}
61+
62+
@Override
63+
public boolean checkShowJsonItemName() {
64+
return false;
65+
}
66+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
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.quickbi_public.model.v20220101;
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 CheckOrganizationMemberRequest extends RpcAcsRequest<CheckOrganizationMemberResponse> {
26+
27+
28+
private String userId;
29+
public CheckOrganizationMemberRequest() {
30+
super("quickbi-public", "2022-01-01", "CheckOrganizationMember", "2.2.0");
31+
setProtocol(ProtocolType.HTTPS);
32+
setMethod(MethodType.POST);
33+
}
34+
35+
public String getUserId() {
36+
return this.userId;
37+
}
38+
39+
public void setUserId(String userId) {
40+
this.userId = userId;
41+
if(userId != null){
42+
putQueryParameter("UserId", userId);
43+
}
44+
}
45+
46+
@Override
47+
public Class<CheckOrganizationMemberResponse> getResponseClass() {
48+
return CheckOrganizationMemberResponse.class;
49+
}
50+
51+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
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.quickbi_public.model.v20220101;
16+
17+
import com.aliyuncs.AcsResponse;
18+
import com.aliyuncs.quickbi_public.transform.v20220101.CheckOrganizationMemberResponseUnmarshaller;
19+
import com.aliyuncs.transform.UnmarshallerContext;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class CheckOrganizationMemberResponse extends AcsResponse {
26+
27+
private String requestId;
28+
29+
private Boolean result;
30+
31+
private Boolean success;
32+
33+
public String getRequestId() {
34+
return this.requestId;
35+
}
36+
37+
public void setRequestId(String requestId) {
38+
this.requestId = requestId;
39+
}
40+
41+
public Boolean getResult() {
42+
return this.result;
43+
}
44+
45+
public void setResult(Boolean result) {
46+
this.result = result;
47+
}
48+
49+
public Boolean getSuccess() {
50+
return this.success;
51+
}
52+
53+
public void setSuccess(Boolean success) {
54+
this.success = success;
55+
}
56+
57+
@Override
58+
public CheckOrganizationMemberResponse getInstance(UnmarshallerContext context) {
59+
return CheckOrganizationMemberResponseUnmarshaller.unmarshall(this, context);
60+
}
61+
62+
@Override
63+
public boolean checkShowJsonItemName() {
64+
return false;
65+
}
66+
}

0 commit comments

Comments
 (0)