com.pulumi.azure.containerapp.inputs.AppTemplateInitContainerEnvArgs Maven / Gradle / Ivy
// *** 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.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;
import java.util.Optional;
import javax.annotation.Nullable;
public final class AppTemplateInitContainerEnvArgs extends com.pulumi.resources.ResourceArgs {
public static final AppTemplateInitContainerEnvArgs Empty = new AppTemplateInitContainerEnvArgs();
/**
* The name of the environment variable for the container.
*
*/
@Import(name="name", required=true)
private Output name;
/**
* @return The name of the environment variable for the container.
*
*/
public Output name() {
return this.name;
}
/**
* The name of the secret that contains the value for this environment variable.
*
*/
@Import(name="secretName")
private @Nullable Output secretName;
/**
* @return The name of the secret that contains the value for this environment variable.
*
*/
public Optional