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

com.pulumi.alicloud.arms.PrometheusAlertRule Maven / Gradle / Ivy

There is a newer version: 3.63.0-alpha.1727424957
Show newest version
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***

package com.pulumi.alicloud.arms;

import com.pulumi.alicloud.Utilities;
import com.pulumi.alicloud.arms.PrometheusAlertRuleArgs;
import com.pulumi.alicloud.arms.inputs.PrometheusAlertRuleState;
import com.pulumi.alicloud.arms.outputs.PrometheusAlertRuleAnnotation;
import com.pulumi.alicloud.arms.outputs.PrometheusAlertRuleLabel;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Export;
import com.pulumi.core.annotations.ResourceType;
import com.pulumi.core.internal.Codegen;
import java.lang.Integer;
import java.lang.String;
import java.util.List;
import java.util.Optional;
import javax.annotation.Nullable;

/**
 * Provides a Application Real-Time Monitoring Service (ARMS) Prometheus Alert Rule resource.
 * 
 * For information about Application Real-Time Monitoring Service (ARMS) Prometheus Alert Rule and how to use it, see [What is Prometheus Alert Rule](https://www.alibabacloud.com/help/en/doc-detail/212056.htm).
 * 
 * > **NOTE:** Available since v1.136.0.
 * 
 * ## Import
 * 
 * Application Real-Time Monitoring Service (ARMS) Prometheus Alert Rule can be imported using the id, e.g.
 * 
 * ```sh
 * $ pulumi import alicloud:arms/prometheusAlertRule:PrometheusAlertRule example <cluster_id>:<prometheus_alert_rule_id>
 * ```
 * 
 */
@ResourceType(type="alicloud:arms/prometheusAlertRule:PrometheusAlertRule")
public class PrometheusAlertRule extends com.pulumi.resources.CustomResource {
    /**
     * The annotations of the alert rule. See `annotations` below.
     * 
     */
    @Export(name="annotations", refs={List.class,PrometheusAlertRuleAnnotation.class}, tree="[0,1]")
    private Output> annotations;

    /**
     * @return The annotations of the alert rule. See `annotations` below.
     * 
     */
    public Output>> annotations() {
        return Codegen.optional(this.annotations);
    }
    /**
     * The ID of the cluster.
     * 
     */
    @Export(name="clusterId", refs={String.class}, tree="[0]")
    private Output clusterId;

    /**
     * @return The ID of the cluster.
     * 
     */
    public Output clusterId() {
        return this.clusterId;
    }
    /**
     * The ID of the notification policy. This parameter is required when the `notify_type` parameter is set to `DISPATCH_RULE`.
     * 
     */
    @Export(name="dispatchRuleId", refs={String.class}, tree="[0]")
    private Output dispatchRuleId;

    /**
     * @return The ID of the notification policy. This parameter is required when the `notify_type` parameter is set to `DISPATCH_RULE`.
     * 
     */
    public Output> dispatchRuleId() {
        return Codegen.optional(this.dispatchRuleId);
    }
    /**
     * The duration of the alert.
     * 
     */
    @Export(name="duration", refs={String.class}, tree="[0]")
    private Output duration;

    /**
     * @return The duration of the alert.
     * 
     */
    public Output duration() {
        return this.duration;
    }
    /**
     * The alert rule expression that follows the PromQL syntax.
     * 
     */
    @Export(name="expression", refs={String.class}, tree="[0]")
    private Output expression;

    /**
     * @return The alert rule expression that follows the PromQL syntax.
     * 
     */
    public Output expression() {
        return this.expression;
    }
    /**
     * The labels of the resource. See `labels` below.
     * 
     */
    @Export(name="labels", refs={List.class,PrometheusAlertRuleLabel.class}, tree="[0,1]")
    private Output> labels;

    /**
     * @return The labels of the resource. See `labels` below.
     * 
     */
    public Output>> labels() {
        return Codegen.optional(this.labels);
    }
    /**
     * The message of the alert notification.
     * 
     */
    @Export(name="message", refs={String.class}, tree="[0]")
    private Output message;

