INPUT_OBJECT

CreateOpenIdProvider

link GraphQL Schema definition

1input CreateOpenIdProvider {
4
2# Name of the OpenID Provider will show in Vertione Platform
3name: String!
7
5# Description of the OpenID Provider
6description: String
10
8# Official website url of the Provider
9websiteUrl: String
13
11# The clientId of OpenID Connect, it will be hash as sensitive data
12clientId: String!
16
14# Secret key of OpenID Connect, it will be hash as sensitive data
15clientSecret: String!
21
17# The issuer URL of the OpenID Connect application.
18# E.g.. (the /.well-known/ URL for Azure AD, or https://accounts.google.com for
19# Google,...)
20issuerUrl: String!
24
22# Button text for OpenID Provider on login
23btnText: String
27
25# The link of OpenId Provider Logo
26btnLogo: String
30
28# Button color for OpenID Provider on login (e.g.,#FFFFFF,..)
29btnColor: String
33
31# Button text color for OpenID Provider on login (e.g.,#FFFFFF,..)
32btnTextColor: String
36
34# Flag is set for Global OpenID Provider. Default value is false if not set
35isGlobal: Boolean
37}