Python (SDK)
import latitudesh_python_sdk
from latitudesh_python_sdk import Latitudesh
import os
with Latitudesh(
bearer=os.getenv("LATITUDESH_BEARER", ""),
) as latitudesh:
res = latitudesh.virtual_machines.create_virtual_machine_network_attachment(virtual_machine_id="<id>", data={
"type": latitudesh_python_sdk.VirtualMachineNetworkAttachmentCreatePayloadType.VIRTUAL_MACHINE_NETWORK_ATTACHMENTS,
"attributes": {
"virtual_network_id": "<id>",
},
})
# Handle response
print(res)package main
import(
"context"
"os"
latitudeshgosdk "github.com/latitudesh/latitudesh-go-sdk"
"github.com/latitudesh/latitudesh-go-sdk/models/components"
"log"
)
func main() {
ctx := context.Background()
s := latitudeshgosdk.New(
latitudeshgosdk.WithSecurity(os.Getenv("LATITUDESH_BEARER")),
)
res, err := s.VirtualMachines.CreateVirtualMachineNetworkAttachment(ctx, "<id>", components.VirtualMachineNetworkAttachmentCreatePayload{
Data: components.VirtualMachineNetworkAttachmentCreatePayloadData{
Type: components.VirtualMachineNetworkAttachmentCreatePayloadTypeVirtualMachineNetworkAttachments,
Attributes: components.VirtualMachineNetworkAttachmentCreatePayloadAttributes{
VirtualNetworkID: "<id>",
},
},
})
if err != nil {
log.Fatal(err)
}
if res.Object != nil {
// handle response
}
}import { Latitudesh } from "latitudesh-typescript-sdk";
const latitudesh = new Latitudesh({
bearer: process.env["LATITUDESH_BEARER"] ?? "",
});
async function run() {
const result = await latitudesh.virtualMachines.createVirtualMachineNetworkAttachment({
virtualMachineId: "<id>",
virtualMachineNetworkAttachmentCreatePayload: {
data: {
type: "virtual_machine_network_attachments",
attributes: {
virtualNetworkId: "<id>",
},
},
},
});
console.log(result);
}
run();curl --request POST \
--url https://api.latitude.sh/virtual_machines/{virtual_machine_id}/network_attachments \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"data": {
"type": "virtual_machine_network_attachments",
"attributes": {
"virtual_network_id": "<string>"
}
}
}
'const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
data: {
type: 'virtual_machine_network_attachments',
attributes: {virtual_network_id: '<string>'}
}
})
};
fetch('https://api.latitude.sh/virtual_machines/{virtual_machine_id}/network_attachments', 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/virtual_machines/{virtual_machine_id}/network_attachments",
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' => 'virtual_machine_network_attachments',
'attributes' => [
'virtual_network_id' => '<string>'
]
]
]),
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/virtual_machines/{virtual_machine_id}/network_attachments")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"data\": {\n \"type\": \"virtual_machine_network_attachments\",\n \"attributes\": {\n \"virtual_network_id\": \"<string>\"\n }\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.latitude.sh/virtual_machines/{virtual_machine_id}/network_attachments")
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\": \"virtual_machine_network_attachments\",\n \"attributes\": {\n \"virtual_network_id\": \"<string>\"\n }\n }\n}"
response = http.request(request)
puts response.read_body{
"meta": {
"status": "accepted"
}
}Virtual machines
Attach a network to a VM
Attaches a virtual network (VLAN) to a Virtual Machine. Work runs asynchronously and returns 202 Accepted.
POST
/
virtual_machines
/
{virtual_machine_id}
/
network_attachments
Python (SDK)
import latitudesh_python_sdk
from latitudesh_python_sdk import Latitudesh
import os
with Latitudesh(
bearer=os.getenv("LATITUDESH_BEARER", ""),
) as latitudesh:
res = latitudesh.virtual_machines.create_virtual_machine_network_attachment(virtual_machine_id="<id>", data={
"type": latitudesh_python_sdk.VirtualMachineNetworkAttachmentCreatePayloadType.VIRTUAL_MACHINE_NETWORK_ATTACHMENTS,
"attributes": {
"virtual_network_id": "<id>",
},
})
# Handle response
print(res)package main
import(
"context"
"os"
latitudeshgosdk "github.com/latitudesh/latitudesh-go-sdk"
"github.com/latitudesh/latitudesh-go-sdk/models/components"
"log"
)
func main() {
ctx := context.Background()
s := latitudeshgosdk.New(
latitudeshgosdk.WithSecurity(os.Getenv("LATITUDESH_BEARER")),
)
res, err := s.VirtualMachines.CreateVirtualMachineNetworkAttachment(ctx, "<id>", components.VirtualMachineNetworkAttachmentCreatePayload{
Data: components.VirtualMachineNetworkAttachmentCreatePayloadData{
Type: components.VirtualMachineNetworkAttachmentCreatePayloadTypeVirtualMachineNetworkAttachments,
Attributes: components.VirtualMachineNetworkAttachmentCreatePayloadAttributes{
VirtualNetworkID: "<id>",
},
},
})
if err != nil {
log.Fatal(err)
}
if res.Object != nil {
// handle response
}
}import { Latitudesh } from "latitudesh-typescript-sdk";
const latitudesh = new Latitudesh({
bearer: process.env["LATITUDESH_BEARER"] ?? "",
});
async function run() {
const result = await latitudesh.virtualMachines.createVirtualMachineNetworkAttachment({
virtualMachineId: "<id>",
virtualMachineNetworkAttachmentCreatePayload: {
data: {
type: "virtual_machine_network_attachments",
attributes: {
virtualNetworkId: "<id>",
},
},
},
});
console.log(result);
}
run();curl --request POST \
--url https://api.latitude.sh/virtual_machines/{virtual_machine_id}/network_attachments \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"data": {
"type": "virtual_machine_network_attachments",
"attributes": {
"virtual_network_id": "<string>"
}
}
}
'const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
data: {
type: 'virtual_machine_network_attachments',
attributes: {virtual_network_id: '<string>'}
}
})
};
fetch('https://api.latitude.sh/virtual_machines/{virtual_machine_id}/network_attachments', 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/virtual_machines/{virtual_machine_id}/network_attachments",
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' => 'virtual_machine_network_attachments',
'attributes' => [
'virtual_network_id' => '<string>'
]
]
]),
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/virtual_machines/{virtual_machine_id}/network_attachments")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"data\": {\n \"type\": \"virtual_machine_network_attachments\",\n \"attributes\": {\n \"virtual_network_id\": \"<string>\"\n }\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.latitude.sh/virtual_machines/{virtual_machine_id}/network_attachments")
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\": \"virtual_machine_network_attachments\",\n \"attributes\": {\n \"virtual_network_id\": \"<string>\"\n }\n }\n}"
response = http.request(request)
puts response.read_body{
"meta": {
"status": "accepted"
}
}Was this page helpful?
⌘I