Managed Service for OpenSearch API, gRPC: ClusterService.GetAuthSettings
Retrieves auth settings for specified cluster.
gRPC request
rpc GetAuthSettings (GetAuthSettingsRequest) returns (AuthSettings)
GetAuthSettingsRequest
{
"cluster_id": "string"
}
Field |
Description |
cluster_id |
string Required field. Required. ID of the OpenSearch cluster. |
AuthSettings
{
"saml": {
"enabled": "bool",
"idp_entity_id": "string",
"idp_metadata_file": "bytes",
"sp_entity_id": "string",
"dashboards_url": "string",
"roles_key": "string",
"subject_key": "string",
"jwt_default_expiration_timeout": "google.protobuf.Int64Value"
}
}
Field |
Description |
saml |
SAML settings |
SAMLSettings
Field |
Description |
enabled |
bool |
idp_entity_id |
string Required. The entity ID of your IdP. |
idp_metadata_file |
bytes Required. The SAML 2.0 metadata file of your IdP. |
sp_entity_id |
string Required. The entity ID of the service provider. |
dashboards_url |
string Required. The OpenSearch Dashboards base URL. |
roles_key |
string Optional. The attribute in the SAML response where the roles are stored. If not configured, no roles are used. |
subject_key |
string Optional. The attribute in the SAML response where the subject is stored. If not configured, the NameID attribute is used. |
jwt_default_expiration_timeout |
default jwt expiration timeout. |