Skip to main content

instances

Creates, updates, deletes, gets or lists a instances resource.

Overview

Nameinstances
TypeResource
Idgoogle.redis.instances

Fields

NameDatatypeDescription
namestringRequired. Unique name of the resource in this scope including project and location using the form: projects/{project_id}/locations/{location_id}/instances/{instance_id} Note: Redis instances are managed and addressed at regional level so location_id here refers to a GCP region; however, users may choose which specific zone (or collection of zones for cross-zone instances) an instance should be provisioned in. Refer to location_id and alternative_location_id fields for more details.
alternativeLocationIdstringOptional. If specified, at least one node will be provisioned in this zone in addition to the zone specified in location_id. Only applicable to standard tier. If provided, it must be a different zone from the one provided in [location_id]. Additional nodes beyond the first 2 will be placed in zones selected by the service.
authEnabledbooleanOptional. Indicates whether OSS Redis AUTH is enabled for the instance. If set to "true" AUTH is enabled on the instance. Default value is "false" meaning AUTH is disabled.
authorizedNetworkstringOptional. The full name of the Google Compute Engine network to which the instance is connected. If left unspecified, the default network will be used.
availableMaintenanceVersionsarrayOptional. The available maintenance versions that an instance could update to.
connectModestringOptional. The network connect mode of the Redis instance. If not provided, the connect mode defaults to DIRECT_PEERING.
createTimestringOutput only. The time the instance was created.
currentLocationIdstringOutput only. The current zone where the Redis primary node is located. In basic tier, this will always be the same as [location_id]. In standard tier, this can be the zone of any node in the instance.
customerManagedKeystringOptional. The KMS key reference that the customer provides when trying to create the instance.
displayNamestringAn arbitrary and optional user-provided name for the instance.
hoststringOutput only. Hostname or IP address of the exposed Redis endpoint used by clients to connect to the service.
labelsobjectResource labels to represent user provided metadata
locationIdstringOptional. The zone where the instance will be provisioned. If not provided, the service will choose a zone from the specified region for the instance. For standard tier, additional nodes will be added across multiple zones for protection against zonal failures. If specified, at least one node will be provisioned in this zone.
maintenancePolicyobjectMaintenance policy for an instance.
maintenanceScheduleobjectUpcoming maintenance schedule. If no maintenance is scheduled, fields are not populated.
maintenanceVersionstringOptional. The self service update maintenance version. The version is date based such as "20210712_00_00".
memorySizeGbintegerRequired. Redis memory size in GiB.
nodesarrayOutput only. Info per node.
persistenceConfigobjectConfiguration of the persistence functionality.
persistenceIamIdentitystringOutput only. Cloud IAM identity used by import / export operations to transfer data to/from Cloud Storage. Format is "serviceAccount:". The value may change over time for a given instance so should be checked before each import/export operation.
portintegerOutput only. The port number of the exposed Redis endpoint.
readEndpointstringOutput only. Hostname or IP address of the exposed readonly Redis endpoint. Standard tier only. Targets all healthy replica nodes in instance. Replication is asynchronous and replica nodes will exhibit some lag behind the primary. Write requests must target 'host'.
readEndpointPortintegerOutput only. The port number of the exposed readonly redis endpoint. Standard tier only. Write requests should target 'port'.
readReplicasModestringOptional. Read replicas mode for the instance. Defaults to READ_REPLICAS_DISABLED.
redisConfigsobjectOptional. Redis configuration parameters, according to http://redis.io/topics/config. Currently, the only supported parameters are: Redis version 3.2 and newer: maxmemory-policy notify-keyspace-events Redis version 4.0 and newer: activedefrag lfu-decay-time lfu-log-factor maxmemory-gb Redis version 5.0 and newer: stream-node-max-bytes stream-node-max-entries
redisVersionstringOptional. The version of Redis software. If not provided, latest supported version will be used. Currently, the supported values are: REDIS_3_2 for Redis 3.2 compatibility REDIS_4_0 for Redis 4.0 compatibility (default) REDIS_5_0 for Redis 5.0 compatibility REDIS_6_X for Redis 6.x compatibility * REDIS_7_0 for Redis 7.0 compatibility
replicaCountintegerOptional. The number of replica nodes. The valid range for the Standard Tier with read replicas enabled is [1-5] and defaults to 2. If read replicas are not enabled for a Standard Tier instance, the only valid value is 1 and the default is 1. The valid value for basic tier is 0 and the default is also 0.
reservedIpRangestringOptional. For DIRECT_PEERING mode, the CIDR range of internal addresses that are reserved for this instance. Range must be unique and non-overlapping with existing subnets in an authorized network. For PRIVATE_SERVICE_ACCESS mode, the name of one allocated IP address ranges associated with this private service access connection. If not provided, the service will choose an unused /29 block, for example, 10.0.0.0/29 or 192.168.0.0/29. For READ_REPLICAS_ENABLED the default block size is /28.
satisfiesPzibooleanOptional. Output only. Reserved for future use.
satisfiesPzsbooleanOptional. Output only. Reserved for future use.
secondaryIpRangestringOptional. Additional IP range for node placement. Required when enabling read replicas on an existing instance. For DIRECT_PEERING mode value must be a CIDR range of size /28, or "auto". For PRIVATE_SERVICE_ACCESS mode value must be the name of an allocated address range associated with the private service access connection, or "auto".
serverCaCertsarrayOutput only. List of server CA certificates for the instance.
statestringOutput only. The current state of this instance.
statusMessagestringOutput only. Additional information about the current status of this instance, if available.
suspensionReasonsarrayOptional. reasons that causes instance in "SUSPENDED" state.
tierstringRequired. The service tier of the instance.
transitEncryptionModestringOptional. The TLS mode of the Redis instance. If not provided, TLS is disabled for the instance.

Methods

NameAccessible byRequired ParamsDescription
getSELECTinstancesId, locationsId, projectsIdGets the details of a specific Redis instance.
listSELECTlocationsId, projectsIdLists all Redis instances owned by a project in either the specified location (region) or all locations. The location should have the following format: * projects/{project_id}/locations/{location_id} If location_id is specified as - (wildcard), then all regions available to the project are queried, and the results are aggregated.
createINSERTlocationsId, projectsIdCreates a Redis instance based on the specified tier and memory size. By default, the instance is accessible from the project's default network. The creation is executed asynchronously and callers may check the returned operation to track its progress. Once the operation is completed the Redis instance will be fully functional. Completed longrunning.Operation will contain the new instance object in the response field. The returned operation is automatically deleted after a few hours, so there is no need to call DeleteOperation.
deleteDELETEinstancesId, locationsId, projectsIdDeletes a specific Redis instance. Instance stops serving and data is deleted.
patchUPDATEinstancesId, locationsId, projectsIdUpdates the metadata and configuration of a specific Redis instance. Completed longrunning.Operation will contain the new instance object in the response field. The returned operation is automatically deleted after a few hours, so there is no need to call DeleteOperation.
exportEXECinstancesId, locationsId, projectsIdExport Redis instance data into a Redis RDB format file in Cloud Storage. Redis will continue serving during this operation. The returned operation is automatically deleted after a few hours, so there is no need to call DeleteOperation.
failoverEXECinstancesId, locationsId, projectsIdInitiates a failover of the primary node to current replica node for a specific STANDARD tier Cloud Memorystore for Redis instance.
importEXECinstancesId, locationsId, projectsIdImport a Redis RDB snapshot file from Cloud Storage into a Redis instance. Redis may stop serving during this operation. Instance state will be IMPORTING for entire operation. When complete, the instance will contain only data from the imported file. The returned operation is automatically deleted after a few hours, so there is no need to call DeleteOperation.
reschedule_maintenanceEXECinstancesId, locationsId, projectsIdReschedule maintenance for a given instance in a given project and location.
upgradeEXECinstancesId, locationsId, projectsIdUpgrades Redis instance to the newer Redis version specified in the request.

SELECT examples

Lists all Redis instances owned by a project in either the specified location (region) or all locations. The location should have the following format: * projects/{project_id}/locations/{location_id} If location_id is specified as - (wildcard), then all regions available to the project are queried, and the results are aggregated.

SELECT
name,
alternativeLocationId,
authEnabled,
authorizedNetwork,
availableMaintenanceVersions,
connectMode,
createTime,
currentLocationId,
customerManagedKey,
displayName,
host,
labels,
locationId,
maintenancePolicy,
maintenanceSchedule,
maintenanceVersion,
memorySizeGb,
nodes,
persistenceConfig,
persistenceIamIdentity,
port,
readEndpoint,
readEndpointPort,
readReplicasMode,
redisConfigs,
redisVersion,
replicaCount,
reservedIpRange,
satisfiesPzi,
satisfiesPzs,
secondaryIpRange,
serverCaCerts,
state,
statusMessage,
suspensionReasons,
tier,
transitEncryptionMode
FROM google.redis.instances
WHERE locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';

INSERT example

Use the following StackQL query and manifest file to create a new instances resource.

/*+ create */
INSERT INTO google.redis.instances (
locationsId,
projectsId,
name,
displayName,
labels,
locationId,
alternativeLocationId,
redisVersion,
reservedIpRange,
secondaryIpRange,
redisConfigs,
tier,
memorySizeGb,
authorizedNetwork,
connectMode,
authEnabled,
transitEncryptionMode,
maintenancePolicy,
replicaCount,
readReplicasMode,
customerManagedKey,
persistenceConfig,
suspensionReasons,
maintenanceVersion,
availableMaintenanceVersions
)
SELECT
'{{ locationsId }}',
'{{ projectsId }}',
'{{ name }}',
'{{ displayName }}',
'{{ labels }}',
'{{ locationId }}',
'{{ alternativeLocationId }}',
'{{ redisVersion }}',
'{{ reservedIpRange }}',
'{{ secondaryIpRange }}',
'{{ redisConfigs }}',
'{{ tier }}',
'{{ memorySizeGb }}',
'{{ authorizedNetwork }}',
'{{ connectMode }}',
{{ authEnabled }},
'{{ transitEncryptionMode }}',
'{{ maintenancePolicy }}',
'{{ replicaCount }}',
'{{ readReplicasMode }}',
'{{ customerManagedKey }}',
'{{ persistenceConfig }}',
'{{ suspensionReasons }}',
'{{ maintenanceVersion }}',
'{{ availableMaintenanceVersions }}'
;

UPDATE example

Updates a instances resource.

/*+ update */
UPDATE google.redis.instances
SET
name = '{{ name }}',
displayName = '{{ displayName }}',
labels = '{{ labels }}',
locationId = '{{ locationId }}',
alternativeLocationId = '{{ alternativeLocationId }}',
redisVersion = '{{ redisVersion }}',
reservedIpRange = '{{ reservedIpRange }}',
secondaryIpRange = '{{ secondaryIpRange }}',
redisConfigs = '{{ redisConfigs }}',
tier = '{{ tier }}',
memorySizeGb = '{{ memorySizeGb }}',
authorizedNetwork = '{{ authorizedNetwork }}',
connectMode = '{{ connectMode }}',
authEnabled = true|false,
transitEncryptionMode = '{{ transitEncryptionMode }}',
maintenancePolicy = '{{ maintenancePolicy }}',
replicaCount = '{{ replicaCount }}',
readReplicasMode = '{{ readReplicasMode }}',
customerManagedKey = '{{ customerManagedKey }}',
persistenceConfig = '{{ persistenceConfig }}',
suspensionReasons = '{{ suspensionReasons }}',
maintenanceVersion = '{{ maintenanceVersion }}',
availableMaintenanceVersions = '{{ availableMaintenanceVersions }}'
WHERE
instancesId = '{{ instancesId }}'
AND locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';

DELETE example

Deletes the specified instances resource.

/*+ delete */
DELETE FROM google.redis.instances
WHERE instancesId = '{{ instancesId }}'
AND locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';