Skip to main content

instances_parameters

Creates, updates, deletes, gets or lists an instances_parameters resource.

Overview

Nameinstances_parameters
TypeResource
Idgoogle.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:

NameAccessible byRequired ParamsOptional ParamsDescription
update_parametersupdateprojectsId, locationsId, instancesIdUpdates 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.

NameDatatypeDescription
instancesIdstring
locationsIdstring
projectsIdstring

UPDATE examples

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;