Skip to main content
POST
/
storage
/
volumes
/
{id}
/
mount
Typescript (SDK)
import { Latitudesh } from "latitudesh-typescript-sdk";

const latitudesh = new Latitudesh({
  bearer: process.env["LATITUDESH_BEARER"] ?? "",
});

async function run() {
  await latitudesh.storage.postStorageVolumesMount({
    id: "<id>",
    requestBody: {
      data: {
        type: "volumes",
        attributes: {
          nqn: "nqn.2024-01.com.example:server01",
        },
      },
    },
  });


}

run();

Authorizations

Authorization
string
header
required

Path Parameters

id
string
required

Volume storage ID

Body

application/json
data
object
required

Response

204

No Content