Tool: get_cluster_certificate_authority
Get the certificate authority for a cluster in Memorystore for Redis Cluster.
The following sample demonstrate how to use curl to invoke the get_cluster_certificate_authority MCP tool.
| Curl Request |
|---|
curl --location 'https://redis.googleapis.com/mcp' \ --header 'content-type: application/json' \ --header 'accept: application/json, text/event-stream' \ --data '{ "method": "tools/call", "params": { "name": "get_cluster_certificate_authority", "arguments": { // provide these details according to the tool's MCP specification } }, "jsonrpc": "2.0", "id": 1 }' |
Input Schema
Request for GetClusterCertificateAuthority.
GetClusterCertificateAuthorityRequest
| JSON representation |
|---|
{ "name": string } |
| Fields | |
|---|---|
name |
Required. Redis cluster certificate authority resource name using the form: |
Output Schema
Redis cluster certificate authority
CertificateAuthority
| JSON representation |
|---|
{ "name": string, // Union field |
| Fields | |
|---|---|
name |
Identifier. Unique name of the resource in this scope including project, location and cluster using the form: |
Union field server_ca. server ca information server_ca can be only one of the following: |
|
managedServerCa |
|
ManagedCertificateAuthority
| JSON representation |
|---|
{
"caCerts": [
{
object ( |
| Fields | |
|---|---|
caCerts[] |
The PEM encoded CA certificate chains for redis managed server authentication |
CertChain
| JSON representation |
|---|
{ "certificates": [ string ] } |
| Fields | |
|---|---|
certificates[] |
The certificates that form the CA chain, from leaf to root order. |
Tool Annotations
Destructive Hint: ❌ | Idempotent Hint: ✅ | Read Only Hint: ✅ | Open World Hint: ❌