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

com.equinix.pulumi.metal.inputs.GetVrfPlainArgs Maven / Gradle / Ivy

There is a newer version: 0.19.0
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.equinix.pulumi.metal.inputs;

import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;


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

    public static final GetVrfPlainArgs Empty = new GetVrfPlainArgs();

    /**
     * ID of the VRF resource
     * 
     */
    @Import(name="vrfId", required=true)
    private String vrfId;

    /**
     * @return ID of the VRF resource
     * 
     */
    public String vrfId() {
        return this.vrfId;
    }

    private GetVrfPlainArgs() {}

    private GetVrfPlainArgs(GetVrfPlainArgs $) {
        this.vrfId = $.vrfId;
    }

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

    public static final class Builder {
        private GetVrfPlainArgs $;

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

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

        /**
         * @param vrfId ID of the VRF resource
         * 
         * @return builder
         * 
         */
        public Builder vrfId(String vrfId) {
            $.vrfId = vrfId;
            return this;
        }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy