Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.02 KB

File metadata and controls

29 lines (20 loc) · 1.02 KB

ImageVolumeProviderSpec

Properties

Name Type Description Notes
image ImageVolumeSource

Example

from flightctl.models.image_volume_provider_spec import ImageVolumeProviderSpec

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

# convert the object into a dict
image_volume_provider_spec_dict = image_volume_provider_spec_instance.to_dict()
# create an instance of ImageVolumeProviderSpec from a dict
image_volume_provider_spec_from_dict = ImageVolumeProviderSpec.from_dict(image_volume_provider_spec_dict)

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