Documentation IndexFetch the complete documentation index at: /docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Python
from latitudesh_python_sdk import Latitudesh import os with Latitudesh( bearer=os.getenv("LATITUDESH_BEARER", ""), ) as latitudesh: res = latitudesh.virtual_machines.list_virtual_machine_network_attachments(virtual_machine_id="<id>") # Handle response print(res)
{ "data": [ { "id": "<string>", "type": "virtual_machine_network_attachments", "attributes": { "virtual_network_id": "<string>", "vid": 123, "pending_restart": true } } ] }
Lists the secondary network attachments currently configured for a Virtual Machine.
Success
Show child attributes
Was this page helpful?