com.pulumi.azurenative.resources.inputs.GetDeploymentAtScopeArgs 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 GetDeploymentAtScopeArgs extends com.pulumi.resources.InvokeArgs {
public static final GetDeploymentAtScopeArgs Empty = new GetDeploymentAtScopeArgs();
/**
* 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;
}
/**
* The resource scope.
*
*/
@Import(name="scope", required=true)
private Output scope;
/**
* @return The resource scope.
*
*/
public Output scope() {
return this.scope;
}
private GetDeploymentAtScopeArgs() {}
private GetDeploymentAtScopeArgs(GetDeploymentAtScopeArgs $) {
this.deploymentName = $.deploymentName;
this.scope = $.scope;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetDeploymentAtScopeArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetDeploymentAtScopeArgs $;
public Builder() {
$ = new GetDeploymentAtScopeArgs();
}
public Builder(GetDeploymentAtScopeArgs defaults) {
$ = new GetDeploymentAtScopeArgs(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));
}
/**
* @param scope The resource scope.
*
* @return builder
*
*/
public Builder scope(Output scope) {
$.scope = scope;
return this;
}
/**
* @param scope The resource scope.
*
* @return builder
*
*/
public Builder scope(String scope) {
return scope(Output.of(scope));
}
public GetDeploymentAtScopeArgs build() {
if ($.deploymentName == null) {
throw new MissingRequiredPropertyException("GetDeploymentAtScopeArgs", "deploymentName");
}
if ($.scope == null) {
throw new MissingRequiredPropertyException("GetDeploymentAtScopeArgs", "scope");
}
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy