EnvVarSource represents a source for the value of an EnvVar.
| 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] |
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)