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

com.pulumi.azurenative.network.inputs.GetBastionHostPlainArgs Maven / Gradle / Ivy

// *** 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.network.inputs;

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


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

    public static final GetBastionHostPlainArgs Empty = new GetBastionHostPlainArgs();

    /**
     * The name of the Bastion Host.
     * 
     */
    @Import(name="bastionHostName", required=true)
    private String bastionHostName;

    /**
     * @return The name of the Bastion Host.
     * 
     */
    public String bastionHostName() {
        return this.bastionHostName;
    }

    /**
     * The name of the resource group.
     * 
     */
    @Import(name="resourceGroupName", required=true)
    private String resourceGroupName;

    /**
     * @return The name of the resource group.
     * 
     */
    public String resourceGroupName() {
        return this.resourceGroupName;
    }

    private GetBastionHostPlainArgs() {}

    private GetBastionHostPlainArgs(GetBastionHostPlainArgs $) {
        this.bastionHostName = $.bastionHostName;
        this.resourceGroupName = $.resourceGroupName;
    }

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

    public static final class Builder {
        private GetBastionHostPlainArgs $;

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

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

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

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

        public GetBastionHostPlainArgs build() {
            if ($.bastionHostName == null) {
                throw new MissingRequiredPropertyException("GetBastionHostPlainArgs", "bastionHostName");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("GetBastionHostPlainArgs", "resourceGroupName");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy