Return information about a given virtual machine network interface.
If successful, this endpoint will return a 200 OK status.
One of the following scopes are required to use this endpoint.
The following arguments are supported for this endpoint.
Name | Type | Default Value |
---|---|---|
virtual_machine_network_interface Required The network interface to show the information for |
Virtual Machine Network Interface Lookup | None |
The following errors may occur during this request.
Details | HTTP status |
---|---|
virtual_machine_network_interface_not_found No network interface was found matching any of the criteria provided in the arguments |
404 Not Found |
When the request is successful, you can expect an object matching the specification below to be returned.
{ virtual_machine_network_interface: VirtualMachineNetworkInterface { id: String virtual_machine: VirtualMachine { id: String name: String } name: String network: Network { id: String name: String } mac_address: String state: String ip_addresses: [ IPAddress { id: String address: String } ] speed_profile: NetworkSpeedProfile { id: String name: String permalink: String } } }