Skip to main content

clusters_certificate_authority

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

Overview

Nameclusters_certificate_authority
TypeResource
Idgoogle.redis.clusters_certificate_authority

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
namestringIdentifier. Unique name of the resource in this scope including project, location and cluster using the form: projects/{project}/locations/{location}/clusters/{cluster}/certificateAuthority
managedServerCaobject (id: ManagedCertificateAuthority)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_certificate_authorityselectprojectsId, locationsId, clustersIdGets 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.

NameDatatypeDescription
clustersIdstring
locationsIdstring
projectsIdstring

SELECT examples

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;