com.aliyun.waf_openapi20211001.models.SyncProductInstanceRequest 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 SyncProductInstanceRequest extends TeaModel {
/**
* The ID of the WAF instance.
*
* You can call the DescribeInstance operation to query the ID of the WAF instance.
*
* This parameter is required.
*
* example:
* waf_v3prepaid_public_cn-zsk****fb09
*/
@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-acfm4co****f5qa
*/
@NameInMap("ResourceManagerResourceGroupId")
public String resourceManagerResourceGroupId;
public static SyncProductInstanceRequest build(java.util.Map map) throws Exception {
SyncProductInstanceRequest self = new SyncProductInstanceRequest();
return TeaModel.build(map, self);
}
public SyncProductInstanceRequest setInstanceId(String instanceId) {
this.instanceId = instanceId;
return this;
}
public String getInstanceId() {
return this.instanceId;
}
public SyncProductInstanceRequest setRegionId(String regionId) {
this.regionId = regionId;
return this;
}
public String getRegionId() {
return this.regionId;
}
public SyncProductInstanceRequest setResourceManagerResourceGroupId(String resourceManagerResourceGroupId) {
this.resourceManagerResourceGroupId = resourceManagerResourceGroupId;
return this;
}
public String getResourceManagerResourceGroupId() {
return this.resourceManagerResourceGroupId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy