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

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

The type of reserved keyword to query. Valid values:

*
    *
  • account
  • *
  • database
  • *
*
*

This parameter is required.

*
* * example: *

account

*/ @NameInMap("Key") public String key; @NameInMap("OwnerAccount") public String ownerAccount; @NameInMap("OwnerId") public Long ownerId; @NameInMap("ResourceOwnerAccount") public String resourceOwnerAccount; @NameInMap("ResourceOwnerId") public Long resourceOwnerId; public static DescribeInstanceKeywordsRequest build(java.util.Map map) throws Exception { DescribeInstanceKeywordsRequest self = new DescribeInstanceKeywordsRequest(); return TeaModel.build(map, self); } public DescribeInstanceKeywordsRequest setKey(String key) { this.key = key; return this; } public String getKey() { return this.key; } public DescribeInstanceKeywordsRequest setOwnerAccount(String ownerAccount) { this.ownerAccount = ownerAccount; return this; } public String getOwnerAccount() { return this.ownerAccount; } public DescribeInstanceKeywordsRequest setOwnerId(Long ownerId) { this.ownerId = ownerId; return this; } public Long getOwnerId() { return this.ownerId; } public DescribeInstanceKeywordsRequest setResourceOwnerAccount(String resourceOwnerAccount) { this.resourceOwnerAccount = resourceOwnerAccount; return this; } public String getResourceOwnerAccount() { return this.resourceOwnerAccount; } public DescribeInstanceKeywordsRequest setResourceOwnerId(Long resourceOwnerId) { this.resourceOwnerId = resourceOwnerId; return this; } public Long getResourceOwnerId() { return this.resourceOwnerId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy