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

com.pulumi.alicloud.ess.inputs.GetAlarmsPlainArgs 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.ess.inputs;

import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


public final class GetAlarmsPlainArgs extends com.pulumi.resources.InvokeArgs {

    public static final GetAlarmsPlainArgs Empty = new GetAlarmsPlainArgs();

    /**
     * A list of alarm IDs.
     * 
     */
    @Import(name="ids")
    private @Nullable List ids;

    /**
     * @return A list of alarm IDs.
     * 
     */
    public Optional> ids() {
        return Optional.ofNullable(this.ids);
    }

    /**
     * The type for the alarm's associated metric. Supported value: system, custom. "system" means the metric data is collected by Aliyun Cloud Monitor Service(CMS), "custom" means the metric data is upload to CMS by users. Defaults to system.
     * 
     */
    @Import(name="metricType")
    private @Nullable String metricType;

    /**
     * @return The type for the alarm's associated metric. Supported value: system, custom. "system" means the metric data is collected by Aliyun Cloud Monitor Service(CMS), "custom" means the metric data is upload to CMS by users. Defaults to system.
     * 
     */
    public Optional metricType() {
        return Optional.ofNullable(this.metricType);
    }

    /**
     * A regex string to filter resulting alarms by name.
     * 
     */
    @Import(name="nameRegex")
    private @Nullable String nameRegex;

    /**
     * @return A regex string to filter resulting alarms by name.
     * 
     */
    public Optional nameRegex() {
        return Optional.ofNullable(this.nameRegex);
    }

    /**
     * File name where to save data source results (after running `pulumi preview`).
     * 
     */
    @Import(name="outputFile")
    private @Nullable String outputFile;

    /**
     * @return File name where to save data source results (after running `pulumi preview`).
     * 
     */
    public Optional outputFile() {
        return Optional.ofNullable(this.outputFile);
    }

    /**
     * Scaling group id the alarms belong to.
     * 
     */
    @Import(name="scalingGroupId")
    private @Nullable String scalingGroupId;

    /**
     * @return Scaling group id the alarms belong to.
     * 
     */
    public Optional scalingGroupId() {
        return Optional.ofNullable(this.scalingGroupId);
    }

    private GetAlarmsPlainArgs() {}

    private GetAlarmsPlainArgs(GetAlarmsPlainArgs $) {
        this.ids = $.ids;
        this.metricType = $.metricType;
        this.nameRegex = $.nameRegex;
        this.outputFile = $.outputFile;
        this.scalingGroupId = $.scalingGroupId;
    }

    public static Builder builder() {
        return new Builder();
    }
    public static Builder builder(GetAlarmsPlainArgs defaults) {
        return new Builder(defaults);
    }

    public static final class Builder {
        private GetAlarmsPlainArgs $;

        public Builder() {
            $ = new GetAlarmsPlainArgs();
        }

        public Builder(GetAlarmsPlainArgs defaults) {
            $ = new GetAlarmsPlainArgs(Objects.requireNonNull(defaults));
        }

        /**
         * @param ids A list of alarm IDs.
         * 
         * @return builder
         * 
         */
        public Builder ids(@Nullable List ids) {
            $.ids = ids;
            return this;
        }

        /**
         * @param ids A list of alarm IDs.
         * 
         * @return builder
         * 
         */
        public Builder ids(String... ids) {
            return ids(List.of(ids));
        }

        /**
         * @param metricType The type for the alarm's associated metric. Supported value: system, custom. "system" means the metric data is collected by Aliyun Cloud Monitor Service(CMS), "custom" means the metric data is upload to CMS by users. Defaults to system.
         * 
         * @return builder
         * 
         */
        public Builder metricType(@Nullable String metricType) {
            $.metricType = metricType;
            return this;
        }

        /**
         * @param nameRegex A regex string to filter resulting alarms by name.
         * 
         * @return builder
         * 
         */
        public Builder nameRegex(@Nullable String nameRegex) {
            $.nameRegex = nameRegex;
            return this;
        }

        /**
         * @param outputFile File name where to save data source results (after running `pulumi preview`).
         * 
         * @return builder
         * 
         */
        public Builder outputFile(@Nullable String outputFile) {
            $.outputFile = outputFile;
            return this;
        }

        /**
         * @param scalingGroupId Scaling group id the alarms belong to.
         * 
         * @return builder
         * 
         */
        public Builder scalingGroupId(@Nullable String scalingGroupId) {
            $.scalingGroupId = scalingGroupId;
            return this;
        }

        public GetAlarmsPlainArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy