com.aliyun.rds20140815.models.DescribeCrossRegionLogBackupFilesRequest Maven / Gradle / Ivy
Show all versions of rds20140815 Show documentation
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.rds20140815.models;
import com.aliyun.tea.*;
public class DescribeCrossRegionLogBackupFilesRequest extends TeaModel {
/**
* The ID of the destination region within which the cross-region backup file is stored. You can call the DescribeCrossRegionBackupDBInstance operation to query the region ID.
*
* example:
* cn-shanghai
*/
@NameInMap("CrossBackupRegion")
public String crossBackupRegion;
/**
* The instance ID.
* This parameter is required.
*
* example:
* rm-uf6wjk5xxxxxxxxxx
*/
@NameInMap("DBInstanceId")
public String DBInstanceId;
/**
* The end of the time range to query. Specify the time in the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time must be in UTC.
* This parameter is required.
*
* example:
* 2019-06-15T12:10:00Z
*/
@NameInMap("EndTime")
public String endTime;
@NameInMap("OwnerId")
public Long ownerId;
/**
* The page number. Valid values: any non-zero positive integer.
* Default value: 1.
*
* example:
* 1
*/
@NameInMap("PageNumber")
public Integer pageNumber;
/**
* The number of entries to return on each page. Valid values:
*
* - 30
* - 50
* - 100
*
* Default value: 30.
*
* example:
* 30
*/
@NameInMap("PageSize")
public Integer pageSize;
/**
* The region ID. You can call the DescribeRegions operation to query the most recent region list.
* This parameter is required.
*
* example:
* cn-hangzhou
*/
@NameInMap("RegionId")
public String regionId;
@NameInMap("ResourceOwnerAccount")
public String resourceOwnerAccount;
@NameInMap("ResourceOwnerId")
public Long resourceOwnerId;
/**
* The beginning of the time range to query. Specify the time in the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time must be in UTC.
* This parameter is required.
*
* example:
* 2019-05-30T12:10:00Z
*/
@NameInMap("StartTime")
public String startTime;
public static DescribeCrossRegionLogBackupFilesRequest build(java.util.Map map) throws Exception {
DescribeCrossRegionLogBackupFilesRequest self = new DescribeCrossRegionLogBackupFilesRequest();
return TeaModel.build(map, self);
}
public DescribeCrossRegionLogBackupFilesRequest setCrossBackupRegion(String crossBackupRegion) {
this.crossBackupRegion = crossBackupRegion;
return this;
}
public String getCrossBackupRegion() {
return this.crossBackupRegion;
}
public DescribeCrossRegionLogBackupFilesRequest setDBInstanceId(String DBInstanceId) {
this.DBInstanceId = DBInstanceId;
return this;
}
public String getDBInstanceId() {
return this.DBInstanceId;
}
public DescribeCrossRegionLogBackupFilesRequest setEndTime(String endTime) {
this.endTime = endTime;
return this;
}
public String getEndTime() {
return this.endTime;
}
public DescribeCrossRegionLogBackupFilesRequest setOwnerId(Long ownerId) {
this.ownerId = ownerId;
return this;
}
public Long getOwnerId() {
return this.ownerId;
}
public DescribeCrossRegionLogBackupFilesRequest setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public DescribeCrossRegionLogBackupFilesRequest setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public DescribeCrossRegionLogBackupFilesRequest setRegionId(String regionId) {
this.regionId = regionId;
return this;
}
public String getRegionId() {
return this.regionId;
}
public DescribeCrossRegionLogBackupFilesRequest setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
return this;
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public DescribeCrossRegionLogBackupFilesRequest setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
return this;
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public DescribeCrossRegionLogBackupFilesRequest setStartTime(String startTime) {
this.startTime = startTime;
return this;
}
public String getStartTime() {
return this.startTime;
}
}