All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.rds20140815.models.DescribeOssDownloadsRequest Maven / Gradle / Ivy

There is a newer version: 6.3.2
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy