You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The path inside the container where the volume is mounted
read_only
bool
[optional] [default to False]
Example
fromquantcdn.models.container_mount_points_innerimportContainerMountPointsInner# TODO update the JSON string belowjson="{}"# create an instance of ContainerMountPointsInner from a JSON stringcontainer_mount_points_inner_instance=ContainerMountPointsInner.from_json(json)
# print the JSON string representation of the objectprint(ContainerMountPointsInner.to_json())
# convert the object into a dictcontainer_mount_points_inner_dict=container_mount_points_inner_instance.to_dict()
# create an instance of ContainerMountPointsInner from a dictcontainer_mount_points_inner_from_dict=ContainerMountPointsInner.from_dict(container_mount_points_inner_dict)