com.pulumi.azurenative.datafactory.outputs.EnvironmentVariableSetupResponse 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.datafactory.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class EnvironmentVariableSetupResponse {
/**
* @return The type of custom setup.
* Expected value is 'EnvironmentVariableSetup'.
*
*/
private String type;
/**
* @return The name of the environment variable.
*
*/
private String variableName;
/**
* @return The value of the environment variable.
*
*/
private String variableValue;
private EnvironmentVariableSetupResponse() {}
/**
* @return The type of custom setup.
* Expected value is 'EnvironmentVariableSetup'.
*
*/
public String type() {
return this.type;
}
/**
* @return The name of the environment variable.
*
*/
public String variableName() {
return this.variableName;
}
/**
* @return The value of the environment variable.
*
*/
public String variableValue() {
return this.variableValue;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(EnvironmentVariableSetupResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String type;
private String variableName;
private String variableValue;
public Builder() {}
public Builder(EnvironmentVariableSetupResponse defaults) {
Objects.requireNonNull(defaults);
this.type = defaults.type;
this.variableName = defaults.variableName;
this.variableValue = defaults.variableValue;
}
@CustomType.Setter
public Builder type(String type) {
if (type == null) {
throw new MissingRequiredPropertyException("EnvironmentVariableSetupResponse", "type");
}
this.type = type;
return this;
}
@CustomType.Setter
public Builder variableName(String variableName) {
if (variableName == null) {
throw new MissingRequiredPropertyException("EnvironmentVariableSetupResponse", "variableName");
}
this.variableName = variableName;
return this;
}
@CustomType.Setter
public Builder variableValue(String variableValue) {
if (variableValue == null) {
throw new MissingRequiredPropertyException("EnvironmentVariableSetupResponse", "variableValue");
}
this.variableValue = variableValue;
return this;
}
public EnvironmentVariableSetupResponse build() {
final var _resultValue = new EnvironmentVariableSetupResponse();
_resultValue.type = type;
_resultValue.variableName = variableName;
_resultValue.variableValue = variableValue;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy