import latitudesh_python_sdk
from latitudesh_python_sdk import Latitudesh
import os
with Latitudesh(
bearer=os.getenv("LATITUDESH_BEARER", ""),
) as latitudesh:
latitudesh.storage.post_storage_volumes_mount(id="<id>", data={
"type": latitudesh_python_sdk.PostStorageVolumesMountType.VOLUMES,
"attributes": {
"nqn": "nqn.2024-01.com.example:server01",
},
})
# Use the SDK ...Mounts volume storage by adding the client to an allowed list
import latitudesh_python_sdk
from latitudesh_python_sdk import Latitudesh
import os
with Latitudesh(
bearer=os.getenv("LATITUDESH_BEARER", ""),
) as latitudesh:
latitudesh.storage.post_storage_volumes_mount(id="<id>", data={
"type": latitudesh_python_sdk.PostStorageVolumesMountType.VOLUMES,
"attributes": {
"nqn": "nqn.2024-01.com.example:server01",
},
})
# Use the SDK ...Documentation Index
Fetch the complete documentation index at: https://www.latitude.sh/docs/llms.txt
Use this file to discover all available pages before exploring further.
Was this page helpful?