Identity and Access Management API, gRPC: OAuthClientSecretService.List
Retrieves the list of OAuthClientSecret resources of the specified OAuthClient.
gRPC request
rpc List (ListOAuthClientSecretsRequest) returns (ListOAuthClientSecretsResponse)
ListOAuthClientSecretsRequest
{
"page_size": "int64",
"page_token": "string",
"oauth_client_id": "string"
}
Field |
Description |
page_size |
int64 The maximum number of results per page to return. If the number of available |
page_token |
string Page token. To get the next page of results, set |
oauth_client_id |
string Required field. ID of the OAuthClient resource to list OAuthClientSecret resources for. |
ListOAuthClientSecretsResponse
{
"oauth_client_secrets": [
{
"id": "string",
"oauth_client_id": "string",
"description": "string",
"masked_secret": "string",
"created_at": "google.protobuf.Timestamp"
}
],
"next_page_token": "string"
}
Field |
Description |
oauth_client_secrets[] |
List of OAuthClientSecret resources of the specified OAuthClient resource |
next_page_token |
string This token allows you to get the next page of results for list requests. If the number of results |
OAuthClientSecret
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. |