Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Configuration Property
Required
Type
Default Value
Description
domainXString
Internet domain name. See https://support.google.com/a/answer/177483?hl=en
clientIdXString
Client identifier issued to the client during the registration process.
clientSecretXGuardedString
Client secret issued to the client during the registration process.
refreshTokenXGuardedString
The refresh token allows you to get a new access token that is good for another hour. Refresh tokens never expire, they can only be revoked by the user or programatically by your app.
Search Projection
StringbasicWhat subset of fields to fetch for this user. Acceptable values are: basic (Do not include any custom fields for the user. Set as default), custom (Include custom fields from schemas requested in customFieldMask), full (Include all fields associated with this user).
Custom Schemas configuration
String

JSON representation of a Resource Schema where you can specify your custom schemas (in order to see them during search you must set projection to value "full").
Example: 
[{
"name": "customSchemaName",
"multiValued": false,
"type": "object",
"innerSchemas": [{
"name": "customFieldName",
"multiValued": false,
"type": "boolean",
"innerSchemas": []
}]
}]

Obtaining the configuration parameter values

...