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 Cloud Organization
  • Getting started
  • Access management
  • Pricing policy
  • Terraform reference
    • Authentication
      • Overview
        • Overview
          • Overview
          • Get
          • List
          • Create
          • Update
          • Delete
          • AddUserAccounts
          • DeleteUserAccounts
          • ListUserAccounts
          • ListOperations
  • Audit Trails events
  • Release notes

In this article:

  • gRPC request
  • ListFederationsRequest
  • ListFederationsResponse
  • Federation
  • FederationSecuritySettings
  1. API reference
  2. gRPC
  3. SAML Federation API
  4. Federation
  5. List

SAML Federation API, gRPC: FederationService.List

Written by
Yandex Cloud
Updated at December 17, 2024
  • gRPC request
  • ListFederationsRequest
  • ListFederationsResponse
  • Federation
  • FederationSecuritySettings

Retrieves the list of federations in the specified organization.

gRPC requestgRPC request

rpc List (ListFederationsRequest) returns (ListFederationsResponse)

ListFederationsRequestListFederationsRequest

{
  "organization_id": "string",
  "page_size": "int64",
  "page_token": "string",
  "filter": "string"
}

Field

Description

organization_id

string

Required field. ID of the organization to list federations in.
To get the organization ID, make a yandex.cloud.organizationmanager.v1.OrganizationService.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 ListFederationsResponse.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 ListFederationsResponse.next_page_token
returned by a previous list request.

filter

string

A filter expression that filters resources listed in the response.
The expression must specify:

  1. The field name. Currently you can use filtering only on the Federation.name field.
  2. An = operator.
  3. The value in double quotes ("). Must be 3-63 characters long and match the regular expression [a-z][-a-z0-9]{1,61}[a-z0-9].

ListFederationsResponseListFederationsResponse

{
  "federations": [
    {
      "id": "string",
      "organization_id": "string",
      "name": "string",
      "description": "string",
      "created_at": "google.protobuf.Timestamp",
      "cookie_max_age": "google.protobuf.Duration",
      "auto_create_account_on_login": "bool",
      "issuer": "string",
      "sso_binding": "BindingType",
      "sso_url": "string",
      "security_settings": {
        "encrypted_assertions": "bool",
        "force_authn": "bool"
      },
      "case_insensitive_name_ids": "bool",
      "labels": "map<string, string>"
    }
  ],
  "next_page_token": "string"
}

Field

Description

federations[]

Federation

List of federations.

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 ListFederationsRequest.page_size, use
the next_page_token as the value
for the ListFederationsRequest.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.

FederationFederation

A federation.
For more information, see SAML-compatible identity federations.

Field

Description

id

string

Required field. ID of the federation.

organization_id

string

ID of the organization that the federation belongs to.

name

string

Required field. Name of the federation.

description

string

Description of the federation.

created_at

google.protobuf.Timestamp

Creation timestamp.

cookie_max_age

google.protobuf.Duration

Browser cookie lifetime in seconds.
If the cookie is still valid, the management console
authenticates the user immediately and redirects them to the home page.

auto_create_account_on_login

bool

Add new users automatically on successful authentication.
The user becomes member of the organization automatically,
but you need to grant other roles to them.

If the value is false, users who aren't added to the organization
can't log in, even if they have authenticated on your server.

issuer

string

Required field. ID of the IdP server to be used for authentication.
The IdP server also responds to IAM with this ID after the user authenticates.

sso_binding

enum BindingType

Single sign-on endpoint binding type. Most Identity Providers support the POST binding type.

SAML Binding is a mapping of a SAML protocol message onto standard messaging
formats and/or communications protocols.

  • BINDING_TYPE_UNSPECIFIED
  • POST: HTTP POST binding.
  • REDIRECT: HTTP redirect binding.
  • ARTIFACT: HTTP artifact binding.

sso_url

string

Required field. Single sign-on endpoint URL.
Specify the link to the IdP login page here.

security_settings

FederationSecuritySettings

Federation security settings.

case_insensitive_name_ids

bool

Use case insensitive Name IDs.

labels

object (map<string, string>)

Resource labels as key:value pairs. Maximum of 64 per resource.

FederationSecuritySettingsFederationSecuritySettings

Federation security settings.

Field

Description

encrypted_assertions

bool

Enable encrypted assertions.

force_authn

bool

Value parameter ForceAuthn in SAMLRequest.

Was the article helpful?

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