com.aliyun.rds20140815.models.DescribeInstanceKeywordsRequest 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 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;
}
}