interconnects_diagnostics
Creates, updates, deletes, gets or lists an interconnects_diagnostics resource.
Overview
| Name | interconnects_diagnostics |
| Type | Resource |
| Id | google.compute.interconnects_diagnostics |
Fields
The following fields are returned by SELECT queries:
- get_diagnostics
| Name | Datatype | Description |
|---|---|---|
result | object | Diagnostics information about the Interconnect connection, which contains detailed and current technical information about Google's side of the connection. (id: InterconnectDiagnostics) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_diagnostics | select | project, interconnect | Returns the interconnectDiagnostics for the specified Interconnect. In the event of a global outage, do not use this API to make decisions about where to redirect your network traffic. Unlike a VLAN attachment, which is regional, a Cloud Interconnect connection is a global resource. A global outage can prevent this API from functioning properly. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
interconnect | string | |
project | string |
SELECT examples
- get_diagnostics
Returns the interconnectDiagnostics for the specified Interconnect. In the event of a global outage, do not use this API to make decisions about where to redirect your network traffic. Unlike a VLAN attachment, which is regional, a Cloud Interconnect connection is a global resource. A global outage can prevent this API from functioning properly.
SELECT
result
FROM google.compute.interconnects_diagnostics
WHERE project = '{{ project }}' -- required
AND interconnect = '{{ interconnect }}' -- required
;