@pulumi/okta 6.2.0-alpha.1765348084 → 6.2.0-alpha.1765479032

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 (84) hide show
  1. package/apiServiceIntegration.d.ts +110 -0
  2. package/apiServiceIntegration.js +96 -0
  3. package/apiServiceIntegration.js.map +1 -0
  4. package/apiToken.d.ts +141 -0
  5. package/apiToken.js +93 -0
  6. package/apiToken.js.map +1 -0
  7. package/app/connection.d.ts +164 -0
  8. package/app/connection.js +136 -0
  9. package/app/connection.js.map +1 -0
  10. package/app/features.d.ts +121 -0
  11. package/app/features.js +77 -0
  12. package/app/features.js.map +1 -0
  13. package/app/getConnection.d.ts +106 -0
  14. package/app/getConnection.js +62 -0
  15. package/app/getConnection.js.map +1 -0
  16. package/app/getFeatures.d.ts +156 -0
  17. package/app/getFeatures.js +116 -0
  18. package/app/getFeatures.js.map +1 -0
  19. package/app/getToken.d.ts +98 -0
  20. package/app/getToken.js +62 -0
  21. package/app/getToken.js.map +1 -0
  22. package/app/index.d.ts +18 -0
  23. package/app/index.js +25 -1
  24. package/app/index.js.map +1 -1
  25. package/app/oauth.d.ts +51 -0
  26. package/app/oauth.js +6 -0
  27. package/app/oauth.js.map +1 -1
  28. package/app/token.d.ts +108 -0
  29. package/app/token.js +93 -0
  30. package/app/token.js.map +1 -0
  31. package/appSignonPolicyRule.d.ts +1 -7
  32. package/appSignonPolicyRule.js +1 -7
  33. package/appSignonPolicyRule.js.map +1 -1
  34. package/auth/getServerClients.d.ts +114 -0
  35. package/auth/getServerClients.js +58 -0
  36. package/auth/getServerClients.js.map +1 -0
  37. package/auth/getServerKeys.d.ts +113 -0
  38. package/auth/getServerKeys.js +70 -0
  39. package/auth/getServerKeys.js.map +1 -0
  40. package/auth/index.d.ts +6 -0
  41. package/auth/index.js +7 -1
  42. package/auth/index.js.map +1 -1
  43. package/device.d.ts +80 -0
  44. package/device.js +69 -0
  45. package/device.js.map +1 -0
  46. package/getApiServiceIntegration.d.ts +85 -0
  47. package/getApiServiceIntegration.js +78 -0
  48. package/getApiServiceIntegration.js.map +1 -0
  49. package/getApiToken.d.ts +88 -0
  50. package/getApiToken.js +52 -0
  51. package/getApiToken.js.map +1 -0
  52. package/getCatalogEntryUserAccessRequestFields.d.ts +42 -0
  53. package/getCatalogEntryUserAccessRequestFields.js +24 -0
  54. package/getCatalogEntryUserAccessRequestFields.js.map +1 -1
  55. package/getDevice.d.ts +90 -0
  56. package/getDevice.js +54 -0
  57. package/getDevice.js.map +1 -0
  58. package/getHookKey.d.ts +77 -0
  59. package/getHookKey.js +52 -0
  60. package/getHookKey.js.map +1 -0
  61. package/getPushProvider.d.ts +118 -0
  62. package/getPushProvider.js +86 -0
  63. package/getPushProvider.js.map +1 -0
  64. package/getSecurityEventsProvider.d.ts +79 -0
  65. package/getSecurityEventsProvider.js +52 -0
  66. package/getSecurityEventsProvider.js.map +1 -0
  67. package/group/owner.d.ts +24 -0
  68. package/group/owner.js +24 -0
  69. package/group/owner.js.map +1 -1
  70. package/hookKey.d.ts +102 -0
  71. package/hookKey.js +79 -0
  72. package/hookKey.js.map +1 -0
  73. package/index.d.ts +36 -0
  74. package/index.js +52 -4
  75. package/index.js.map +1 -1
  76. package/package.json +3 -3
  77. package/pushProvider.d.ts +150 -0
  78. package/pushProvider.js +126 -0
  79. package/pushProvider.js.map +1 -0
  80. package/securityEventsProvider.d.ts +138 -0
  81. package/securityEventsProvider.js +107 -0
  82. package/securityEventsProvider.js.map +1 -0
  83. package/types/input.d.ts +906 -0
  84. package/types/output.d.ts +604 -0
package/types/output.d.ts CHANGED
@@ -1,4 +1,24 @@
1
1
  import * as outputs from "../types/output";
2
+ export interface ApiServiceIntegrationGrantedScope {
3
+ /**
4
+ * The scope of the API service integration
5
+ */
6
+ scope: string;
7
+ }
8
+ export interface ApiTokenNetwork {
9
+ /**
10
+ * The connection type of the Network Condition.
11
+ */
12
+ connection?: string;
13
+ /**
14
+ * The IP address the excluded zone.
15
+ */
16
+ excludes: string[];
17
+ /**
18
+ * The IP address the included zone.
19
+ */
20
+ includes: string[];
21
+ }
2
22
  export interface AppGroupAssignmentsGroup {
3
23
  /**
4
24
  * A group to associate with the application
@@ -502,6 +522,26 @@ export interface FeatureStage {
502
522
  state: string;
503
523
  value: string;
504
524
  }
525
+ export interface GetApiServiceIntegrationGrantedScope {
526
+ /**
527
+ * The scope of the API service integration granted.
528
+ */
529
+ scope: string;
530
+ }
531
+ export interface GetApiTokenNetwork {
532
+ /**
533
+ * The connection type of the Network Condition.
534
+ */
535
+ connection: string;
536
+ /**
537
+ * The IP address the excluded zone.
538
+ */
539
+ excludes: string[];
540
+ /**
541
+ * The IP address the included zone.
542
+ */
543
+ includes: string[];
544
+ }
505
545
  export interface GetAppsApp {
506
546
  adminNote: string;
507
547
  created: string;
@@ -934,6 +974,78 @@ export interface GetDeviceAssurancePolicyThirdPartySignalProviderDtcBrowserVersi
934
974
  export interface GetDeviceAssurancePolicyThirdPartySignalProviderDtcOsVersion {
935
975
  minimum: string;
936
976
  }
977
+ export interface GetDeviceProfile {
978
+ /**
979
+ * The disk encryption type of the device.
980
+ */
981
+ diskEncryptionType: string;
982
+ /**
983
+ * The display name of the device.
984
+ */
985
+ displayName: string;
986
+ /**
987
+ * The International Mobile Equipment Identity (IMEI) of the device.
988
+ */
989
+ imei: string;
990
+ /**
991
+ * Indicates if the device is jailbroken or rooted. Only applicable to IOS and ANDROID platforms.
992
+ */
993
+ integrityJailBreak: boolean;
994
+ /**
995
+ * The manufacturer of the device.
996
+ */
997
+ manufacturer: string;
998
+ /**
999
+ * The Mobile Equipment Identifier (MEID) of the device.
1000
+ */
1001
+ meid: string;
1002
+ /**
1003
+ * The model of the device.
1004
+ */
1005
+ model: string;
1006
+ /**
1007
+ * The OS version of the device.
1008
+ */
1009
+ osVersion: string;
1010
+ /**
1011
+ * The platform of the device.
1012
+ */
1013
+ platform: string;
1014
+ /**
1015
+ * Indicates if the device is registered at Okta.
1016
+ */
1017
+ registered: boolean;
1018
+ /**
1019
+ * Indicates if secure hardware is present on the device.
1020
+ */
1021
+ secureHardwarePresent: boolean;
1022
+ /**
1023
+ * The serial number of the device.
1024
+ */
1025
+ serialNumber: string;
1026
+ /**
1027
+ * The Security Identifier (SID) of the device.
1028
+ */
1029
+ sid: string;
1030
+ /**
1031
+ * Windows Trusted Platform Module hash value.
1032
+ */
1033
+ tpmPublicKeyHash: string;
1034
+ /**
1035
+ * MacOS Unique device identifier of the device.
1036
+ */
1037
+ udid: string;
1038
+ }
1039
+ export interface GetDeviceResourceDisplayName {
1040
+ /**
1041
+ * Indicates if the resource display name is sensitive.
1042
+ */
1043
+ sensitive: boolean;
1044
+ /**
1045
+ * The value of the resource display name.
1046
+ */
1047
+ value: string;
1048
+ }
937
1049
  export interface GetDomainDnsRecord {
938
1050
  /**
939
1051
  * TXT record expiration
@@ -1339,6 +1451,40 @@ export interface GetPrincipalEntitlementsTargetPrincipal {
1339
1451
  externalId: string;
1340
1452
  type: string;
1341
1453
  }
1454
+ export interface GetPushProviderConfiguration {
1455
+ apnsConfiguration?: outputs.GetPushProviderConfigurationApnsConfiguration;
1456
+ fcmConfiguration?: outputs.GetPushProviderConfigurationFcmConfiguration;
1457
+ }
1458
+ export interface GetPushProviderConfigurationApnsConfiguration {
1459
+ /**
1460
+ * File name for Admin Console display.
1461
+ */
1462
+ fileName: string;
1463
+ /**
1464
+ * 10-character Key ID obtained from the Apple developer account. Required for APNS provider type.
1465
+ */
1466
+ keyId: string;
1467
+ /**
1468
+ * 10-character Team ID used to develop the iOS app. Required for APNS provider type.
1469
+ */
1470
+ teamId: string;
1471
+ }
1472
+ export interface GetPushProviderConfigurationFcmConfiguration {
1473
+ /**
1474
+ * JSON containing the private service account key and service account details. Required for FCM provider type.
1475
+ */
1476
+ serviceAccountJson?: outputs.GetPushProviderConfigurationFcmConfigurationServiceAccountJson;
1477
+ }
1478
+ export interface GetPushProviderConfigurationFcmConfigurationServiceAccountJson {
1479
+ /**
1480
+ * File name for Admin Console display.
1481
+ */
1482
+ fileName: string;
1483
+ /**
1484
+ * The project ID.
1485
+ */
1486
+ projectId: string;
1487
+ }
1342
1488
  export interface GetRequestConditionAccessScopeSettings {
1343
1489
  /**
1344
1490
  * Block list of groups/entitlement bundles ids.
@@ -1564,6 +1710,20 @@ export interface GetReviewReviewerProfile {
1564
1710
  login: string;
1565
1711
  status: string;
1566
1712
  }
1713
+ export interface GetSecurityEventsProviderSettings {
1714
+ /**
1715
+ * Issuer URL.
1716
+ */
1717
+ issuer: string;
1718
+ /**
1719
+ * The public URL where the JWKS public key is uploaded.
1720
+ */
1721
+ jwksUrl: string;
1722
+ /**
1723
+ * The published well-known URL of the Security Events Provider (the SSF transmitter).
1724
+ */
1725
+ wellKnownUrl: string;
1726
+ }
1567
1727
  export interface GetTemplatesEmailTemplate {
1568
1728
  /**
1569
1729
  * Link relations for this object - JSON HAL - Discoverable resources related to the email template
@@ -1749,6 +1909,80 @@ export interface PreviewSigninPageWidgetCustomizations {
1749
1909
  usernameLabel?: string;
1750
1910
  widgetGeneration: string;
1751
1911
  }
1912
+ export interface PushProviderConfiguration {
1913
+ apnsConfiguration?: outputs.PushProviderConfigurationApnsConfiguration;
1914
+ fcmConfiguration?: outputs.PushProviderConfigurationFcmConfiguration;
1915
+ }
1916
+ export interface PushProviderConfigurationApnsConfiguration {
1917
+ /**
1918
+ * File name for Admin Console display.
1919
+ */
1920
+ fileName?: string;
1921
+ /**
1922
+ * 10-character Key ID obtained from the Apple developer account. Required for APNS provider type.
1923
+ */
1924
+ keyId?: string;
1925
+ /**
1926
+ * 10-character Team ID used to develop the iOS app. Required for APNS provider type.
1927
+ */
1928
+ teamId?: string;
1929
+ /**
1930
+ * APNs private authentication token signing key. Required for APNS provider type.
1931
+ */
1932
+ tokenSigningKey?: string;
1933
+ }
1934
+ export interface PushProviderConfigurationFcmConfiguration {
1935
+ /**
1936
+ * JSON containing the private service account key and service account details. Required for FCM provider type.
1937
+ */
1938
+ serviceAccountJson?: outputs.PushProviderConfigurationFcmConfigurationServiceAccountJson;
1939
+ }
1940
+ export interface PushProviderConfigurationFcmConfigurationServiceAccountJson {
1941
+ /**
1942
+ * The auth provider x509 cert URL.
1943
+ */
1944
+ authProviderX509CertUrl?: string;
1945
+ /**
1946
+ * The auth URI.
1947
+ */
1948
+ authUri?: string;
1949
+ /**
1950
+ * The client email.
1951
+ */
1952
+ clientEmail?: string;
1953
+ /**
1954
+ * The client ID.
1955
+ */
1956
+ clientId?: string;
1957
+ /**
1958
+ * The client x509 cert URL.
1959
+ */
1960
+ clientX509CertUrl?: string;
1961
+ /**
1962
+ * File name for Admin Console display.
1963
+ */
1964
+ fileName?: string;
1965
+ /**
1966
+ * The private key.
1967
+ */
1968
+ privateKey?: string;
1969
+ /**
1970
+ * The private key ID.
1971
+ */
1972
+ privateKeyId?: string;
1973
+ /**
1974
+ * The project ID.
1975
+ */
1976
+ projectId?: string;
1977
+ /**
1978
+ * The token URI.
1979
+ */
1980
+ tokenUri?: string;
1981
+ /**
1982
+ * The type of the service account.
1983
+ */
1984
+ type?: string;
1985
+ }
1752
1986
  export interface RateLimitingUseCaseModeOverrides {
1753
1987
  loginPage?: string;
1754
1988
  oauth2Authorize?: string;
@@ -1892,6 +2126,20 @@ export interface RequestV2RequesterFieldValue {
1892
2126
  export interface RequestV2RequesterFieldValueValue {
1893
2127
  value?: string;
1894
2128
  }
2129
+ export interface SecurityEventsProviderSettings {
2130
+ /**
2131
+ * Issuer URL. Maximum length: 700 characters. To be used along with `jwksUrl`.
2132
+ */
2133
+ issuer?: string;
2134
+ /**
2135
+ * The public URL where the JWKS public key is uploaded. Maximum length: 1000 characters. To be used along with `issuer`.
2136
+ */
2137
+ jwksUrl?: string;
2138
+ /**
2139
+ * The published well-known URL of the Security Events Provider (the SSF transmitter). Maximum length: 1000 characters.
2140
+ */
2141
+ wellKnownUrl?: string;
2142
+ }
1895
2143
  export interface TemplateSmsTranslation {
1896
2144
  /**
1897
2145
  * The language to map the template to.
@@ -1927,6 +2175,362 @@ export interface UserSchemaPropertyOneOf {
1927
2175
  title: string;
1928
2176
  }
1929
2177
  export declare namespace app {
2178
+ interface ConnectionProfile {
2179
+ /**
2180
+ * Authentication scheme. Valid values are TOKEN or OAUTH2.
2181
+ */
2182
+ authScheme: string;
2183
+ /**
2184
+ * OAuth2 client ID (required for OAUTH2 auth scheme).
2185
+ */
2186
+ clientId?: string;
2187
+ /**
2188
+ * Additional settings for OAuth2 authentication.
2189
+ */
2190
+ settings?: outputs.app.ConnectionProfileSettings;
2191
+ /**
2192
+ * Signing configuration.
2193
+ */
2194
+ signing?: outputs.app.ConnectionProfileSigning;
2195
+ /**
2196
+ * Authentication token (required for TOKEN auth scheme).
2197
+ */
2198
+ token?: string;
2199
+ }
2200
+ interface ConnectionProfileSettings {
2201
+ /**
2202
+ * Admin password for OAuth2.
2203
+ */
2204
+ adminPassword?: string;
2205
+ /**
2206
+ * Admin username for OAuth2.
2207
+ */
2208
+ adminUsername?: string;
2209
+ }
2210
+ interface ConnectionProfileSigning {
2211
+ /**
2212
+ * Token rotation mode.
2213
+ */
2214
+ rotationMode?: string;
2215
+ }
2216
+ interface FeaturesCapabilities {
2217
+ /**
2218
+ * (Optional) Block for create lifecycle settings:
2219
+ */
2220
+ create?: outputs.app.FeaturesCapabilitiesCreate;
2221
+ /**
2222
+ * (Optional) Block for import rules configuration:
2223
+ */
2224
+ importRules?: outputs.app.FeaturesCapabilitiesImportRules;
2225
+ /**
2226
+ * (Optional) Block for import settings configuration:
2227
+ */
2228
+ importSettings?: outputs.app.FeaturesCapabilitiesImportSettings;
2229
+ /**
2230
+ * (Optional) Block for update settings:
2231
+ */
2232
+ update?: outputs.app.FeaturesCapabilitiesUpdate;
2233
+ }
2234
+ interface FeaturesCapabilitiesCreate {
2235
+ /**
2236
+ * (Optional) Block for create lifecycle configuration:
2237
+ */
2238
+ lifecycleCreate?: outputs.app.FeaturesCapabilitiesCreateLifecycleCreate;
2239
+ }
2240
+ interface FeaturesCapabilitiesCreateLifecycleCreate {
2241
+ /**
2242
+ * The status of the feature. Valid values are `ENABLED` or `DISABLED`.
2243
+ */
2244
+ status?: string;
2245
+ }
2246
+ interface FeaturesCapabilitiesImportRules {
2247
+ /**
2248
+ * (Optional) Block for user matching and creation rules:
2249
+ */
2250
+ userCreateAndMatch?: outputs.app.FeaturesCapabilitiesImportRulesUserCreateAndMatch;
2251
+ }
2252
+ interface FeaturesCapabilitiesImportRulesUserCreateAndMatch {
2253
+ /**
2254
+ * (Optional) Whether to allow partial matching based on first and last names.
2255
+ */
2256
+ allowPartialMatch?: boolean;
2257
+ /**
2258
+ * (Optional) Whether imported new users are automatically activated.
2259
+ */
2260
+ autoActivateNewUsers?: boolean;
2261
+ /**
2262
+ * (Optional) Whether exact-matched users are automatically confirmed.
2263
+ */
2264
+ autoconfirmExactMatch?: boolean;
2265
+ /**
2266
+ * (Optional) Whether imported new users are automatically confirmed.
2267
+ */
2268
+ autoconfirmNewUsers?: boolean;
2269
+ /**
2270
+ * (Optional) Whether partially matched users are automatically confirmed.
2271
+ */
2272
+ autoconfirmPartialMatch?: boolean;
2273
+ /**
2274
+ * (Optional) Attribute used for exact matching (e.g., `USERNAME`, `EMAIL`).
2275
+ */
2276
+ exactMatchCriteria?: string;
2277
+ }
2278
+ interface FeaturesCapabilitiesImportSettings {
2279
+ /**
2280
+ * (Optional) Block for import schedule configuration:
2281
+ */
2282
+ schedule?: outputs.app.FeaturesCapabilitiesImportSettingsSchedule;
2283
+ /**
2284
+ * (Optional) Block for username configuration:
2285
+ */
2286
+ username?: outputs.app.FeaturesCapabilitiesImportSettingsUsername;
2287
+ }
2288
+ interface FeaturesCapabilitiesImportSettingsSchedule {
2289
+ /**
2290
+ * (Optional) Block for full import schedule:
2291
+ */
2292
+ fullImport?: outputs.app.FeaturesCapabilitiesImportSettingsScheduleFullImport;
2293
+ /**
2294
+ * (Optional) Block for incremental import schedule:
2295
+ */
2296
+ incrementalImport?: outputs.app.FeaturesCapabilitiesImportSettingsScheduleIncrementalImport;
2297
+ /**
2298
+ * The status of the feature. Valid values are `ENABLED` or `DISABLED`.
2299
+ */
2300
+ status?: string;
2301
+ }
2302
+ interface FeaturesCapabilitiesImportSettingsScheduleFullImport {
2303
+ /**
2304
+ * (Optional) UNIX cron expression for incremental import schedule.
2305
+ */
2306
+ expression?: string;
2307
+ /**
2308
+ * (Optional) IANA timezone name for the schedule.
2309
+ */
2310
+ timezone?: string;
2311
+ }
2312
+ interface FeaturesCapabilitiesImportSettingsScheduleIncrementalImport {
2313
+ /**
2314
+ * (Optional) UNIX cron expression for incremental import schedule.
2315
+ */
2316
+ expression?: string;
2317
+ /**
2318
+ * (Optional) IANA timezone name for the schedule.
2319
+ */
2320
+ timezone?: string;
2321
+ }
2322
+ interface FeaturesCapabilitiesImportSettingsUsername {
2323
+ /**
2324
+ * (Optional) Okta Expression Language statement for custom username format.
2325
+ */
2326
+ usernameExpression?: string;
2327
+ /**
2328
+ * (Optional) Format for usernames (e.g., `EMAIL`, `CUSTOM`).
2329
+ */
2330
+ usernameFormat?: string;
2331
+ }
2332
+ interface FeaturesCapabilitiesUpdate {
2333
+ /**
2334
+ * (Optional) Block for deactivation lifecycle configuration:
2335
+ */
2336
+ lifecycleDeactivate?: outputs.app.FeaturesCapabilitiesUpdateLifecycleDeactivate;
2337
+ /**
2338
+ * (Optional) Block for password synchronization settings:
2339
+ */
2340
+ password?: outputs.app.FeaturesCapabilitiesUpdatePassword;
2341
+ /**
2342
+ * (Optional) Block for profile update settings:
2343
+ */
2344
+ profile?: outputs.app.FeaturesCapabilitiesUpdateProfile;
2345
+ }
2346
+ interface FeaturesCapabilitiesUpdateLifecycleDeactivate {
2347
+ /**
2348
+ * The status of the feature. Valid values are `ENABLED` or `DISABLED`.
2349
+ */
2350
+ status?: string;
2351
+ }
2352
+ interface FeaturesCapabilitiesUpdatePassword {
2353
+ /**
2354
+ * (Optional) Determines password change behavior. Valid values are `CHANGE` or `KEEP_EXISTING`.
2355
+ */
2356
+ change?: string;
2357
+ /**
2358
+ * (Optional) Determines password source. Valid values are `OKTA` or `RANDOM`.
2359
+ */
2360
+ seed?: string;
2361
+ /**
2362
+ * The status of the feature. Valid values are `ENABLED` or `DISABLED`.
2363
+ */
2364
+ status?: string;
2365
+ }
2366
+ interface FeaturesCapabilitiesUpdateProfile {
2367
+ /**
2368
+ * The status of the feature. Valid values are `ENABLED` or `DISABLED`.
2369
+ */
2370
+ status?: string;
2371
+ }
2372
+ interface GetConnectionProfile {
2373
+ /**
2374
+ * Defines the method of authentication.
2375
+ */
2376
+ authScheme: string;
2377
+ }
2378
+ interface GetFeaturesCapabilities {
2379
+ /**
2380
+ * Block for create lifecycle settings:
2381
+ */
2382
+ create?: outputs.app.GetFeaturesCapabilitiesCreate;
2383
+ /**
2384
+ * Block for import rules configuration:
2385
+ */
2386
+ importRules?: outputs.app.GetFeaturesCapabilitiesImportRules;
2387
+ /**
2388
+ * Block for import settings configuration:
2389
+ */
2390
+ importSettings?: outputs.app.GetFeaturesCapabilitiesImportSettings;
2391
+ /**
2392
+ * Block for update settings:
2393
+ */
2394
+ update?: outputs.app.GetFeaturesCapabilitiesUpdate;
2395
+ }
2396
+ interface GetFeaturesCapabilitiesCreate {
2397
+ /**
2398
+ * Block for create lifecycle configuration:
2399
+ */
2400
+ lifecycleCreate?: outputs.app.GetFeaturesCapabilitiesCreateLifecycleCreate;
2401
+ }
2402
+ interface GetFeaturesCapabilitiesCreateLifecycleCreate {
2403
+ /**
2404
+ * (String) Status of the import schedule. Valid values are `ENABLED` or `DISABLED`.
2405
+ */
2406
+ status: string;
2407
+ }
2408
+ interface GetFeaturesCapabilitiesImportRules {
2409
+ /**
2410
+ * Block for user matching and creation rules:
2411
+ */
2412
+ userCreateAndMatch?: outputs.app.GetFeaturesCapabilitiesImportRulesUserCreateAndMatch;
2413
+ }
2414
+ interface GetFeaturesCapabilitiesImportRulesUserCreateAndMatch {
2415
+ /**
2416
+ * (Boolean) Whether to allow partial matching based on first and last names.
2417
+ */
2418
+ allowPartialMatch: boolean;
2419
+ /**
2420
+ * (Boolean) Whether imported new users are automatically activated.
2421
+ */
2422
+ autoActivateNewUsers: boolean;
2423
+ /**
2424
+ * (Boolean) Whether exact-matched users are automatically confirmed.
2425
+ */
2426
+ autoconfirmExactMatch: boolean;
2427
+ /**
2428
+ * (Boolean) Whether imported new users are automatically confirmed.
2429
+ */
2430
+ autoconfirmNewUsers: boolean;
2431
+ /**
2432
+ * (Boolean) Whether partially matched users are automatically confirmed.
2433
+ */
2434
+ autoconfirmPartialMatch: boolean;
2435
+ /**
2436
+ * (String) Attribute used for exact matching (e.g., `USERNAME`, `EMAIL`).
2437
+ */
2438
+ exactMatchCriteria: string;
2439
+ }
2440
+ interface GetFeaturesCapabilitiesImportSettings {
2441
+ /**
2442
+ * Block for import schedule configuration:
2443
+ */
2444
+ schedule?: outputs.app.GetFeaturesCapabilitiesImportSettingsSchedule;
2445
+ /**
2446
+ * Block for username configuration:
2447
+ */
2448
+ username?: outputs.app.GetFeaturesCapabilitiesImportSettingsUsername;
2449
+ }
2450
+ interface GetFeaturesCapabilitiesImportSettingsSchedule {
2451
+ /**
2452
+ * Block for full import schedule:
2453
+ */
2454
+ fullImport?: outputs.app.GetFeaturesCapabilitiesImportSettingsScheduleFullImport;
2455
+ /**
2456
+ * Block for incremental import schedule:
2457
+ */
2458
+ incrementalImport?: outputs.app.GetFeaturesCapabilitiesImportSettingsScheduleIncrementalImport;
2459
+ /**
2460
+ * (String) Status of the import schedule. Valid values are `ENABLED` or `DISABLED`.
2461
+ */
2462
+ status: string;
2463
+ }
2464
+ interface GetFeaturesCapabilitiesImportSettingsScheduleFullImport {
2465
+ /**
2466
+ * (String) UNIX cron expression for incremental import schedule.
2467
+ */
2468
+ expression: string;
2469
+ /**
2470
+ * (String) IANA timezone name for the schedule.
2471
+ */
2472
+ timezone: string;
2473
+ }
2474
+ interface GetFeaturesCapabilitiesImportSettingsScheduleIncrementalImport {
2475
+ /**
2476
+ * (String) UNIX cron expression for incremental import schedule.
2477
+ */
2478
+ expression: string;
2479
+ /**
2480
+ * (String) IANA timezone name for the schedule.
2481
+ */
2482
+ timezone: string;
2483
+ }
2484
+ interface GetFeaturesCapabilitiesImportSettingsUsername {
2485
+ /**
2486
+ * (String) Okta Expression Language statement for custom username format.
2487
+ */
2488
+ usernameExpression: string;
2489
+ /**
2490
+ * (String) Format for usernames (e.g., `EMAIL`, `CUSTOM`).
2491
+ */
2492
+ usernameFormat: string;
2493
+ }
2494
+ interface GetFeaturesCapabilitiesUpdate {
2495
+ /**
2496
+ * Block for deactivation lifecycle configuration:
2497
+ */
2498
+ lifecycleDeactivate?: outputs.app.GetFeaturesCapabilitiesUpdateLifecycleDeactivate;
2499
+ /**
2500
+ * Block for password synchronization settings:
2501
+ */
2502
+ password?: outputs.app.GetFeaturesCapabilitiesUpdatePassword;
2503
+ /**
2504
+ * Block for profile update settings:
2505
+ */
2506
+ profile?: outputs.app.GetFeaturesCapabilitiesUpdateProfile;
2507
+ }
2508
+ interface GetFeaturesCapabilitiesUpdateLifecycleDeactivate {
2509
+ /**
2510
+ * (String) Status of the import schedule. Valid values are `ENABLED` or `DISABLED`.
2511
+ */
2512
+ status: string;
2513
+ }
2514
+ interface GetFeaturesCapabilitiesUpdatePassword {
2515
+ /**
2516
+ * (String) Determines password change behavior. Valid values are `CHANGE` or `KEEP_EXISTING`.
2517
+ */
2518
+ change: string;
2519
+ /**
2520
+ * (String) Determines password source. Valid values are `OKTA` or `RANDOM`.
2521
+ */
2522
+ seed: string;
2523
+ /**
2524
+ * (String) Status of the import schedule. Valid values are `ENABLED` or `DISABLED`.
2525
+ */
2526
+ status: string;
2527
+ }
2528
+ interface GetFeaturesCapabilitiesUpdateProfile {
2529
+ /**
2530
+ * (String) Status of the import schedule. Valid values are `ENABLED` or `DISABLED`.
2531
+ */
2532
+ status: string;
2533
+ }
1930
2534
  interface GetSamlAttributeStatement {
1931
2535
  /**
1932
2536
  * Type of group attribute filter