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