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

com.aliyun.arms20190808.models.DescribePrometheusAlertRuleRequest Maven / Gradle / Ivy

Go to download

Alibaba Cloud Application Real-Time Monitoring Service (20190808) SDK for Java

There is a newer version: 10.0.0
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.arms20190808.models;

import com.aliyun.tea.*;

public class DescribePrometheusAlertRuleRequest extends TeaModel {
    /**
     * 

The ID of the alert rule. You can call the ListPrometheusAlertRules operation to query the ID of the alert rule.

*

This parameter is required.

* * example: *

3888704

*/ @NameInMap("AlertId") public Long alertId; /** *

The ID of the Prometheus instance.

* * example: *

cc7a37ee31aea4ed1a059eff8034b****

*/ @NameInMap("ClusterId") public String clusterId; public static DescribePrometheusAlertRuleRequest build(java.util.Map map) throws Exception { DescribePrometheusAlertRuleRequest self = new DescribePrometheusAlertRuleRequest(); return TeaModel.build(map, self); } public DescribePrometheusAlertRuleRequest setAlertId(Long alertId) { this.alertId = alertId; return this; } public Long getAlertId() { return this.alertId; } public DescribePrometheusAlertRuleRequest setClusterId(String clusterId) { this.clusterId = clusterId; return this; } public String getClusterId() { return this.clusterId; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy