clusters_certificate_authority
Creates, updates, deletes, gets or lists a clusters_certificate_authority resource.
Overview
| Name | clusters_certificate_authority |
| Type | Resource |
| Id | google.redis.clusters_certificate_authority |
Fields
The following fields are returned by SELECT queries:
- get_certificate_authority
| Name | Datatype | Description |
|---|---|---|
name | string | Identifier. Unique name of the resource in this scope including project, location and cluster using the form: projects/{project}/locations/{location}/clusters/{cluster}/certificateAuthority |
managedServerCa | object | (id: ManagedCertificateAuthority) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_certificate_authority | select | projectsId, locationsId, clustersId | Gets the details of certificate authority information for Redis cluster. |
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 |
|---|---|---|
clustersId | string | |
locationsId | string | |
projectsId | string |
SELECT examples
- get_certificate_authority
Gets the details of certificate authority information for Redis cluster.
SELECT
name,
managedServerCa
FROM google.redis.clusters_certificate_authority
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND clustersId = '{{ clustersId }}' -- required
;