from latitudesh_python_sdk import Latitudesh
import os
with Latitudesh(
bearer=os.getenv("LATITUDESH_BEARER", ""),
) as latitudesh:
res = latitudesh.private_networks.get(vlan_id="vlan_W6Q2D9ordKLpr")
# Handle response
print(res){
"data": {
"id": "vlan_W6Q2D9ordKLpr",
"type": "virtual_networks",
"attributes": {
"tags": [],
"vid": 2040,
"description": "Testing vlans",
"created_at": null,
"region": {
"city": "São Paulo 255",
"country": "Mexico 268",
"site": {
"id": "loc_1R3zq28EOWxyn",
"name": "São Paulo 255",
"slug": "SAO",
"facility": "São Paulo 255"
}
},
"project": {
"id": "proj_LA73qkknqaJ2o",
"name": "Incredible Wool Plate",
"slug": "incredible-wool-plate",
"description": "Heavy Duty Wooden Coat",
"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.
from latitudesh_python_sdk import Latitudesh
import os
with Latitudesh(
bearer=os.getenv("LATITUDESH_BEARER", ""),
) as latitudesh:
res = latitudesh.private_networks.get(vlan_id="vlan_W6Q2D9ordKLpr")
# Handle response
print(res){
"data": {
"id": "vlan_W6Q2D9ordKLpr",
"type": "virtual_networks",
"attributes": {
"tags": [],
"vid": 2040,
"description": "Testing vlans",
"created_at": null,
"region": {
"city": "São Paulo 255",
"country": "Mexico 268",
"site": {
"id": "loc_1R3zq28EOWxyn",
"name": "São Paulo 255",
"slug": "SAO",
"facility": "São Paulo 255"
}
},
"project": {
"id": "proj_LA73qkknqaJ2o",
"name": "Incredible Wool Plate",
"slug": "incredible-wool-plate",
"description": "Heavy Duty Wooden Coat",
"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": {}
}Was this page helpful?