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

com.aliyun.rds20140815.models.DescribeLocalAvailableRecoveryTimeRequest 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 DescribeLocalAvailableRecoveryTimeRequest extends TeaModel {
    /**
     * 

The instance ID.

*

This parameter is required.

* * example: *

rm-uf6wjk5xxxxxxx

*/ @NameInMap("DBInstanceId") public String DBInstanceId; @NameInMap("OwnerId") public Long ownerId; /** *

The region ID. You can call the DescribeRegions operation to query the most recent region list.

* * example: *

cn-hangzhou

*/ @NameInMap("Region") public String region; /** *

The resource group ID.

* * example: *

rg-acfmy*****

*/ @NameInMap("ResourceGroupId") public String resourceGroupId; @NameInMap("ResourceOwnerAccount") public String resourceOwnerAccount; @NameInMap("ResourceOwnerId") public Long resourceOwnerId; public static DescribeLocalAvailableRecoveryTimeRequest build(java.util.Map map) throws Exception { DescribeLocalAvailableRecoveryTimeRequest self = new DescribeLocalAvailableRecoveryTimeRequest(); return TeaModel.build(map, self); } public DescribeLocalAvailableRecoveryTimeRequest setDBInstanceId(String DBInstanceId) { this.DBInstanceId = DBInstanceId; return this; } public String getDBInstanceId() { return this.DBInstanceId; } public DescribeLocalAvailableRecoveryTimeRequest setOwnerId(Long ownerId) { this.ownerId = ownerId; return this; } public Long getOwnerId() { return this.ownerId; } public DescribeLocalAvailableRecoveryTimeRequest setRegion(String region) { this.region = region; return this; } public String getRegion() { return this.region; } public DescribeLocalAvailableRecoveryTimeRequest setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; return this; } public String getResourceGroupId() { return this.resourceGroupId; } public DescribeLocalAvailableRecoveryTimeRequest setResourceOwnerAccount(String resourceOwnerAccount) { this.resourceOwnerAccount = resourceOwnerAccount; return this; } public String getResourceOwnerAccount() { return this.resourceOwnerAccount; } public DescribeLocalAvailableRecoveryTimeRequest setResourceOwnerId(Long resourceOwnerId) { this.resourceOwnerId = resourceOwnerId; return this; } public Long getResourceOwnerId() { return this.resourceOwnerId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy