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

com.pulumi.azurenative.hybridnetwork.inputs.GetVendorPlainArgs Maven / Gradle / Ivy

There is a newer version: 2.78.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.pulumi.azurenative.hybridnetwork.inputs;

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


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

    public static final GetVendorPlainArgs Empty = new GetVendorPlainArgs();

    /**
     * The name of the vendor.
     * 
     */
    @Import(name="vendorName", required=true)
    private String vendorName;

    /**
     * @return The name of the vendor.
     * 
     */
    public String vendorName() {
        return this.vendorName;
    }

    private GetVendorPlainArgs() {}

    private GetVendorPlainArgs(GetVendorPlainArgs $) {
        this.vendorName = $.vendorName;
    }

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

    public static final class Builder {
        private GetVendorPlainArgs $;

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

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

        /**
         * @param vendorName The name of the vendor.
         * 
         * @return builder
         * 
         */
        public Builder vendorName(String vendorName) {
            $.vendorName = vendorName;
            return this;
        }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy