Method: projects.locations.clusters.getCertificateAuthority

Gets the details of certificate authority information for Redis cluster.

HTTP request

GET https://redis.googleapis.com/v1/{name=projects/*/locations/*/clusters/*/certificateAuthority}

The URL uses gRPC Transcoding syntax.

Path parameters

Parameters
name

string

Required. Redis cluster certificate authority resource name using the form: projects/{projectId}/locations/{locationId}/clusters/{clusterId}/certificateAuthority where locationId refers to a GCP region.

Request body

The request body must be empty.

Response body

Redis cluster certificate authority

If successful, the response body contains data with the following structure:

JSON representation
{
  "name": string,

  // Union field server_ca can be only one of the following:
  "managedServerCa": {
    object (ManagedCertificateAuthority)
  }
  // End of list of possible types for union field server_ca.
}
Fields
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

Union field server_ca. server ca information server_ca can be only one of the following:
managedServerCa

object (ManagedCertificateAuthority)

Authorization scopes

Requires the following OAuth scope:

  • https://www.googleapis.com/auth/cloud-platform

For more information, see the Authentication Overview.

ManagedCertificateAuthority

JSON representation
{
  "caCerts": [
    {
      object (CertChain)
    }
  ]
}
Fields
caCerts[]

object (CertChain)

The PEM encoded CA certificate chains for redis managed server authentication

CertChain

JSON representation
{
  "certificates": [
    string
  ]
}
Fields
certificates[]

string

The certificates that form the CA chain, from leaf to root order.