
com.pulumi.azurenative.resources.inputs.GetDeploymentStackAtSubscriptionArgs 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.resources.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetDeploymentStackAtSubscriptionArgs extends com.pulumi.resources.InvokeArgs {
public static final GetDeploymentStackAtSubscriptionArgs Empty = new GetDeploymentStackAtSubscriptionArgs();
/**
* Name of the deployment stack.
*
*/
@Import(name="deploymentStackName", required=true)
private Output deploymentStackName;
/**
* @return Name of the deployment stack.
*
*/
public Output deploymentStackName() {
return this.deploymentStackName;
}
private GetDeploymentStackAtSubscriptionArgs() {}
private GetDeploymentStackAtSubscriptionArgs(GetDeploymentStackAtSubscriptionArgs $) {
this.deploymentStackName = $.deploymentStackName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetDeploymentStackAtSubscriptionArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetDeploymentStackAtSubscriptionArgs $;
public Builder() {
$ = new GetDeploymentStackAtSubscriptionArgs();
}
public Builder(GetDeploymentStackAtSubscriptionArgs defaults) {
$ = new GetDeploymentStackAtSubscriptionArgs(Objects.requireNonNull(defaults));
}
/**
* @param deploymentStackName Name of the deployment stack.
*
* @return builder
*
*/
public Builder deploymentStackName(Output deploymentStackName) {
$.deploymentStackName = deploymentStackName;
return this;
}
/**
* @param deploymentStackName Name of the deployment stack.
*
* @return builder
*
*/
public Builder deploymentStackName(String deploymentStackName) {
return deploymentStackName(Output.of(deploymentStackName));
}
public GetDeploymentStackAtSubscriptionArgs build() {
if ($.deploymentStackName == null) {
throw new MissingRequiredPropertyException("GetDeploymentStackAtSubscriptionArgs", "deploymentStackName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy