networks_consumer_config
Creates, updates, deletes, gets or lists a networks_consumer_config
resource.
Overview
Name | networks_consumer_config |
Type | Resource |
Id | google.servicenetworking.networks_consumer_config |
Fields
The following fields are returned by SELECT
queries:
SELECT
not supported for this resource, use SHOW METHODS
to view available operations for the resource.
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
update_consumer_config | update | servicesId , projectsId , networksId | Service producers use this method to update the configuration of their connection including the import/export of custom routes and subnetwork routes with public IP. |
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 |
---|---|---|
networksId | string | |
projectsId | string | |
servicesId | string |
UPDATE
examples
- update_consumer_config
Service producers use this method to update the configuration of their connection including the import/export of custom routes and subnetwork routes with public IP.
UPDATE google.servicenetworking.networks_consumer_config
SET
data__consumerConfig = '{{ consumerConfig }}'
WHERE
servicesId = '{{ servicesId }}' --required
AND projectsId = '{{ projectsId }}' --required
AND networksId = '{{ networksId }}' --required
RETURNING
name,
done,
error,
metadata,
response;