Update docs for 1.4.2 release
diff --git a/docs/dyn/compute_v1.routes.html b/docs/dyn/compute_v1.routes.html
index 8ece2a7..ecb577b 100644
--- a/docs/dyn/compute_v1.routes.html
+++ b/docs/dyn/compute_v1.routes.html
@@ -101,9 +101,9 @@
Returns:
An object of the form:
- { # An operation resource, used to manage asynchronous API requests.
+ { # An Operation resource, used to manage asynchronous API requests.
"targetId": "A String", # [Output Only] Unique target ID which identifies a particular incarnation of the target.
- "clientOperationId": "A String", # [Output Only] An optional identifier specified by the client when the mutation was initiated. Must be unique for all operation resources in the project.
+ "clientOperationId": "A String", # [Output Only] An optional identifier specified by the client when the mutation was initiated. Must be unique for all Operation resources in the project.
"creationTimestamp": "A String", # [Output Only] Creation timestamp in RFC3339 text format.
"id": "A String", # [Output Only] Unique identifier for the resource; defined by the server.
"zone": "A String", # [Output Only] URL of the zone where the operation resides.
@@ -141,7 +141,7 @@
],
},
"endTime": "A String", # [Output Only] The time that this operation was completed. This is in RFC3339 text format.
- "selfLink": "A String", # [Output Only] Server defined URL for the resource.
+ "selfLink": "A String", # [Output Only] Server-defined URL for the resource.
"targetLink": "A String", # [Output Only] URL of the resource the operation is mutating.
}</pre>
</div>
@@ -157,20 +157,21 @@
Returns:
An object of the form:
- { # The route resource. A Route is a rule that specifies how certain packets should be handled by the virtual network. Routes are associated with VMs by tag and the set of Routes for a particular VM is called its routing table. For each packet leaving a VM, the system searches that VM's routing table for a single best matching Route. Routes match packets by destination IP address, preferring smaller or more specific ranges over larger ones. If there is a tie, the system selects the Route with the smallest priority value. If there is still a tie, it uses the layer three and four packet headers to select just one of the remaining matching Routes. The packet is then forwarded as specified by the next_hop field of the winning Route -- either to another VM destination, a VM gateway or a GCE operated gateway. Packets that do not match any Route in the sending VM's routing table will be dropped.
- "nextHopGateway": "A String", # The URL to a gateway that should handle matching packets.
+ { # The route resource. A Route is a rule that specifies how certain packets should be handled by the virtual network. Routes are associated with instances by tag and the set of Routes for a particular instance is called its routing table. For each packet leaving a instance, the system searches that instance's routing table for a single best matching Route. Routes match packets by destination IP address, preferring smaller or more specific ranges over larger ones. If there is a tie, the system selects the Route with the smallest priority value. If there is still a tie, it uses the layer three and four packet headers to select just one of the remaining matching Routes. The packet is then forwarded as specified by the nextHop field of the winning Route -- either to another instance destination, a instance gateway or a Google Compute Engien-operated gateway. Packets that do not match any Route in the sending instance's routing table are dropped.
+ "nextHopGateway": "A String", # The URL to a gateway that should handle matching packets. Currently, this is only the internet gateway: projects/<project-id>/global/gateways/default-internet-gateway
"nextHopVpnTunnel": "A String", # The URL to a VpnTunnel that should handle matching packets.
- "kind": "compute#route", # Type of the resource.
- "name": "A String", # Name of the resource; provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035.
+ "kind": "compute#route", # [Output Only] Type of this resource. Always compute#routes for Route resources.
+ "name": "A String", # Name of the resource; provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression [a-z]([-a-z0-9]*[a-z0-9])? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
"tags": [ # A list of instance tags to which this route applies.
"A String",
],
- "nextHopInstance": "A String", # The URL to an instance that should handle matching packets.
+ "nextHopInstance": "A String", # The fully-qualified URL to an instance that should handle matching packets. For example:
+ # https://www.googleapis.com/compute/v1/projects/project/zones/zone/instances/
"priority": 42, # Breaks ties between Routes of equal specificity. Routes with smaller values win when tied with routes with larger values. Default value is 1000. A valid range is between 0 and 65535.
"nextHopNetwork": "A String", # The URL of the local network if it should handle matching packets.
- "network": "A String", # URL of the network to which this route is applied; provided by the client when the route is created.
- "selfLink": "A String", # Server defined URL for the resource (output only).
- "warnings": [ # If potential misconfigurations are detected for this route, this field will be populated with warning messages.
+ "network": "A String", # Fully-qualified URL of the network that this route applies to.
+ "selfLink": "A String", # [Output Only] Server-defined fully-qualified URL for this resource.
+ "warnings": [ # [Output Only] If potential misconfigurations are detected for this route, this field will be populated with warning messages.
{
"message": "A String", # [Output Only] Optional human-readable details for this warning.
"code": "A String", # [Output Only] The warning type identifier for this warning.
@@ -182,11 +183,11 @@
],
},
],
- "destRange": "A String", # Which packets does this route apply to?
- "creationTimestamp": "A String", # Creation timestamp in RFC3339 text format (output only).
- "id": "A String", # Unique identifier for the resource; defined by the server (output only).
+ "destRange": "A String", # The destination range of outgoing packets that this route applies to.
+ "creationTimestamp": "A String", # [Output Only] Creation timestamp in RFC3339 text format.
+ "id": "A String", # [Output Only] Unique identifier for the resource. Defined by the server.
"nextHopIp": "A String", # The network IP address of an instance that should handle matching packets.
- "description": "A String", # An optional textual description of the resource; provided by the client when the resource is created.
+ "description": "A String", # An optional textual description of the resource. Provided by the client when the resource is created.
}</pre>
</div>
@@ -199,20 +200,21 @@
body: object, The request body. (required)
The object takes the form of:
-{ # The route resource. A Route is a rule that specifies how certain packets should be handled by the virtual network. Routes are associated with VMs by tag and the set of Routes for a particular VM is called its routing table. For each packet leaving a VM, the system searches that VM's routing table for a single best matching Route. Routes match packets by destination IP address, preferring smaller or more specific ranges over larger ones. If there is a tie, the system selects the Route with the smallest priority value. If there is still a tie, it uses the layer three and four packet headers to select just one of the remaining matching Routes. The packet is then forwarded as specified by the next_hop field of the winning Route -- either to another VM destination, a VM gateway or a GCE operated gateway. Packets that do not match any Route in the sending VM's routing table will be dropped.
- "nextHopGateway": "A String", # The URL to a gateway that should handle matching packets.
+{ # The route resource. A Route is a rule that specifies how certain packets should be handled by the virtual network. Routes are associated with instances by tag and the set of Routes for a particular instance is called its routing table. For each packet leaving a instance, the system searches that instance's routing table for a single best matching Route. Routes match packets by destination IP address, preferring smaller or more specific ranges over larger ones. If there is a tie, the system selects the Route with the smallest priority value. If there is still a tie, it uses the layer three and four packet headers to select just one of the remaining matching Routes. The packet is then forwarded as specified by the nextHop field of the winning Route -- either to another instance destination, a instance gateway or a Google Compute Engien-operated gateway. Packets that do not match any Route in the sending instance's routing table are dropped.
+ "nextHopGateway": "A String", # The URL to a gateway that should handle matching packets. Currently, this is only the internet gateway: projects/<project-id>/global/gateways/default-internet-gateway
"nextHopVpnTunnel": "A String", # The URL to a VpnTunnel that should handle matching packets.
- "kind": "compute#route", # Type of the resource.
- "name": "A String", # Name of the resource; provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035.
+ "kind": "compute#route", # [Output Only] Type of this resource. Always compute#routes for Route resources.
+ "name": "A String", # Name of the resource; provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression [a-z]([-a-z0-9]*[a-z0-9])? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
"tags": [ # A list of instance tags to which this route applies.
"A String",
],
- "nextHopInstance": "A String", # The URL to an instance that should handle matching packets.
+ "nextHopInstance": "A String", # The fully-qualified URL to an instance that should handle matching packets. For example:
+ # https://www.googleapis.com/compute/v1/projects/project/zones/zone/instances/
"priority": 42, # Breaks ties between Routes of equal specificity. Routes with smaller values win when tied with routes with larger values. Default value is 1000. A valid range is between 0 and 65535.
"nextHopNetwork": "A String", # The URL of the local network if it should handle matching packets.
- "network": "A String", # URL of the network to which this route is applied; provided by the client when the route is created.
- "selfLink": "A String", # Server defined URL for the resource (output only).
- "warnings": [ # If potential misconfigurations are detected for this route, this field will be populated with warning messages.
+ "network": "A String", # Fully-qualified URL of the network that this route applies to.
+ "selfLink": "A String", # [Output Only] Server-defined fully-qualified URL for this resource.
+ "warnings": [ # [Output Only] If potential misconfigurations are detected for this route, this field will be populated with warning messages.
{
"message": "A String", # [Output Only] Optional human-readable details for this warning.
"code": "A String", # [Output Only] The warning type identifier for this warning.
@@ -224,20 +226,20 @@
],
},
],
- "destRange": "A String", # Which packets does this route apply to?
- "creationTimestamp": "A String", # Creation timestamp in RFC3339 text format (output only).
- "id": "A String", # Unique identifier for the resource; defined by the server (output only).
+ "destRange": "A String", # The destination range of outgoing packets that this route applies to.
+ "creationTimestamp": "A String", # [Output Only] Creation timestamp in RFC3339 text format.
+ "id": "A String", # [Output Only] Unique identifier for the resource. Defined by the server.
"nextHopIp": "A String", # The network IP address of an instance that should handle matching packets.
- "description": "A String", # An optional textual description of the resource; provided by the client when the resource is created.
+ "description": "A String", # An optional textual description of the resource. Provided by the client when the resource is created.
}
Returns:
An object of the form:
- { # An operation resource, used to manage asynchronous API requests.
+ { # An Operation resource, used to manage asynchronous API requests.
"targetId": "A String", # [Output Only] Unique target ID which identifies a particular incarnation of the target.
- "clientOperationId": "A String", # [Output Only] An optional identifier specified by the client when the mutation was initiated. Must be unique for all operation resources in the project.
+ "clientOperationId": "A String", # [Output Only] An optional identifier specified by the client when the mutation was initiated. Must be unique for all Operation resources in the project.
"creationTimestamp": "A String", # [Output Only] Creation timestamp in RFC3339 text format.
"id": "A String", # [Output Only] Unique identifier for the resource; defined by the server.
"zone": "A String", # [Output Only] URL of the zone where the operation resides.
@@ -275,7 +277,7 @@
],
},
"endTime": "A String", # [Output Only] The time that this operation was completed. This is in RFC3339 text format.
- "selfLink": "A String", # [Output Only] Server defined URL for the resource.
+ "selfLink": "A String", # [Output Only] Server-defined URL for the resource.
"targetLink": "A String", # [Output Only] URL of the resource the operation is mutating.
}</pre>
</div>
@@ -287,29 +289,34 @@
Args:
project: string, Name of the project scoping this request. (required)
maxResults: integer, Maximum count of results to be returned.
- pageToken: string, Tag returned by a previous list request when that list was truncated to maxResults. Used to continue a previous list request.
- filter: string, Filter expression for filtering listed resources.
+ pageToken: string, Specifies a page token to use. Use this parameter if you want to list the next page of results. Set pageToken to the nextPageToken returned by a previous list request.
+ filter: string, Sets a filter expression for filtering listed resources, in the form filter={expression}. Your {expression} must be in the format: FIELD_NAME COMPARISON_STRING LITERAL_STRING.
+
+The FIELD_NAME is the name of the field you want to compare. Only atomic field types are supported (string, number, boolean). The COMPARISON_STRING must be either eq (equals) or ne (not equals). The LITERAL_STRING is the string value to filter to. The literal value must be valid for the type of field (string, number, boolean). For string fields, the literal value is interpreted as a regular expression using RE2 syntax. The literal value must match the entire field.
+
+For example, filter=name ne example-instance.
Returns:
An object of the form:
{ # Contains a list of route resources.
- "nextPageToken": "A String", # A token used to continue a truncated list request (output only).
+ "nextPageToken": "A String", # [Output Only] A token used to continue a truncated list request.
"items": [ # A list of Route resources.
- { # The route resource. A Route is a rule that specifies how certain packets should be handled by the virtual network. Routes are associated with VMs by tag and the set of Routes for a particular VM is called its routing table. For each packet leaving a VM, the system searches that VM's routing table for a single best matching Route. Routes match packets by destination IP address, preferring smaller or more specific ranges over larger ones. If there is a tie, the system selects the Route with the smallest priority value. If there is still a tie, it uses the layer three and four packet headers to select just one of the remaining matching Routes. The packet is then forwarded as specified by the next_hop field of the winning Route -- either to another VM destination, a VM gateway or a GCE operated gateway. Packets that do not match any Route in the sending VM's routing table will be dropped.
- "nextHopGateway": "A String", # The URL to a gateway that should handle matching packets.
+ { # The route resource. A Route is a rule that specifies how certain packets should be handled by the virtual network. Routes are associated with instances by tag and the set of Routes for a particular instance is called its routing table. For each packet leaving a instance, the system searches that instance's routing table for a single best matching Route. Routes match packets by destination IP address, preferring smaller or more specific ranges over larger ones. If there is a tie, the system selects the Route with the smallest priority value. If there is still a tie, it uses the layer three and four packet headers to select just one of the remaining matching Routes. The packet is then forwarded as specified by the nextHop field of the winning Route -- either to another instance destination, a instance gateway or a Google Compute Engien-operated gateway. Packets that do not match any Route in the sending instance's routing table are dropped.
+ "nextHopGateway": "A String", # The URL to a gateway that should handle matching packets. Currently, this is only the internet gateway: projects/<project-id>/global/gateways/default-internet-gateway
"nextHopVpnTunnel": "A String", # The URL to a VpnTunnel that should handle matching packets.
- "kind": "compute#route", # Type of the resource.
- "name": "A String", # Name of the resource; provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035.
+ "kind": "compute#route", # [Output Only] Type of this resource. Always compute#routes for Route resources.
+ "name": "A String", # Name of the resource; provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression [a-z]([-a-z0-9]*[a-z0-9])? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
"tags": [ # A list of instance tags to which this route applies.
"A String",
],
- "nextHopInstance": "A String", # The URL to an instance that should handle matching packets.
+ "nextHopInstance": "A String", # The fully-qualified URL to an instance that should handle matching packets. For example:
+ # https://www.googleapis.com/compute/v1/projects/project/zones/zone/instances/
"priority": 42, # Breaks ties between Routes of equal specificity. Routes with smaller values win when tied with routes with larger values. Default value is 1000. A valid range is between 0 and 65535.
"nextHopNetwork": "A String", # The URL of the local network if it should handle matching packets.
- "network": "A String", # URL of the network to which this route is applied; provided by the client when the route is created.
- "selfLink": "A String", # Server defined URL for the resource (output only).
- "warnings": [ # If potential misconfigurations are detected for this route, this field will be populated with warning messages.
+ "network": "A String", # Fully-qualified URL of the network that this route applies to.
+ "selfLink": "A String", # [Output Only] Server-defined fully-qualified URL for this resource.
+ "warnings": [ # [Output Only] If potential misconfigurations are detected for this route, this field will be populated with warning messages.
{
"message": "A String", # [Output Only] Optional human-readable details for this warning.
"code": "A String", # [Output Only] The warning type identifier for this warning.
@@ -321,16 +328,16 @@
],
},
],
- "destRange": "A String", # Which packets does this route apply to?
- "creationTimestamp": "A String", # Creation timestamp in RFC3339 text format (output only).
- "id": "A String", # Unique identifier for the resource; defined by the server (output only).
+ "destRange": "A String", # The destination range of outgoing packets that this route applies to.
+ "creationTimestamp": "A String", # [Output Only] Creation timestamp in RFC3339 text format.
+ "id": "A String", # [Output Only] Unique identifier for the resource. Defined by the server.
"nextHopIp": "A String", # The network IP address of an instance that should handle matching packets.
- "description": "A String", # An optional textual description of the resource; provided by the client when the resource is created.
+ "description": "A String", # An optional textual description of the resource. Provided by the client when the resource is created.
},
],
"kind": "compute#routeList", # Type of resource.
- "id": "A String", # Unique identifier for the resource; defined by the server (output only).
- "selfLink": "A String", # Server defined URL for this resource (output only).
+ "id": "A String", # [Output Only] Unique identifier for the resource. Defined by the server.
+ "selfLink": "A String", # [Output Only] Server-defined URL for this resource.
}</pre>
</div>