-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfiguration.structure.yml
67 lines (67 loc) · 2.33 KB
/
configuration.structure.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
---
name: 'Scim2'
configurationClass:
name: 'Scim2Configuration'
package: 'com.exclamationlabs.connid.base.scim2.configuration'
rest: true # io-error-retries
service: true # service-url
results: true
security:
authenticator:
directAccessToken: true
custom:
items:
required:
enableStandardSchema:
type: boolean
default: 'false'
order: 3010
display: 'Enable Standard Schema'
help: 'Uses prebuilt java objects based on the stand schema. '
enableEnterpriseUser:
type: boolean
default: 'false'
order: 3020
display: 'Enable Enterprise User'
help: 'Extend the user schema with enterprise attributes '
enableAWSSchema:
type: boolean
default: 'false'
order: 3030
display: 'Enable AWS Schema'
help: 'Use a pre-built java objects as defined for AWS As specified here https://docs.aws.amazon.com/singlesignon/latest/developerguide/what-is-scim.html'
enableSlackSchema:
type: boolean
default: 'false'
order: 3040
display: 'Enable Slack Schema'
help: 'Use prebuilt java classes as define for Slack as specified here: https://api.slack.com/admins/scim2'
enableDynamicSchema:
type: boolean
default: 'false'
order: 3050
display: 'Enable Dynamic Schema'
help: 'Use the Resource Type and/or the Schema defined '
usersEndpointUrl:
type: string
order: 3060
display: 'Users Endpoint URL'
help: 'Discovered from the resource type or entered manually'
groupsEndpointUrl:
type: string
order: 3070
display: 'Groups Endpoint URL'
help: 'Discovered from the resource type or entered manually'
optional:
userSchemaIdList:
type: string_array
order: 3100
multiValued: true
display: 'User SchemaId List'
help: 'A list of user schemas that define a user. This is discoverable from the Resource Type URL, JSON, or by one of the prebuilt java classes'
groupSchemaIdList:
type: string_array
order: 3200
multiValued: true
display: 'Group SchemaId List'
help: 'A list of Group schemas that define a Group. This is discoverable from the Resource Type URL or JSON. or by one of the prebuilt java classes '