You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description: `A key that provides more detail on the warning being returned. For example, for warnings where there are no results in a list request for a particular zone, this key might be scope and the key value might be the zone name. Other examples might be a key indicating a deprecated resource and a suggested replacement, or a warning about invalid network settings (for example, if an instance attempts to perform IP forwarding but is not enabled for IP forwarding).`,
294
+
},
295
+
"value": {
296
+
Type: schema.TypeString,
297
+
Computed: true,
298
+
Description: `A warning data value corresponding to the key.`,
299
+
},
300
+
},
301
+
},
302
+
},
303
+
"message": {
304
+
Type: schema.TypeString,
305
+
Computed: true,
306
+
Description: `A human-readable description of the warning code.`,
Copy file name to clipboardExpand all lines: website/docs/r/compute_route.html.markdown
+70
Original file line number
Diff line number
Diff line change
@@ -338,9 +338,79 @@ In addition to the arguments listed above, the following computed attributes are
338
338
339
339
*`next_hop_inter_region_cost` -
340
340
Internal fixed region-to-region cost that Google Cloud calculates based on factors such as network performance, distance, and available bandwidth between regions.
341
+
342
+
*`creation_timestamp` -
343
+
Creation timestamp in RFC3339 text format.
344
+
345
+
*`next_hop_peering` -
346
+
The network peering name that should handle matching packets, which should conform to RFC1035.
347
+
348
+
*`warnings` -
349
+
If potential misconfigurations are detected for this route, this field will be populated with warning messages.
350
+
Structure is [documented below](#nested_warnings).
351
+
352
+
*`next_hop_hub` -
353
+
The hub network that should handle matching packets, which should conform to RFC1035.
354
+
355
+
*`route_type` -
356
+
The type of this route, which can be one of the following values:
357
+
- 'TRANSIT' for a transit route that this router learned from another Cloud Router and will readvertise to one of its BGP peers
358
+
- 'SUBNET' for a route from a subnet of the VPC
359
+
- 'BGP' for a route learned from a BGP peer of this router
360
+
- 'STATIC' for a static route
361
+
362
+
*`as_paths` -
363
+
Structure is [documented below](#nested_as_paths).
364
+
365
+
*`route_status` -
366
+
The status of the route, which can be one of the following values:
A key that provides more detail on the warning being returned. For example, for warnings where there are no results in a list request for a particular zone, this key might be scope and the key value might be the zone name. Other examples might be a key indicating a deprecated resource and a suggested replacement, or a warning about invalid network settings (for example, if an instance attempts to perform IP forwarding but is not enabled for IP forwarding).
0 commit comments