AuthSourceBasic
A Gateway-based Basic authentication source that can be used to secure APIs or Developer Portals.
type AuthSourceBasic implements AuthSource {
id: ID!
name: String!
description: String
roles: [AuthSourceRole!]
users: [AuthSourceBasicUser!]
groups: [AuthSourceBasicGroup!]
}
Fields
AuthSourceBasic.id ● ID! non-null scalar miscellaneous {#id}
The authentication source ID.
AuthSourceBasic.name ● String! non-null scalar miscellaneous {#name}
The name of the authentication source.
AuthSourceBasic.description ● String scalar miscellaneous {#description}
The description of the authentication source.
AuthSourceBasic.roles ● [AuthSourceRole!] list object platform {#roles}
The roles associated with the authentication source.
AuthSourceBasic.users ● [AuthSourceBasicUser!] list object platform {#users}
The users associated with the authentication source.
AuthSourceBasic.groups ● [AuthSourceBasicGroup!] list object platform {#groups}
The groups that users are part of.
Interfaces
AuthSource interface platform
An interface for authentication source
Returned By
authSourceBrokerBasicMigrate mutation