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

com.pulumi.alicloud.nlb.inputs.GetServerGroupsPlainArgs 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.nlb.inputs;

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


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

    public static final GetServerGroupsPlainArgs Empty = new GetServerGroupsPlainArgs();

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

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

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

    /**
     * @return A regex string to filter results by Server Group 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);
    }

    /**
     * The ID of the resource group to which the security group belongs.
     * 
     */
    @Import(name="resourceGroupId")
    private @Nullable String resourceGroupId;

    /**
     * @return The ID of the resource group to which the security group belongs.
     * 
     */
    public Optional resourceGroupId() {
        return Optional.ofNullable(this.resourceGroupId);
    }

    /**
     * The names of the server groups to be queried.
     * 
     */
    @Import(name="serverGroupNames")
    private @Nullable List serverGroupNames;

    /**
     * @return The names of the server groups to be queried.
     * 
     */
    public Optional> serverGroupNames() {
        return Optional.ofNullable(this.serverGroupNames);
    }

    /**
     * The type of the server group. Valid values: `Instance`, `Ip`.
     * 
     */
    @Import(name="serverGroupType")
    private @Nullable String serverGroupType;

    /**
     * @return The type of the server group. Valid values: `Instance`, `Ip`.
     * 
     */
    public Optional serverGroupType() {
        return Optional.ofNullable(this.serverGroupType);
    }

    /**
     * The status of the resource. Valid values: `Available`, `Configuring`, `Creating`.
     * 
     */
    @Import(name="status")
    private @Nullable String status;

    /**
     * @return The status of the resource. Valid values: `Available`, `Configuring`, `Creating`.
     * 
     */
    public Optional status() {
        return Optional.ofNullable(this.status);
    }

    @Import(name="tags")
    private @Nullable Map tags;

    public Optional> tags() {
        return Optional.ofNullable(this.tags);
    }

    private GetServerGroupsPlainArgs() {}

    private GetServerGroupsPlainArgs(GetServerGroupsPlainArgs $) {
        this.ids = $.ids;
        this.nameRegex = $.nameRegex;
        this.outputFile = $.outputFile;
        this.resourceGroupId = $.resourceGroupId;
        this.serverGroupNames = $.serverGroupNames;
        this.serverGroupType = $.serverGroupType;
        this.status = $.status;
        this.tags = $.tags;
    }

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

    public static final class Builder {
        private GetServerGroupsPlainArgs $;

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

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

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

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

        /**
         * @param nameRegex A regex string to filter results by Server Group 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 resourceGroupId The ID of the resource group to which the security group belongs.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupId(@Nullable String resourceGroupId) {
            $.resourceGroupId = resourceGroupId;
            return this;
        }

        /**
         * @param serverGroupNames The names of the server groups to be queried.
         * 
         * @return builder
         * 
         */
        public Builder serverGroupNames(@Nullable List serverGroupNames) {
            $.serverGroupNames = serverGroupNames;
            return this;
        }

        /**
         * @param serverGroupNames The names of the server groups to be queried.
         * 
         * @return builder
         * 
         */
        public Builder serverGroupNames(String... serverGroupNames) {
            return serverGroupNames(List.of(serverGroupNames));
        }

        /**
         * @param serverGroupType The type of the server group. Valid values: `Instance`, `Ip`.
         * 
         * @return builder
         * 
         */
        public Builder serverGroupType(@Nullable String serverGroupType) {
            $.serverGroupType = serverGroupType;
            return this;
        }

        /**
         * @param status The status of the resource. Valid values: `Available`, `Configuring`, `Creating`.
         * 
         * @return builder
         * 
         */
        public Builder status(@Nullable String status) {
            $.status = status;
            return this;
        }

        public Builder tags(@Nullable Map tags) {
            $.tags = tags;
            return this;
        }

        public GetServerGroupsPlainArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy