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

com.pulumi.alicloud.vpc.inputs.GetBgpGroupsArgs 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.vpc.inputs;

import com.pulumi.core.Output;
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 GetBgpGroupsArgs extends com.pulumi.resources.InvokeArgs {

    public static final GetBgpGroupsArgs Empty = new GetBgpGroupsArgs();

    /**
     * A list of Bgp Group IDs.
     * 
     */
    @Import(name="ids")
    private @Nullable Output> ids;

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

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

    /**
     * @return A regex string to filter results by Bgp 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 Output 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 virtual border router (VBR) that is associated with the BGP group.
     * 
     */
    @Import(name="routerId")
    private @Nullable Output routerId;

    /**
     * @return The ID of the virtual border router (VBR) that is associated with the BGP group.
     * 
     */
    public Optional> routerId() {
        return Optional.ofNullable(this.routerId);
    }

    /**
     * The status of the resource. Valid values: `Available`, `Deleting` and `Pending`.
     * 
     */
    @Import(name="status")
    private @Nullable Output status;

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

    private GetBgpGroupsArgs() {}

    private GetBgpGroupsArgs(GetBgpGroupsArgs $) {
        this.ids = $.ids;
        this.nameRegex = $.nameRegex;
        this.outputFile = $.outputFile;
        this.routerId = $.routerId;
        this.status = $.status;
    }

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

    public static final class Builder {
        private GetBgpGroupsArgs $;

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

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

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

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

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

        /**
         * @param nameRegex A regex string to filter results by Bgp Group name.
         * 
         * @return builder
         * 
         */
        public Builder nameRegex(@Nullable Output nameRegex) {
            $.nameRegex = nameRegex;
            return this;
        }

        /**
         * @param nameRegex A regex string to filter results by Bgp Group name.
         * 
         * @return builder
         * 
         */
        public Builder nameRegex(String nameRegex) {
            return nameRegex(Output.of(nameRegex));
        }

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

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

        /**
         * @param routerId The ID of the virtual border router (VBR) that is associated with the BGP group.
         * 
         * @return builder
         * 
         */
        public Builder routerId(@Nullable Output routerId) {
            $.routerId = routerId;
            return this;
        }

        /**
         * @param routerId The ID of the virtual border router (VBR) that is associated with the BGP group.
         * 
         * @return builder
         * 
         */
        public Builder routerId(String routerId) {
            return routerId(Output.of(routerId));
        }

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

        /**
         * @param status The status of the resource. Valid values: `Available`, `Deleting` and `Pending`.
         * 
         * @return builder
         * 
         */
        public Builder status(String status) {
            return status(Output.of(status));
        }

        public GetBgpGroupsArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy