com.aliyun.rds20140815.models.DescribeOssDownloadsRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rds20140815 Show documentation
Show all versions of rds20140815 Show documentation
Alibaba Cloud rds (20140815) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.rds20140815.models;
import com.aliyun.tea.*;
public class DescribeOssDownloadsRequest extends TeaModel {
/**
* The instance ID. You can call the DescribeDBInstances operation to query the instance ID.
* This parameter is required.
*
* example:
* rm-uf6wjk5xxxxxxx
*/
@NameInMap("DBInstanceId")
public String DBInstanceId;
/**
* The migration task ID. You can call the DescribeMigrateTasks operation to query the migration task ID.
* This parameter is required.
*
* example:
* 5625458541
*/
@NameInMap("MigrateTaskId")
public String migrateTaskId;
@NameInMap("OwnerId")
public Long ownerId;
/**
* The ID of the resource group.
*
* example:
* rg-acfmy*****
*/
@NameInMap("ResourceGroupId")
public String resourceGroupId;
@NameInMap("ResourceOwnerAccount")
public String resourceOwnerAccount;
@NameInMap("ResourceOwnerId")
public Long resourceOwnerId;
public static DescribeOssDownloadsRequest build(java.util.Map map) throws Exception {
DescribeOssDownloadsRequest self = new DescribeOssDownloadsRequest();
return TeaModel.build(map, self);
}
public DescribeOssDownloadsRequest setDBInstanceId(String DBInstanceId) {
this.DBInstanceId = DBInstanceId;
return this;
}
public String getDBInstanceId() {
return this.DBInstanceId;
}
public DescribeOssDownloadsRequest setMigrateTaskId(String migrateTaskId) {
this.migrateTaskId = migrateTaskId;
return this;
}
public String getMigrateTaskId() {
return this.migrateTaskId;
}
public DescribeOssDownloadsRequest setOwnerId(Long ownerId) {
this.ownerId = ownerId;
return this;
}
public Long getOwnerId() {
return this.ownerId;
}
public DescribeOssDownloadsRequest setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
return this;
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
public DescribeOssDownloadsRequest setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
return this;
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public DescribeOssDownloadsRequest setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
return this;
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
}