Identity and Access Management API, gRPC: OAuthClientSecretService.Get
Статья создана
Обновлена 8 августа 2025 г.
Returns the sepcified OAuthClientSecret resource.
To get the list of available OAuthClientSecret resources, make a List request.
gRPC request
rpc Get (GetOAuthClientSecretRequest) returns (OAuthClientSecret)
GetOAuthClientSecretRequest
{
"oauth_client_secret_id": "string"
}
Field |
Description |
oauth_client_secret_id |
string Required field. ID of the OAuthClientSecret resource to return. |
OAuthClientSecret
{
"id": "string",
"oauth_client_id": "string",
"description": "string",
"masked_secret": "string",
"created_at": "google.protobuf.Timestamp"
}
An OauthClientSecretResource
Field |
Description |
id |
string ID of the oauth client secret. |
oauth_client_id |
string ID of the oauth client that the secret belongs to. |
description |
string Description of the oauth client secret. |
masked_secret |
string Masked value of the oauth client secret: |
created_at |
Creation timestamp. |