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

com.pulumi.azurenative.resources.inputs.GetDeploymentStackAtSubscriptionPlainArgs Maven / Gradle / Ivy

There is a newer version: 2.72.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.resources.inputs;

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


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

    public static final GetDeploymentStackAtSubscriptionPlainArgs Empty = new GetDeploymentStackAtSubscriptionPlainArgs();

    /**
     * Name of the deployment stack.
     * 
     */
    @Import(name="deploymentStackName", required=true)
    private String deploymentStackName;

    /**
     * @return Name of the deployment stack.
     * 
     */
    public String deploymentStackName() {
        return this.deploymentStackName;
    }

    private GetDeploymentStackAtSubscriptionPlainArgs() {}

    private GetDeploymentStackAtSubscriptionPlainArgs(GetDeploymentStackAtSubscriptionPlainArgs $) {
        this.deploymentStackName = $.deploymentStackName;
    }

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

    public static final class Builder {
        private GetDeploymentStackAtSubscriptionPlainArgs $;

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

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

        /**
         * @param deploymentStackName Name of the deployment stack.
         * 
         * @return builder
         * 
         */
        public Builder deploymentStackName(String deploymentStackName) {
            $.deploymentStackName = deploymentStackName;
            return this;
        }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy