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