com.aliyun.arms20190808.models.DescribeTraceLicenseKeyRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of arms20190808 Show documentation
Show all versions of arms20190808 Show documentation
Alibaba Cloud Application Real-Time Monitoring Service (20190808) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.arms20190808.models;
import com.aliyun.tea.*;
public class DescribeTraceLicenseKeyRequest extends TeaModel {
/**
* The region ID.
*
* example:
* cn-hangzhou
*/
@NameInMap("RegionId")
public String regionId;
public static DescribeTraceLicenseKeyRequest build(java.util.Map map) throws Exception {
DescribeTraceLicenseKeyRequest self = new DescribeTraceLicenseKeyRequest();
return TeaModel.build(map, self);
}
public DescribeTraceLicenseKeyRequest setRegionId(String regionId) {
this.regionId = regionId;
return this;
}
public String getRegionId() {
return this.regionId;
}
}