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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy