Represents an ephemeral volume that is handled by a normal storage driver.
| Name | Type | Description | Notes |
|---|---|---|---|
| volume_claim_template | V1PersistentVolumeClaimTemplate | [optional] |
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)