AuthSourceBasicBroker
A Broker-based Basic authentication source that can be used to secure APIs or Developer Portals.
type AuthSourceBasicBroker implements AuthSource {
id: ID!
name: String!
description: String
brokerId: String
redirectUris: [String!]
users: [AuthSourceBasicUser!]
groups: [AuthSourceBasicGroup!]
roles: [AuthSourceRole!]
}
Fields
AuthSourceBasicBroker.id ● ID! non-null scalar miscellaneous
The authentication source ID.
AuthSourceBasicBroker.name ● String! non-null scalar miscellaneous
The name of the authentication source.
AuthSourceBasicBroker.description ● String scalar miscellaneous
The description of the authentication source.
AuthSourceBasicBroker.brokerId ● String scalar miscellaneous
ID of the Broker that the authentication source is attached to.
AuthSourceBasicBroker.redirectUris ● [String!] list scalar miscellaneous
The redirect URIs configured in the IDP.
AuthSourceBasicBroker.users ● [AuthSourceBasicUser!] list object platform
The users associated with the authentication source.
AuthSourceBasicBroker.groups ● [AuthSourceBasicGroup!] list object platform
The groups that users are part of.
AuthSourceBasicBroker.roles ● [AuthSourceRole!] list object platform
The roles associated with authentication source.
Interfaces
AuthSource interface platform
An interface for authentication source