Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 1.34 KB

File metadata and controls

32 lines (25 loc) · 1.34 KB

V1EnvVarSource

EnvVarSource represents a source for the value of an EnvVar.

Properties

Name Type Description Notes
config_map_key_ref V1ConfigMapKeySelector [optional]
field_ref V1ObjectFieldSelector [optional]
file_key_ref V1FileKeySelector [optional]
resource_field_ref V1ResourceFieldSelector [optional]
secret_key_ref V1SecretKeySelector [optional]

Example

from kubernetes.client.models.v1_env_var_source import V1EnvVarSource

# TODO update the JSON string below
json = "{}"
# create an instance of V1EnvVarSource from a JSON string
v1_env_var_source_instance = V1EnvVarSource.from_json(json)
# print the JSON string representation of the object
print(V1EnvVarSource.to_json())

# convert the object into a dict
v1_env_var_source_dict = v1_env_var_source_instance.to_dict()
# create an instance of V1EnvVarSource from a dict
v1_env_var_source_from_dict = V1EnvVarSource.from_dict(v1_env_var_source_dict)

[Back to Model list] [Back to API list] [Back to README]