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