com.aliyun.arms20190808.models.CheckServiceStatusRequest 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 CheckServiceStatusRequest extends TeaModel {
/**
* The region ID.
*
* example:
* cn-beijing
*/
@NameInMap("RegionId")
public String regionId;
/**
* The service code of an Alibaba Cloud service. The service code of Managed Service for Prometheus is prometheus.
* This parameter is required.
*
* example:
* prometheus
*/
@NameInMap("SvcCode")
public String svcCode;
public static CheckServiceStatusRequest build(java.util.Map map) throws Exception {
CheckServiceStatusRequest self = new CheckServiceStatusRequest();
return TeaModel.build(map, self);
}
public CheckServiceStatusRequest setRegionId(String regionId) {
this.regionId = regionId;
return this;
}
public String getRegionId() {
return this.regionId;
}
public CheckServiceStatusRequest setSvcCode(String svcCode) {
this.svcCode = svcCode;
return this;
}
public String getSvcCode() {
return this.svcCode;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy