EnvVar represents an environment variable present in a Container.
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | Name of the environment variable. May consist of any printable ASCII characters except '='. | |
| value | str | Variable references |
[optional] |
| value_from | V1EnvVarSource | [optional] |
from kubernetes.client.models.v1_env_var import V1EnvVar
# TODO update the JSON string below
json = "{}"
# create an instance of V1EnvVar from a JSON string
v1_env_var_instance = V1EnvVar.from_json(json)
# print the JSON string representation of the object
print(V1EnvVar.to_json())
# convert the object into a dict
v1_env_var_dict = v1_env_var_instance.to_dict()
# create an instance of V1EnvVar from a dict
v1_env_var_from_dict = V1EnvVar.from_dict(v1_env_var_dict)