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

com.pulumi.alicloud.vpn.inputs.GetGatewayVpnAttachmentsPlainArgs 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.vpn.inputs;

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


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

    public static final GetGatewayVpnAttachmentsPlainArgs Empty = new GetGatewayVpnAttachmentsPlainArgs();

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

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

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

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

    @Import(name="pageNumber")
    private @Nullable Integer pageNumber;

    public Optional pageNumber() {
        return Optional.ofNullable(this.pageNumber);
    }

    @Import(name="pageSize")
    private @Nullable Integer pageSize;

    public Optional pageSize() {
        return Optional.ofNullable(this.pageSize);
    }

    /**
     * The status of the resource. Valid values: `init`, `active`, `attaching`, `attached`, `detaching`, `financialLocked`, `provisioning`, `updating`, `upgrading`, `deleted`.
     * 
     */
    @Import(name="status")
    private @Nullable String status;

    /**
     * @return The status of the resource. Valid values: `init`, `active`, `attaching`, `attached`, `detaching`, `financialLocked`, `provisioning`, `updating`, `upgrading`, `deleted`.
     * 
     */
    public Optional status() {
        return Optional.ofNullable(this.status);
    }

    /**
     * The parameter 'vpn_gateway_id' has been deprecated from 1.194.0.
     * 
     * @deprecated
     * The parameter 'vpn_gateway_id' has been deprecated from 1.194.0.
     * 
     */
    @Deprecated /* The parameter 'vpn_gateway_id' has been deprecated from 1.194.0. */
    @Import(name="vpnGatewayId")
    private @Nullable String vpnGatewayId;

    /**
     * @return The parameter 'vpn_gateway_id' has been deprecated from 1.194.0.
     * 
     * @deprecated
     * The parameter 'vpn_gateway_id' has been deprecated from 1.194.0.
     * 
     */
    @Deprecated /* The parameter 'vpn_gateway_id' has been deprecated from 1.194.0. */
    public Optional vpnGatewayId() {
        return Optional.ofNullable(this.vpnGatewayId);
    }

    private GetGatewayVpnAttachmentsPlainArgs() {}

    private GetGatewayVpnAttachmentsPlainArgs(GetGatewayVpnAttachmentsPlainArgs $) {
        this.ids = $.ids;
        this.nameRegex = $.nameRegex;
        this.outputFile = $.outputFile;
        this.pageNumber = $.pageNumber;
        this.pageSize = $.pageSize;
        this.status = $.status;
        this.vpnGatewayId = $.vpnGatewayId;
    }

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

    public static final class Builder {
        private GetGatewayVpnAttachmentsPlainArgs $;

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

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

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

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

        /**
         * @param nameRegex A regex string to filter results by Vpn Attachment 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;
        }

        public Builder pageNumber(@Nullable Integer pageNumber) {
            $.pageNumber = pageNumber;
            return this;
        }

        public Builder pageSize(@Nullable Integer pageSize) {
            $.pageSize = pageSize;
            return this;
        }

        /**
         * @param status The status of the resource. Valid values: `init`, `active`, `attaching`, `attached`, `detaching`, `financialLocked`, `provisioning`, `updating`, `upgrading`, `deleted`.
         * 
         * @return builder
         * 
         */
        public Builder status(@Nullable String status) {
            $.status = status;
            return this;
        }

        /**
         * @param vpnGatewayId The parameter 'vpn_gateway_id' has been deprecated from 1.194.0.
         * 
         * @return builder
         * 
         * @deprecated
         * The parameter 'vpn_gateway_id' has been deprecated from 1.194.0.
         * 
         */
        @Deprecated /* The parameter 'vpn_gateway_id' has been deprecated from 1.194.0. */
        public Builder vpnGatewayId(@Nullable String vpnGatewayId) {
            $.vpnGatewayId = vpnGatewayId;
            return this;
        }

        public GetGatewayVpnAttachmentsPlainArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy