com.pulumi.azure.containerapp.outputs.AppTemplateContainerEnv Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure Show documentation
Show all versions of azure Show documentation
A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.
// *** 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.azure.containerapp.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class AppTemplateContainerEnv {
/**
* @return The name of the environment variable for the container.
*
*/
private String name;
/**
* @return The name of the secret that contains the value for this environment variable.
*
*/
private @Nullable String secretName;
/**
* @return The value for this environment variable.
*
* > **NOTE:** This value is ignored if `secret_name` is used
*
*/
private @Nullable String value;
private AppTemplateContainerEnv() {}
/**
* @return The name of the environment variable for the container.
*
*/
public String name() {
return this.name;
}
/**
* @return The name of the secret that contains the value for this environment variable.
*
*/
public Optional secretName() {
return Optional.ofNullable(this.secretName);
}
/**
* @return The value for this environment variable.
*
* > **NOTE:** This value is ignored if `secret_name` is used
*
*/
public Optional value() {
return Optional.ofNullable(this.value);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(AppTemplateContainerEnv defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String name;
private @Nullable String secretName;
private @Nullable String value;
public Builder() {}
public Builder(AppTemplateContainerEnv defaults) {
Objects.requireNonNull(defaults);
this.name = defaults.name;
this.secretName = defaults.secretName;
this.value = defaults.value;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("AppTemplateContainerEnv", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder secretName(@Nullable String secretName) {
this.secretName = secretName;
return this;
}
@CustomType.Setter
public Builder value(@Nullable String value) {
this.value = value;
return this;
}
public AppTemplateContainerEnv build() {
final var _resultValue = new AppTemplateContainerEnv();
_resultValue.name = name;
_resultValue.secretName = secretName;
_resultValue.value = value;
return _resultValue;
}
}
}