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

com.aliyun.polardb20170801.models.DeleteDBLinkRequest Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.polardb20170801.models;

import com.aliyun.tea.*;

public class DeleteDBLinkRequest extends TeaModel {
    /**
     * 

The ID of the source cluster where a database link is to be deleted.

*
*

You can call the DescribeDBClusters operation to query PolarDB clusters.

*
*

This parameter is required.

* * example: *

pc-**************

*/ @NameInMap("DBClusterId") public String DBClusterId; /** *

The name of the database link to be deleted.

*

This parameter is required.

* * example: *

dblink_test

*/ @NameInMap("DBLinkName") public String DBLinkName; @NameInMap("OwnerAccount") public String ownerAccount; @NameInMap("OwnerId") public Long ownerId; @NameInMap("ResourceOwnerAccount") public String resourceOwnerAccount; @NameInMap("ResourceOwnerId") public Long resourceOwnerId; public static DeleteDBLinkRequest build(java.util.Map map) throws Exception { DeleteDBLinkRequest self = new DeleteDBLinkRequest(); return TeaModel.build(map, self); } public DeleteDBLinkRequest setDBClusterId(String DBClusterId) { this.DBClusterId = DBClusterId; return this; } public String getDBClusterId() { return this.DBClusterId; } public DeleteDBLinkRequest setDBLinkName(String DBLinkName) { this.DBLinkName = DBLinkName; return this; } public String getDBLinkName() { return this.DBLinkName; } public DeleteDBLinkRequest setOwnerAccount(String ownerAccount) { this.ownerAccount = ownerAccount; return this; } public String getOwnerAccount() { return this.ownerAccount; } public DeleteDBLinkRequest setOwnerId(Long ownerId) { this.ownerId = ownerId; return this; } public Long getOwnerId() { return this.ownerId; } public DeleteDBLinkRequest setResourceOwnerAccount(String resourceOwnerAccount) { this.resourceOwnerAccount = resourceOwnerAccount; return this; } public String getResourceOwnerAccount() { return this.resourceOwnerAccount; } public DeleteDBLinkRequest setResourceOwnerId(Long resourceOwnerId) { this.resourceOwnerId = resourceOwnerId; return this; } public Long getResourceOwnerId() { return this.resourceOwnerId; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy