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

com.pulumi.alicloud.vpn.inputs.GetGatewayZonesArgs 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.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


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

    public static final GetGatewayZonesArgs Empty = new GetGatewayZonesArgs();

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

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

    /**
     * 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);
    }

    /**
     * Bandwidth specification.-If an IPsec connection is bound to a VPN gateway instance, this parameter indicates the Bandwidth specification of the VPN gateway instance.-If an IPsec connection is bound to a forwarding router, this parameter indicates the bandwidth that you expect the IPsec connection to support.Different bandwidth specifications may affect the zone information that is found. Value:
     * - `5M`
     * - `10M`
     * - `20M`
     * - `50M`
     * - `100M`
     * - `200M`
     * - `500M`
     * - `1000M`
     * 
     */
    @Import(name="spec", required=true)
    private Output spec;

    /**
     * @return Bandwidth specification.-If an IPsec connection is bound to a VPN gateway instance, this parameter indicates the Bandwidth specification of the VPN gateway instance.-If an IPsec connection is bound to a forwarding router, this parameter indicates the bandwidth that you expect the IPsec connection to support.Different bandwidth specifications may affect the zone information that is found. Value:
     * - `5M`
     * - `10M`
     * - `20M`
     * - `50M`
     * - `100M`
     * - `200M`
     * - `500M`
     * - `1000M`
     * 
     */
    public Output spec() {
        return this.spec;
    }

    private GetGatewayZonesArgs() {}

    private GetGatewayZonesArgs(GetGatewayZonesArgs $) {
        this.ids = $.ids;
        this.outputFile = $.outputFile;
        this.spec = $.spec;
    }

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

    public static final class Builder {
        private GetGatewayZonesArgs $;

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

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

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

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

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

        /**
         * @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 spec Bandwidth specification.-If an IPsec connection is bound to a VPN gateway instance, this parameter indicates the Bandwidth specification of the VPN gateway instance.-If an IPsec connection is bound to a forwarding router, this parameter indicates the bandwidth that you expect the IPsec connection to support.Different bandwidth specifications may affect the zone information that is found. Value:
         * - `5M`
         * - `10M`
         * - `20M`
         * - `50M`
         * - `100M`
         * - `200M`
         * - `500M`
         * - `1000M`
         * 
         * @return builder
         * 
         */
        public Builder spec(Output spec) {
            $.spec = spec;
            return this;
        }

        /**
         * @param spec Bandwidth specification.-If an IPsec connection is bound to a VPN gateway instance, this parameter indicates the Bandwidth specification of the VPN gateway instance.-If an IPsec connection is bound to a forwarding router, this parameter indicates the bandwidth that you expect the IPsec connection to support.Different bandwidth specifications may affect the zone information that is found. Value:
         * - `5M`
         * - `10M`
         * - `20M`
         * - `50M`
         * - `100M`
         * - `200M`
         * - `500M`
         * - `1000M`
         * 
         * @return builder
         * 
         */
        public Builder spec(String spec) {
            return spec(Output.of(spec));
        }

        public GetGatewayZonesArgs build() {
            if ($.spec == null) {
                throw new MissingRequiredPropertyException("GetGatewayZonesArgs", "spec");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy