Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.15 KB

File metadata and controls

28 lines (21 loc) · 1.15 KB

V1EphemeralVolumeSource

Represents an ephemeral volume that is handled by a normal storage driver.

Properties

Name Type Description Notes
volume_claim_template V1PersistentVolumeClaimTemplate [optional]

Example

from kubernetes.client.models.v1_ephemeral_volume_source import V1EphemeralVolumeSource

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

# convert the object into a dict
v1_ephemeral_volume_source_dict = v1_ephemeral_volume_source_instance.to_dict()
# create an instance of V1EphemeralVolumeSource from a dict
v1_ephemeral_volume_source_from_dict = V1EphemeralVolumeSource.from_dict(v1_ephemeral_volume_source_dict)

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