Skip to main content

shared_regional_certificate_authority

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

Overview

Nameshared_regional_certificate_authority
TypeResource
Idgoogle.redis.shared_regional_certificate_authority

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringIdentifier. Unique name of the resource in this scope including project and location using the form: projects/{project}/locations/{location}/sharedRegionalCertificateAuthority
managedServerCaobjectCA certificate chains for redis managed server authentication. (id: RegionalManagedCertificateAuthority)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_shared_regional_certificate_authorityselectprojectsId, locationsIdGets 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.

NameDatatypeDescription
locationsIdstring
projectsIdstring

SELECT examples

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
;