Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.04 KB

File metadata and controls

30 lines (21 loc) · 1.04 KB

MountVolumeProviderSpec

Named volume mount configuration.

Properties

Name Type Description Notes
mount VolumeMount

Example

from flightctl.models.mount_volume_provider_spec import MountVolumeProviderSpec

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

# convert the object into a dict
mount_volume_provider_spec_dict = mount_volume_provider_spec_instance.to_dict()
# create an instance of MountVolumeProviderSpec from a dict
mount_volume_provider_spec_from_dict = MountVolumeProviderSpec.from_dict(mount_volume_provider_spec_dict)

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