com.aliyun.waf_openapi20211001.models.DescribeResourceSupportRegionsRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of waf_openapi20211001 Show documentation
Show all versions of waf_openapi20211001 Show documentation
Alibaba Cloud waf-openapi (20211001) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.waf_openapi20211001.models;
import com.aliyun.tea.*;
public class DescribeResourceSupportRegionsRequest extends TeaModel {
/**
* The ID of the WAF instance.
*
* You can call the DescribeInstance operation to obtain the ID of the WAF instance.
*
* This parameter is required.
*
* example:
* waf_cdnsdf3****
*/
@NameInMap("InstanceId")
public String instanceId;
/**
* The region in which the WAF instance is deployed. Valid values:
*
* - cn-hangzhou: Chinese mainland.
* - ap-southeast-1: outside the Chinese mainland.
*
*
* example:
* cn-hangzhou
*/
@NameInMap("RegionId")
public String regionId;
/**
* The ID of the Alibaba Cloud resource group.
*
* example:
* rg-aekzpks****kdjq
*/
@NameInMap("ResourceManagerResourceGroupId")
public String resourceManagerResourceGroupId;
@NameInMap("ResourceProduct")
public String resourceProduct;
public static DescribeResourceSupportRegionsRequest build(java.util.Map map) throws Exception {
DescribeResourceSupportRegionsRequest self = new DescribeResourceSupportRegionsRequest();
return TeaModel.build(map, self);
}
public DescribeResourceSupportRegionsRequest setInstanceId(String instanceId) {
this.instanceId = instanceId;
return this;
}
public String getInstanceId() {
return this.instanceId;
}
public DescribeResourceSupportRegionsRequest setRegionId(String regionId) {
this.regionId = regionId;
return this;
}
public String getRegionId() {
return this.regionId;
}
public DescribeResourceSupportRegionsRequest setResourceManagerResourceGroupId(String resourceManagerResourceGroupId) {
this.resourceManagerResourceGroupId = resourceManagerResourceGroupId;
return this;
}
public String getResourceManagerResourceGroupId() {
return this.resourceManagerResourceGroupId;
}
public DescribeResourceSupportRegionsRequest setResourceProduct(String resourceProduct) {
this.resourceProduct = resourceProduct;
return this;
}
public String getResourceProduct() {
return this.resourceProduct;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy