public static interface V1.EnvVarOrBuilder
extends com.google.protobuf.MessageOrBuilder
Modifier and Type | Method and Description |
---|---|
String |
getName()
Name of the environment variable.
|
com.google.protobuf.ByteString |
getNameBytes()
Name of the environment variable.
|
String |
getValue()
Variable references $(VAR_NAME) are expanded
using the previously defined environment variables in the container and
any service environment variables.
|
com.google.protobuf.ByteString |
getValueBytes()
Variable references $(VAR_NAME) are expanded
using the previously defined environment variables in the container and
any service environment variables.
|
V1.EnvVarSource |
getValueFrom()
Source for the environment variable's value.
|
V1.EnvVarSourceOrBuilder |
getValueFromOrBuilder()
Source for the environment variable's value.
|
boolean |
hasName()
Name of the environment variable.
|
boolean |
hasValue()
Variable references $(VAR_NAME) are expanded
using the previously defined environment variables in the container and
any service environment variables.
|
boolean |
hasValueFrom()
Source for the environment variable's value.
|
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
boolean hasName()
Name of the environment variable. Must be a C_IDENTIFIER.
optional string name = 1;
String getName()
Name of the environment variable. Must be a C_IDENTIFIER.
optional string name = 1;
com.google.protobuf.ByteString getNameBytes()
Name of the environment variable. Must be a C_IDENTIFIER.
optional string name = 1;
boolean hasValue()
Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to "". +optional
optional string value = 2;
String getValue()
Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to "". +optional
optional string value = 2;
com.google.protobuf.ByteString getValueBytes()
Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to "". +optional
optional string value = 2;
boolean hasValueFrom()
Source for the environment variable's value. Cannot be used if value is not empty. +optional
optional .k8s.io.api.core.v1.EnvVarSource valueFrom = 3;
V1.EnvVarSource getValueFrom()
Source for the environment variable's value. Cannot be used if value is not empty. +optional
optional .k8s.io.api.core.v1.EnvVarSource valueFrom = 3;
V1.EnvVarSourceOrBuilder getValueFromOrBuilder()
Source for the environment variable's value. Cannot be used if value is not empty. +optional
optional .k8s.io.api.core.v1.EnvVarSource valueFrom = 3;
Copyright © 2022. All rights reserved.