Authorizations
Path Parameters
Virtual Network ID
Response
200 - application/vnd.api+json
Success
package main
import(
"context"
"os"
latitudeshgosdk "github.com/latitudesh/latitudesh-go-sdk"
"log"
)
func main() {
ctx := context.Background()
s := latitudeshgosdk.New(
latitudeshgosdk.WithSecurity(os.Getenv("LATITUDESH_BEARER")),
)
res, err := s.PrivateNetworks.Get(ctx, "vlan_W6Q2D9ordKLpr")
if err != nil {
log.Fatal(err)
}
if res.Object != nil {
// handle response
}
}{
"data": {
"id": "vlan_W6Q2D9ordKLpr",
"type": "virtual_networks",
"attributes": {
"tags": [],
"vid": 2040,
"description": "Testing vlans",
"created_at": null,
"region": {
"city": "São Paulo",
"country": "Japan",
"site": {
"id": "loc_695BdKVgOevVo",
"name": "São Paulo",
"slug": "SAO",
"facility": "São Paulo"
}
},
"project": {
"id": "proj_e8pKq0LKqWAob",
"name": "Heavy Duty Linen Wallet",
"slug": "heavy-duty-linen-wallet",
"description": "Rustic Granite Keyboard",
"billing_type": "Normal",
"billing_method": "Normal",
"bandwidth_alert": false,
"environment": null,
"billing": {
"subscription_id": null,
"type": "Normal",
"method": "Normal"
},
"stats": {
"databases": 0,
"ip_addresses": 2,
"prefixes": 0,
"servers": 1,
"storages": 0,
"virtual_machines": 0,
"vlans": 0
}
},
"assignments_count": 1
}
},
"meta": {}
}Retrieve a Virtual Network.
package main
import(
"context"
"os"
latitudeshgosdk "github.com/latitudesh/latitudesh-go-sdk"
"log"
)
func main() {
ctx := context.Background()
s := latitudeshgosdk.New(
latitudeshgosdk.WithSecurity(os.Getenv("LATITUDESH_BEARER")),
)
res, err := s.PrivateNetworks.Get(ctx, "vlan_W6Q2D9ordKLpr")
if err != nil {
log.Fatal(err)
}
if res.Object != nil {
// handle response
}
}{
"data": {
"id": "vlan_W6Q2D9ordKLpr",
"type": "virtual_networks",
"attributes": {
"tags": [],
"vid": 2040,
"description": "Testing vlans",
"created_at": null,
"region": {
"city": "São Paulo",
"country": "Japan",
"site": {
"id": "loc_695BdKVgOevVo",
"name": "São Paulo",
"slug": "SAO",
"facility": "São Paulo"
}
},
"project": {
"id": "proj_e8pKq0LKqWAob",
"name": "Heavy Duty Linen Wallet",
"slug": "heavy-duty-linen-wallet",
"description": "Rustic Granite Keyboard",
"billing_type": "Normal",
"billing_method": "Normal",
"bandwidth_alert": false,
"environment": null,
"billing": {
"subscription_id": null,
"type": "Normal",
"method": "Normal"
},
"stats": {
"databases": 0,
"ip_addresses": 2,
"prefixes": 0,
"servers": 1,
"storages": 0,
"virtual_machines": 0,
"vlans": 0
}
},
"assignments_count": 1
}
},
"meta": {}
}Virtual Network ID
Success
Show child attributes
Was this page helpful?