Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.18 KB

File metadata and controls

31 lines (22 loc) · 1.18 KB

ImageMountVolumeProviderSpec

Volume from OCI image mounted at specified path.

Properties

Name Type Description Notes
image ImageVolumeSource
mount VolumeMount

Example

from flightctl.models.image_mount_volume_provider_spec import ImageMountVolumeProviderSpec

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

# convert the object into a dict
image_mount_volume_provider_spec_dict = image_mount_volume_provider_spec_instance.to_dict()
# create an instance of ImageMountVolumeProviderSpec from a dict
image_mount_volume_provider_spec_from_dict = ImageMountVolumeProviderSpec.from_dict(image_mount_volume_provider_spec_dict)

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