instances_parameters
Creates, updates, deletes, gets or lists an instances_parameters
resource.
Overview
Name | instances_parameters |
Type | Resource |
Id | google.memcache.instances_parameters |
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_parameters | update | projectsId , locationsId , instancesId | Updates the defined Memcached parameters for an existing instance. This method only stages the parameters, it must be followed by ApplyParameters to apply the parameters to nodes of the Memcached instance. |
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 |
---|---|---|
instancesId | string | |
locationsId | string | |
projectsId | string |
UPDATE
examples
- update_parameters
Updates the defined Memcached parameters for an existing instance. This method only stages the parameters, it must be followed by ApplyParameters
to apply the parameters to nodes of the Memcached instance.
UPDATE google.memcache.instances_parameters
SET
data__updateMask = '{{ updateMask }}',
data__parameters = '{{ parameters }}'
WHERE
projectsId = '{{ projectsId }}' --required
AND locationsId = '{{ locationsId }}' --required
AND instancesId = '{{ instancesId }}' --required
RETURNING
name,
done,
error,
metadata,
response;