com.aliyun.rds20140815.models.DescribeInstanceLinkedWhitelistTemplateRequest 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 DescribeInstanceLinkedWhitelistTemplateRequest extends TeaModel {
/**
* The instance name.
* This parameter is required.
*
* example:
* rm-bp191w771kd3****
*/
@NameInMap("InsName")
public String insName;
/**
* The region ID. You can call the DescribeRegions operation to query the most recent region list.
*
* example:
* cn-hangzhou
*/
@NameInMap("RegionId")
public String regionId;
/**
* The resource group ID. You can leave this parameter empty.
*
* example:
* rg-aek3dbzqbh6****
*/
@NameInMap("ResourceGroupId")
public String resourceGroupId;
@NameInMap("ResourceOwnerAccount")
public String resourceOwnerAccount;
@NameInMap("ResourceOwnerId")
public Long resourceOwnerId;
public static DescribeInstanceLinkedWhitelistTemplateRequest build(java.util.Map map) throws Exception {
DescribeInstanceLinkedWhitelistTemplateRequest self = new DescribeInstanceLinkedWhitelistTemplateRequest();
return TeaModel.build(map, self);
}
public DescribeInstanceLinkedWhitelistTemplateRequest setInsName(String insName) {
this.insName = insName;
return this;
}
public String getInsName() {
return this.insName;
}
public DescribeInstanceLinkedWhitelistTemplateRequest setRegionId(String regionId) {
this.regionId = regionId;
return this;
}
public String getRegionId() {
return this.regionId;
}
public DescribeInstanceLinkedWhitelistTemplateRequest setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
return this;
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
public DescribeInstanceLinkedWhitelistTemplateRequest setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
return this;
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public DescribeInstanceLinkedWhitelistTemplateRequest setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
return this;
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
}