Method: projects.locations.clusters.getCertificateAuthority

取得 Redis 叢集的憑證授權單位資訊詳細資料。

HTTP 要求

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

這個網址使用 gRPC 轉碼語法。

路徑參數

參數
name

string

這是必要旗標,Redis 叢集憑證授權單位資源名稱,格式為:projects/{projectId}/locations/{locationId}/clusters/{clusterId}/certificateAuthority,其中 locationId 是指 Google Cloud 區域。

要求主體

要求主體必須為空白。

回應主體

Redis 叢集憑證授權單位

如果成功,回應主體會含有以下結構的資料:

JSON 表示法
{
  "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.
}
欄位
name

string

ID。此範圍中資源的唯一名稱,包括專案、位置和叢集,格式為:projects/{project}/locations/{location}/clusters/{cluster}/certificateAuthority

聯集欄位 server_ca。伺服器 CA 資訊 server_ca 只能是下列其中一項:
managedServerCa

object (ManagedCertificateAuthority)

授權範圍

需要下列 OAuth 範圍:

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

詳情請參閱Authentication Overview

ManagedCertificateAuthority

JSON 表示法
{
  "caCerts": [
    {
      object (CertChain)
    }
  ]
}
欄位
caCerts[]

object (CertChain)

用於 Redis 受管理伺服器驗證的 PEM 編碼 CA 憑證鏈結

CertChain

JSON 表示法
{
  "certificates": [
    string
  ]
}
欄位
certificates[]

string

構成 CA 鏈結的憑證,從分葉到根的順序。