    /**
     * @return The message of the alert notification.
     * 
     */
    public Output message() {
        return this.message;
    }
    /**
     * The method of sending the alert notification. Valid values: `ALERT_MANAGER`, `DISPATCH_RULE`.
     * 
     */
    @Export(name="notifyType", refs={String.class}, tree="[0]")
    private Output notifyType;

    /**
     * @return The method of sending the alert notification. Valid values: `ALERT_MANAGER`, `DISPATCH_RULE`.
     * 
     */
    public Output> notifyType() {
        return Codegen.optional(this.notifyType);
    }
    /**
     * The first ID of the resource.
     * 
     */
    @Export(name="prometheusAlertRuleId", refs={Integer.class}, tree="[0]")
    private Output prometheusAlertRuleId;

    /**
     * @return The first ID of the resource.
     * 
     */
    public Output prometheusAlertRuleId() {
        return this.prometheusAlertRuleId;
    }
    /**
     * The name of the resource.
     * 
     */
    @Export(name="prometheusAlertRuleName", refs={String.class}, tree="[0]")
    private Output prometheusAlertRuleName;

    /**
     * @return The name of the resource.
     * 
     */
    public Output prometheusAlertRuleName() {
        return this.prometheusAlertRuleName;
    }
    /**
     * The status of the resource. Valid values: `0`, `1`.
     * 
     */
    @Export(name="status", refs={Integer.class}, tree="[0]")
    private Output status;

    /**
     * @return The status of the resource. Valid values: `0`, `1`.
     * 
     */
    public Output status() {
        return this.status;
    }
    /**
     * The type of the alert rule.
     * 
     */
    @Export(name="type", refs={String.class}, tree="[0]")
    private Output type;

    /**
     * @return The type of the alert rule.
     * 
     */
    public Output type() {
        return this.type;
    }

    /**
     *
     * @param name The _unique_ name of the resulting resource.
     */
    public PrometheusAlertRule(java.lang.String name) {
        this(name, PrometheusAlertRuleArgs.Empty);
    }
    /**
     *
     * @param name The _unique_ name of the resulting resource.
     * @param args The arguments to use to populate this resource's properties.
     */
    public PrometheusAlertRule(java.lang.String name, PrometheusAlertRuleArgs args) {
        this(name, args, null);
    }
    /**
     *
     * @param name The _unique_ name of the resulting resource.
     * @param args The arguments to use to populate this resource's properties.
     * @param options A bag of options that control this resource's behavior.
     */
    public PrometheusAlertRule(java.lang.String name, PrometheusAlertRuleArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) {
        super("alicloud:arms/prometheusAlertRule:PrometheusAlertRule", name, makeArgs(args, options), makeResourceOptions(options, Codegen.empty()), false);
    }

    private PrometheusAlertRule(java.lang.String name, Output id, @Nullable PrometheusAlertRuleState state, @Nullable com.pulumi.resources.CustomResourceOptions options) {
        super("alicloud:arms/prometheusAlertRule:PrometheusAlertRule", name, state, makeResourceOptions(options, id), false);
    }

    private static PrometheusAlertRuleArgs makeArgs(PrometheusAlertRuleArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) {
        if (options != null && options.getUrn().isPresent()) {
            return null;
        }
        return args == null ? PrometheusAlertRuleArgs.Empty : args;
    }

    private static com.pulumi.resources.CustomResourceOptions makeResourceOptions(@Nullable com.pulumi.resources.CustomResourceOptions options, @Nullable Output id) {
        var defaultOptions = com.pulumi.resources.CustomResourceOptions.builder()
            .version(Utilities.getVersion())
            .build();
        return com.pulumi.resources.CustomResourceOptions.merge(defaultOptions, options, id);
    }

    /**
     * Get an existing Host resource's state with the given name, ID, and optional extra
     * properties used to qualify the lookup.
     *
     * @param name The _unique_ name of the resulting resource.
     * @param id The _unique_ provider ID of the resource to lookup.
     * @param state
     * @param options Optional settings to control the behavior of the CustomResource.
     */
    public static PrometheusAlertRule get(java.lang.String name, Output id, @Nullable PrometheusAlertRuleState state, @Nullable com.pulumi.resources.CustomResourceOptions options) {
        return new PrometheusAlertRule(name, id, state, options);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy