@alicloud/eiam20211201 2.19.1 → 2.19.3

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.
Files changed (39) hide show
  1. package/dist/client.d.ts +16 -16
  2. package/dist/client.js +16 -16
  3. package/dist/models/CheckInstanceModuleStatusRequest.d.ts +17 -3
  4. package/dist/models/CheckInstanceModuleStatusRequest.js.map +1 -1
  5. package/dist/models/CreateIdentityProviderRequest.d.ts +173 -142
  6. package/dist/models/CreateIdentityProviderRequest.js +2 -0
  7. package/dist/models/CreateIdentityProviderRequest.js.map +1 -1
  8. package/dist/models/CreateIdentityProviderResponseBody.d.ts +2 -2
  9. package/dist/models/GetApplicationSsoConfigResponseBody.d.ts +85 -65
  10. package/dist/models/GetApplicationSsoConfigResponseBody.js +11 -0
  11. package/dist/models/GetApplicationSsoConfigResponseBody.js.map +1 -1
  12. package/dist/models/GetAuthorizationResourceResponseBody.d.ts +2 -2
  13. package/dist/models/GetIdentityProviderResponseBody.d.ts +52 -36
  14. package/dist/models/GetIdentityProviderResponseBody.js +2 -0
  15. package/dist/models/GetIdentityProviderResponseBody.js.map +1 -1
  16. package/dist/models/ListAuthorizationResourcesRequest.d.ts +5 -5
  17. package/dist/models/ListAuthorizationResourcesResponseBody.d.ts +9 -9
  18. package/dist/models/ListEiamInstancesRequest.d.ts +1 -1
  19. package/dist/models/SetApplicationSsoConfigRequest.d.ts +55 -31
  20. package/dist/models/SetApplicationSsoConfigRequest.js +9 -0
  21. package/dist/models/SetApplicationSsoConfigRequest.js.map +1 -1
  22. package/dist/models/UpdateIdentityProviderRequest.d.ts +90 -51
  23. package/dist/models/UpdateIdentityProviderRequest.js +2 -0
  24. package/dist/models/UpdateIdentityProviderRequest.js.map +1 -1
  25. package/dist/models/UpdateIdentityProviderResponseBody.d.ts +1 -1
  26. package/package.json +1 -1
  27. package/src/client.ts +16 -16
  28. package/src/models/CheckInstanceModuleStatusRequest.ts +17 -3
  29. package/src/models/CreateIdentityProviderRequest.ts +175 -142
  30. package/src/models/CreateIdentityProviderResponseBody.ts +2 -2
  31. package/src/models/GetApplicationSsoConfigResponseBody.ts +96 -65
  32. package/src/models/GetAuthorizationResourceResponseBody.ts +2 -2
  33. package/src/models/GetIdentityProviderResponseBody.ts +54 -36
  34. package/src/models/ListAuthorizationResourcesRequest.ts +5 -5
  35. package/src/models/ListAuthorizationResourcesResponseBody.ts +9 -9
  36. package/src/models/ListEiamInstancesRequest.ts +1 -1
  37. package/src/models/SetApplicationSsoConfigRequest.ts +64 -31
  38. package/src/models/UpdateIdentityProviderRequest.ts +92 -51
  39. package/src/models/UpdateIdentityProviderResponseBody.ts +1 -1
