Represents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode.
| Name | Type | Description | Notes |
|---|---|---|---|
| items | List[V1DownwardAPIVolumeFile] | Items is a list of DownwardAPIVolume file | [optional] |
from kubernetes.client.models.v1_downward_api_projection import V1DownwardAPIProjection
# TODO update the JSON string below
json = "{}"
# create an instance of V1DownwardAPIProjection from a JSON string
v1_downward_api_projection_instance = V1DownwardAPIProjection.from_json(json)
# print the JSON string representation of the object
print(V1DownwardAPIProjection.to_json())
# convert the object into a dict
v1_downward_api_projection_dict = v1_downward_api_projection_instance.to_dict()
# create an instance of V1DownwardAPIProjection from a dict
v1_downward_api_projection_from_dict = V1DownwardAPIProjection.from_dict(v1_downward_api_projection_dict)