SAML Federation API, gRPC: FederationService.List
Retrieves the list of federations in the specified organization.
gRPC request
rpc List (ListFederationsRequest) returns (ListFederationsResponse)
ListFederationsRequest
{
"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. |
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 |
filter |
string A filter expression that filters resources listed in the response.
|
ListFederationsResponse
{
"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[] |
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 |
Federation
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 |
Creation timestamp. |
cookie_max_age |
Browser cookie lifetime in seconds. |
auto_create_account_on_login |
bool Add new users automatically on successful authentication. If the value is |
issuer |
string Required field. ID of the IdP server to be used for authentication. |
sso_binding |
enum BindingType Single sign-on endpoint binding type. Most Identity Providers support the SAML Binding is a mapping of a SAML protocol message onto standard messaging
|
sso_url |
string Required field. Single sign-on endpoint URL. |
security_settings |
Federation security settings. |
case_insensitive_name_ids |
bool Use case insensitive Name IDs. |
labels |
object (map<string, string>) Resource labels as |
FederationSecuritySettings
Federation security settings.
Field |
Description |
encrypted_assertions |
bool Enable encrypted assertions. |
force_authn |
bool Value parameter ForceAuthn in SAMLRequest. |