@@ -2,10 +2,10 @@ import * as $dara from '@darabonba/typescript';
2
2
  export declare class CreateIdentityProviderRequestAuthnConfig extends $dara.Model {
3
3
  /**
4
4
  * @remarks
5
- * Whether the corresponding IdP supports authentication. Valid values:
6
- * - Disabled: disabled
5
+ * Specifies whether the corresponding IdP supports authentication. Valid values:
7
6
  *
8
- * - Enabled: enabled
7
+ * - disabled: Disabled.
8
+ * - enabled: Enabled.
9
9
  *
10
10
  * @example
11
11
  * enabled
@@ -13,10 +13,10 @@ export declare class CreateIdentityProviderRequestAuthnConfig extends $dara.Mode
13
13
  authnStatus?: string;
14
14
  /**
15
15
  * @remarks
16
- * Whether automatic password update is supported. Valid values:
17
- * - Disabled: disabled
16
+ * Specifies whether automatic password update is supported. Valid values:
18
17
  *
19
- * - Enabled: enabled
18
+ * - disabled: Disabled.
19
+ * - enabled: Enabled.
20
20
  *
21
21
  * @example
22
22
  * enabled
@@ -36,10 +36,10 @@ export declare class CreateIdentityProviderRequestAuthnConfig extends $dara.Mode
36
36
  export declare class CreateIdentityProviderRequestAutoCreateUserConfig extends $dara.Model {
37
37
  /**
38
38
  * @remarks
39
- * Whether automatic account creation is enabled. Valid values:
40
- * - Disabled: disabled
39
+ * Specifies whether automatic creation of accounts is enabled. Valid values:
40
+ * - disabled: Disabled.
41
41
  *
42
- * - Enabled: enabled
42
+ * - enabled: Enabled.
43
43
  *
44
44
  * @example
45
45
  * disabled
@@ -47,7 +47,7 @@ export declare class CreateIdentityProviderRequestAutoCreateUserConfig extends $
47
47
  autoCreateUserStatus?: string;
48
48
  /**
49
49
  * @remarks
50
- * Set of target organizational unit IDs.
50
+ * The collection of target organizational unit IDs.
51
51
  */
52
52
  targetOrganizationalUnitIds?: string[];
53
53
  static names(): {
@@ -64,10 +64,10 @@ export declare class CreateIdentityProviderRequestAutoCreateUserConfig extends $
64
64
  export declare class CreateIdentityProviderRequestAutoUpdateUserConfig extends $dara.Model {
65
65
  /**
66
66
  * @remarks
67
- * Whether automatic account update is enabled. Valid values:
68
- * - Disabled: disabled
67
+ * Specifies whether automatic account update is enabled. Valid values:
68
+ * - disabled: Disabled.
69
69
  *
70
- * - Enabled: enabled
70
+ * - enabled: Enabled.
71
71
  *
72
72
  * @example
73
73
  * disabled
@@ -87,11 +87,10 @@ export declare class CreateIdentityProviderRequestAutoUpdateUserConfig extends $
87
87
  export declare class CreateIdentityProviderRequestBindingConfigAutoMatchUserProfileExpressions extends $dara.Model {
88
88
  /**
89
89
  * @remarks
90
- * Expression type. Valid values:
90
+ * The type of the expression. Valid values:
91
91
  *
92
- * - Field: field
93
- *
94
- * - Expression: expression
92
+ * - field: field
93
+ * - expression: expression
95
94
  *
96
95
  * @example
97
96
  * field
@@ -99,7 +98,7 @@ export declare class CreateIdentityProviderRequestBindingConfigAutoMatchUserProf
99
98
  expressionMappingType?: string;
100
99
  /**
101
100
  * @remarks
102
- * Mapping attribute value expression.
101
+ * The expression for the mapping attribute value.
103
102
  *
104
103
  * @example
105
104
  * idpUser.phoneNumber
@@ -107,7 +106,7 @@ export declare class CreateIdentityProviderRequestBindingConfigAutoMatchUserProf
107
106
  sourceValueExpression?: string;
108
107
  /**
109
108
  * @remarks
110
- * Mapping target attribute name.
109
+ * The name of the mapping target attribute.
111
110
  *
112
111
  * @example
113
112
  * user.username
@@ -115,7 +114,7 @@ export declare class CreateIdentityProviderRequestBindingConfigAutoMatchUserProf
115
114
  targetField?: string;
116
115
  /**
117
116
  * @remarks
118
- * Mapping target attribute description.
117
+ * The name of the mapping target attribute.
119
118
  *
120
119
  * @example
121
120
  * username
@@ -135,16 +134,15 @@ export declare class CreateIdentityProviderRequestBindingConfigAutoMatchUserProf
135
134
  export declare class CreateIdentityProviderRequestBindingConfig extends $dara.Model {
136
135
  /**
137
136
  * @remarks
138
- * List of rules for automatic account matching.
137
+ * The list of rules for automatically matching accounts.
139
138
  */
140
139
  autoMatchUserProfileExpressions?: CreateIdentityProviderRequestBindingConfigAutoMatchUserProfileExpressions[];
141
140
  /**
142
141
  * @remarks
143
- * Whether automatic account matching is enabled. Valid values:
144
- *
145
- * - Disabled: disabled
142
+ * Specifies whether automatic account matching is enabled. Valid values:
146
143
  *
147
- * - Enabled: enabled
144
+ * - disabled: Disabled.
145
+ * - enabled: Enabled.
148
146
  *
149
147
  * @example
150
148
  * disabled
@@ -152,10 +150,10 @@ export declare class CreateIdentityProviderRequestBindingConfig extends $dara.Mo
152
150
  autoMatchUserStatus?: string;
153
151
  /**
154
152
  * @remarks
155
- * Whether the manual account binding feature is enabled. Valid values:
156
- * - Disabled: disabled
153
+ * Specifies whether the manual account binding feature is enabled. Valid values:
157
154
  *
158
- * - Enabled: enabled
155
+ * - disabled: Disabled.
156
+ * - enabled: Enabled.
159
157
  *
160
158
  * @example
161
159
  * enabled
@@ -175,7 +173,7 @@ export declare class CreateIdentityProviderRequestBindingConfig extends $dara.Mo
175
173
  export declare class CreateIdentityProviderRequestDingtalkAppConfig extends $dara.Model {
176
174
  /**
177
175
  * @remarks
178
- * AppKey of the DingTalk first-party application.
176
+ * The appKey of the DingTalk first-party application.
179
177
  *
180
178
  * @example
181
179
  * Xczngvfemo4e
@@ -183,7 +181,7 @@ export declare class CreateIdentityProviderRequestDingtalkAppConfig extends $dar
183
181
  appKey?: string;
184
182
  /**
185
183
  * @remarks
186
- * AppSecret of the DingTalk first-party application.
184
+ * The appSecret of the DingTalk first-party application.
187
185
  *
188
186
  * @example
189
187
  * 5d405a12a6f84ad4ab05ee09axxxx
@@ -191,7 +189,7 @@ export declare class CreateIdentityProviderRequestDingtalkAppConfig extends $dar
191
189
  appSecret?: string;
192
190
  /**
193
191
  * @remarks
194
- * CorpId of the DingTalk first-party application.
192
+ * The corpId of the DingTalk first-party application.
195
193
  *
196
194
  * @example
197
195
  * 307568042478613xxxx
@@ -199,11 +197,11 @@ export declare class CreateIdentityProviderRequestDingtalkAppConfig extends $dar
199
197
  corpId?: string;
200
198
  /**
201
199
  * @remarks
202
- * DingTalk version. Valid values:
200
+ * The DingTalk version. Valid values:
203
201
  *
204
- * - Standard DingTalk: public_dingtalk
202
+ * - public_dingtalk: standard DingTalk
205
203
  *
206
- * - Exclusive DingTalk: private_dingtalk
204
+ * - private_dingtalk: exclusive DingTalk
207
205
  *
208
206
  * @example
209
207
  * public_dingtalk
@@ -211,7 +209,7 @@ export declare class CreateIdentityProviderRequestDingtalkAppConfig extends $dar
211
209
  dingtalkVersion?: string;
212
210
  /**
213
211
  * @remarks
214
- * DingTalk application EncryptKey.
212
+ * The EncryptKey of the DingTalk application.
215
213
  *
216
214
  * @example
217
215
  * VkdWw91mdkrjVFr3ObNwefap21dfxxxx
@@ -219,7 +217,7 @@ export declare class CreateIdentityProviderRequestDingtalkAppConfig extends $dar
219
217
  encryptKey?: string;
220
218
  /**
221
219
  * @remarks
222
- * DingTalk application VerificationToken.
220
+ * The VerificationToken of the DingTalk application.
223
221
  *
224
222
  * @example
225
223
  * myDingApp_VerifyTokenxxxxx
@@ -239,7 +237,7 @@ export declare class CreateIdentityProviderRequestDingtalkAppConfig extends $dar
239
237
  export declare class CreateIdentityProviderRequestLarkConfig extends $dara.Model {
240
238
  /**
241
239
  * @remarks
242
- * Lark application AppId.
240
+ * The Lark application AppId.
243
241
  *
244
242
  * @example
245
243
  * cli_xxxx
@@ -247,7 +245,7 @@ export declare class CreateIdentityProviderRequestLarkConfig extends $dara.Model
247
245
  appId?: string;
248
246
  /**
249
247
  * @remarks
250
- * Lark application Secret.
248
+ * The Lark application Secret.
251
249
  *
252
250
  * @example
253
251
  * KiiLzh5Dueh4wbLxxxx
@@ -255,7 +253,7 @@ export declare class CreateIdentityProviderRequestLarkConfig extends $dara.Model
255
253
  appSecret?: string;
256
254
  /**
257
255
  * @remarks
258
- * EncryptKey of the Lark self-built application.
256
+ * The encryptKey of the Lark custom application.
259
257
  *
260
258
  * @example
261
259
  * VkdWw91mdkrjVFr3ObNwefap21dfxxxx
@@ -263,7 +261,7 @@ export declare class CreateIdentityProviderRequestLarkConfig extends $dara.Model
263
261
  encryptKey?: string;
264
262
  /**
265
263
  * @remarks
266
- * Lark enterprise code.
264
+ * The Lark enterprise number.
267
265
  *
268
266
  * @example
269
267
  * FSX123111xxx
@@ -271,7 +269,7 @@ export declare class CreateIdentityProviderRequestLarkConfig extends $dara.Model
271
269
  enterpriseNumber?: string;
272
270
  /**
273
271
  * @remarks
274
- * VerificationToken of the Lark self-built application.
272
+ * The verificationToken of the Lark custom application.
275
273
  *
276
274
  * @example
277
275
  * feishuVerifyTokenxxxxx
@@ -291,7 +289,7 @@ export declare class CreateIdentityProviderRequestLarkConfig extends $dara.Model
291
289
  export declare class CreateIdentityProviderRequestLdapConfig extends $dara.Model {
292
290
  /**
293
291
  * @remarks
294
- * Administrator password.
292
+ * The administrator password.
295
293
  *
296
294
  * @example
297
295
  * xxxx
@@ -299,7 +297,7 @@ export declare class CreateIdentityProviderRequestLdapConfig extends $dara.Model
299
297
  administratorPassword?: string;
300
298
  /**
301
299
  * @remarks
302
- * Administrator account.
300
+ * The administrator account.
303
301
  *
304
302
  * @example
305
303
  * DC=example,DC=com
@@ -307,11 +305,11 @@ export declare class CreateIdentityProviderRequestLdapConfig extends $dara.Model
307
305
  administratorUsername?: string;
308
306
  /**
309
307
  * @remarks
310
- * Whether to verify certificate fingerprint. Valid values:
308
+ * Specifies whether to verify the certificate fingerprint. Valid values:
311
309
  *
312
- * - Disabled: disabled
310
+ * - disabled: Disabled.
313
311
  *
314
- * - Enabled: enabled
312
+ * - enabled: Enabled.
315
313
  *
316
314
  * @example
317
315
  * enabled
@@ -319,12 +317,12 @@ export declare class CreateIdentityProviderRequestLdapConfig extends $dara.Model
319
317
  certificateFingerprintStatus?: string;
320
318
  /**
321
319
  * @remarks
322
- * Certificate fingerprint list.
320
+ * The list of certificate fingerprints.
323
321
  */
324
322
  certificateFingerprints?: string[];
325
323
  /**
326
324
  * @remarks
327
- * Group member attribute.
325
+ * The group member attribute name.
328
326
  *
329
327
  * @example
330
328
  * member
@@ -332,7 +330,7 @@ export declare class CreateIdentityProviderRequestLdapConfig extends $dara.Model
332
330
  groupMemberAttributeName?: string;
333
331
  /**
334
332
  * @remarks
335
- * Group ObjectClass.
333
+ * The group ObjectClass.
336
334
  *
337
335
  * @example
338
336
  * group
@@ -340,7 +338,7 @@ export declare class CreateIdentityProviderRequestLdapConfig extends $dara.Model
340
338
  groupObjectClass?: string;
341
339
  /**
342
340
  * @remarks
343
- * Group custom filter.
341
+ * The custom filter for groups.
344
342
  *
345
343
  * @example
346
344
  * (|(cn=test)(group=test@test.com))
@@ -348,7 +346,7 @@ export declare class CreateIdentityProviderRequestLdapConfig extends $dara.Model
348
346
  groupObjectClassCustomFilter?: string;
349
347
  /**
350
348
  * @remarks
351
- * Communication protocol.
349
+ * The communication protocol.
352
350
  *
353
351
  * @example
354
352
  * ldap
@@ -356,7 +354,7 @@ export declare class CreateIdentityProviderRequestLdapConfig extends $dara.Model
356
354
  ldapProtocol?: string;
357
355
  /**
358
356
  * @remarks
359
- * AD/LDAP server address.
357
+ * The AD/LDAP server address.
360
358
  *
361
359
  * @example
362
360
  * 123.xx.xx.89
@@ -364,7 +362,7 @@ export declare class CreateIdentityProviderRequestLdapConfig extends $dara.Model
364
362
  ldapServerHost?: string;
365
363
  /**
366
364
  * @remarks
367
- * AD/LDAP port number.
365
+ * The AD/LDAP port number.
368
366
  *
369
367
  * @example
370
368
  * 636
@@ -372,7 +370,7 @@ export declare class CreateIdentityProviderRequestLdapConfig extends $dara.Model
372
370
  ldapServerPort?: number;
373
371
  /**
374
372
  * @remarks
375
- * Organization ObjectClass.
373
+ * The organization ObjectClass.
376
374
  *
377
375
  * @example
378
376
  * organizationUnit,top
@@ -380,7 +378,7 @@ export declare class CreateIdentityProviderRequestLdapConfig extends $dara.Model
380
378
  organizationUnitObjectClass?: string;
381
379
  /**
382
380
  * @remarks
383
- * Organization RDN.
381
+ * The organization RDN.
384
382
  *
385
383
  * @example
386
384
  * ou
@@ -388,7 +386,7 @@ export declare class CreateIdentityProviderRequestLdapConfig extends $dara.Model
388
386
  organizationalUnitRdn?: string;
389
387
  /**
390
388
  * @remarks
391
- * Password synchronization switch.
389
+ * The password synchronization switch.
392
390
  *
393
391
  * @example
394
392
  * enabled
@@ -396,10 +394,10 @@ export declare class CreateIdentityProviderRequestLdapConfig extends $dara.Model
396
394
  passwordSyncStatus?: string;
397
395
  /**
398
396
  * @remarks
399
- * Whether startTLS is enabled. Valid values:
400
- * - Disabled: disabled
397
+ * Specifies whether StartTLS is enabled. Valid values:
398
+ * - disabled: Disabled.
401
399
  *
402
- * - Enabled: enabled
400
+ * - enabled: Enabled.
403
401
  *
404
402
  * @example
405
403
  * enabled
@@ -407,7 +405,7 @@ export declare class CreateIdentityProviderRequestLdapConfig extends $dara.Model
407
405
  startTlsStatus?: string;
408
406
  /**
409
407
  * @remarks
410
- * User login identifier.
408
+ * The user logon identifier.
411
409
  *
412
410
  * @example
413
411
  * userPrincipalName, mail
@@ -415,7 +413,7 @@ export declare class CreateIdentityProviderRequestLdapConfig extends $dara.Model
415
413
  userLoginIdentifier?: string;
416
414
  /**
417
415
  * @remarks
418
- * User ObjectClass.
416
+ * The user ObjectClass.
419
417
  *
420
418
  * @example
421
419
  * person,user
@@ -423,7 +421,7 @@ export declare class CreateIdentityProviderRequestLdapConfig extends $dara.Model
423
421
  userObjectClass?: string;
424
422
  /**
425
423
  * @remarks
426
- * User custom filter.
424
+ * The custom filter for users.
427
425
  *
428
426
  * @example
429
427
  * (|(cn=test)(mail=test@test.com))
@@ -431,7 +429,7 @@ export declare class CreateIdentityProviderRequestLdapConfig extends $dara.Model
431
429
  userObjectClassCustomFilter?: string;
432
430
  /**
433
431
  * @remarks
434
- * User RDN.
432
+ * The user RDN.
435
433
  *
436
434
  * @example
437
435
  * cn
@@ -451,7 +449,7 @@ export declare class CreateIdentityProviderRequestLdapConfig extends $dara.Model
451
449
  export declare class CreateIdentityProviderRequestOidcConfigAuthnParam extends $dara.Model {
452
450
  /**
453
451
  * @remarks
454
- * OIDC authentication method. Valid values:
452
+ * The OIDC authentication method. Valid values:
455
453
  *
456
454
  * - client_secret_basic
457
455
  *
@@ -463,7 +461,7 @@ export declare class CreateIdentityProviderRequestOidcConfigAuthnParam extends $
463
461
  authnMethod?: string;
464
462
  /**
465
463
  * @remarks
466
- * OIDC client ID.
464
+ * The OIDC client ID.
467
465
  *
468
466
  * @example
469
467
  * mkv7rgt4d7i4u7zqtzev2mxxxx
@@ -471,7 +469,7 @@ export declare class CreateIdentityProviderRequestOidcConfigAuthnParam extends $
471
469
  clientId?: string;
472
470
  /**
473
471
  * @remarks
474
- * OIDC client secret.
472
+ * The OIDC client secret.
475
473
  *
476
474
  * @example
477
475
  * CSEHDddddddxxxxuxkJEHPveWRXBGqVqRsxxxx
@@ -491,7 +489,7 @@ export declare class CreateIdentityProviderRequestOidcConfigAuthnParam extends $
491
489
  export declare class CreateIdentityProviderRequestOidcConfigEndpointConfig extends $dara.Model {
492
490
  /**
493
491
  * @remarks
494
- * OIDC authorization endpoint.
492
+ * The OIDC authorization endpoint.
495
493
  *
496
494
  * @example
497
495
  * https://example.com/auth/authorize
@@ -499,7 +497,7 @@ export declare class CreateIdentityProviderRequestOidcConfigEndpointConfig exten
499
497
  authorizationEndpoint?: string;
500
498
  /**
501
499
  * @remarks
502
- * OIDC issuer.
500
+ * The OIDC issuer information.
503
501
  *
504
502
  * @example
505
503
  * https://example.com/auth
@@ -507,7 +505,7 @@ export declare class CreateIdentityProviderRequestOidcConfigEndpointConfig exten
507
505
  issuer?: string;
508
506
  /**
509
507
  * @remarks
510
- * OIDC JWKS URI.
508
+ * The OIDC JWKS URI.
511
509
  *
512
510
  * @example
513
511
  * https://example.com/auth/jwks
@@ -515,7 +513,7 @@ export declare class CreateIdentityProviderRequestOidcConfigEndpointConfig exten
515
513
  jwksUri?: string;
516
514
  /**
517
515
  * @remarks
518
- * OIDC token endpoint.
516
+ * The OIDC token endpoint.
519
517
  *
520
518
  * @example
521
519
  * https://example.com/auth/token
@@ -523,7 +521,7 @@ export declare class CreateIdentityProviderRequestOidcConfigEndpointConfig exten
523
521
  tokenEndpoint?: string;
524
522
  /**
525
523
  * @remarks
526
- * OIDC UserInfo endpoint.
524
+ * The OIDC UserInfo endpoint.
527
525
  *
528
526
  * @example
529
527
  * https://example.com/auth/userinfo
@@ -543,17 +541,17 @@ export declare class CreateIdentityProviderRequestOidcConfigEndpointConfig exten
543
541
  export declare class CreateIdentityProviderRequestOidcConfig extends $dara.Model {
544
542
  /**
545
543
  * @remarks
546
- * OIDC client authentication configuration.
544
+ * The OIDC client authentication configuration.
547
545
  */
548
546
  authnParam?: CreateIdentityProviderRequestOidcConfigAuthnParam;
549
547
  /**
550
548
  * @remarks
551
- * OIDC endpoint configuration.
549
+ * The OIDC endpoint configuration.
552
550
  */
553
551
  endpointConfig?: CreateIdentityProviderRequestOidcConfigEndpointConfig;
554
552
  /**
555
553
  * @remarks
556
- * OIDC grant scopes.
554
+ * The collection of OIDC grant scopes.
557
555
  *
558
556
  * @example
559
557
  * openid
@@ -561,7 +559,7 @@ export declare class CreateIdentityProviderRequestOidcConfig extends $dara.Model
561
559
  grantScopes?: string[];
562
560
  /**
563
561
  * @remarks
564
- * OIDC grant type.
562
+ * The OIDC grant type.
565
563
  *
566
564
  * @example
567
565
  * authorization_code
@@ -569,11 +567,11 @@ export declare class CreateIdentityProviderRequestOidcConfig extends $dara.Model
569
567
  grantType?: string;
570
568
  /**
571
569
  * @remarks
572
- * PKCE algorithm. Valid values:
570
+ * The PKCE algorithm. Valid values:
573
571
  *
574
572
  * - SHA256: S256
575
573
  *
576
- * - Plain text: plain
574
+ * - plaintext: plain
577
575
  *
578
576
  * @example
579
577
  * S256
@@ -581,7 +579,7 @@ export declare class CreateIdentityProviderRequestOidcConfig extends $dara.Model
581
579
  pkceChallengeMethod?: string;
582
580
  /**
583
581
  * @remarks
584
- * Whether to use PKCE in Authorization Code grant mode.
582
+ * Specifies whether to use PKCE in AuthorizationCode grant mode.
585
583
  *
586
584
  * @example
587
585
  * true
@@ -600,6 +598,9 @@ export declare class CreateIdentityProviderRequestOidcConfig extends $dara.Model
600
598
  }
601
599
  export declare class CreateIdentityProviderRequestSamlConfigCertificates extends $dara.Model {
602
600
  /**
601
+ * @remarks
602
+ * The certificate content.
603
+ *
603
604
  * @example
604
605
  * -----BEGIN CERTIFICATE----- MIIC0jCCAbqgAwIBAgIQXXXXX-----END CERTIFICATE-----
605
606
  */
@@ -617,32 +618,59 @@ export declare class CreateIdentityProviderRequestSamlConfigCertificates extends
617
618
  }
618
619
  export declare class CreateIdentityProviderRequestSamlConfig extends $dara.Model {
619
620
  /**
621
+ * @remarks
622
+ * The binding type.
623
+ *
620
624
  * @example
621
625
  * HTTP-REDIRECT
622
626
  */
623
627
  bindingMethod?: string;
628
+ /**
629
+ * @remarks
630
+ * The list of IdP certificates.
631
+ */
624
632
  certificates?: CreateIdentityProviderRequestSamlConfigCertificates[];
625
633
  /**
634
+ * @remarks
635
+ * The EntityId of the IdP.
636
+ *
626
637
  * @example
627
638
  * http://dc.test.com/adfs/services/trust
628
639
  */
629
640
  idPEntityId?: string;
630
641
  /**
642
+ * @remarks
643
+ * The logon URL of the IdP.
644
+ *
631
645
  * @example
632
646
  * https://dc.test.com/adfs/ls/
633
647
  */
634
648
  idPSsoUrl?: string;
635
649
  /**
650
+ * @remarks
651
+ * The maximum clock skew.
652
+ *
636
653
  * @example
637
654
  * 180
638
655
  */
639
656
  maxClockSkew?: number;
640
657
  /**
658
+ * @remarks
659
+ * Specifies whether requests must be signed.
660
+ *
641
661
  * @example
642
662
  * true
643
663
  */
644
664
  requireRequestSigned?: boolean;
665
+ /**
666
+ * @remarks
667
+ * Specifies whether the external IdP must sign assertions.
668
+ */
645
669
  wantAssertionsSigned?: boolean;
670
+ /**
671
+ * @remarks
672
+ * Specifies whether the external IdP must sign responses.
673
+ */
646
674
  wantResponseSigned?: boolean;
647
675
  static names(): {
648
676
  [key: string]: string;
@@ -658,7 +686,7 @@ export declare class CreateIdentityProviderRequestSamlConfig extends $dara.Model
658
686
  export declare class CreateIdentityProviderRequestUdPullConfigPeriodicSyncConfig extends $dara.Model {
659
687
  /**
660
688
  * @remarks
661
- * Cron expression.
689
+ * The cron expression.
662
690
  *
663
691
  * @example
664
692
  * 0 45 1 * * ?
@@ -666,12 +694,12 @@ export declare class CreateIdentityProviderRequestUdPullConfigPeriodicSyncConfig
666
694
  periodicSyncCron?: string;
667
695
  /**
668
696
  * @remarks
669
- * Set of execution time points.
697
+ * The collection of execution time points.
670
698
  */
671
699
  periodicSyncTimes?: number[];
672
700
  /**
673
701
  * @remarks
674
- * Type.
702
+ * The type.
675
703
  *
676
704
  * @example
677
705
  * cron
@@ -691,12 +719,12 @@ export declare class CreateIdentityProviderRequestUdPullConfigPeriodicSyncConfig
691
719
  export declare class CreateIdentityProviderRequestUdPullConfigUdSyncScopeConfig extends $dara.Model {
692
720
  /**
693
721
  * @remarks
694
- * Source synchronization node list.
722
+ * The list of source nodes for synchronization.
695
723
  */
696
724
  sourceScopes?: string[];
697
725
  /**
698
726
  * @remarks
699
- * Target synchronization node. Enter the IDaaS organization ID.
727
+ * The target node for synchronization. Set this parameter to an IDaaS organization ID.
700
728
  *
701
729
  * @example
702
730
  * ou_lyhyy6p7yf7mdrdiq5xxxx
@@ -716,11 +744,10 @@ export declare class CreateIdentityProviderRequestUdPullConfigUdSyncScopeConfig
716
744
  export declare class CreateIdentityProviderRequestUdPullConfig extends $dara.Model {
717
745
  /**
718
746
  * @remarks
719
- * Whether group synchronization is supported. Default: disabled. Valid values:
747
+ * Specifies whether group synchronization is supported. Default value: disabled. Valid values:
720
748
  *
721
- * - Disabled: disabled
722
- *
723
- * - Enabled: enabled
749
+ * - disabled: Disabled.
750
+ * - enabled: Enabled.
724
751
  *
725
752
  * @example
726
753
  * disabled
@@ -728,11 +755,10 @@ export declare class CreateIdentityProviderRequestUdPullConfig extends $dara.Mod
728
755
  groupSyncStatus?: string;
729
756
  /**
730
757
  * @remarks
731
- * Incremental callback status. Specifies whether to process incremental callback data from the IdP. Valid values:
732
- *
733
- * - Disabled: disabled
758
+ * Specifies whether to process incremental callback data from the IdP. Valid values:
734
759
  *
735
- * - Enabled: enabled
760
+ * - disabled: Disabled.
761
+ * - enabled: Enabled.
736
762
  *
737
763
  * @example
738
764
  * disabled
@@ -740,15 +766,15 @@ export declare class CreateIdentityProviderRequestUdPullConfig extends $dara.Mod
740
766
  incrementalCallbackStatus?: string;
741
767
  /**
742
768
  * @remarks
743
- * Periodic verification configuration.
769
+ * The periodic verification configuration.
744
770
  */
745
771
  periodicSyncConfig?: CreateIdentityProviderRequestUdPullConfigPeriodicSyncConfig;
746
772
  /**
747
773
  * @remarks
748
- * Periodic verification status. Specifies whether to periodically verify data differences between EIAM and the identity provider. Valid values:
749
- * - Disabled: disabled
774
+ * Specifies whether to periodically verify data differences between EIAM and the identity provider. Valid values:
750
775
  *
751
- * - Enabled: enabled
776
+ * - disabled: Disabled.
777
+ * - enabled: Enabled.
752
778
  *
753
779
  * @example
754
780
  * disabled
@@ -756,7 +782,7 @@ export declare class CreateIdentityProviderRequestUdPullConfig extends $dara.Mod
756
782
  periodicSyncStatus?: string;
757
783
  /**
758
784
  * @remarks
759
- * Synchronization scope configuration.
785
+ * The synchronization scope configuration.
760
786
  */
761
787
  udSyncScopeConfig?: CreateIdentityProviderRequestUdPullConfigUdSyncScopeConfig;
762
788
  static names(): {
@@ -773,7 +799,7 @@ export declare class CreateIdentityProviderRequestUdPullConfig extends $dara.Mod
773
799
  export declare class CreateIdentityProviderRequestUdPushConfigPeriodicSyncConfig extends $dara.Model {
774
800
  /**
775
801
  * @remarks
776
- * Cron expression.
802
+ * The cron expression.
777
803
  *
778
804
  * @example
779
805
  * 0 45 1 * * ?
@@ -781,12 +807,12 @@ export declare class CreateIdentityProviderRequestUdPushConfigPeriodicSyncConfig
781
807
  periodicSyncCron?: string;
782
808
  /**
783
809
  * @remarks
784
- * Set of execution time points.
810
+ * The collection of execution time points.
785
811
  */
786
812
  periodicSyncTimes?: number[];
787
813
  /**
788
814
  * @remarks
789
- * Type.
815
+ * The type.
790
816
  *
791
817
  * @example
792
818
  * cron
@@ -806,12 +832,12 @@ export declare class CreateIdentityProviderRequestUdPushConfigPeriodicSyncConfig
806
832
  export declare class CreateIdentityProviderRequestUdPushConfigUdSyncScopeConfigs extends $dara.Model {
807
833
  /**
808
834
  * @remarks
809
- * Source synchronization node list.
835
+ * The list of source nodes for synchronization.
810
836
  */
811
837
  sourceScopes?: string[];
812
838
  /**
813
839
  * @remarks
814
- * Target synchronization node.
840
+ * The target node for synchronization.
815
841
  *
816
842
  * @example
817
843
  * ou_lyhyy6p7yf7mdrdiq5xxxx
@@ -831,7 +857,7 @@ export declare class CreateIdentityProviderRequestUdPushConfigUdSyncScopeConfigs
831
857
  export declare class CreateIdentityProviderRequestUdPushConfig extends $dara.Model {
832
858
  /**
833
859
  * @remarks
834
- * Incremental callback status. This field is not yet enabled. Please ignore it.
860
+ * The incremental callback status. This field is not yet available. Ignore this field.
835
861
  *
836
862
  * @example
837
863
  * disabled
@@ -839,12 +865,12 @@ export declare class CreateIdentityProviderRequestUdPushConfig extends $dara.Mod
839
865
  incrementalCallbackStatus?: string;
840
866
  /**
841
867
  * @remarks
842
- * Periodic verification configuration.
868
+ * The periodic verification configuration.
843
869
  */
844
870
  periodicSyncConfig?: CreateIdentityProviderRequestUdPushConfigPeriodicSyncConfig;
845
871
  /**
846
872
  * @remarks
847
- * Periodic verification status. This field is not yet enabled. Please ignore it.
873
+ * The periodic verification status. This field is not yet available. Ignore this field.
848
874
  *
849
875
  * @example
850
876
  * disabled
@@ -852,7 +878,7 @@ export declare class CreateIdentityProviderRequestUdPushConfig extends $dara.Mod
852
878
  periodicSyncStatus?: string;
853
879
  /**
854
880
  * @remarks
855
- * Outbound synchronization configuration.
881
+ * The outbound synchronization configuration.
856
882
  */
857
883
  udSyncScopeConfigs?: CreateIdentityProviderRequestUdPushConfigUdSyncScopeConfigs[];
858
884
  static names(): {
@@ -869,7 +895,7 @@ export declare class CreateIdentityProviderRequestUdPushConfig extends $dara.Mod
869
895
  export declare class CreateIdentityProviderRequestWeComConfig extends $dara.Model {
870
896
  /**
871
897
  * @remarks
872
- * AgentId of the WeCom self-built application.
898
+ * The agentId of the WeCom self-built application.
873
899
  *
874
900
  * @example
875
901
  * 278231941749863339
@@ -877,7 +903,7 @@ export declare class CreateIdentityProviderRequestWeComConfig extends $dara.Mode
877
903
  agentId?: string;
878
904
  /**
879
905
  * @remarks
880
- * Authorization callback domain.
906
+ * The authorization callback domain.
881
907
  *
882
908
  * @example
883
909
  * https://xxx.aliyunidaas.com/xxxx
@@ -885,7 +911,15 @@ export declare class CreateIdentityProviderRequestWeComConfig extends $dara.Mode
885
911
  authorizeCallbackDomain?: string;
886
912
  /**
887
913
  * @remarks
888
- * CorpId of the WeCom self-built application.
914
+ * The WeCom address book secret.
915
+ *
916
+ * @example
917
+ * mPLLiWv-_9wittxxxEJCpk1xkF5hOgBzpRt4kBkxxx
918
+ */
919
+ contactSecret?: string;
920
+ /**
921
+ * @remarks
922
+ * The corpId of the WeCom self-built application.
889
923
  *
890
924
  * @example
891
925
  * 3756043633237690761
@@ -893,7 +927,7 @@ export declare class CreateIdentityProviderRequestWeComConfig extends $dara.Mode
893
927
  corpId?: string;
894
928
  /**
895
929
  * @remarks
896
- * CorpSecret of the WeCom self-built application.
930
+ * The corpSecret of the WeCom self-built application.
897
931
  *
898
932
  * @example
899
933
  * CSEHDddddddxxxxuxkJEHPveWRXBGqVqRsxxxx
@@ -901,7 +935,7 @@ export declare class CreateIdentityProviderRequestWeComConfig extends $dara.Mode
901
935
  corpSecret?: string;
902
936
  /**
903
937
  * @remarks
904
- * Trusted domain.
938
+ * The trusted domain.
905
939
  *
906
940
  * @example
907
941
  * https://xxx.aliyunidaas.com/
@@ -921,27 +955,27 @@ export declare class CreateIdentityProviderRequestWeComConfig extends $dara.Mode
921
955
  export declare class CreateIdentityProviderRequest extends $dara.Model {
922
956
  /**
923
957
  * @remarks
924
- * Authentication configuration.
958
+ * The authentication configuration.
925
959
  */
926
960
  authnConfig?: CreateIdentityProviderRequestAuthnConfig;
927
961
  /**
928
962
  * @remarks
929
- * Automatic account creation rule configuration.
963
+ * The automatic creation rule configuration for accounts.
930
964
  */
931
965
  autoCreateUserConfig?: CreateIdentityProviderRequestAutoCreateUserConfig;
932
966
  /**
933
967
  * @remarks
934
- * Automatic account update rule configuration.
968
+ * The automatic account update rule configuration.
935
969
  */
936
970
  autoUpdateUserConfig?: CreateIdentityProviderRequestAutoUpdateUserConfig;
937
971
  /**
938
972
  * @remarks
939
- * OIDC identity provider account binding rule configuration.
973
+ * The account binding rule configuration for the OIDC identity provider.
940
974
  */
941
975
  bindingConfig?: CreateIdentityProviderRequestBindingConfig;
942
976
  /**
943
977
  * @remarks
944
- * Client token used to ensure the idempotency of the request. Generate a parameter value from your client to ensure the value is unique across different requests. ClientToken only supports 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 be different for each API request.
978
+ * 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.
945
979
  *
946
980
  * @example
947
981
  * clientToken_20250704_Axxxxx
@@ -949,12 +983,12 @@ export declare class CreateIdentityProviderRequest extends $dara.Model {
949
983
  clientToken?: string;
950
984
  /**
951
985
  * @remarks
952
- * DingTalk configuration.
986
+ * The DingTalk configuration.
953
987
  */
954
988
  dingtalkAppConfig?: CreateIdentityProviderRequestDingtalkAppConfig;
955
989
  /**
956
990
  * @remarks
957
- * Identity provider name.
991
+ * The name of the identity provider.
958
992
  *
959
993
  * This parameter is required.
960
994
  *
@@ -964,23 +998,16 @@ export declare class CreateIdentityProviderRequest extends $dara.Model {
964
998
  identityProviderName?: string;
965
999
  /**
966
1000
  * @remarks
967
- * Identity provider synchronization type.
1001
+ * The synchronization type of the identity provider. Valid values:
968
1002
  *
969
- * - Inbound DingTalk: urn:alibaba:idaas:idp:alibaba:dingtalk:pull
970
- *
971
- * - Outbound DingTalk: urn:alibaba:idaas:idp:alibaba:dingtalk:push
972
- *
973
- * - Inbound WeCom: urn:alibaba:idaas:idp:tencent:wecom:pull
974
- *
975
- * - Inbound Lark: urn:alibaba:idaas:idp:bytedance:lark:pull
976
- *
977
- * - Inbound AD: urn:alibaba:idaas:idp:microsoft:ad:pull
978
- *
979
- * - Inbound LDAP: urn:alibaba:idaas:idp:unknown:ldap:pull
980
- *
981
- * - Standard OIDC: urn:alibaba:idaas:idp:standard:oidc
982
- *
983
- * - SASE Custom OIDC: urn:alibaba:idaas:idp:alibaba:sase
1003
+ * - urn:alibaba:idaas:idp:alibaba:dingtalk:pull: inbound DingTalk
1004
+ * - urn:alibaba:idaas:idp:alibaba:dingtalk:push: outbound DingTalk
1005
+ * - urn:alibaba:idaas:idp:tencent:wecom:pull: inbound WeCom
1006
+ * - urn:alibaba:idaas:idp:bytedance:lark:pull: inbound Lark
1007
+ * - urn:alibaba:idaas:idp:microsoft:ad:pull: inbound AD
1008
+ * - urn:alibaba:idaas:idp:unknown:ldap:pull: inbound LDAP
1009
+ * - urn:alibaba:idaas:idp:standard:oidc: standard OIDC
1010
+ * - urn:alibaba:idaas:idp:alibaba:sase: SASE custom OIDC
984
1011
  *
985
1012
  * This parameter is required.
986
1013
  *
@@ -990,7 +1017,7 @@ export declare class CreateIdentityProviderRequest extends $dara.Model {
990
1017
  identityProviderType?: string;
991
1018
  /**
992
1019
  * @remarks
993
- * Instance ID.
1020
+ * The instance ID.
994
1021
  *
995
1022
  * This parameter is required.
996
1023
  *
@@ -1000,17 +1027,17 @@ export declare class CreateIdentityProviderRequest extends $dara.Model {
1000
1027
  instanceId?: string;
1001
1028
  /**
1002
1029
  * @remarks
1003
- * Lark configuration.
1030
+ * The Lark configuration information.
1004
1031
  */
1005
1032
  larkConfig?: CreateIdentityProviderRequestLarkConfig;
1006
1033
  /**
1007
1034
  * @remarks
1008
- * AD/LDAP configuration.
1035
+ * The AD/LDAP configuration information.
1009
1036
  */
1010
1037
  ldapConfig?: CreateIdentityProviderRequestLdapConfig;
1011
1038
  /**
1012
1039
  * @remarks
1013
- * Application logo URL.
1040
+ * The URL of the application logo.
1014
1041
  *
1015
1042
  * @example
1016
1043
  * xxxx-image://xxxx_23aqr2ye554csg33dqpch5eu3q/tmp/d17d9adc-a943-45e7-ba0c-2838dddea678
@@ -1018,7 +1045,7 @@ export declare class CreateIdentityProviderRequest extends $dara.Model {
1018
1045
  logoUrl?: string;
1019
1046
  /**
1020
1047
  * @remarks
1021
- * Network access endpoint ID.
1048
+ * The network access endpoint ID.
1022
1049
  *
1023
1050
  * @example
1024
1051
  * nae_examplexxxx
@@ -1026,23 +1053,27 @@ export declare class CreateIdentityProviderRequest extends $dara.Model {
1026
1053
  networkAccessEndpointId?: string;
1027
1054
  /**
1028
1055
  * @remarks
1029
- * OIDC IdP configuration.
1056
+ * The OIDC IdP configuration.
1030
1057
  */
1031
1058
  oidcConfig?: CreateIdentityProviderRequestOidcConfig;
1059
+ /**
1060
+ * @remarks
1061
+ * The SAML IdP configuration.
1062
+ */
1032
1063
  samlConfig?: CreateIdentityProviderRequestSamlConfig;
1033
1064
  /**
1034
1065
  * @remarks
1035
- * Inbound synchronization configuration.
1066
+ * The inbound synchronization configuration.
1036
1067
  */
1037
1068
  udPullConfig?: CreateIdentityProviderRequestUdPullConfig;
1038
1069
  /**
1039
1070
  * @remarks
1040
- * Outbound synchronization configuration.
1071
+ * The outbound synchronization configuration.
1041
1072
  */
1042
1073
  udPushConfig?: CreateIdentityProviderRequestUdPushConfig;
1043
1074
  /**
1044
1075
  * @remarks
1045
- * WeCom configuration.
1076
+ * The WeCom configuration information.
1046
1077
  */
1047
1078
  weComConfig?: CreateIdentityProviderRequestWeComConfig;
1048
1079
  static names(): {