IdentityStoreInput
Input payload for creating an identity store
input IdentityStoreInput {
clientId: String
clientSecret: String
identifier: String!
isAuthenticationEnabled: Boolean!
name: String!
type: IdentityStoreType!
}
Fields
IdentityStoreInput.clientId ● String scalar
The optional client ID, used for i.e identity lookups.
IdentityStoreInput.clientSecret ● String scalar
The optional client secret, applicable only to confidential clients.
IdentityStoreInput.identifier ● String! non-null scalar
A unique identifier for this store
IdentityStoreInput.isAuthenticationEnabled ● Boolean! non-null scalar
Whether tokens issued from this tenant can be used to authenticate with the VO APIs.
IdentityStoreInput.name ● String! non-null scalar
A human-friendly name for this store
IdentityStoreInput.type ● IdentityStoreType! non-null enum
What kind of store this is (e.g. 'Entra')
Member Of
createIdentityStore mutation