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