Go (SDK)
package main
import(
"context"
"os"
latitudeshgosdk "github.com/latitudesh/latitudesh-go-sdk"
"github.com/latitudesh/latitudesh-go-sdk/models/operations"
"log"
)
func main() {
ctx := context.Background()
s := latitudeshgosdk.New(
latitudeshgosdk.WithSecurity(os.Getenv("LATITUDESH_BEARER")),
)
res, err := s.BlockStorage.PostStorageVolumesMap(ctx, "<id>", operations.PostStorageVolumesMapRequestBody{
Data: operations.PostStorageVolumesMapData{
Type: operations.PostStorageVolumesMapTypeVolumes,
Attributes: operations.PostStorageVolumesMapAttributes{
ServerID: "sv_abcd1234",
},
},
})
if err != nil {
log.Fatal(err)
}
if res.Object != nil {
// handle response
}
}curl --request POST \
--url https://api.latitude.sh/storage/volumes/{id}/map \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"data": {
"type": "volumes",
"attributes": {
"server_id": "sv_abcd1234"
}
}
}
'import requests
url = "https://api.latitude.sh/storage/volumes/{id}/map"
payload = { "data": {
"type": "volumes",
"attributes": { "server_id": "sv_abcd1234" }
} }
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({data: {type: 'volumes', attributes: {server_id: 'sv_abcd1234'}}})
};
fetch('https://api.latitude.sh/storage/volumes/{id}/map', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.latitude.sh/storage/volumes/{id}/map",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'data' => [
'type' => 'volumes',
'attributes' => [
'server_id' => 'sv_abcd1234'
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}HttpResponse<String> response = Unirest.post("https://api.latitude.sh/storage/volumes/{id}/map")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"data\": {\n \"type\": \"volumes\",\n \"attributes\": {\n \"server_id\": \"sv_abcd1234\"\n }\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.latitude.sh/storage/volumes/{id}/map")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"data\": {\n \"type\": \"volumes\",\n \"attributes\": {\n \"server_id\": \"sv_abcd1234\"\n }\n }\n}"
response = http.request(request)
puts response.read_body{
"data": {
"id": "<string>",
"type": "volumes",
"attributes": {
"name": "<string>",
"size_in_gb": 123,
"created_at": "2023-11-07T05:31:56Z",
"namespace_id": "<string>",
"connector_id": "<string>",
"initiators": [
{
"nqn": "<string>"
}
],
"block": {
"nqn": "<string>",
"nsid": 123,
"server_id": "<string>"
},
"keyring": "<string>",
"cluster_user": "<string>",
"volume_path": "<string>",
"region": {
"city": "<string>",
"country": "<string>",
"site": {
"id": "<string>",
"name": "<string>",
"slug": "<string>",
"facility": "<string>"
}
},
"project": {
"id": "<string>",
"name": "<string>",
"slug": "<string>",
"description": "<string>",
"billing_type": "<string>",
"provisioning_type": "<string>",
"billing_method": "<string>",
"bandwidth_alert": true,
"environment": "<string>",
"billing": {
"subscription_id": "<string>",
"type": "<string>",
"method": "<string>"
},
"stats": {
"databases": 123,
"ip_addresses": 123,
"prefixes": 123,
"servers": 123,
"storages": 123,
"virtual_machines": 123,
"vlans": 123
}
},
"team": {
"id": "<string>",
"name": "<string>",
"slug": "<string>",
"description": "<string>",
"address": "<string>",
"currency": {
"id": "<string>",
"code": "<string>",
"name": "<string>",
"currency_id": 123
},
"status": "<string>",
"feature_flags": [
"<string>"
],
"limits": {
"bare_metal": 123,
"bare_metal_gpu": 123,
"virtual_machine": 123,
"virtual_machine_gpu": 123,
"elastic_ip": 123,
"bgp_session_per_ip": 123,
"public_network": 123,
"virtual_network": 123,
"database": 123,
"filesystem": 123,
"block_storage": 123
}
}
}
},
"meta": {}
}Block Storage
Map volume to server
Maps a high performance volume to a server over NVMe-TCP.
POST
/
storage
/
volumes
/
{id}
/
map
Go (SDK)
package main
import(
"context"
"os"
latitudeshgosdk "github.com/latitudesh/latitudesh-go-sdk"
"github.com/latitudesh/latitudesh-go-sdk/models/operations"
"log"
)
func main() {
ctx := context.Background()
s := latitudeshgosdk.New(
latitudeshgosdk.WithSecurity(os.Getenv("LATITUDESH_BEARER")),
)
res, err := s.BlockStorage.PostStorageVolumesMap(ctx, "<id>", operations.PostStorageVolumesMapRequestBody{
Data: operations.PostStorageVolumesMapData{
Type: operations.PostStorageVolumesMapTypeVolumes,
Attributes: operations.PostStorageVolumesMapAttributes{
ServerID: "sv_abcd1234",
},
},
})
if err != nil {
log.Fatal(err)
}
if res.Object != nil {
// handle response
}
}curl --request POST \
--url https://api.latitude.sh/storage/volumes/{id}/map \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"data": {
"type": "volumes",
"attributes": {
"server_id": "sv_abcd1234"
}
}
}
'import requests
url = "https://api.latitude.sh/storage/volumes/{id}/map"
payload = { "data": {
"type": "volumes",
"attributes": { "server_id": "sv_abcd1234" }
} }
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({data: {type: 'volumes', attributes: {server_id: 'sv_abcd1234'}}})
};
fetch('https://api.latitude.sh/storage/volumes/{id}/map', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.latitude.sh/storage/volumes/{id}/map",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'data' => [
'type' => 'volumes',
'attributes' => [
'server_id' => 'sv_abcd1234'
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}HttpResponse<String> response = Unirest.post("https://api.latitude.sh/storage/volumes/{id}/map")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"data\": {\n \"type\": \"volumes\",\n \"attributes\": {\n \"server_id\": \"sv_abcd1234\"\n }\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.latitude.sh/storage/volumes/{id}/map")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"data\": {\n \"type\": \"volumes\",\n \"attributes\": {\n \"server_id\": \"sv_abcd1234\"\n }\n }\n}"
response = http.request(request)
puts response.read_body{
"data": {
"id": "<string>",
"type": "volumes",
"attributes": {
"name": "<string>",
"size_in_gb": 123,
"created_at": "2023-11-07T05:31:56Z",
"namespace_id": "<string>",
"connector_id": "<string>",
"initiators": [
{
"nqn": "<string>"
}
],
"block": {
"nqn": "<string>",
"nsid": 123,
"server_id": "<string>"
},
"keyring": "<string>",
"cluster_user": "<string>",
"volume_path": "<string>",
"region": {
"city": "<string>",
"country": "<string>",
"site": {
"id": "<string>",
"name": "<string>",
"slug": "<string>",
"facility": "<string>"
}
},
"project": {
"id": "<string>",
"name": "<string>",
"slug": "<string>",
"description": "<string>",
"billing_type": "<string>",
"provisioning_type": "<string>",
"billing_method": "<string>",
"bandwidth_alert": true,
"environment": "<string>",
"billing": {
"subscription_id": "<string>",
"type": "<string>",
"method": "<string>"
},
"stats": {
"databases": 123,
"ip_addresses": 123,
"prefixes": 123,
"servers": 123,
"storages": 123,
"virtual_machines": 123,
"vlans": 123
}
},
"team": {
"id": "<string>",
"name": "<string>",
"slug": "<string>",
"description": "<string>",
"address": "<string>",
"currency": {
"id": "<string>",
"code": "<string>",
"name": "<string>",
"currency_id": 123
},
"status": "<string>",
"feature_flags": [
"<string>"
],
"limits": {
"bare_metal": 123,
"bare_metal_gpu": 123,
"virtual_machine": 123,
"virtual_machine_gpu": 123,
"elastic_ip": 123,
"bgp_session_per_ip": 123,
"public_network": 123,
"virtual_network": 123,
"database": 123,
"filesystem": 123,
"block_storage": 123
}
}
}
},
"meta": {}
}Was this page helpful?
⌘I