Managed Service for Elasticsearch API, gRPC: AuthService.GetProvider
Written by
Updated at November 26, 2024
Returns registered auth provider by name.
gRPC request
rpc GetProvider (GetAuthProviderRequest) returns (AuthProvider)
GetAuthProviderRequest
{
"cluster_id": "string",
"name": "string"
}
Field |
Description |
cluster_id |
string Required field. Required. ID of the ElasticSearch cluster. |
name |
string Required field. Required. Name of the provider to delete. |
AuthProvider
{
"type": "Type",
"name": "string",
"order": "int64",
"enabled": "bool",
"hidden": "bool",
"description": "string",
"hint": "string",
"icon": "string",
// Includes only one of the fields `saml`
"saml": {
"idp_entity_id": "string",
"idp_metadata_file": "bytes",
"sp_entity_id": "string",
"kibana_url": "string",
"attribute_principal": "string",
"attribute_groups": "string",
"attribute_name": "string",
"attribute_email": "string",
"attribute_dn": "string"
}
// end of the list of possible fields
}
Field |
Description |
type |
enum Type
|
name |
string |
order |
int64 |
enabled |
bool |
hidden |
bool selector ui settings |
description |
string |
hint |
string |
icon |
string |
saml |
Includes only one of the fields |
SamlSettings
Field |
Description |
idp_entity_id |
string |
idp_metadata_file |
bytes |
sp_entity_id |
string |
kibana_url |
string |
attribute_principal |
string |
attribute_groups |
string |
attribute_name |
string |
attribute_email |
string |
attribute_dn |
string |