@alicloud/eiam20211201 2.19.1 → 2.19.2
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/client.d.ts +16 -16
- package/dist/client.js +16 -16
- package/dist/models/CheckInstanceModuleStatusRequest.d.ts +17 -3
- package/dist/models/CheckInstanceModuleStatusRequest.js.map +1 -1
- package/dist/models/CreateIdentityProviderRequest.d.ts +165 -142
- package/dist/models/CreateIdentityProviderRequest.js.map +1 -1
- package/dist/models/CreateIdentityProviderResponseBody.d.ts +2 -2
- package/dist/models/GetApplicationSsoConfigResponseBody.d.ts +85 -65
- package/dist/models/GetApplicationSsoConfigResponseBody.js +11 -0
- package/dist/models/GetApplicationSsoConfigResponseBody.js.map +1 -1
- package/dist/models/GetAuthorizationResourceResponseBody.d.ts +2 -2
- package/dist/models/GetIdentityProviderResponseBody.d.ts +54 -65
- package/dist/models/GetIdentityProviderResponseBody.js.map +1 -1
- package/dist/models/ListAuthorizationResourcesRequest.d.ts +5 -5
- package/dist/models/ListAuthorizationResourcesResponseBody.d.ts +9 -9
- package/dist/models/ListEiamInstancesRequest.d.ts +1 -1
- package/dist/models/SetApplicationSsoConfigRequest.d.ts +55 -31
- package/dist/models/SetApplicationSsoConfigRequest.js +9 -0
- package/dist/models/SetApplicationSsoConfigRequest.js.map +1 -1
- package/dist/models/UpdateIdentityProviderRequest.d.ts +85 -51
- package/dist/models/UpdateIdentityProviderRequest.js.map +1 -1
- package/dist/models/UpdateIdentityProviderResponseBody.d.ts +1 -1
- package/package.json +1 -1
- package/src/client.ts +16 -16
- package/src/models/CheckInstanceModuleStatusRequest.ts +17 -3
- package/src/models/CreateIdentityProviderRequest.ts +165 -142
- package/src/models/CreateIdentityProviderResponseBody.ts +2 -2
- package/src/models/GetApplicationSsoConfigResponseBody.ts +96 -65
- package/src/models/GetAuthorizationResourceResponseBody.ts +2 -2
- package/src/models/GetIdentityProviderResponseBody.ts +54 -65
- package/src/models/ListAuthorizationResourcesRequest.ts +5 -5
- package/src/models/ListAuthorizationResourcesResponseBody.ts +9 -9
- package/src/models/ListEiamInstancesRequest.ts +1 -1
- package/src/models/SetApplicationSsoConfigRequest.ts +64 -31
- package/src/models/UpdateIdentityProviderRequest.ts +85 -51
- package/src/models/UpdateIdentityProviderResponseBody.ts +1 -1
|
@@ -5,10 +5,10 @@ import * as $dara from '@darabonba/typescript';
|
|
|
5
5
|
export class CreateIdentityProviderRequestAuthnConfig extends $dara.Model {
|
|
6
6
|
/**
|
|
7
7
|
* @remarks
|
|
8
|
-
*
|
|
9
|
-
* - Disabled: disabled
|
|
8
|
+
* Specifies whether the corresponding IdP supports authentication. Valid values:
|
|
10
9
|
*
|
|
11
|
-
* -
|
|
10
|
+
* - disabled: Disabled.
|
|
11
|
+
* - enabled: Enabled.
|
|
12
12
|
*
|
|
13
13
|
* @example
|
|
14
14
|
* enabled
|
|
@@ -16,10 +16,10 @@ export class CreateIdentityProviderRequestAuthnConfig extends $dara.Model {
|
|
|
16
16
|
authnStatus?: string;
|
|
17
17
|
/**
|
|
18
18
|
* @remarks
|
|
19
|
-
*
|
|
20
|
-
* - Disabled: disabled
|
|
19
|
+
* Specifies whether automatic password update is supported. Valid values:
|
|
21
20
|
*
|
|
22
|
-
* -
|
|
21
|
+
* - disabled: Disabled.
|
|
22
|
+
* - enabled: Enabled.
|
|
23
23
|
*
|
|
24
24
|
* @example
|
|
25
25
|
* enabled
|
|
@@ -51,10 +51,10 @@ export class CreateIdentityProviderRequestAuthnConfig extends $dara.Model {
|
|
|
51
51
|
export class CreateIdentityProviderRequestAutoCreateUserConfig extends $dara.Model {
|
|
52
52
|
/**
|
|
53
53
|
* @remarks
|
|
54
|
-
*
|
|
55
|
-
* -
|
|
54
|
+
* Specifies whether automatic creation of accounts is enabled. Valid values:
|
|
55
|
+
* - disabled: Disabled.
|
|
56
56
|
*
|
|
57
|
-
* -
|
|
57
|
+
* - enabled: Enabled.
|
|
58
58
|
*
|
|
59
59
|
* @example
|
|
60
60
|
* disabled
|
|
@@ -62,7 +62,7 @@ export class CreateIdentityProviderRequestAutoCreateUserConfig extends $dara.Mod
|
|
|
62
62
|
autoCreateUserStatus?: string;
|
|
63
63
|
/**
|
|
64
64
|
* @remarks
|
|
65
|
-
*
|
|
65
|
+
* The collection of target organizational unit IDs.
|
|
66
66
|
*/
|
|
67
67
|
targetOrganizationalUnitIds?: string[];
|
|
68
68
|
static names(): { [key: string]: string } {
|
|
@@ -94,10 +94,10 @@ export class CreateIdentityProviderRequestAutoCreateUserConfig extends $dara.Mod
|
|
|
94
94
|
export class CreateIdentityProviderRequestAutoUpdateUserConfig extends $dara.Model {
|
|
95
95
|
/**
|
|
96
96
|
* @remarks
|
|
97
|
-
*
|
|
98
|
-
* -
|
|
97
|
+
* Specifies whether automatic account update is enabled. Valid values:
|
|
98
|
+
* - disabled: Disabled.
|
|
99
99
|
*
|
|
100
|
-
* -
|
|
100
|
+
* - enabled: Enabled.
|
|
101
101
|
*
|
|
102
102
|
* @example
|
|
103
103
|
* disabled
|
|
@@ -127,11 +127,10 @@ export class CreateIdentityProviderRequestAutoUpdateUserConfig extends $dara.Mod
|
|
|
127
127
|
export class CreateIdentityProviderRequestBindingConfigAutoMatchUserProfileExpressions extends $dara.Model {
|
|
128
128
|
/**
|
|
129
129
|
* @remarks
|
|
130
|
-
*
|
|
130
|
+
* The type of the expression. Valid values:
|
|
131
131
|
*
|
|
132
|
-
* -
|
|
133
|
-
*
|
|
134
|
-
* - Expression: expression
|
|
132
|
+
* - field: field
|
|
133
|
+
* - expression: expression
|
|
135
134
|
*
|
|
136
135
|
* @example
|
|
137
136
|
* field
|
|
@@ -139,7 +138,7 @@ export class CreateIdentityProviderRequestBindingConfigAutoMatchUserProfileExpre
|
|
|
139
138
|
expressionMappingType?: string;
|
|
140
139
|
/**
|
|
141
140
|
* @remarks
|
|
142
|
-
*
|
|
141
|
+
* The expression for the mapped attribute value.
|
|
143
142
|
*
|
|
144
143
|
* @example
|
|
145
144
|
* idpUser.phoneNumber
|
|
@@ -147,7 +146,7 @@ export class CreateIdentityProviderRequestBindingConfigAutoMatchUserProfileExpre
|
|
|
147
146
|
sourceValueExpression?: string;
|
|
148
147
|
/**
|
|
149
148
|
* @remarks
|
|
150
|
-
*
|
|
149
|
+
* The name of the target attribute for mapping.
|
|
151
150
|
*
|
|
152
151
|
* @example
|
|
153
152
|
* user.username
|
|
@@ -155,7 +154,7 @@ export class CreateIdentityProviderRequestBindingConfigAutoMatchUserProfileExpre
|
|
|
155
154
|
targetField?: string;
|
|
156
155
|
/**
|
|
157
156
|
* @remarks
|
|
158
|
-
*
|
|
157
|
+
* The name of the target attribute for mapping.
|
|
159
158
|
*
|
|
160
159
|
* @example
|
|
161
160
|
* username
|
|
@@ -191,16 +190,15 @@ export class CreateIdentityProviderRequestBindingConfigAutoMatchUserProfileExpre
|
|
|
191
190
|
export class CreateIdentityProviderRequestBindingConfig extends $dara.Model {
|
|
192
191
|
/**
|
|
193
192
|
* @remarks
|
|
194
|
-
*
|
|
193
|
+
* The list of rules for automatically matching accounts.
|
|
195
194
|
*/
|
|
196
195
|
autoMatchUserProfileExpressions?: CreateIdentityProviderRequestBindingConfigAutoMatchUserProfileExpressions[];
|
|
197
196
|
/**
|
|
198
197
|
* @remarks
|
|
199
|
-
*
|
|
200
|
-
*
|
|
201
|
-
* - Disabled: disabled
|
|
198
|
+
* Specifies whether automatic account matching is enabled. Valid values:
|
|
202
199
|
*
|
|
203
|
-
* -
|
|
200
|
+
* - disabled: Disabled.
|
|
201
|
+
* - enabled: Enabled.
|
|
204
202
|
*
|
|
205
203
|
* @example
|
|
206
204
|
* disabled
|
|
@@ -208,10 +206,10 @@ export class CreateIdentityProviderRequestBindingConfig extends $dara.Model {
|
|
|
208
206
|
autoMatchUserStatus?: string;
|
|
209
207
|
/**
|
|
210
208
|
* @remarks
|
|
211
|
-
*
|
|
212
|
-
* - Disabled: disabled
|
|
209
|
+
* Specifies whether the manual account binding feature is enabled. Valid values:
|
|
213
210
|
*
|
|
214
|
-
* -
|
|
211
|
+
* - disabled: Disabled.
|
|
212
|
+
* - enabled: Enabled.
|
|
215
213
|
*
|
|
216
214
|
* @example
|
|
217
215
|
* enabled
|
|
@@ -248,7 +246,7 @@ export class CreateIdentityProviderRequestBindingConfig extends $dara.Model {
|
|
|
248
246
|
export class CreateIdentityProviderRequestDingtalkAppConfig extends $dara.Model {
|
|
249
247
|
/**
|
|
250
248
|
* @remarks
|
|
251
|
-
*
|
|
249
|
+
* The appKey of the DingTalk first-party application.
|
|
252
250
|
*
|
|
253
251
|
* @example
|
|
254
252
|
* Xczngvfemo4e
|
|
@@ -256,7 +254,7 @@ export class CreateIdentityProviderRequestDingtalkAppConfig extends $dara.Model
|
|
|
256
254
|
appKey?: string;
|
|
257
255
|
/**
|
|
258
256
|
* @remarks
|
|
259
|
-
*
|
|
257
|
+
* The appSecret of the DingTalk first-party application.
|
|
260
258
|
*
|
|
261
259
|
* @example
|
|
262
260
|
* 5d405a12a6f84ad4ab05ee09axxxx
|
|
@@ -264,7 +262,7 @@ export class CreateIdentityProviderRequestDingtalkAppConfig extends $dara.Model
|
|
|
264
262
|
appSecret?: string;
|
|
265
263
|
/**
|
|
266
264
|
* @remarks
|
|
267
|
-
*
|
|
265
|
+
* The corpId of the DingTalk first-party application.
|
|
268
266
|
*
|
|
269
267
|
* @example
|
|
270
268
|
* 307568042478613xxxx
|
|
@@ -272,11 +270,11 @@ export class CreateIdentityProviderRequestDingtalkAppConfig extends $dara.Model
|
|
|
272
270
|
corpId?: string;
|
|
273
271
|
/**
|
|
274
272
|
* @remarks
|
|
275
|
-
* DingTalk version. Valid values:
|
|
273
|
+
* The DingTalk version. Valid values:
|
|
276
274
|
*
|
|
277
|
-
* - Standard DingTalk
|
|
275
|
+
* - public_dingtalk: Standard DingTalk.
|
|
278
276
|
*
|
|
279
|
-
* - Exclusive DingTalk
|
|
277
|
+
* - private_dingtalk: Exclusive DingTalk.
|
|
280
278
|
*
|
|
281
279
|
* @example
|
|
282
280
|
* public_dingtalk
|
|
@@ -284,7 +282,7 @@ export class CreateIdentityProviderRequestDingtalkAppConfig extends $dara.Model
|
|
|
284
282
|
dingtalkVersion?: string;
|
|
285
283
|
/**
|
|
286
284
|
* @remarks
|
|
287
|
-
* DingTalk application
|
|
285
|
+
* The EncryptKey of the DingTalk application.
|
|
288
286
|
*
|
|
289
287
|
* @example
|
|
290
288
|
* VkdWw91mdkrjVFr3ObNwefap21dfxxxx
|
|
@@ -292,7 +290,7 @@ export class CreateIdentityProviderRequestDingtalkAppConfig extends $dara.Model
|
|
|
292
290
|
encryptKey?: string;
|
|
293
291
|
/**
|
|
294
292
|
* @remarks
|
|
295
|
-
* DingTalk application
|
|
293
|
+
* The VerificationToken of the DingTalk application.
|
|
296
294
|
*
|
|
297
295
|
* @example
|
|
298
296
|
* myDingApp_VerifyTokenxxxxx
|
|
@@ -332,7 +330,7 @@ export class CreateIdentityProviderRequestDingtalkAppConfig extends $dara.Model
|
|
|
332
330
|
export class CreateIdentityProviderRequestLarkConfig extends $dara.Model {
|
|
333
331
|
/**
|
|
334
332
|
* @remarks
|
|
335
|
-
* Lark application AppId.
|
|
333
|
+
* The Lark application AppId.
|
|
336
334
|
*
|
|
337
335
|
* @example
|
|
338
336
|
* cli_xxxx
|
|
@@ -340,7 +338,7 @@ export class CreateIdentityProviderRequestLarkConfig extends $dara.Model {
|
|
|
340
338
|
appId?: string;
|
|
341
339
|
/**
|
|
342
340
|
* @remarks
|
|
343
|
-
* Lark application Secret.
|
|
341
|
+
* The Lark application Secret.
|
|
344
342
|
*
|
|
345
343
|
* @example
|
|
346
344
|
* KiiLzh5Dueh4wbLxxxx
|
|
@@ -348,7 +346,7 @@ export class CreateIdentityProviderRequestLarkConfig extends $dara.Model {
|
|
|
348
346
|
appSecret?: string;
|
|
349
347
|
/**
|
|
350
348
|
* @remarks
|
|
351
|
-
*
|
|
349
|
+
* The encryptKey of the Lark custom application.
|
|
352
350
|
*
|
|
353
351
|
* @example
|
|
354
352
|
* VkdWw91mdkrjVFr3ObNwefap21dfxxxx
|
|
@@ -356,7 +354,7 @@ export class CreateIdentityProviderRequestLarkConfig extends $dara.Model {
|
|
|
356
354
|
encryptKey?: string;
|
|
357
355
|
/**
|
|
358
356
|
* @remarks
|
|
359
|
-
* Lark enterprise
|
|
357
|
+
* The Lark enterprise number.
|
|
360
358
|
*
|
|
361
359
|
* @example
|
|
362
360
|
* FSX123111xxx
|
|
@@ -364,7 +362,7 @@ export class CreateIdentityProviderRequestLarkConfig extends $dara.Model {
|
|
|
364
362
|
enterpriseNumber?: string;
|
|
365
363
|
/**
|
|
366
364
|
* @remarks
|
|
367
|
-
*
|
|
365
|
+
* The verificationToken of the Lark custom application.
|
|
368
366
|
*
|
|
369
367
|
* @example
|
|
370
368
|
* feishuVerifyTokenxxxxx
|
|
@@ -402,7 +400,7 @@ export class CreateIdentityProviderRequestLarkConfig extends $dara.Model {
|
|
|
402
400
|
export class CreateIdentityProviderRequestLdapConfig extends $dara.Model {
|
|
403
401
|
/**
|
|
404
402
|
* @remarks
|
|
405
|
-
*
|
|
403
|
+
* The administrator password.
|
|
406
404
|
*
|
|
407
405
|
* @example
|
|
408
406
|
* xxxx
|
|
@@ -410,7 +408,7 @@ export class CreateIdentityProviderRequestLdapConfig extends $dara.Model {
|
|
|
410
408
|
administratorPassword?: string;
|
|
411
409
|
/**
|
|
412
410
|
* @remarks
|
|
413
|
-
*
|
|
411
|
+
* The administrator account.
|
|
414
412
|
*
|
|
415
413
|
* @example
|
|
416
414
|
* DC=example,DC=com
|
|
@@ -418,11 +416,11 @@ export class CreateIdentityProviderRequestLdapConfig extends $dara.Model {
|
|
|
418
416
|
administratorUsername?: string;
|
|
419
417
|
/**
|
|
420
418
|
* @remarks
|
|
421
|
-
*
|
|
419
|
+
* Specifies whether to verify the certificate fingerprint. Valid values:
|
|
422
420
|
*
|
|
423
|
-
* -
|
|
421
|
+
* - disabled: Disabled.
|
|
424
422
|
*
|
|
425
|
-
* -
|
|
423
|
+
* - enabled: Enabled.
|
|
426
424
|
*
|
|
427
425
|
* @example
|
|
428
426
|
* enabled
|
|
@@ -430,12 +428,12 @@ export class CreateIdentityProviderRequestLdapConfig extends $dara.Model {
|
|
|
430
428
|
certificateFingerprintStatus?: string;
|
|
431
429
|
/**
|
|
432
430
|
* @remarks
|
|
433
|
-
*
|
|
431
|
+
* The list of certificate fingerprints.
|
|
434
432
|
*/
|
|
435
433
|
certificateFingerprints?: string[];
|
|
436
434
|
/**
|
|
437
435
|
* @remarks
|
|
438
|
-
*
|
|
436
|
+
* The group member attribute name.
|
|
439
437
|
*
|
|
440
438
|
* @example
|
|
441
439
|
* member
|
|
@@ -443,7 +441,7 @@ export class CreateIdentityProviderRequestLdapConfig extends $dara.Model {
|
|
|
443
441
|
groupMemberAttributeName?: string;
|
|
444
442
|
/**
|
|
445
443
|
* @remarks
|
|
446
|
-
*
|
|
444
|
+
* The group ObjectClass.
|
|
447
445
|
*
|
|
448
446
|
* @example
|
|
449
447
|
* group
|
|
@@ -451,7 +449,7 @@ export class CreateIdentityProviderRequestLdapConfig extends $dara.Model {
|
|
|
451
449
|
groupObjectClass?: string;
|
|
452
450
|
/**
|
|
453
451
|
* @remarks
|
|
454
|
-
*
|
|
452
|
+
* The custom filter for groups.
|
|
455
453
|
*
|
|
456
454
|
* @example
|
|
457
455
|
* (|(cn=test)(group=test@test.com))
|
|
@@ -459,7 +457,7 @@ export class CreateIdentityProviderRequestLdapConfig extends $dara.Model {
|
|
|
459
457
|
groupObjectClassCustomFilter?: string;
|
|
460
458
|
/**
|
|
461
459
|
* @remarks
|
|
462
|
-
*
|
|
460
|
+
* The communication protocol.
|
|
463
461
|
*
|
|
464
462
|
* @example
|
|
465
463
|
* ldap
|
|
@@ -467,7 +465,7 @@ export class CreateIdentityProviderRequestLdapConfig extends $dara.Model {
|
|
|
467
465
|
ldapProtocol?: string;
|
|
468
466
|
/**
|
|
469
467
|
* @remarks
|
|
470
|
-
* AD/LDAP server address.
|
|
468
|
+
* The AD/LDAP server address.
|
|
471
469
|
*
|
|
472
470
|
* @example
|
|
473
471
|
* 123.xx.xx.89
|
|
@@ -475,7 +473,7 @@ export class CreateIdentityProviderRequestLdapConfig extends $dara.Model {
|
|
|
475
473
|
ldapServerHost?: string;
|
|
476
474
|
/**
|
|
477
475
|
* @remarks
|
|
478
|
-
* AD/LDAP port number.
|
|
476
|
+
* The AD/LDAP port number.
|
|
479
477
|
*
|
|
480
478
|
* @example
|
|
481
479
|
* 636
|
|
@@ -483,7 +481,7 @@ export class CreateIdentityProviderRequestLdapConfig extends $dara.Model {
|
|
|
483
481
|
ldapServerPort?: number;
|
|
484
482
|
/**
|
|
485
483
|
* @remarks
|
|
486
|
-
*
|
|
484
|
+
* The organization ObjectClass.
|
|
487
485
|
*
|
|
488
486
|
* @example
|
|
489
487
|
* organizationUnit,top
|
|
@@ -491,7 +489,7 @@ export class CreateIdentityProviderRequestLdapConfig extends $dara.Model {
|
|
|
491
489
|
organizationUnitObjectClass?: string;
|
|
492
490
|
/**
|
|
493
491
|
* @remarks
|
|
494
|
-
*
|
|
492
|
+
* The organization RDN.
|
|
495
493
|
*
|
|
496
494
|
* @example
|
|
497
495
|
* ou
|
|
@@ -499,7 +497,7 @@ export class CreateIdentityProviderRequestLdapConfig extends $dara.Model {
|
|
|
499
497
|
organizationalUnitRdn?: string;
|
|
500
498
|
/**
|
|
501
499
|
* @remarks
|
|
502
|
-
*
|
|
500
|
+
* Specifies whether password synchronization is enabled.
|
|
503
501
|
*
|
|
504
502
|
* @example
|
|
505
503
|
* enabled
|
|
@@ -507,10 +505,10 @@ export class CreateIdentityProviderRequestLdapConfig extends $dara.Model {
|
|
|
507
505
|
passwordSyncStatus?: string;
|
|
508
506
|
/**
|
|
509
507
|
* @remarks
|
|
510
|
-
*
|
|
511
|
-
* -
|
|
508
|
+
* Specifies whether StartTLS is enabled. Valid values:
|
|
509
|
+
* - disabled: Disabled.
|
|
512
510
|
*
|
|
513
|
-
* -
|
|
511
|
+
* - enabled: Enabled.
|
|
514
512
|
*
|
|
515
513
|
* @example
|
|
516
514
|
* enabled
|
|
@@ -518,7 +516,7 @@ export class CreateIdentityProviderRequestLdapConfig extends $dara.Model {
|
|
|
518
516
|
startTlsStatus?: string;
|
|
519
517
|
/**
|
|
520
518
|
* @remarks
|
|
521
|
-
*
|
|
519
|
+
* The user logon identifier.
|
|
522
520
|
*
|
|
523
521
|
* @example
|
|
524
522
|
* userPrincipalName, mail
|
|
@@ -526,7 +524,7 @@ export class CreateIdentityProviderRequestLdapConfig extends $dara.Model {
|
|
|
526
524
|
userLoginIdentifier?: string;
|
|
527
525
|
/**
|
|
528
526
|
* @remarks
|
|
529
|
-
*
|
|
527
|
+
* The user ObjectClass.
|
|
530
528
|
*
|
|
531
529
|
* @example
|
|
532
530
|
* person,user
|
|
@@ -534,7 +532,7 @@ export class CreateIdentityProviderRequestLdapConfig extends $dara.Model {
|
|
|
534
532
|
userObjectClass?: string;
|
|
535
533
|
/**
|
|
536
534
|
* @remarks
|
|
537
|
-
*
|
|
535
|
+
* The custom filter for users.
|
|
538
536
|
*
|
|
539
537
|
* @example
|
|
540
538
|
* (|(cn=test)(mail=test@test.com))
|
|
@@ -542,7 +540,7 @@ export class CreateIdentityProviderRequestLdapConfig extends $dara.Model {
|
|
|
542
540
|
userObjectClassCustomFilter?: string;
|
|
543
541
|
/**
|
|
544
542
|
* @remarks
|
|
545
|
-
*
|
|
543
|
+
* The user RDN.
|
|
546
544
|
*
|
|
547
545
|
* @example
|
|
548
546
|
* cn
|
|
@@ -609,7 +607,7 @@ export class CreateIdentityProviderRequestLdapConfig extends $dara.Model {
|
|
|
609
607
|
export class CreateIdentityProviderRequestOidcConfigAuthnParam extends $dara.Model {
|
|
610
608
|
/**
|
|
611
609
|
* @remarks
|
|
612
|
-
* OIDC authentication method. Valid values:
|
|
610
|
+
* The OIDC authentication method. Valid values:
|
|
613
611
|
*
|
|
614
612
|
* - client_secret_basic
|
|
615
613
|
*
|
|
@@ -621,7 +619,7 @@ export class CreateIdentityProviderRequestOidcConfigAuthnParam extends $dara.Mod
|
|
|
621
619
|
authnMethod?: string;
|
|
622
620
|
/**
|
|
623
621
|
* @remarks
|
|
624
|
-
* OIDC client ID.
|
|
622
|
+
* The OIDC client ID.
|
|
625
623
|
*
|
|
626
624
|
* @example
|
|
627
625
|
* mkv7rgt4d7i4u7zqtzev2mxxxx
|
|
@@ -629,7 +627,7 @@ export class CreateIdentityProviderRequestOidcConfigAuthnParam extends $dara.Mod
|
|
|
629
627
|
clientId?: string;
|
|
630
628
|
/**
|
|
631
629
|
* @remarks
|
|
632
|
-
* OIDC client secret.
|
|
630
|
+
* The OIDC client secret.
|
|
633
631
|
*
|
|
634
632
|
* @example
|
|
635
633
|
* CSEHDddddddxxxxuxkJEHPveWRXBGqVqRsxxxx
|
|
@@ -663,7 +661,7 @@ export class CreateIdentityProviderRequestOidcConfigAuthnParam extends $dara.Mod
|
|
|
663
661
|
export class CreateIdentityProviderRequestOidcConfigEndpointConfig extends $dara.Model {
|
|
664
662
|
/**
|
|
665
663
|
* @remarks
|
|
666
|
-
* OIDC authorization endpoint.
|
|
664
|
+
* The OIDC authorization endpoint.
|
|
667
665
|
*
|
|
668
666
|
* @example
|
|
669
667
|
* https://example.com/auth/authorize
|
|
@@ -671,7 +669,7 @@ export class CreateIdentityProviderRequestOidcConfigEndpointConfig extends $dara
|
|
|
671
669
|
authorizationEndpoint?: string;
|
|
672
670
|
/**
|
|
673
671
|
* @remarks
|
|
674
|
-
* OIDC issuer.
|
|
672
|
+
* The OIDC issuer information.
|
|
675
673
|
*
|
|
676
674
|
* @example
|
|
677
675
|
* https://example.com/auth
|
|
@@ -679,7 +677,7 @@ export class CreateIdentityProviderRequestOidcConfigEndpointConfig extends $dara
|
|
|
679
677
|
issuer?: string;
|
|
680
678
|
/**
|
|
681
679
|
* @remarks
|
|
682
|
-
* OIDC JWKS URI.
|
|
680
|
+
* The OIDC JWKS URI.
|
|
683
681
|
*
|
|
684
682
|
* @example
|
|
685
683
|
* https://example.com/auth/jwks
|
|
@@ -687,7 +685,7 @@ export class CreateIdentityProviderRequestOidcConfigEndpointConfig extends $dara
|
|
|
687
685
|
jwksUri?: string;
|
|
688
686
|
/**
|
|
689
687
|
* @remarks
|
|
690
|
-
* OIDC token endpoint.
|
|
688
|
+
* The OIDC token endpoint.
|
|
691
689
|
*
|
|
692
690
|
* @example
|
|
693
691
|
* https://example.com/auth/token
|
|
@@ -695,7 +693,7 @@ export class CreateIdentityProviderRequestOidcConfigEndpointConfig extends $dara
|
|
|
695
693
|
tokenEndpoint?: string;
|
|
696
694
|
/**
|
|
697
695
|
* @remarks
|
|
698
|
-
* OIDC UserInfo endpoint.
|
|
696
|
+
* The OIDC UserInfo endpoint.
|
|
699
697
|
*
|
|
700
698
|
* @example
|
|
701
699
|
* https://example.com/auth/userinfo
|
|
@@ -733,17 +731,17 @@ export class CreateIdentityProviderRequestOidcConfigEndpointConfig extends $dara
|
|
|
733
731
|
export class CreateIdentityProviderRequestOidcConfig extends $dara.Model {
|
|
734
732
|
/**
|
|
735
733
|
* @remarks
|
|
736
|
-
* OIDC client authentication configuration.
|
|
734
|
+
* The OIDC client authentication configuration.
|
|
737
735
|
*/
|
|
738
736
|
authnParam?: CreateIdentityProviderRequestOidcConfigAuthnParam;
|
|
739
737
|
/**
|
|
740
738
|
* @remarks
|
|
741
|
-
* OIDC endpoint configuration.
|
|
739
|
+
* The OIDC endpoint configuration.
|
|
742
740
|
*/
|
|
743
741
|
endpointConfig?: CreateIdentityProviderRequestOidcConfigEndpointConfig;
|
|
744
742
|
/**
|
|
745
743
|
* @remarks
|
|
746
|
-
* OIDC grant scopes.
|
|
744
|
+
* The collection of OIDC grant scopes.
|
|
747
745
|
*
|
|
748
746
|
* @example
|
|
749
747
|
* openid
|
|
@@ -751,7 +749,7 @@ export class CreateIdentityProviderRequestOidcConfig extends $dara.Model {
|
|
|
751
749
|
grantScopes?: string[];
|
|
752
750
|
/**
|
|
753
751
|
* @remarks
|
|
754
|
-
* OIDC grant type.
|
|
752
|
+
* The OIDC grant type.
|
|
755
753
|
*
|
|
756
754
|
* @example
|
|
757
755
|
* authorization_code
|
|
@@ -759,11 +757,11 @@ export class CreateIdentityProviderRequestOidcConfig extends $dara.Model {
|
|
|
759
757
|
grantType?: string;
|
|
760
758
|
/**
|
|
761
759
|
* @remarks
|
|
762
|
-
* PKCE algorithm. Valid values:
|
|
760
|
+
* The PKCE algorithm. Valid values:
|
|
763
761
|
*
|
|
764
762
|
* - SHA256: S256
|
|
765
763
|
*
|
|
766
|
-
* -
|
|
764
|
+
* - plaintext: plain
|
|
767
765
|
*
|
|
768
766
|
* @example
|
|
769
767
|
* S256
|
|
@@ -771,7 +769,7 @@ export class CreateIdentityProviderRequestOidcConfig extends $dara.Model {
|
|
|
771
769
|
pkceChallengeMethod?: string;
|
|
772
770
|
/**
|
|
773
771
|
* @remarks
|
|
774
|
-
*
|
|
772
|
+
* Specifies whether to use PKCE in AuthorizationCode grant mode.
|
|
775
773
|
*
|
|
776
774
|
* @example
|
|
777
775
|
* true
|
|
@@ -819,6 +817,9 @@ export class CreateIdentityProviderRequestOidcConfig extends $dara.Model {
|
|
|
819
817
|
|
|
820
818
|
export class CreateIdentityProviderRequestSamlConfigCertificates extends $dara.Model {
|
|
821
819
|
/**
|
|
820
|
+
* @remarks
|
|
821
|
+
* The certificate content.
|
|
822
|
+
*
|
|
822
823
|
* @example
|
|
823
824
|
* -----BEGIN CERTIFICATE----- MIIC0jCCAbqgAwIBAgIQXXXXX-----END CERTIFICATE-----
|
|
824
825
|
*/
|
|
@@ -846,32 +847,59 @@ export class CreateIdentityProviderRequestSamlConfigCertificates extends $dara.M
|
|
|
846
847
|
|
|
847
848
|
export class CreateIdentityProviderRequestSamlConfig extends $dara.Model {
|
|
848
849
|
/**
|
|
850
|
+
* @remarks
|
|
851
|
+
* The binding type.
|
|
852
|
+
*
|
|
849
853
|
* @example
|
|
850
854
|
* HTTP-REDIRECT
|
|
851
855
|
*/
|
|
852
856
|
bindingMethod?: string;
|
|
857
|
+
/**
|
|
858
|
+
* @remarks
|
|
859
|
+
* The certificate list of the IdP.
|
|
860
|
+
*/
|
|
853
861
|
certificates?: CreateIdentityProviderRequestSamlConfigCertificates[];
|
|
854
862
|
/**
|
|
863
|
+
* @remarks
|
|
864
|
+
* The EntityId of the IdP.
|
|
865
|
+
*
|
|
855
866
|
* @example
|
|
856
867
|
* http://dc.test.com/adfs/services/trust
|
|
857
868
|
*/
|
|
858
869
|
idPEntityId?: string;
|
|
859
870
|
/**
|
|
871
|
+
* @remarks
|
|
872
|
+
* The logon URL of the IdP.
|
|
873
|
+
*
|
|
860
874
|
* @example
|
|
861
875
|
* https://dc.test.com/adfs/ls/
|
|
862
876
|
*/
|
|
863
877
|
idPSsoUrl?: string;
|
|
864
878
|
/**
|
|
879
|
+
* @remarks
|
|
880
|
+
* The maximum clock skew.
|
|
881
|
+
*
|
|
865
882
|
* @example
|
|
866
883
|
* 180
|
|
867
884
|
*/
|
|
868
885
|
maxClockSkew?: number;
|
|
869
886
|
/**
|
|
887
|
+
* @remarks
|
|
888
|
+
* Specifies whether requests must be signed.
|
|
889
|
+
*
|
|
870
890
|
* @example
|
|
871
891
|
* true
|
|
872
892
|
*/
|
|
873
893
|
requireRequestSigned?: boolean;
|
|
894
|
+
/**
|
|
895
|
+
* @remarks
|
|
896
|
+
* Specifies whether the external IdP must sign the Assertion.
|
|
897
|
+
*/
|
|
874
898
|
wantAssertionsSigned?: boolean;
|
|
899
|
+
/**
|
|
900
|
+
* @remarks
|
|
901
|
+
* Specifies whether the external IdP must sign the Response.
|
|
902
|
+
*/
|
|
875
903
|
wantResponseSigned?: boolean;
|
|
876
904
|
static names(): { [key: string]: string } {
|
|
877
905
|
return {
|
|
@@ -914,7 +942,7 @@ export class CreateIdentityProviderRequestSamlConfig extends $dara.Model {
|
|
|
914
942
|
export class CreateIdentityProviderRequestUdPullConfigPeriodicSyncConfig extends $dara.Model {
|
|
915
943
|
/**
|
|
916
944
|
* @remarks
|
|
917
|
-
*
|
|
945
|
+
* The cron expression.
|
|
918
946
|
*
|
|
919
947
|
* @example
|
|
920
948
|
* 0 45 1 * * ?
|
|
@@ -922,12 +950,12 @@ export class CreateIdentityProviderRequestUdPullConfigPeriodicSyncConfig extends
|
|
|
922
950
|
periodicSyncCron?: string;
|
|
923
951
|
/**
|
|
924
952
|
* @remarks
|
|
925
|
-
*
|
|
953
|
+
* The collection of execution time points.
|
|
926
954
|
*/
|
|
927
955
|
periodicSyncTimes?: number[];
|
|
928
956
|
/**
|
|
929
957
|
* @remarks
|
|
930
|
-
*
|
|
958
|
+
* The type.
|
|
931
959
|
*
|
|
932
960
|
* @example
|
|
933
961
|
* cron
|
|
@@ -964,12 +992,12 @@ export class CreateIdentityProviderRequestUdPullConfigPeriodicSyncConfig extends
|
|
|
964
992
|
export class CreateIdentityProviderRequestUdPullConfigUdSyncScopeConfig extends $dara.Model {
|
|
965
993
|
/**
|
|
966
994
|
* @remarks
|
|
967
|
-
*
|
|
995
|
+
* The list of source nodes for synchronization.
|
|
968
996
|
*/
|
|
969
997
|
sourceScopes?: string[];
|
|
970
998
|
/**
|
|
971
999
|
* @remarks
|
|
972
|
-
*
|
|
1000
|
+
* The target node for synchronization. Set this parameter to an IDaaS organization ID.
|
|
973
1001
|
*
|
|
974
1002
|
* @example
|
|
975
1003
|
* ou_lyhyy6p7yf7mdrdiq5xxxx
|
|
@@ -1004,11 +1032,10 @@ export class CreateIdentityProviderRequestUdPullConfigUdSyncScopeConfig extends
|
|
|
1004
1032
|
export class CreateIdentityProviderRequestUdPullConfig extends $dara.Model {
|
|
1005
1033
|
/**
|
|
1006
1034
|
* @remarks
|
|
1007
|
-
*
|
|
1035
|
+
* Specifies whether group synchronization is supported. Default value: disabled. Valid values:
|
|
1008
1036
|
*
|
|
1009
|
-
* -
|
|
1010
|
-
*
|
|
1011
|
-
* - Enabled: enabled
|
|
1037
|
+
* - disabled: Disabled.
|
|
1038
|
+
* - enabled: Enabled.
|
|
1012
1039
|
*
|
|
1013
1040
|
* @example
|
|
1014
1041
|
* disabled
|
|
@@ -1016,11 +1043,10 @@ export class CreateIdentityProviderRequestUdPullConfig extends $dara.Model {
|
|
|
1016
1043
|
groupSyncStatus?: string;
|
|
1017
1044
|
/**
|
|
1018
1045
|
* @remarks
|
|
1019
|
-
*
|
|
1020
|
-
*
|
|
1021
|
-
* - Disabled: disabled
|
|
1046
|
+
* The incremental callback status. Specifies whether to process incremental callback data from the IdP. Valid values:
|
|
1022
1047
|
*
|
|
1023
|
-
* -
|
|
1048
|
+
* - disabled
|
|
1049
|
+
* - enabled
|
|
1024
1050
|
*
|
|
1025
1051
|
* @example
|
|
1026
1052
|
* disabled
|
|
@@ -1028,15 +1054,15 @@ export class CreateIdentityProviderRequestUdPullConfig extends $dara.Model {
|
|
|
1028
1054
|
incrementalCallbackStatus?: string;
|
|
1029
1055
|
/**
|
|
1030
1056
|
* @remarks
|
|
1031
|
-
*
|
|
1057
|
+
* The periodic verification configuration.
|
|
1032
1058
|
*/
|
|
1033
1059
|
periodicSyncConfig?: CreateIdentityProviderRequestUdPullConfigPeriodicSyncConfig;
|
|
1034
1060
|
/**
|
|
1035
1061
|
* @remarks
|
|
1036
|
-
*
|
|
1037
|
-
* - Disabled: disabled
|
|
1062
|
+
* Specifies whether to periodically verify data differences between EIAM and the identity provider. Valid values:
|
|
1038
1063
|
*
|
|
1039
|
-
* -
|
|
1064
|
+
* - disabled: Disabled.
|
|
1065
|
+
* - enabled: Enabled.
|
|
1040
1066
|
*
|
|
1041
1067
|
* @example
|
|
1042
1068
|
* disabled
|
|
@@ -1044,7 +1070,7 @@ export class CreateIdentityProviderRequestUdPullConfig extends $dara.Model {
|
|
|
1044
1070
|
periodicSyncStatus?: string;
|
|
1045
1071
|
/**
|
|
1046
1072
|
* @remarks
|
|
1047
|
-
*
|
|
1073
|
+
* The synchronization scope configuration.
|
|
1048
1074
|
*/
|
|
1049
1075
|
udSyncScopeConfig?: CreateIdentityProviderRequestUdPullConfigUdSyncScopeConfig;
|
|
1050
1076
|
static names(): { [key: string]: string } {
|
|
@@ -1085,7 +1111,7 @@ export class CreateIdentityProviderRequestUdPullConfig extends $dara.Model {
|
|
|
1085
1111
|
export class CreateIdentityProviderRequestUdPushConfigPeriodicSyncConfig extends $dara.Model {
|
|
1086
1112
|
/**
|
|
1087
1113
|
* @remarks
|
|
1088
|
-
*
|
|
1114
|
+
* The cron expression.
|
|
1089
1115
|
*
|
|
1090
1116
|
* @example
|
|
1091
1117
|
* 0 45 1 * * ?
|
|
@@ -1093,12 +1119,12 @@ export class CreateIdentityProviderRequestUdPushConfigPeriodicSyncConfig extends
|
|
|
1093
1119
|
periodicSyncCron?: string;
|
|
1094
1120
|
/**
|
|
1095
1121
|
* @remarks
|
|
1096
|
-
*
|
|
1122
|
+
* The collection of execution time points.
|
|
1097
1123
|
*/
|
|
1098
1124
|
periodicSyncTimes?: number[];
|
|
1099
1125
|
/**
|
|
1100
1126
|
* @remarks
|
|
1101
|
-
*
|
|
1127
|
+
* The type.
|
|
1102
1128
|
*
|
|
1103
1129
|
* @example
|
|
1104
1130
|
* cron
|
|
@@ -1135,12 +1161,12 @@ export class CreateIdentityProviderRequestUdPushConfigPeriodicSyncConfig extends
|
|
|
1135
1161
|
export class CreateIdentityProviderRequestUdPushConfigUdSyncScopeConfigs extends $dara.Model {
|
|
1136
1162
|
/**
|
|
1137
1163
|
* @remarks
|
|
1138
|
-
*
|
|
1164
|
+
* The list of source nodes for synchronization.
|
|
1139
1165
|
*/
|
|
1140
1166
|
sourceScopes?: string[];
|
|
1141
1167
|
/**
|
|
1142
1168
|
* @remarks
|
|
1143
|
-
*
|
|
1169
|
+
* The target node for synchronization.
|
|
1144
1170
|
*
|
|
1145
1171
|
* @example
|
|
1146
1172
|
* ou_lyhyy6p7yf7mdrdiq5xxxx
|
|
@@ -1175,7 +1201,7 @@ export class CreateIdentityProviderRequestUdPushConfigUdSyncScopeConfigs extends
|
|
|
1175
1201
|
export class CreateIdentityProviderRequestUdPushConfig extends $dara.Model {
|
|
1176
1202
|
/**
|
|
1177
1203
|
* @remarks
|
|
1178
|
-
*
|
|
1204
|
+
* The incremental callback status. This field is not yet enabled. Ignore this field.
|
|
1179
1205
|
*
|
|
1180
1206
|
* @example
|
|
1181
1207
|
* disabled
|
|
@@ -1183,12 +1209,12 @@ export class CreateIdentityProviderRequestUdPushConfig extends $dara.Model {
|
|
|
1183
1209
|
incrementalCallbackStatus?: string;
|
|
1184
1210
|
/**
|
|
1185
1211
|
* @remarks
|
|
1186
|
-
*
|
|
1212
|
+
* The periodic verification configuration.
|
|
1187
1213
|
*/
|
|
1188
1214
|
periodicSyncConfig?: CreateIdentityProviderRequestUdPushConfigPeriodicSyncConfig;
|
|
1189
1215
|
/**
|
|
1190
1216
|
* @remarks
|
|
1191
|
-
*
|
|
1217
|
+
* The periodic verification status. This field is not yet enabled. Ignore this field.
|
|
1192
1218
|
*
|
|
1193
1219
|
* @example
|
|
1194
1220
|
* disabled
|
|
@@ -1196,7 +1222,7 @@ export class CreateIdentityProviderRequestUdPushConfig extends $dara.Model {
|
|
|
1196
1222
|
periodicSyncStatus?: string;
|
|
1197
1223
|
/**
|
|
1198
1224
|
* @remarks
|
|
1199
|
-
*
|
|
1225
|
+
* The outbound synchronization configuration.
|
|
1200
1226
|
*/
|
|
1201
1227
|
udSyncScopeConfigs?: CreateIdentityProviderRequestUdPushConfigUdSyncScopeConfigs[];
|
|
1202
1228
|
static names(): { [key: string]: string } {
|
|
@@ -1235,7 +1261,7 @@ export class CreateIdentityProviderRequestUdPushConfig extends $dara.Model {
|
|
|
1235
1261
|
export class CreateIdentityProviderRequestWeComConfig extends $dara.Model {
|
|
1236
1262
|
/**
|
|
1237
1263
|
* @remarks
|
|
1238
|
-
*
|
|
1264
|
+
* The agentId of the WeCom self-built application.
|
|
1239
1265
|
*
|
|
1240
1266
|
* @example
|
|
1241
1267
|
* 278231941749863339
|
|
@@ -1243,7 +1269,7 @@ export class CreateIdentityProviderRequestWeComConfig extends $dara.Model {
|
|
|
1243
1269
|
agentId?: string;
|
|
1244
1270
|
/**
|
|
1245
1271
|
* @remarks
|
|
1246
|
-
*
|
|
1272
|
+
* The authorization callback domain.
|
|
1247
1273
|
*
|
|
1248
1274
|
* @example
|
|
1249
1275
|
* https://xxx.aliyunidaas.com/xxxx
|
|
@@ -1251,7 +1277,7 @@ export class CreateIdentityProviderRequestWeComConfig extends $dara.Model {
|
|
|
1251
1277
|
authorizeCallbackDomain?: string;
|
|
1252
1278
|
/**
|
|
1253
1279
|
* @remarks
|
|
1254
|
-
*
|
|
1280
|
+
* The corpId of the WeCom self-built application.
|
|
1255
1281
|
*
|
|
1256
1282
|
* @example
|
|
1257
1283
|
* 3756043633237690761
|
|
@@ -1259,7 +1285,7 @@ export class CreateIdentityProviderRequestWeComConfig extends $dara.Model {
|
|
|
1259
1285
|
corpId?: string;
|
|
1260
1286
|
/**
|
|
1261
1287
|
* @remarks
|
|
1262
|
-
*
|
|
1288
|
+
* The corpSecret of the WeCom self-built application.
|
|
1263
1289
|
*
|
|
1264
1290
|
* @example
|
|
1265
1291
|
* CSEHDddddddxxxxuxkJEHPveWRXBGqVqRsxxxx
|
|
@@ -1267,7 +1293,7 @@ export class CreateIdentityProviderRequestWeComConfig extends $dara.Model {
|
|
|
1267
1293
|
corpSecret?: string;
|
|
1268
1294
|
/**
|
|
1269
1295
|
* @remarks
|
|
1270
|
-
*
|
|
1296
|
+
* The trusted domain.
|
|
1271
1297
|
*
|
|
1272
1298
|
* @example
|
|
1273
1299
|
* https://xxx.aliyunidaas.com/
|
|
@@ -1305,27 +1331,27 @@ export class CreateIdentityProviderRequestWeComConfig extends $dara.Model {
|
|
|
1305
1331
|
export class CreateIdentityProviderRequest extends $dara.Model {
|
|
1306
1332
|
/**
|
|
1307
1333
|
* @remarks
|
|
1308
|
-
*
|
|
1334
|
+
* The authentication configuration.
|
|
1309
1335
|
*/
|
|
1310
1336
|
authnConfig?: CreateIdentityProviderRequestAuthnConfig;
|
|
1311
1337
|
/**
|
|
1312
1338
|
* @remarks
|
|
1313
|
-
*
|
|
1339
|
+
* The automatic creation rule configuration for accounts.
|
|
1314
1340
|
*/
|
|
1315
1341
|
autoCreateUserConfig?: CreateIdentityProviderRequestAutoCreateUserConfig;
|
|
1316
1342
|
/**
|
|
1317
1343
|
* @remarks
|
|
1318
|
-
*
|
|
1344
|
+
* The automatic account update rule configuration.
|
|
1319
1345
|
*/
|
|
1320
1346
|
autoUpdateUserConfig?: CreateIdentityProviderRequestAutoUpdateUserConfig;
|
|
1321
1347
|
/**
|
|
1322
1348
|
* @remarks
|
|
1323
|
-
*
|
|
1349
|
+
* The account binding rule configuration for the OIDC identity provider.
|
|
1324
1350
|
*/
|
|
1325
1351
|
bindingConfig?: CreateIdentityProviderRequestBindingConfig;
|
|
1326
1352
|
/**
|
|
1327
1353
|
* @remarks
|
|
1328
|
-
*
|
|
1354
|
+
* The client token that is used to ensure the idempotence of the request. Generate a parameter value from your client to ensure that the value is unique among different requests. ClientToken supports only ASCII characters. If you do not specify this parameter, the system automatically uses the RequestId of the API request as the ClientToken. The RequestId may vary for each API request.
|
|
1329
1355
|
*
|
|
1330
1356
|
* @example
|
|
1331
1357
|
* clientToken_20250704_Axxxxx
|
|
@@ -1333,12 +1359,12 @@ export class CreateIdentityProviderRequest extends $dara.Model {
|
|
|
1333
1359
|
clientToken?: string;
|
|
1334
1360
|
/**
|
|
1335
1361
|
* @remarks
|
|
1336
|
-
* DingTalk configuration.
|
|
1362
|
+
* The DingTalk configuration.
|
|
1337
1363
|
*/
|
|
1338
1364
|
dingtalkAppConfig?: CreateIdentityProviderRequestDingtalkAppConfig;
|
|
1339
1365
|
/**
|
|
1340
1366
|
* @remarks
|
|
1341
|
-
*
|
|
1367
|
+
* The name of the identity provider.
|
|
1342
1368
|
*
|
|
1343
1369
|
* This parameter is required.
|
|
1344
1370
|
*
|
|
@@ -1348,23 +1374,16 @@ export class CreateIdentityProviderRequest extends $dara.Model {
|
|
|
1348
1374
|
identityProviderName?: string;
|
|
1349
1375
|
/**
|
|
1350
1376
|
* @remarks
|
|
1351
|
-
*
|
|
1352
|
-
*
|
|
1353
|
-
* - Inbound DingTalk: urn:alibaba:idaas:idp:alibaba:dingtalk:pull
|
|
1354
|
-
*
|
|
1355
|
-
* - Outbound DingTalk: urn:alibaba:idaas:idp:alibaba:dingtalk:push
|
|
1377
|
+
* The synchronization type of the identity provider. Valid values:
|
|
1356
1378
|
*
|
|
1357
|
-
* -
|
|
1358
|
-
*
|
|
1359
|
-
* -
|
|
1360
|
-
*
|
|
1361
|
-
* -
|
|
1362
|
-
*
|
|
1363
|
-
* -
|
|
1364
|
-
*
|
|
1365
|
-
* - Standard OIDC: urn:alibaba:idaas:idp:standard:oidc
|
|
1366
|
-
*
|
|
1367
|
-
* - SASE Custom OIDC: urn:alibaba:idaas:idp:alibaba:sase
|
|
1379
|
+
* - urn:alibaba:idaas:idp:alibaba:dingtalk:pull: inbound DingTalk
|
|
1380
|
+
* - urn:alibaba:idaas:idp:alibaba:dingtalk:push: outbound DingTalk
|
|
1381
|
+
* - urn:alibaba:idaas:idp:tencent:wecom:pull: inbound WeCom
|
|
1382
|
+
* - urn:alibaba:idaas:idp:bytedance:lark:pull: inbound Lark
|
|
1383
|
+
* - urn:alibaba:idaas:idp:microsoft:ad:pull: inbound AD
|
|
1384
|
+
* - urn:alibaba:idaas:idp:unknown:ldap:pull: inbound LDAP
|
|
1385
|
+
* - urn:alibaba:idaas:idp:standard:oidc: standard OIDC
|
|
1386
|
+
* - urn:alibaba:idaas:idp:alibaba:sase: SASE custom OIDC
|
|
1368
1387
|
*
|
|
1369
1388
|
* This parameter is required.
|
|
1370
1389
|
*
|
|
@@ -1374,7 +1393,7 @@ export class CreateIdentityProviderRequest extends $dara.Model {
|
|
|
1374
1393
|
identityProviderType?: string;
|
|
1375
1394
|
/**
|
|
1376
1395
|
* @remarks
|
|
1377
|
-
*
|
|
1396
|
+
* The instance ID.
|
|
1378
1397
|
*
|
|
1379
1398
|
* This parameter is required.
|
|
1380
1399
|
*
|
|
@@ -1384,17 +1403,17 @@ export class CreateIdentityProviderRequest extends $dara.Model {
|
|
|
1384
1403
|
instanceId?: string;
|
|
1385
1404
|
/**
|
|
1386
1405
|
* @remarks
|
|
1387
|
-
* Lark configuration.
|
|
1406
|
+
* The Lark configuration information.
|
|
1388
1407
|
*/
|
|
1389
1408
|
larkConfig?: CreateIdentityProviderRequestLarkConfig;
|
|
1390
1409
|
/**
|
|
1391
1410
|
* @remarks
|
|
1392
|
-
* AD/LDAP configuration.
|
|
1411
|
+
* The AD/LDAP configuration information.
|
|
1393
1412
|
*/
|
|
1394
1413
|
ldapConfig?: CreateIdentityProviderRequestLdapConfig;
|
|
1395
1414
|
/**
|
|
1396
1415
|
* @remarks
|
|
1397
|
-
*
|
|
1416
|
+
* The URL of the application logo.
|
|
1398
1417
|
*
|
|
1399
1418
|
* @example
|
|
1400
1419
|
* xxxx-image://xxxx_23aqr2ye554csg33dqpch5eu3q/tmp/d17d9adc-a943-45e7-ba0c-2838dddea678
|
|
@@ -1402,7 +1421,7 @@ export class CreateIdentityProviderRequest extends $dara.Model {
|
|
|
1402
1421
|
logoUrl?: string;
|
|
1403
1422
|
/**
|
|
1404
1423
|
* @remarks
|
|
1405
|
-
*
|
|
1424
|
+
* The network access endpoint ID.
|
|
1406
1425
|
*
|
|
1407
1426
|
* @example
|
|
1408
1427
|
* nae_examplexxxx
|
|
@@ -1410,23 +1429,27 @@ export class CreateIdentityProviderRequest extends $dara.Model {
|
|
|
1410
1429
|
networkAccessEndpointId?: string;
|
|
1411
1430
|
/**
|
|
1412
1431
|
* @remarks
|
|
1413
|
-
* OIDC IdP configuration.
|
|
1432
|
+
* The OIDC IdP configuration.
|
|
1414
1433
|
*/
|
|
1415
1434
|
oidcConfig?: CreateIdentityProviderRequestOidcConfig;
|
|
1435
|
+
/**
|
|
1436
|
+
* @remarks
|
|
1437
|
+
* The SAML IdP configuration.
|
|
1438
|
+
*/
|
|
1416
1439
|
samlConfig?: CreateIdentityProviderRequestSamlConfig;
|
|
1417
1440
|
/**
|
|
1418
1441
|
* @remarks
|
|
1419
|
-
*
|
|
1442
|
+
* The inbound synchronization configuration.
|
|
1420
1443
|
*/
|
|
1421
1444
|
udPullConfig?: CreateIdentityProviderRequestUdPullConfig;
|
|
1422
1445
|
/**
|
|
1423
1446
|
* @remarks
|
|
1424
|
-
*
|
|
1447
|
+
* The outbound synchronization configuration.
|
|
1425
1448
|
*/
|
|
1426
1449
|
udPushConfig?: CreateIdentityProviderRequestUdPushConfig;
|
|
1427
1450
|
/**
|
|
1428
1451
|
* @remarks
|
|
1429
|
-
* WeCom configuration.
|
|
1452
|
+
* The WeCom configuration information.
|
|
1430
1453
|
*/
|
|
1431
1454
|
weComConfig?: CreateIdentityProviderRequestWeComConfig;
|
|
1432
1455
|
static names(): { [key: string]: string } {
|