@goauthentik/api 2025.2.1-1740653734 → 2025.2.1-1740858273
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/models/GoogleWorkspaceProvider.d.ts +6 -0
- package/dist/esm/models/GoogleWorkspaceProvider.js +2 -0
- package/dist/esm/models/GoogleWorkspaceProviderRequest.d.ts +6 -0
- package/dist/esm/models/GoogleWorkspaceProviderRequest.js +2 -0
- package/dist/esm/models/MicrosoftEntraProvider.d.ts +6 -0
- package/dist/esm/models/MicrosoftEntraProvider.js +2 -0
- package/dist/esm/models/MicrosoftEntraProviderRequest.d.ts +6 -0
- package/dist/esm/models/MicrosoftEntraProviderRequest.js +2 -0
- package/dist/esm/models/PatchedGoogleWorkspaceProviderRequest.d.ts +6 -0
- package/dist/esm/models/PatchedGoogleWorkspaceProviderRequest.js +2 -0
- package/dist/esm/models/PatchedMicrosoftEntraProviderRequest.d.ts +6 -0
- package/dist/esm/models/PatchedMicrosoftEntraProviderRequest.js +2 -0
- package/dist/esm/models/PatchedSCIMProviderRequest.d.ts +6 -0
- package/dist/esm/models/PatchedSCIMProviderRequest.js +2 -0
- package/dist/esm/models/SCIMProvider.d.ts +6 -0
- package/dist/esm/models/SCIMProvider.js +2 -0
- package/dist/esm/models/SCIMProviderRequest.d.ts +6 -0
- package/dist/esm/models/SCIMProviderRequest.js +2 -0
- package/dist/esm/models/SyncObjectRequest.d.ts +6 -0
- package/dist/esm/models/SyncObjectRequest.js +2 -0
- package/dist/models/GoogleWorkspaceProvider.d.ts +6 -0
- package/dist/models/GoogleWorkspaceProvider.js +2 -0
- package/dist/models/GoogleWorkspaceProviderRequest.d.ts +6 -0
- package/dist/models/GoogleWorkspaceProviderRequest.js +2 -0
- package/dist/models/MicrosoftEntraProvider.d.ts +6 -0
- package/dist/models/MicrosoftEntraProvider.js +2 -0
- package/dist/models/MicrosoftEntraProviderRequest.d.ts +6 -0
- package/dist/models/MicrosoftEntraProviderRequest.js +2 -0
- package/dist/models/PatchedGoogleWorkspaceProviderRequest.d.ts +6 -0
- package/dist/models/PatchedGoogleWorkspaceProviderRequest.js +2 -0
- package/dist/models/PatchedMicrosoftEntraProviderRequest.d.ts +6 -0
- package/dist/models/PatchedMicrosoftEntraProviderRequest.js +2 -0
- package/dist/models/PatchedSCIMProviderRequest.d.ts +6 -0
- package/dist/models/PatchedSCIMProviderRequest.js +2 -0
- package/dist/models/SCIMProvider.d.ts +6 -0
- package/dist/models/SCIMProvider.js +2 -0
- package/dist/models/SCIMProviderRequest.d.ts +6 -0
- package/dist/models/SCIMProviderRequest.js +2 -0
- package/dist/models/SyncObjectRequest.d.ts +6 -0
- package/dist/models/SyncObjectRequest.js +2 -0
- package/package.json +1 -1
- package/src/models/GoogleWorkspaceProvider.ts +8 -0
- package/src/models/GoogleWorkspaceProviderRequest.ts +8 -0
- package/src/models/MicrosoftEntraProvider.ts +8 -0
- package/src/models/MicrosoftEntraProviderRequest.ts +8 -0
- package/src/models/PatchedGoogleWorkspaceProviderRequest.ts +8 -0
- package/src/models/PatchedMicrosoftEntraProviderRequest.ts +8 -0
- package/src/models/PatchedSCIMProviderRequest.ts +8 -0
- package/src/models/SCIMProvider.ts +8 -0
- package/src/models/SCIMProviderRequest.ts +8 -0
- package/src/models/SyncObjectRequest.ts +8 -0
|
@@ -124,6 +124,12 @@ export interface GoogleWorkspaceProvider {
|
|
|
124
124
|
* @memberof GoogleWorkspaceProvider
|
|
125
125
|
*/
|
|
126
126
|
defaultGroupEmailDomain: string;
|
|
127
|
+
/**
|
|
128
|
+
* When enabled, provider will not modify or create objects in the remote system.
|
|
129
|
+
* @type {boolean}
|
|
130
|
+
* @memberof GoogleWorkspaceProvider
|
|
131
|
+
*/
|
|
132
|
+
dryRun?: boolean;
|
|
127
133
|
}
|
|
128
134
|
/**
|
|
129
135
|
* Check if a given object implements the GoogleWorkspaceProvider interface.
|
|
@@ -66,6 +66,7 @@ export function GoogleWorkspaceProviderFromJSONTyped(json, ignoreDiscriminator)
|
|
|
66
66
|
'userDeleteAction': json['user_delete_action'] == null ? undefined : OutgoingSyncDeleteActionFromJSON(json['user_delete_action']),
|
|
67
67
|
'groupDeleteAction': json['group_delete_action'] == null ? undefined : OutgoingSyncDeleteActionFromJSON(json['group_delete_action']),
|
|
68
68
|
'defaultGroupEmailDomain': json['default_group_email_domain'],
|
|
69
|
+
'dryRun': json['dry_run'] == null ? undefined : json['dry_run'],
|
|
69
70
|
};
|
|
70
71
|
}
|
|
71
72
|
export function GoogleWorkspaceProviderToJSON(json) {
|
|
@@ -87,5 +88,6 @@ export function GoogleWorkspaceProviderToJSONTyped(value, ignoreDiscriminator =
|
|
|
87
88
|
'user_delete_action': OutgoingSyncDeleteActionToJSON(value['userDeleteAction']),
|
|
88
89
|
'group_delete_action': OutgoingSyncDeleteActionToJSON(value['groupDeleteAction']),
|
|
89
90
|
'default_group_email_domain': value['defaultGroupEmailDomain'],
|
|
91
|
+
'dry_run': value['dryRun'],
|
|
90
92
|
};
|
|
91
93
|
}
|
|
@@ -82,6 +82,12 @@ export interface GoogleWorkspaceProviderRequest {
|
|
|
82
82
|
* @memberof GoogleWorkspaceProviderRequest
|
|
83
83
|
*/
|
|
84
84
|
defaultGroupEmailDomain: string;
|
|
85
|
+
/**
|
|
86
|
+
* When enabled, provider will not modify or create objects in the remote system.
|
|
87
|
+
* @type {boolean}
|
|
88
|
+
* @memberof GoogleWorkspaceProviderRequest
|
|
89
|
+
*/
|
|
90
|
+
dryRun?: boolean;
|
|
85
91
|
}
|
|
86
92
|
/**
|
|
87
93
|
* Check if a given object implements the GoogleWorkspaceProviderRequest interface.
|
|
@@ -45,6 +45,7 @@ export function GoogleWorkspaceProviderRequestFromJSONTyped(json, ignoreDiscrimi
|
|
|
45
45
|
'userDeleteAction': json['user_delete_action'] == null ? undefined : OutgoingSyncDeleteActionFromJSON(json['user_delete_action']),
|
|
46
46
|
'groupDeleteAction': json['group_delete_action'] == null ? undefined : OutgoingSyncDeleteActionFromJSON(json['group_delete_action']),
|
|
47
47
|
'defaultGroupEmailDomain': json['default_group_email_domain'],
|
|
48
|
+
'dryRun': json['dry_run'] == null ? undefined : json['dry_run'],
|
|
48
49
|
};
|
|
49
50
|
}
|
|
50
51
|
export function GoogleWorkspaceProviderRequestToJSON(json) {
|
|
@@ -66,5 +67,6 @@ export function GoogleWorkspaceProviderRequestToJSONTyped(value, ignoreDiscrimin
|
|
|
66
67
|
'user_delete_action': OutgoingSyncDeleteActionToJSON(value['userDeleteAction']),
|
|
67
68
|
'group_delete_action': OutgoingSyncDeleteActionToJSON(value['groupDeleteAction']),
|
|
68
69
|
'default_group_email_domain': value['defaultGroupEmailDomain'],
|
|
70
|
+
'dry_run': value['dryRun'],
|
|
69
71
|
};
|
|
70
72
|
}
|
|
@@ -118,6 +118,12 @@ export interface MicrosoftEntraProvider {
|
|
|
118
118
|
* @memberof MicrosoftEntraProvider
|
|
119
119
|
*/
|
|
120
120
|
groupDeleteAction?: OutgoingSyncDeleteAction;
|
|
121
|
+
/**
|
|
122
|
+
* When enabled, provider will not modify or create objects in the remote system.
|
|
123
|
+
* @type {boolean}
|
|
124
|
+
* @memberof MicrosoftEntraProvider
|
|
125
|
+
*/
|
|
126
|
+
dryRun?: boolean;
|
|
121
127
|
}
|
|
122
128
|
/**
|
|
123
129
|
* Check if a given object implements the MicrosoftEntraProvider interface.
|
|
@@ -65,6 +65,7 @@ export function MicrosoftEntraProviderFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
65
65
|
'filterGroup': json['filter_group'] == null ? undefined : json['filter_group'],
|
|
66
66
|
'userDeleteAction': json['user_delete_action'] == null ? undefined : OutgoingSyncDeleteActionFromJSON(json['user_delete_action']),
|
|
67
67
|
'groupDeleteAction': json['group_delete_action'] == null ? undefined : OutgoingSyncDeleteActionFromJSON(json['group_delete_action']),
|
|
68
|
+
'dryRun': json['dry_run'] == null ? undefined : json['dry_run'],
|
|
68
69
|
};
|
|
69
70
|
}
|
|
70
71
|
export function MicrosoftEntraProviderToJSON(json) {
|
|
@@ -85,5 +86,6 @@ export function MicrosoftEntraProviderToJSONTyped(value, ignoreDiscriminator = f
|
|
|
85
86
|
'filter_group': value['filterGroup'],
|
|
86
87
|
'user_delete_action': OutgoingSyncDeleteActionToJSON(value['userDeleteAction']),
|
|
87
88
|
'group_delete_action': OutgoingSyncDeleteActionToJSON(value['groupDeleteAction']),
|
|
89
|
+
'dry_run': value['dryRun'],
|
|
88
90
|
};
|
|
89
91
|
}
|
|
@@ -76,6 +76,12 @@ export interface MicrosoftEntraProviderRequest {
|
|
|
76
76
|
* @memberof MicrosoftEntraProviderRequest
|
|
77
77
|
*/
|
|
78
78
|
groupDeleteAction?: OutgoingSyncDeleteAction;
|
|
79
|
+
/**
|
|
80
|
+
* When enabled, provider will not modify or create objects in the remote system.
|
|
81
|
+
* @type {boolean}
|
|
82
|
+
* @memberof MicrosoftEntraProviderRequest
|
|
83
|
+
*/
|
|
84
|
+
dryRun?: boolean;
|
|
79
85
|
}
|
|
80
86
|
/**
|
|
81
87
|
* Check if a given object implements the MicrosoftEntraProviderRequest interface.
|
|
@@ -44,6 +44,7 @@ export function MicrosoftEntraProviderRequestFromJSONTyped(json, ignoreDiscrimin
|
|
|
44
44
|
'filterGroup': json['filter_group'] == null ? undefined : json['filter_group'],
|
|
45
45
|
'userDeleteAction': json['user_delete_action'] == null ? undefined : OutgoingSyncDeleteActionFromJSON(json['user_delete_action']),
|
|
46
46
|
'groupDeleteAction': json['group_delete_action'] == null ? undefined : OutgoingSyncDeleteActionFromJSON(json['group_delete_action']),
|
|
47
|
+
'dryRun': json['dry_run'] == null ? undefined : json['dry_run'],
|
|
47
48
|
};
|
|
48
49
|
}
|
|
49
50
|
export function MicrosoftEntraProviderRequestToJSON(json) {
|
|
@@ -64,5 +65,6 @@ export function MicrosoftEntraProviderRequestToJSONTyped(value, ignoreDiscrimina
|
|
|
64
65
|
'filter_group': value['filterGroup'],
|
|
65
66
|
'user_delete_action': OutgoingSyncDeleteActionToJSON(value['userDeleteAction']),
|
|
66
67
|
'group_delete_action': OutgoingSyncDeleteActionToJSON(value['groupDeleteAction']),
|
|
68
|
+
'dry_run': value['dryRun'],
|
|
67
69
|
};
|
|
68
70
|
}
|
|
@@ -82,6 +82,12 @@ export interface PatchedGoogleWorkspaceProviderRequest {
|
|
|
82
82
|
* @memberof PatchedGoogleWorkspaceProviderRequest
|
|
83
83
|
*/
|
|
84
84
|
defaultGroupEmailDomain?: string;
|
|
85
|
+
/**
|
|
86
|
+
* When enabled, provider will not modify or create objects in the remote system.
|
|
87
|
+
* @type {boolean}
|
|
88
|
+
* @memberof PatchedGoogleWorkspaceProviderRequest
|
|
89
|
+
*/
|
|
90
|
+
dryRun?: boolean;
|
|
85
91
|
}
|
|
86
92
|
/**
|
|
87
93
|
* Check if a given object implements the PatchedGoogleWorkspaceProviderRequest interface.
|
|
@@ -37,6 +37,7 @@ export function PatchedGoogleWorkspaceProviderRequestFromJSONTyped(json, ignoreD
|
|
|
37
37
|
'userDeleteAction': json['user_delete_action'] == null ? undefined : OutgoingSyncDeleteActionFromJSON(json['user_delete_action']),
|
|
38
38
|
'groupDeleteAction': json['group_delete_action'] == null ? undefined : OutgoingSyncDeleteActionFromJSON(json['group_delete_action']),
|
|
39
39
|
'defaultGroupEmailDomain': json['default_group_email_domain'] == null ? undefined : json['default_group_email_domain'],
|
|
40
|
+
'dryRun': json['dry_run'] == null ? undefined : json['dry_run'],
|
|
40
41
|
};
|
|
41
42
|
}
|
|
42
43
|
export function PatchedGoogleWorkspaceProviderRequestToJSON(json) {
|
|
@@ -58,5 +59,6 @@ export function PatchedGoogleWorkspaceProviderRequestToJSONTyped(value, ignoreDi
|
|
|
58
59
|
'user_delete_action': OutgoingSyncDeleteActionToJSON(value['userDeleteAction']),
|
|
59
60
|
'group_delete_action': OutgoingSyncDeleteActionToJSON(value['groupDeleteAction']),
|
|
60
61
|
'default_group_email_domain': value['defaultGroupEmailDomain'],
|
|
62
|
+
'dry_run': value['dryRun'],
|
|
61
63
|
};
|
|
62
64
|
}
|
|
@@ -76,6 +76,12 @@ export interface PatchedMicrosoftEntraProviderRequest {
|
|
|
76
76
|
* @memberof PatchedMicrosoftEntraProviderRequest
|
|
77
77
|
*/
|
|
78
78
|
groupDeleteAction?: OutgoingSyncDeleteAction;
|
|
79
|
+
/**
|
|
80
|
+
* When enabled, provider will not modify or create objects in the remote system.
|
|
81
|
+
* @type {boolean}
|
|
82
|
+
* @memberof PatchedMicrosoftEntraProviderRequest
|
|
83
|
+
*/
|
|
84
|
+
dryRun?: boolean;
|
|
79
85
|
}
|
|
80
86
|
/**
|
|
81
87
|
* Check if a given object implements the PatchedMicrosoftEntraProviderRequest interface.
|
|
@@ -36,6 +36,7 @@ export function PatchedMicrosoftEntraProviderRequestFromJSONTyped(json, ignoreDi
|
|
|
36
36
|
'filterGroup': json['filter_group'] == null ? undefined : json['filter_group'],
|
|
37
37
|
'userDeleteAction': json['user_delete_action'] == null ? undefined : OutgoingSyncDeleteActionFromJSON(json['user_delete_action']),
|
|
38
38
|
'groupDeleteAction': json['group_delete_action'] == null ? undefined : OutgoingSyncDeleteActionFromJSON(json['group_delete_action']),
|
|
39
|
+
'dryRun': json['dry_run'] == null ? undefined : json['dry_run'],
|
|
39
40
|
};
|
|
40
41
|
}
|
|
41
42
|
export function PatchedMicrosoftEntraProviderRequestToJSON(json) {
|
|
@@ -56,5 +57,6 @@ export function PatchedMicrosoftEntraProviderRequestToJSONTyped(value, ignoreDis
|
|
|
56
57
|
'filter_group': value['filterGroup'],
|
|
57
58
|
'user_delete_action': OutgoingSyncDeleteActionToJSON(value['userDeleteAction']),
|
|
58
59
|
'group_delete_action': OutgoingSyncDeleteActionToJSON(value['groupDeleteAction']),
|
|
60
|
+
'dry_run': value['dryRun'],
|
|
59
61
|
};
|
|
60
62
|
}
|
|
@@ -63,6 +63,12 @@ export interface PatchedSCIMProviderRequest {
|
|
|
63
63
|
* @memberof PatchedSCIMProviderRequest
|
|
64
64
|
*/
|
|
65
65
|
filterGroup?: string | null;
|
|
66
|
+
/**
|
|
67
|
+
* When enabled, provider will not modify or create objects in the remote system.
|
|
68
|
+
* @type {boolean}
|
|
69
|
+
* @memberof PatchedSCIMProviderRequest
|
|
70
|
+
*/
|
|
71
|
+
dryRun?: boolean;
|
|
66
72
|
}
|
|
67
73
|
/**
|
|
68
74
|
* Check if a given object implements the PatchedSCIMProviderRequest interface.
|
|
@@ -33,6 +33,7 @@ export function PatchedSCIMProviderRequestFromJSONTyped(json, ignoreDiscriminato
|
|
|
33
33
|
'token': json['token'] == null ? undefined : json['token'],
|
|
34
34
|
'excludeUsersServiceAccount': json['exclude_users_service_account'] == null ? undefined : json['exclude_users_service_account'],
|
|
35
35
|
'filterGroup': json['filter_group'] == null ? undefined : json['filter_group'],
|
|
36
|
+
'dryRun': json['dry_run'] == null ? undefined : json['dry_run'],
|
|
36
37
|
};
|
|
37
38
|
}
|
|
38
39
|
export function PatchedSCIMProviderRequestToJSON(json) {
|
|
@@ -51,5 +52,6 @@ export function PatchedSCIMProviderRequestToJSONTyped(value, ignoreDiscriminator
|
|
|
51
52
|
'token': value['token'],
|
|
52
53
|
'exclude_users_service_account': value['excludeUsersServiceAccount'],
|
|
53
54
|
'filter_group': value['filterGroup'],
|
|
55
|
+
'dry_run': value['dryRun'],
|
|
54
56
|
};
|
|
55
57
|
}
|
|
@@ -105,6 +105,12 @@ export interface SCIMProvider {
|
|
|
105
105
|
* @memberof SCIMProvider
|
|
106
106
|
*/
|
|
107
107
|
filterGroup?: string | null;
|
|
108
|
+
/**
|
|
109
|
+
* When enabled, provider will not modify or create objects in the remote system.
|
|
110
|
+
* @type {boolean}
|
|
111
|
+
* @memberof SCIMProvider
|
|
112
|
+
*/
|
|
113
|
+
dryRun?: boolean;
|
|
108
114
|
}
|
|
109
115
|
/**
|
|
110
116
|
* Check if a given object implements the SCIMProvider interface.
|
|
@@ -60,6 +60,7 @@ export function SCIMProviderFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
60
60
|
'token': json['token'],
|
|
61
61
|
'excludeUsersServiceAccount': json['exclude_users_service_account'] == null ? undefined : json['exclude_users_service_account'],
|
|
62
62
|
'filterGroup': json['filter_group'] == null ? undefined : json['filter_group'],
|
|
63
|
+
'dryRun': json['dry_run'] == null ? undefined : json['dry_run'],
|
|
63
64
|
};
|
|
64
65
|
}
|
|
65
66
|
export function SCIMProviderToJSON(json) {
|
|
@@ -78,5 +79,6 @@ export function SCIMProviderToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
78
79
|
'token': value['token'],
|
|
79
80
|
'exclude_users_service_account': value['excludeUsersServiceAccount'],
|
|
80
81
|
'filter_group': value['filterGroup'],
|
|
82
|
+
'dry_run': value['dryRun'],
|
|
81
83
|
};
|
|
82
84
|
}
|
|
@@ -63,6 +63,12 @@ export interface SCIMProviderRequest {
|
|
|
63
63
|
* @memberof SCIMProviderRequest
|
|
64
64
|
*/
|
|
65
65
|
filterGroup?: string | null;
|
|
66
|
+
/**
|
|
67
|
+
* When enabled, provider will not modify or create objects in the remote system.
|
|
68
|
+
* @type {boolean}
|
|
69
|
+
* @memberof SCIMProviderRequest
|
|
70
|
+
*/
|
|
71
|
+
dryRun?: boolean;
|
|
66
72
|
}
|
|
67
73
|
/**
|
|
68
74
|
* Check if a given object implements the SCIMProviderRequest interface.
|
|
@@ -39,6 +39,7 @@ export function SCIMProviderRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
39
39
|
'token': json['token'],
|
|
40
40
|
'excludeUsersServiceAccount': json['exclude_users_service_account'] == null ? undefined : json['exclude_users_service_account'],
|
|
41
41
|
'filterGroup': json['filter_group'] == null ? undefined : json['filter_group'],
|
|
42
|
+
'dryRun': json['dry_run'] == null ? undefined : json['dry_run'],
|
|
42
43
|
};
|
|
43
44
|
}
|
|
44
45
|
export function SCIMProviderRequestToJSON(json) {
|
|
@@ -57,5 +58,6 @@ export function SCIMProviderRequestToJSONTyped(value, ignoreDiscriminator = fals
|
|
|
57
58
|
'token': value['token'],
|
|
58
59
|
'exclude_users_service_account': value['excludeUsersServiceAccount'],
|
|
59
60
|
'filter_group': value['filterGroup'],
|
|
61
|
+
'dry_run': value['dryRun'],
|
|
60
62
|
};
|
|
61
63
|
}
|
|
@@ -28,6 +28,12 @@ export interface SyncObjectRequest {
|
|
|
28
28
|
* @memberof SyncObjectRequest
|
|
29
29
|
*/
|
|
30
30
|
syncObjectId: string;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {boolean}
|
|
34
|
+
* @memberof SyncObjectRequest
|
|
35
|
+
*/
|
|
36
|
+
overrideDryRun?: boolean;
|
|
31
37
|
}
|
|
32
38
|
/**
|
|
33
39
|
* Check if a given object implements the SyncObjectRequest interface.
|
|
@@ -32,6 +32,7 @@ export function SyncObjectRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
32
32
|
return {
|
|
33
33
|
'syncObjectModel': SyncObjectModelEnumFromJSON(json['sync_object_model']),
|
|
34
34
|
'syncObjectId': json['sync_object_id'],
|
|
35
|
+
'overrideDryRun': json['override_dry_run'] == null ? undefined : json['override_dry_run'],
|
|
35
36
|
};
|
|
36
37
|
}
|
|
37
38
|
export function SyncObjectRequestToJSON(json) {
|
|
@@ -44,5 +45,6 @@ export function SyncObjectRequestToJSONTyped(value, ignoreDiscriminator = false)
|
|
|
44
45
|
return {
|
|
45
46
|
'sync_object_model': SyncObjectModelEnumToJSON(value['syncObjectModel']),
|
|
46
47
|
'sync_object_id': value['syncObjectId'],
|
|
48
|
+
'override_dry_run': value['overrideDryRun'],
|
|
47
49
|
};
|
|
48
50
|
}
|
|
@@ -124,6 +124,12 @@ export interface GoogleWorkspaceProvider {
|
|
|
124
124
|
* @memberof GoogleWorkspaceProvider
|
|
125
125
|
*/
|
|
126
126
|
defaultGroupEmailDomain: string;
|
|
127
|
+
/**
|
|
128
|
+
* When enabled, provider will not modify or create objects in the remote system.
|
|
129
|
+
* @type {boolean}
|
|
130
|
+
* @memberof GoogleWorkspaceProvider
|
|
131
|
+
*/
|
|
132
|
+
dryRun?: boolean;
|
|
127
133
|
}
|
|
128
134
|
/**
|
|
129
135
|
* Check if a given object implements the GoogleWorkspaceProvider interface.
|
|
@@ -73,6 +73,7 @@ function GoogleWorkspaceProviderFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
73
73
|
'userDeleteAction': json['user_delete_action'] == null ? undefined : (0, OutgoingSyncDeleteAction_1.OutgoingSyncDeleteActionFromJSON)(json['user_delete_action']),
|
|
74
74
|
'groupDeleteAction': json['group_delete_action'] == null ? undefined : (0, OutgoingSyncDeleteAction_1.OutgoingSyncDeleteActionFromJSON)(json['group_delete_action']),
|
|
75
75
|
'defaultGroupEmailDomain': json['default_group_email_domain'],
|
|
76
|
+
'dryRun': json['dry_run'] == null ? undefined : json['dry_run'],
|
|
76
77
|
};
|
|
77
78
|
}
|
|
78
79
|
function GoogleWorkspaceProviderToJSON(json) {
|
|
@@ -94,5 +95,6 @@ function GoogleWorkspaceProviderToJSONTyped(value, ignoreDiscriminator = false)
|
|
|
94
95
|
'user_delete_action': (0, OutgoingSyncDeleteAction_1.OutgoingSyncDeleteActionToJSON)(value['userDeleteAction']),
|
|
95
96
|
'group_delete_action': (0, OutgoingSyncDeleteAction_1.OutgoingSyncDeleteActionToJSON)(value['groupDeleteAction']),
|
|
96
97
|
'default_group_email_domain': value['defaultGroupEmailDomain'],
|
|
98
|
+
'dry_run': value['dryRun'],
|
|
97
99
|
};
|
|
98
100
|
}
|
|
@@ -82,6 +82,12 @@ export interface GoogleWorkspaceProviderRequest {
|
|
|
82
82
|
* @memberof GoogleWorkspaceProviderRequest
|
|
83
83
|
*/
|
|
84
84
|
defaultGroupEmailDomain: string;
|
|
85
|
+
/**
|
|
86
|
+
* When enabled, provider will not modify or create objects in the remote system.
|
|
87
|
+
* @type {boolean}
|
|
88
|
+
* @memberof GoogleWorkspaceProviderRequest
|
|
89
|
+
*/
|
|
90
|
+
dryRun?: boolean;
|
|
85
91
|
}
|
|
86
92
|
/**
|
|
87
93
|
* Check if a given object implements the GoogleWorkspaceProviderRequest interface.
|
|
@@ -52,6 +52,7 @@ function GoogleWorkspaceProviderRequestFromJSONTyped(json, ignoreDiscriminator)
|
|
|
52
52
|
'userDeleteAction': json['user_delete_action'] == null ? undefined : (0, OutgoingSyncDeleteAction_1.OutgoingSyncDeleteActionFromJSON)(json['user_delete_action']),
|
|
53
53
|
'groupDeleteAction': json['group_delete_action'] == null ? undefined : (0, OutgoingSyncDeleteAction_1.OutgoingSyncDeleteActionFromJSON)(json['group_delete_action']),
|
|
54
54
|
'defaultGroupEmailDomain': json['default_group_email_domain'],
|
|
55
|
+
'dryRun': json['dry_run'] == null ? undefined : json['dry_run'],
|
|
55
56
|
};
|
|
56
57
|
}
|
|
57
58
|
function GoogleWorkspaceProviderRequestToJSON(json) {
|
|
@@ -73,5 +74,6 @@ function GoogleWorkspaceProviderRequestToJSONTyped(value, ignoreDiscriminator =
|
|
|
73
74
|
'user_delete_action': (0, OutgoingSyncDeleteAction_1.OutgoingSyncDeleteActionToJSON)(value['userDeleteAction']),
|
|
74
75
|
'group_delete_action': (0, OutgoingSyncDeleteAction_1.OutgoingSyncDeleteActionToJSON)(value['groupDeleteAction']),
|
|
75
76
|
'default_group_email_domain': value['defaultGroupEmailDomain'],
|
|
77
|
+
'dry_run': value['dryRun'],
|
|
76
78
|
};
|
|
77
79
|
}
|
|
@@ -118,6 +118,12 @@ export interface MicrosoftEntraProvider {
|
|
|
118
118
|
* @memberof MicrosoftEntraProvider
|
|
119
119
|
*/
|
|
120
120
|
groupDeleteAction?: OutgoingSyncDeleteAction;
|
|
121
|
+
/**
|
|
122
|
+
* When enabled, provider will not modify or create objects in the remote system.
|
|
123
|
+
* @type {boolean}
|
|
124
|
+
* @memberof MicrosoftEntraProvider
|
|
125
|
+
*/
|
|
126
|
+
dryRun?: boolean;
|
|
121
127
|
}
|
|
122
128
|
/**
|
|
123
129
|
* Check if a given object implements the MicrosoftEntraProvider interface.
|
|
@@ -72,6 +72,7 @@ function MicrosoftEntraProviderFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
72
72
|
'filterGroup': json['filter_group'] == null ? undefined : json['filter_group'],
|
|
73
73
|
'userDeleteAction': json['user_delete_action'] == null ? undefined : (0, OutgoingSyncDeleteAction_1.OutgoingSyncDeleteActionFromJSON)(json['user_delete_action']),
|
|
74
74
|
'groupDeleteAction': json['group_delete_action'] == null ? undefined : (0, OutgoingSyncDeleteAction_1.OutgoingSyncDeleteActionFromJSON)(json['group_delete_action']),
|
|
75
|
+
'dryRun': json['dry_run'] == null ? undefined : json['dry_run'],
|
|
75
76
|
};
|
|
76
77
|
}
|
|
77
78
|
function MicrosoftEntraProviderToJSON(json) {
|
|
@@ -92,5 +93,6 @@ function MicrosoftEntraProviderToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
92
93
|
'filter_group': value['filterGroup'],
|
|
93
94
|
'user_delete_action': (0, OutgoingSyncDeleteAction_1.OutgoingSyncDeleteActionToJSON)(value['userDeleteAction']),
|
|
94
95
|
'group_delete_action': (0, OutgoingSyncDeleteAction_1.OutgoingSyncDeleteActionToJSON)(value['groupDeleteAction']),
|
|
96
|
+
'dry_run': value['dryRun'],
|
|
95
97
|
};
|
|
96
98
|
}
|
|
@@ -76,6 +76,12 @@ export interface MicrosoftEntraProviderRequest {
|
|
|
76
76
|
* @memberof MicrosoftEntraProviderRequest
|
|
77
77
|
*/
|
|
78
78
|
groupDeleteAction?: OutgoingSyncDeleteAction;
|
|
79
|
+
/**
|
|
80
|
+
* When enabled, provider will not modify or create objects in the remote system.
|
|
81
|
+
* @type {boolean}
|
|
82
|
+
* @memberof MicrosoftEntraProviderRequest
|
|
83
|
+
*/
|
|
84
|
+
dryRun?: boolean;
|
|
79
85
|
}
|
|
80
86
|
/**
|
|
81
87
|
* Check if a given object implements the MicrosoftEntraProviderRequest interface.
|
|
@@ -51,6 +51,7 @@ function MicrosoftEntraProviderRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
51
51
|
'filterGroup': json['filter_group'] == null ? undefined : json['filter_group'],
|
|
52
52
|
'userDeleteAction': json['user_delete_action'] == null ? undefined : (0, OutgoingSyncDeleteAction_1.OutgoingSyncDeleteActionFromJSON)(json['user_delete_action']),
|
|
53
53
|
'groupDeleteAction': json['group_delete_action'] == null ? undefined : (0, OutgoingSyncDeleteAction_1.OutgoingSyncDeleteActionFromJSON)(json['group_delete_action']),
|
|
54
|
+
'dryRun': json['dry_run'] == null ? undefined : json['dry_run'],
|
|
54
55
|
};
|
|
55
56
|
}
|
|
56
57
|
function MicrosoftEntraProviderRequestToJSON(json) {
|
|
@@ -71,5 +72,6 @@ function MicrosoftEntraProviderRequestToJSONTyped(value, ignoreDiscriminator = f
|
|
|
71
72
|
'filter_group': value['filterGroup'],
|
|
72
73
|
'user_delete_action': (0, OutgoingSyncDeleteAction_1.OutgoingSyncDeleteActionToJSON)(value['userDeleteAction']),
|
|
73
74
|
'group_delete_action': (0, OutgoingSyncDeleteAction_1.OutgoingSyncDeleteActionToJSON)(value['groupDeleteAction']),
|
|
75
|
+
'dry_run': value['dryRun'],
|
|
74
76
|
};
|
|
75
77
|
}
|
|
@@ -82,6 +82,12 @@ export interface PatchedGoogleWorkspaceProviderRequest {
|
|
|
82
82
|
* @memberof PatchedGoogleWorkspaceProviderRequest
|
|
83
83
|
*/
|
|
84
84
|
defaultGroupEmailDomain?: string;
|
|
85
|
+
/**
|
|
86
|
+
* When enabled, provider will not modify or create objects in the remote system.
|
|
87
|
+
* @type {boolean}
|
|
88
|
+
* @memberof PatchedGoogleWorkspaceProviderRequest
|
|
89
|
+
*/
|
|
90
|
+
dryRun?: boolean;
|
|
85
91
|
}
|
|
86
92
|
/**
|
|
87
93
|
* Check if a given object implements the PatchedGoogleWorkspaceProviderRequest interface.
|
|
@@ -44,6 +44,7 @@ function PatchedGoogleWorkspaceProviderRequestFromJSONTyped(json, ignoreDiscrimi
|
|
|
44
44
|
'userDeleteAction': json['user_delete_action'] == null ? undefined : (0, OutgoingSyncDeleteAction_1.OutgoingSyncDeleteActionFromJSON)(json['user_delete_action']),
|
|
45
45
|
'groupDeleteAction': json['group_delete_action'] == null ? undefined : (0, OutgoingSyncDeleteAction_1.OutgoingSyncDeleteActionFromJSON)(json['group_delete_action']),
|
|
46
46
|
'defaultGroupEmailDomain': json['default_group_email_domain'] == null ? undefined : json['default_group_email_domain'],
|
|
47
|
+
'dryRun': json['dry_run'] == null ? undefined : json['dry_run'],
|
|
47
48
|
};
|
|
48
49
|
}
|
|
49
50
|
function PatchedGoogleWorkspaceProviderRequestToJSON(json) {
|
|
@@ -65,5 +66,6 @@ function PatchedGoogleWorkspaceProviderRequestToJSONTyped(value, ignoreDiscrimin
|
|
|
65
66
|
'user_delete_action': (0, OutgoingSyncDeleteAction_1.OutgoingSyncDeleteActionToJSON)(value['userDeleteAction']),
|
|
66
67
|
'group_delete_action': (0, OutgoingSyncDeleteAction_1.OutgoingSyncDeleteActionToJSON)(value['groupDeleteAction']),
|
|
67
68
|
'default_group_email_domain': value['defaultGroupEmailDomain'],
|
|
69
|
+
'dry_run': value['dryRun'],
|
|
68
70
|
};
|
|
69
71
|
}
|
|
@@ -76,6 +76,12 @@ export interface PatchedMicrosoftEntraProviderRequest {
|
|
|
76
76
|
* @memberof PatchedMicrosoftEntraProviderRequest
|
|
77
77
|
*/
|
|
78
78
|
groupDeleteAction?: OutgoingSyncDeleteAction;
|
|
79
|
+
/**
|
|
80
|
+
* When enabled, provider will not modify or create objects in the remote system.
|
|
81
|
+
* @type {boolean}
|
|
82
|
+
* @memberof PatchedMicrosoftEntraProviderRequest
|
|
83
|
+
*/
|
|
84
|
+
dryRun?: boolean;
|
|
79
85
|
}
|
|
80
86
|
/**
|
|
81
87
|
* Check if a given object implements the PatchedMicrosoftEntraProviderRequest interface.
|
|
@@ -43,6 +43,7 @@ function PatchedMicrosoftEntraProviderRequestFromJSONTyped(json, ignoreDiscrimin
|
|
|
43
43
|
'filterGroup': json['filter_group'] == null ? undefined : json['filter_group'],
|
|
44
44
|
'userDeleteAction': json['user_delete_action'] == null ? undefined : (0, OutgoingSyncDeleteAction_1.OutgoingSyncDeleteActionFromJSON)(json['user_delete_action']),
|
|
45
45
|
'groupDeleteAction': json['group_delete_action'] == null ? undefined : (0, OutgoingSyncDeleteAction_1.OutgoingSyncDeleteActionFromJSON)(json['group_delete_action']),
|
|
46
|
+
'dryRun': json['dry_run'] == null ? undefined : json['dry_run'],
|
|
46
47
|
};
|
|
47
48
|
}
|
|
48
49
|
function PatchedMicrosoftEntraProviderRequestToJSON(json) {
|
|
@@ -63,5 +64,6 @@ function PatchedMicrosoftEntraProviderRequestToJSONTyped(value, ignoreDiscrimina
|
|
|
63
64
|
'filter_group': value['filterGroup'],
|
|
64
65
|
'user_delete_action': (0, OutgoingSyncDeleteAction_1.OutgoingSyncDeleteActionToJSON)(value['userDeleteAction']),
|
|
65
66
|
'group_delete_action': (0, OutgoingSyncDeleteAction_1.OutgoingSyncDeleteActionToJSON)(value['groupDeleteAction']),
|
|
67
|
+
'dry_run': value['dryRun'],
|
|
66
68
|
};
|
|
67
69
|
}
|
|
@@ -63,6 +63,12 @@ export interface PatchedSCIMProviderRequest {
|
|
|
63
63
|
* @memberof PatchedSCIMProviderRequest
|
|
64
64
|
*/
|
|
65
65
|
filterGroup?: string | null;
|
|
66
|
+
/**
|
|
67
|
+
* When enabled, provider will not modify or create objects in the remote system.
|
|
68
|
+
* @type {boolean}
|
|
69
|
+
* @memberof PatchedSCIMProviderRequest
|
|
70
|
+
*/
|
|
71
|
+
dryRun?: boolean;
|
|
66
72
|
}
|
|
67
73
|
/**
|
|
68
74
|
* Check if a given object implements the PatchedSCIMProviderRequest interface.
|
|
@@ -40,6 +40,7 @@ function PatchedSCIMProviderRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
40
40
|
'token': json['token'] == null ? undefined : json['token'],
|
|
41
41
|
'excludeUsersServiceAccount': json['exclude_users_service_account'] == null ? undefined : json['exclude_users_service_account'],
|
|
42
42
|
'filterGroup': json['filter_group'] == null ? undefined : json['filter_group'],
|
|
43
|
+
'dryRun': json['dry_run'] == null ? undefined : json['dry_run'],
|
|
43
44
|
};
|
|
44
45
|
}
|
|
45
46
|
function PatchedSCIMProviderRequestToJSON(json) {
|
|
@@ -58,5 +59,6 @@ function PatchedSCIMProviderRequestToJSONTyped(value, ignoreDiscriminator = fals
|
|
|
58
59
|
'token': value['token'],
|
|
59
60
|
'exclude_users_service_account': value['excludeUsersServiceAccount'],
|
|
60
61
|
'filter_group': value['filterGroup'],
|
|
62
|
+
'dry_run': value['dryRun'],
|
|
61
63
|
};
|
|
62
64
|
}
|
|
@@ -105,6 +105,12 @@ export interface SCIMProvider {
|
|
|
105
105
|
* @memberof SCIMProvider
|
|
106
106
|
*/
|
|
107
107
|
filterGroup?: string | null;
|
|
108
|
+
/**
|
|
109
|
+
* When enabled, provider will not modify or create objects in the remote system.
|
|
110
|
+
* @type {boolean}
|
|
111
|
+
* @memberof SCIMProvider
|
|
112
|
+
*/
|
|
113
|
+
dryRun?: boolean;
|
|
108
114
|
}
|
|
109
115
|
/**
|
|
110
116
|
* Check if a given object implements the SCIMProvider interface.
|
|
@@ -67,6 +67,7 @@ function SCIMProviderFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
67
67
|
'token': json['token'],
|
|
68
68
|
'excludeUsersServiceAccount': json['exclude_users_service_account'] == null ? undefined : json['exclude_users_service_account'],
|
|
69
69
|
'filterGroup': json['filter_group'] == null ? undefined : json['filter_group'],
|
|
70
|
+
'dryRun': json['dry_run'] == null ? undefined : json['dry_run'],
|
|
70
71
|
};
|
|
71
72
|
}
|
|
72
73
|
function SCIMProviderToJSON(json) {
|
|
@@ -85,5 +86,6 @@ function SCIMProviderToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
85
86
|
'token': value['token'],
|
|
86
87
|
'exclude_users_service_account': value['excludeUsersServiceAccount'],
|
|
87
88
|
'filter_group': value['filterGroup'],
|
|
89
|
+
'dry_run': value['dryRun'],
|
|
88
90
|
};
|
|
89
91
|
}
|
|
@@ -63,6 +63,12 @@ export interface SCIMProviderRequest {
|
|
|
63
63
|
* @memberof SCIMProviderRequest
|
|
64
64
|
*/
|
|
65
65
|
filterGroup?: string | null;
|
|
66
|
+
/**
|
|
67
|
+
* When enabled, provider will not modify or create objects in the remote system.
|
|
68
|
+
* @type {boolean}
|
|
69
|
+
* @memberof SCIMProviderRequest
|
|
70
|
+
*/
|
|
71
|
+
dryRun?: boolean;
|
|
66
72
|
}
|
|
67
73
|
/**
|
|
68
74
|
* Check if a given object implements the SCIMProviderRequest interface.
|
|
@@ -46,6 +46,7 @@ function SCIMProviderRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
46
46
|
'token': json['token'],
|
|
47
47
|
'excludeUsersServiceAccount': json['exclude_users_service_account'] == null ? undefined : json['exclude_users_service_account'],
|
|
48
48
|
'filterGroup': json['filter_group'] == null ? undefined : json['filter_group'],
|
|
49
|
+
'dryRun': json['dry_run'] == null ? undefined : json['dry_run'],
|
|
49
50
|
};
|
|
50
51
|
}
|
|
51
52
|
function SCIMProviderRequestToJSON(json) {
|
|
@@ -64,5 +65,6 @@ function SCIMProviderRequestToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
64
65
|
'token': value['token'],
|
|
65
66
|
'exclude_users_service_account': value['excludeUsersServiceAccount'],
|
|
66
67
|
'filter_group': value['filterGroup'],
|
|
68
|
+
'dry_run': value['dryRun'],
|
|
67
69
|
};
|
|
68
70
|
}
|
|
@@ -28,6 +28,12 @@ export interface SyncObjectRequest {
|
|
|
28
28
|
* @memberof SyncObjectRequest
|
|
29
29
|
*/
|
|
30
30
|
syncObjectId: string;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {boolean}
|
|
34
|
+
* @memberof SyncObjectRequest
|
|
35
|
+
*/
|
|
36
|
+
overrideDryRun?: boolean;
|
|
31
37
|
}
|
|
32
38
|
/**
|
|
33
39
|
* Check if a given object implements the SyncObjectRequest interface.
|
|
@@ -39,6 +39,7 @@ function SyncObjectRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
39
39
|
return {
|
|
40
40
|
'syncObjectModel': (0, SyncObjectModelEnum_1.SyncObjectModelEnumFromJSON)(json['sync_object_model']),
|
|
41
41
|
'syncObjectId': json['sync_object_id'],
|
|
42
|
+
'overrideDryRun': json['override_dry_run'] == null ? undefined : json['override_dry_run'],
|
|
42
43
|
};
|
|
43
44
|
}
|
|
44
45
|
function SyncObjectRequestToJSON(json) {
|
|
@@ -51,5 +52,6 @@ function SyncObjectRequestToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
51
52
|
return {
|
|
52
53
|
'sync_object_model': (0, SyncObjectModelEnum_1.SyncObjectModelEnumToJSON)(value['syncObjectModel']),
|
|
53
54
|
'sync_object_id': value['syncObjectId'],
|
|
55
|
+
'override_dry_run': value['overrideDryRun'],
|
|
54
56
|
};
|
|
55
57
|
}
|
package/package.json
CHANGED
|
@@ -135,6 +135,12 @@ export interface GoogleWorkspaceProvider {
|
|
|
135
135
|
* @memberof GoogleWorkspaceProvider
|
|
136
136
|
*/
|
|
137
137
|
defaultGroupEmailDomain: string;
|
|
138
|
+
/**
|
|
139
|
+
* When enabled, provider will not modify or create objects in the remote system.
|
|
140
|
+
* @type {boolean}
|
|
141
|
+
* @memberof GoogleWorkspaceProvider
|
|
142
|
+
*/
|
|
143
|
+
dryRun?: boolean;
|
|
138
144
|
}
|
|
139
145
|
|
|
140
146
|
|
|
@@ -185,6 +191,7 @@ export function GoogleWorkspaceProviderFromJSONTyped(json: any, ignoreDiscrimina
|
|
|
185
191
|
'userDeleteAction': json['user_delete_action'] == null ? undefined : OutgoingSyncDeleteActionFromJSON(json['user_delete_action']),
|
|
186
192
|
'groupDeleteAction': json['group_delete_action'] == null ? undefined : OutgoingSyncDeleteActionFromJSON(json['group_delete_action']),
|
|
187
193
|
'defaultGroupEmailDomain': json['default_group_email_domain'],
|
|
194
|
+
'dryRun': json['dry_run'] == null ? undefined : json['dry_run'],
|
|
188
195
|
};
|
|
189
196
|
}
|
|
190
197
|
|
|
@@ -210,6 +217,7 @@ export function GoogleWorkspaceProviderToJSONTyped(value?: Omit<GoogleWorkspaceP
|
|
|
210
217
|
'user_delete_action': OutgoingSyncDeleteActionToJSON(value['userDeleteAction']),
|
|
211
218
|
'group_delete_action': OutgoingSyncDeleteActionToJSON(value['groupDeleteAction']),
|
|
212
219
|
'default_group_email_domain': value['defaultGroupEmailDomain'],
|
|
220
|
+
'dry_run': value['dryRun'],
|
|
213
221
|
};
|
|
214
222
|
}
|
|
215
223
|
|
|
@@ -93,6 +93,12 @@ export interface GoogleWorkspaceProviderRequest {
|
|
|
93
93
|
* @memberof GoogleWorkspaceProviderRequest
|
|
94
94
|
*/
|
|
95
95
|
defaultGroupEmailDomain: string;
|
|
96
|
+
/**
|
|
97
|
+
* When enabled, provider will not modify or create objects in the remote system.
|
|
98
|
+
* @type {boolean}
|
|
99
|
+
* @memberof GoogleWorkspaceProviderRequest
|
|
100
|
+
*/
|
|
101
|
+
dryRun?: boolean;
|
|
96
102
|
}
|
|
97
103
|
|
|
98
104
|
|
|
@@ -129,6 +135,7 @@ export function GoogleWorkspaceProviderRequestFromJSONTyped(json: any, ignoreDis
|
|
|
129
135
|
'userDeleteAction': json['user_delete_action'] == null ? undefined : OutgoingSyncDeleteActionFromJSON(json['user_delete_action']),
|
|
130
136
|
'groupDeleteAction': json['group_delete_action'] == null ? undefined : OutgoingSyncDeleteActionFromJSON(json['group_delete_action']),
|
|
131
137
|
'defaultGroupEmailDomain': json['default_group_email_domain'],
|
|
138
|
+
'dryRun': json['dry_run'] == null ? undefined : json['dry_run'],
|
|
132
139
|
};
|
|
133
140
|
}
|
|
134
141
|
|
|
@@ -154,6 +161,7 @@ export function GoogleWorkspaceProviderRequestToJSONTyped(value?: GoogleWorkspac
|
|
|
154
161
|
'user_delete_action': OutgoingSyncDeleteActionToJSON(value['userDeleteAction']),
|
|
155
162
|
'group_delete_action': OutgoingSyncDeleteActionToJSON(value['groupDeleteAction']),
|
|
156
163
|
'default_group_email_domain': value['defaultGroupEmailDomain'],
|
|
164
|
+
'dry_run': value['dryRun'],
|
|
157
165
|
};
|
|
158
166
|
}
|
|
159
167
|
|
|
@@ -129,6 +129,12 @@ export interface MicrosoftEntraProvider {
|
|
|
129
129
|
* @memberof MicrosoftEntraProvider
|
|
130
130
|
*/
|
|
131
131
|
groupDeleteAction?: OutgoingSyncDeleteAction;
|
|
132
|
+
/**
|
|
133
|
+
* When enabled, provider will not modify or create objects in the remote system.
|
|
134
|
+
* @type {boolean}
|
|
135
|
+
* @memberof MicrosoftEntraProvider
|
|
136
|
+
*/
|
|
137
|
+
dryRun?: boolean;
|
|
132
138
|
}
|
|
133
139
|
|
|
134
140
|
|
|
@@ -178,6 +184,7 @@ export function MicrosoftEntraProviderFromJSONTyped(json: any, ignoreDiscriminat
|
|
|
178
184
|
'filterGroup': json['filter_group'] == null ? undefined : json['filter_group'],
|
|
179
185
|
'userDeleteAction': json['user_delete_action'] == null ? undefined : OutgoingSyncDeleteActionFromJSON(json['user_delete_action']),
|
|
180
186
|
'groupDeleteAction': json['group_delete_action'] == null ? undefined : OutgoingSyncDeleteActionFromJSON(json['group_delete_action']),
|
|
187
|
+
'dryRun': json['dry_run'] == null ? undefined : json['dry_run'],
|
|
181
188
|
};
|
|
182
189
|
}
|
|
183
190
|
|
|
@@ -202,6 +209,7 @@ export function MicrosoftEntraProviderToJSONTyped(value?: Omit<MicrosoftEntraPro
|
|
|
202
209
|
'filter_group': value['filterGroup'],
|
|
203
210
|
'user_delete_action': OutgoingSyncDeleteActionToJSON(value['userDeleteAction']),
|
|
204
211
|
'group_delete_action': OutgoingSyncDeleteActionToJSON(value['groupDeleteAction']),
|
|
212
|
+
'dry_run': value['dryRun'],
|
|
205
213
|
};
|
|
206
214
|
}
|
|
207
215
|
|
|
@@ -87,6 +87,12 @@ export interface MicrosoftEntraProviderRequest {
|
|
|
87
87
|
* @memberof MicrosoftEntraProviderRequest
|
|
88
88
|
*/
|
|
89
89
|
groupDeleteAction?: OutgoingSyncDeleteAction;
|
|
90
|
+
/**
|
|
91
|
+
* When enabled, provider will not modify or create objects in the remote system.
|
|
92
|
+
* @type {boolean}
|
|
93
|
+
* @memberof MicrosoftEntraProviderRequest
|
|
94
|
+
*/
|
|
95
|
+
dryRun?: boolean;
|
|
90
96
|
}
|
|
91
97
|
|
|
92
98
|
|
|
@@ -122,6 +128,7 @@ export function MicrosoftEntraProviderRequestFromJSONTyped(json: any, ignoreDisc
|
|
|
122
128
|
'filterGroup': json['filter_group'] == null ? undefined : json['filter_group'],
|
|
123
129
|
'userDeleteAction': json['user_delete_action'] == null ? undefined : OutgoingSyncDeleteActionFromJSON(json['user_delete_action']),
|
|
124
130
|
'groupDeleteAction': json['group_delete_action'] == null ? undefined : OutgoingSyncDeleteActionFromJSON(json['group_delete_action']),
|
|
131
|
+
'dryRun': json['dry_run'] == null ? undefined : json['dry_run'],
|
|
125
132
|
};
|
|
126
133
|
}
|
|
127
134
|
|
|
@@ -146,6 +153,7 @@ export function MicrosoftEntraProviderRequestToJSONTyped(value?: MicrosoftEntraP
|
|
|
146
153
|
'filter_group': value['filterGroup'],
|
|
147
154
|
'user_delete_action': OutgoingSyncDeleteActionToJSON(value['userDeleteAction']),
|
|
148
155
|
'group_delete_action': OutgoingSyncDeleteActionToJSON(value['groupDeleteAction']),
|
|
156
|
+
'dry_run': value['dryRun'],
|
|
149
157
|
};
|
|
150
158
|
}
|
|
151
159
|
|
|
@@ -93,6 +93,12 @@ export interface PatchedGoogleWorkspaceProviderRequest {
|
|
|
93
93
|
* @memberof PatchedGoogleWorkspaceProviderRequest
|
|
94
94
|
*/
|
|
95
95
|
defaultGroupEmailDomain?: string;
|
|
96
|
+
/**
|
|
97
|
+
* When enabled, provider will not modify or create objects in the remote system.
|
|
98
|
+
* @type {boolean}
|
|
99
|
+
* @memberof PatchedGoogleWorkspaceProviderRequest
|
|
100
|
+
*/
|
|
101
|
+
dryRun?: boolean;
|
|
96
102
|
}
|
|
97
103
|
|
|
98
104
|
|
|
@@ -125,6 +131,7 @@ export function PatchedGoogleWorkspaceProviderRequestFromJSONTyped(json: any, ig
|
|
|
125
131
|
'userDeleteAction': json['user_delete_action'] == null ? undefined : OutgoingSyncDeleteActionFromJSON(json['user_delete_action']),
|
|
126
132
|
'groupDeleteAction': json['group_delete_action'] == null ? undefined : OutgoingSyncDeleteActionFromJSON(json['group_delete_action']),
|
|
127
133
|
'defaultGroupEmailDomain': json['default_group_email_domain'] == null ? undefined : json['default_group_email_domain'],
|
|
134
|
+
'dryRun': json['dry_run'] == null ? undefined : json['dry_run'],
|
|
128
135
|
};
|
|
129
136
|
}
|
|
130
137
|
|
|
@@ -150,6 +157,7 @@ export function PatchedGoogleWorkspaceProviderRequestToJSONTyped(value?: Patched
|
|
|
150
157
|
'user_delete_action': OutgoingSyncDeleteActionToJSON(value['userDeleteAction']),
|
|
151
158
|
'group_delete_action': OutgoingSyncDeleteActionToJSON(value['groupDeleteAction']),
|
|
152
159
|
'default_group_email_domain': value['defaultGroupEmailDomain'],
|
|
160
|
+
'dry_run': value['dryRun'],
|
|
153
161
|
};
|
|
154
162
|
}
|
|
155
163
|
|
|
@@ -87,6 +87,12 @@ export interface PatchedMicrosoftEntraProviderRequest {
|
|
|
87
87
|
* @memberof PatchedMicrosoftEntraProviderRequest
|
|
88
88
|
*/
|
|
89
89
|
groupDeleteAction?: OutgoingSyncDeleteAction;
|
|
90
|
+
/**
|
|
91
|
+
* When enabled, provider will not modify or create objects in the remote system.
|
|
92
|
+
* @type {boolean}
|
|
93
|
+
* @memberof PatchedMicrosoftEntraProviderRequest
|
|
94
|
+
*/
|
|
95
|
+
dryRun?: boolean;
|
|
90
96
|
}
|
|
91
97
|
|
|
92
98
|
|
|
@@ -118,6 +124,7 @@ export function PatchedMicrosoftEntraProviderRequestFromJSONTyped(json: any, ign
|
|
|
118
124
|
'filterGroup': json['filter_group'] == null ? undefined : json['filter_group'],
|
|
119
125
|
'userDeleteAction': json['user_delete_action'] == null ? undefined : OutgoingSyncDeleteActionFromJSON(json['user_delete_action']),
|
|
120
126
|
'groupDeleteAction': json['group_delete_action'] == null ? undefined : OutgoingSyncDeleteActionFromJSON(json['group_delete_action']),
|
|
127
|
+
'dryRun': json['dry_run'] == null ? undefined : json['dry_run'],
|
|
121
128
|
};
|
|
122
129
|
}
|
|
123
130
|
|
|
@@ -142,6 +149,7 @@ export function PatchedMicrosoftEntraProviderRequestToJSONTyped(value?: PatchedM
|
|
|
142
149
|
'filter_group': value['filterGroup'],
|
|
143
150
|
'user_delete_action': OutgoingSyncDeleteActionToJSON(value['userDeleteAction']),
|
|
144
151
|
'group_delete_action': OutgoingSyncDeleteActionToJSON(value['groupDeleteAction']),
|
|
152
|
+
'dry_run': value['dryRun'],
|
|
145
153
|
};
|
|
146
154
|
}
|
|
147
155
|
|
|
@@ -67,6 +67,12 @@ export interface PatchedSCIMProviderRequest {
|
|
|
67
67
|
* @memberof PatchedSCIMProviderRequest
|
|
68
68
|
*/
|
|
69
69
|
filterGroup?: string | null;
|
|
70
|
+
/**
|
|
71
|
+
* When enabled, provider will not modify or create objects in the remote system.
|
|
72
|
+
* @type {boolean}
|
|
73
|
+
* @memberof PatchedSCIMProviderRequest
|
|
74
|
+
*/
|
|
75
|
+
dryRun?: boolean;
|
|
70
76
|
}
|
|
71
77
|
|
|
72
78
|
/**
|
|
@@ -94,6 +100,7 @@ export function PatchedSCIMProviderRequestFromJSONTyped(json: any, ignoreDiscrim
|
|
|
94
100
|
'token': json['token'] == null ? undefined : json['token'],
|
|
95
101
|
'excludeUsersServiceAccount': json['exclude_users_service_account'] == null ? undefined : json['exclude_users_service_account'],
|
|
96
102
|
'filterGroup': json['filter_group'] == null ? undefined : json['filter_group'],
|
|
103
|
+
'dryRun': json['dry_run'] == null ? undefined : json['dry_run'],
|
|
97
104
|
};
|
|
98
105
|
}
|
|
99
106
|
|
|
@@ -116,6 +123,7 @@ export function PatchedSCIMProviderRequestToJSONTyped(value?: PatchedSCIMProvide
|
|
|
116
123
|
'token': value['token'],
|
|
117
124
|
'exclude_users_service_account': value['excludeUsersServiceAccount'],
|
|
118
125
|
'filter_group': value['filterGroup'],
|
|
126
|
+
'dry_run': value['dryRun'],
|
|
119
127
|
};
|
|
120
128
|
}
|
|
121
129
|
|
|
@@ -109,6 +109,12 @@ export interface SCIMProvider {
|
|
|
109
109
|
* @memberof SCIMProvider
|
|
110
110
|
*/
|
|
111
111
|
filterGroup?: string | null;
|
|
112
|
+
/**
|
|
113
|
+
* When enabled, provider will not modify or create objects in the remote system.
|
|
114
|
+
* @type {boolean}
|
|
115
|
+
* @memberof SCIMProvider
|
|
116
|
+
*/
|
|
117
|
+
dryRun?: boolean;
|
|
112
118
|
}
|
|
113
119
|
|
|
114
120
|
/**
|
|
@@ -153,6 +159,7 @@ export function SCIMProviderFromJSONTyped(json: any, ignoreDiscriminator: boolea
|
|
|
153
159
|
'token': json['token'],
|
|
154
160
|
'excludeUsersServiceAccount': json['exclude_users_service_account'] == null ? undefined : json['exclude_users_service_account'],
|
|
155
161
|
'filterGroup': json['filter_group'] == null ? undefined : json['filter_group'],
|
|
162
|
+
'dryRun': json['dry_run'] == null ? undefined : json['dry_run'],
|
|
156
163
|
};
|
|
157
164
|
}
|
|
158
165
|
|
|
@@ -175,6 +182,7 @@ export function SCIMProviderToJSONTyped(value?: Omit<SCIMProvider, 'pk'|'compone
|
|
|
175
182
|
'token': value['token'],
|
|
176
183
|
'exclude_users_service_account': value['excludeUsersServiceAccount'],
|
|
177
184
|
'filter_group': value['filterGroup'],
|
|
185
|
+
'dry_run': value['dryRun'],
|
|
178
186
|
};
|
|
179
187
|
}
|
|
180
188
|
|
|
@@ -67,6 +67,12 @@ export interface SCIMProviderRequest {
|
|
|
67
67
|
* @memberof SCIMProviderRequest
|
|
68
68
|
*/
|
|
69
69
|
filterGroup?: string | null;
|
|
70
|
+
/**
|
|
71
|
+
* When enabled, provider will not modify or create objects in the remote system.
|
|
72
|
+
* @type {boolean}
|
|
73
|
+
* @memberof SCIMProviderRequest
|
|
74
|
+
*/
|
|
75
|
+
dryRun?: boolean;
|
|
70
76
|
}
|
|
71
77
|
|
|
72
78
|
/**
|
|
@@ -97,6 +103,7 @@ export function SCIMProviderRequestFromJSONTyped(json: any, ignoreDiscriminator:
|
|
|
97
103
|
'token': json['token'],
|
|
98
104
|
'excludeUsersServiceAccount': json['exclude_users_service_account'] == null ? undefined : json['exclude_users_service_account'],
|
|
99
105
|
'filterGroup': json['filter_group'] == null ? undefined : json['filter_group'],
|
|
106
|
+
'dryRun': json['dry_run'] == null ? undefined : json['dry_run'],
|
|
100
107
|
};
|
|
101
108
|
}
|
|
102
109
|
|
|
@@ -119,6 +126,7 @@ export function SCIMProviderRequestToJSONTyped(value?: SCIMProviderRequest | nul
|
|
|
119
126
|
'token': value['token'],
|
|
120
127
|
'exclude_users_service_account': value['excludeUsersServiceAccount'],
|
|
121
128
|
'filter_group': value['filterGroup'],
|
|
129
|
+
'dry_run': value['dryRun'],
|
|
122
130
|
};
|
|
123
131
|
}
|
|
124
132
|
|
|
@@ -39,6 +39,12 @@ export interface SyncObjectRequest {
|
|
|
39
39
|
* @memberof SyncObjectRequest
|
|
40
40
|
*/
|
|
41
41
|
syncObjectId: string;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {boolean}
|
|
45
|
+
* @memberof SyncObjectRequest
|
|
46
|
+
*/
|
|
47
|
+
overrideDryRun?: boolean;
|
|
42
48
|
}
|
|
43
49
|
|
|
44
50
|
|
|
@@ -64,6 +70,7 @@ export function SyncObjectRequestFromJSONTyped(json: any, ignoreDiscriminator: b
|
|
|
64
70
|
|
|
65
71
|
'syncObjectModel': SyncObjectModelEnumFromJSON(json['sync_object_model']),
|
|
66
72
|
'syncObjectId': json['sync_object_id'],
|
|
73
|
+
'overrideDryRun': json['override_dry_run'] == null ? undefined : json['override_dry_run'],
|
|
67
74
|
};
|
|
68
75
|
}
|
|
69
76
|
|
|
@@ -80,6 +87,7 @@ export function SyncObjectRequestToJSONTyped(value?: SyncObjectRequest | null, i
|
|
|
80
87
|
|
|
81
88
|
'sync_object_model': SyncObjectModelEnumToJSON(value['syncObjectModel']),
|
|
82
89
|
'sync_object_id': value['syncObjectId'],
|
|
90
|
+
'override_dry_run': value['overrideDryRun'],
|
|
83
91
|
};
|
|
84
92
|
}
|
|
85
93
|
|