
com.pulumi.azurenative.resources.inputs.GetDeploymentAtSubscriptionScopeArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** 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 GetDeploymentAtSubscriptionScopeArgs extends com.pulumi.resources.InvokeArgs {
public static final GetDeploymentAtSubscriptionScopeArgs Empty = new GetDeploymentAtSubscriptionScopeArgs();
/**
* The name of the deployment.
*
*/
@Import(name="deploymentName", required=true)
private Output deploymentName;
/**
* @return The name of the deployment.
*
*/
public Output deploymentName() {
return this.deploymentName;
}
private GetDeploymentAtSubscriptionScopeArgs() {}
private GetDeploymentAtSubscriptionScopeArgs(GetDeploymentAtSubscriptionScopeArgs $) {
this.deploymentName = $.deploymentName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetDeploymentAtSubscriptionScopeArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetDeploymentAtSubscriptionScopeArgs $;
public Builder() {
$ = new GetDeploymentAtSubscriptionScopeArgs();
}
public Builder(GetDeploymentAtSubscriptionScopeArgs defaults) {
$ = new GetDeploymentAtSubscriptionScopeArgs(Objects.requireNonNull(defaults));
}
/**
* @param deploymentName The name of the deployment.
*
* @return builder
*
*/
public Builder deploymentName(Output deploymentName) {
$.deploymentName = deploymentName;
return this;
}
/**
* @param deploymentName The name of the deployment.
*
* @return builder
*
*/
public Builder deploymentName(String deploymentName) {
return deploymentName(Output.of(deploymentName));
}
public GetDeploymentAtSubscriptionScopeArgs build() {
if ($.deploymentName == null) {
throw new MissingRequiredPropertyException("GetDeploymentAtSubscriptionScopeArgs", "deploymentName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy