instances_auth_string
Creates, updates, deletes, gets or lists a instances_auth_string
resource.
Overview
Name | instances_auth_string |
Type | Resource |
Id | google.redis.instances_auth_string |
Fields
Name | Datatype | Description |
---|---|---|
authString | string | AUTH string set on the instance. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get_auth_string | SELECT | instancesId, locationsId, projectsId | Gets the AUTH string for a Redis instance. If AUTH is not enabled for the instance the response will be empty. This information is not included in the details returned to GetInstance. |
SELECT
examples
Gets the AUTH string for a Redis instance. If AUTH is not enabled for the instance the response will be empty. This information is not included in the details returned to GetInstance.
SELECT
authString
FROM google.redis.instances_auth_string
WHERE instancesId = '{{ instancesId }}'
AND locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';