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