com.aliyun.sdk.service.polardb20170801.models.DescribeActiveOperationTasksRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-polardb20170801 Show documentation
Show all versions of alibabacloud-polardb20170801 Show documentation
Alibaba Cloud polardb (20170801) Async SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.polardb20170801.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeActiveOperationTasksRequest} extends {@link RequestModel}
*
* DescribeActiveOperationTasksRequest
*/
public class DescribeActiveOperationTasksRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("AllowCancel")
private Long allowCancel;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("AllowChange")
private Long allowChange;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("ChangeLevel")
private String changeLevel;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("DBClusterId")
private String DBClusterId;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("DBType")
private String DBType;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("OwnerAccount")
private String ownerAccount;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("OwnerId")
private Long ownerId;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("PageNumber")
@com.aliyun.core.annotation.Validation(maximum = 2147483647, minimum = 1)
private Integer pageNumber;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("PageSize")
@com.aliyun.core.annotation.Validation(maximum = 100, minimum = 1)
private Integer pageSize;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("RegionId")
@com.aliyun.core.annotation.Validation(required = true)
private String regionId;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("ResourceOwnerAccount")
private String resourceOwnerAccount;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("ResourceOwnerId")
private Long resourceOwnerId;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("SecurityToken")
private String securityToken;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("Status")
private Long status;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("TaskType")
private String taskType;
private DescribeActiveOperationTasksRequest(Builder builder) {
super(builder);
this.allowCancel = builder.allowCancel;
this.allowChange = builder.allowChange;
this.changeLevel = builder.changeLevel;
this.DBClusterId = builder.DBClusterId;
this.DBType = builder.DBType;
this.ownerAccount = builder.ownerAccount;
this.ownerId = builder.ownerId;
this.pageNumber = builder.pageNumber;
this.pageSize = builder.pageSize;
this.regionId = builder.regionId;
this.resourceOwnerAccount = builder.resourceOwnerAccount;
this.resourceOwnerId = builder.resourceOwnerId;
this.securityToken = builder.securityToken;
this.status = builder.status;
this.taskType = builder.taskType;
}
public static Builder builder() {
return new Builder();
}
public static DescribeActiveOperationTasksRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return allowCancel
*/
public Long getAllowCancel() {
return this.allowCancel;
}
/**
* @return allowChange
*/
public Long getAllowChange() {
return this.allowChange;
}
/**
* @return changeLevel
*/
public String getChangeLevel() {
return this.changeLevel;
}
/**
* @return DBClusterId
*/
public String getDBClusterId() {
return this.DBClusterId;
}
/**
* @return DBType
*/
public String getDBType() {
return this.DBType;
}
/**
* @return ownerAccount
*/
public String getOwnerAccount() {
return this.ownerAccount;
}
/**
* @return ownerId
*/
public Long getOwnerId() {
return this.ownerId;
}
/**
* @return pageNumber
*/
public Integer getPageNumber() {
return this.pageNumber;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @return resourceOwnerAccount
*/
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
/**
* @return resourceOwnerId
*/
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
/**
* @return securityToken
*/
public String getSecurityToken() {
return this.securityToken;
}
/**
* @return status
*/
public Long getStatus() {
return this.status;
}
/**
* @return taskType
*/
public String getTaskType() {
return this.taskType;
}
public static final class Builder extends Request.Builder {
private Long allowCancel;
private Long allowChange;
private String changeLevel;
private String DBClusterId;
private String DBType;
private String ownerAccount;
private Long ownerId;
private Integer pageNumber;
private Integer pageSize;
private String regionId;
private String resourceOwnerAccount;
private Long resourceOwnerId;
private String securityToken;
private Long status;
private String taskType;
private Builder() {
super();
}
private Builder(DescribeActiveOperationTasksRequest request) {
super(request);
this.allowCancel = request.allowCancel;
this.allowChange = request.allowChange;
this.changeLevel = request.changeLevel;
this.DBClusterId = request.DBClusterId;
this.DBType = request.DBType;
this.ownerAccount = request.ownerAccount;
this.ownerId = request.ownerId;
this.pageNumber = request.pageNumber;
this.pageSize = request.pageSize;
this.regionId = request.regionId;
this.resourceOwnerAccount = request.resourceOwnerAccount;
this.resourceOwnerId = request.resourceOwnerId;
this.securityToken = request.securityToken;
this.status = request.status;
this.taskType = request.taskType;
}
/**
* AllowCancel.
*/
public Builder allowCancel(Long allowCancel) {
this.putQueryParameter("AllowCancel", allowCancel);
this.allowCancel = allowCancel;
return this;
}
/**
* AllowChange.
*/
public Builder allowChange(Long allowChange) {
this.putQueryParameter("AllowChange", allowChange);
this.allowChange = allowChange;
return this;
}
/**
* ChangeLevel.
*/
public Builder changeLevel(String changeLevel) {
this.putQueryParameter("ChangeLevel", changeLevel);
this.changeLevel = changeLevel;
return this;
}
/**
* DBClusterId.
*/
public Builder DBClusterId(String DBClusterId) {
this.putQueryParameter("DBClusterId", DBClusterId);
this.DBClusterId = DBClusterId;
return this;
}
/**
* DBType.
*/
public Builder DBType(String DBType) {
this.putQueryParameter("DBType", DBType);
this.DBType = DBType;
return this;
}
/**
* OwnerAccount.
*/
public Builder ownerAccount(String ownerAccount) {
this.putQueryParameter("OwnerAccount", ownerAccount);
this.ownerAccount = ownerAccount;
return this;
}
/**
* OwnerId.
*/
public Builder ownerId(Long ownerId) {
this.putQueryParameter("OwnerId", ownerId);
this.ownerId = ownerId;
return this;
}
/**
* PageNumber.
*/
public Builder pageNumber(Integer pageNumber) {
this.putQueryParameter("PageNumber", pageNumber);
this.pageNumber = pageNumber;
return this;
}
/**
* PageSize.
*/
public Builder pageSize(Integer pageSize) {
this.putQueryParameter("PageSize", pageSize);
this.pageSize = pageSize;
return this;
}
/**
* This parameter is required.
*
* example:
* cn-beijing
*/
public Builder regionId(String regionId) {
this.putQueryParameter("RegionId", regionId);
this.regionId = regionId;
return this;
}
/**
* ResourceOwnerAccount.
*/
public Builder resourceOwnerAccount(String resourceOwnerAccount) {
this.putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
this.resourceOwnerAccount = resourceOwnerAccount;
return this;
}
/**
* ResourceOwnerId.
*/
public Builder resourceOwnerId(Long resourceOwnerId) {
this.putQueryParameter("ResourceOwnerId", resourceOwnerId);
this.resourceOwnerId = resourceOwnerId;
return this;
}
/**
* SecurityToken.
*/
public Builder securityToken(String securityToken) {
this.putQueryParameter("SecurityToken", securityToken);
this.securityToken = securityToken;
return this;
}
/**
* Status.
*/
public Builder status(Long status) {
this.putQueryParameter("Status", status);
this.status = status;
return this;
}
/**
* TaskType.
*/
public Builder taskType(String taskType) {
this.putQueryParameter("TaskType", taskType);
this.taskType = taskType;
return this;
}
@Override
public DescribeActiveOperationTasksRequest build() {
return new DescribeActiveOperationTasksRequest(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy