Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.24 KB

File metadata and controls

28 lines (21 loc) · 1.24 KB

V1DownwardAPIProjection

Represents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode.

Properties

Name Type Description Notes
items List[V1DownwardAPIVolumeFile] Items is a list of DownwardAPIVolume file [optional]

Example

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)

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