com.aliyuncs.quickbi_public.model.v20220101.QueryComponentPerformanceRequest Maven / Gradle / Ivy
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.quickbi_public.model.v20220101;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class QueryComponentPerformanceRequest extends RpcAcsRequest {
private String reportId;
private Integer pageNum;
private String resourceType;
private Integer pageSize;
private Integer costTimeAvgMin;
private String queryType;
private String workspaceId;
public QueryComponentPerformanceRequest() {
super("quickbi-public", "2022-01-01", "QueryComponentPerformance", "2.2.0");
setMethod(MethodType.POST);
}
public String getReportId() {
return this.reportId;
}
public void setReportId(String reportId) {
this.reportId = reportId;
if(reportId != null){
putQueryParameter("ReportId", reportId);
}
}
public Integer getPageNum() {
return this.pageNum;
}
public void setPageNum(Integer pageNum) {
this.pageNum = pageNum;
if(pageNum != null){
putQueryParameter("PageNum", pageNum.toString());
}
}
public String getResourceType() {
return this.resourceType;
}
public void setResourceType(String resourceType) {
this.resourceType = resourceType;
if(resourceType != null){
putQueryParameter("ResourceType", resourceType);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public Integer getCostTimeAvgMin() {
return this.costTimeAvgMin;
}
public void setCostTimeAvgMin(Integer costTimeAvgMin) {
this.costTimeAvgMin = costTimeAvgMin;
if(costTimeAvgMin != null){
putQueryParameter("CostTimeAvgMin", costTimeAvgMin.toString());
}
}
public String getQueryType() {
return this.queryType;
}
public void setQueryType(String queryType) {
this.queryType = queryType;
if(queryType != null){
putQueryParameter("QueryType", queryType);
}
}
public String getWorkspaceId() {
return this.workspaceId;
}
public void setWorkspaceId(String workspaceId) {
this.workspaceId = workspaceId;
if(workspaceId != null){
putQueryParameter("WorkspaceId", workspaceId);
}
}
@Override
public Class getResponseClass() {
return QueryComponentPerformanceResponse.class;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy