Yandex Cloud
Search
Contact UsGet started
  • Blog
  • Pricing
  • Documentation
  • All Services
  • System Status
    • Featured
    • Infrastructure & Network
    • Data Platform
    • Containers
    • Developer tools
    • Serverless
    • Security
    • Monitoring & Resources
    • ML & AI
    • Business tools
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Customer Stories
    • Gateway to Russia
    • Cloud for Startups
    • Education and Science
  • Blog
  • Pricing
  • Documentation
Yandex project
© 2025 Yandex.Cloud LLC
Yandex Identity and Access Management
  • Secure use of Yandex Cloud
  • Access management
  • Pricing policy
  • Role reference
  • Terraform reference
    • Authentication with the API
      • Overview
        • Overview
          • Overview
          • Get
          • List
          • Create
          • Delete
  • Monitoring metrics
  • Audit Trails events
  • Release notes

In this article:

  • gRPC request
  • ListFederatedCredentialsRequest
  • ListFederatedCredentialsResponse
  • FederatedCredential
  1. API reference
  2. gRPC
  3. Workload Identity
  4. FederatedCredential
  5. List

Workload Identity, gRPC: FederatedCredentialService.List

Written by
Yandex Cloud
Updated at November 26, 2024
  • gRPC request
  • ListFederatedCredentialsRequest
  • ListFederatedCredentialsResponse
  • FederatedCredential

Retrieves the list of federated credentials for the specified service account.

gRPC requestgRPC request

rpc List (ListFederatedCredentialsRequest) returns (ListFederatedCredentialsResponse)

ListFederatedCredentialsRequestListFederatedCredentialsRequest

{
  "service_account_id": "string",
  "page_size": "int64",
  "page_token": "string"
}

Field

Description

service_account_id

string

Required field. ID of the service account to list federated credentials for.
To get the the service account ID make a yandex.cloud.iam.v1.ServiceAccountService.List request.

page_size

int64

The maximum number of results per page to return. If the number of available
results is larger than page_size,
the service returns a ListFederatedCredentialsResponse.next_page_token
that can be used to get the next page of results in subsequent list requests.
Default value: 100.

page_token

string

Page token. To get the next page of results, set page_token
to the ListFederatedCredentialsResponse.next_page_token
returned by a previous list request.

ListFederatedCredentialsResponseListFederatedCredentialsResponse

{
  "federated_credentials": [
    {
      "id": "string",
      "service_account_id": "string",
      "federation_id": "string",
      "external_subject_id": "string",
      "created_at": "google.protobuf.Timestamp"
    }
  ],
  "next_page_token": "string"
}

Field

Description

federated_credentials[]

FederatedCredential

List of federated credentials.

next_page_token

string

This token allows you to get the next page of results for list requests. If the number of results
is larger than ListFederatedCredentialsRequest.page_size, use
the next_page_token as the value
for the ListFederatedCredentialsRequest.page_token query parameter
in the next list request. Each subsequent list request will have its own
next_page_token to continue paging through the results.

FederatedCredentialFederatedCredential

A federated credential.

Field

Description

id

string

Id of the federated credential.

service_account_id

string

Id of the service account that the federated credential belongs to.

federation_id

string

ID of the workload identity federation which is used for authentication.

external_subject_id

string

Id of the external subject.

created_at

google.protobuf.Timestamp

Creation timestamp.

Was the article helpful?

Previous
Get
Next
Create
Yandex project
© 2025 Yandex.Cloud LLC