@pulumi/okta 6.2.0-alpha.1765395366 → 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/input.d.ts CHANGED
@@ -1,5 +1,25 @@
1
1
  import * as pulumi from "@pulumi/pulumi";
2
2
  import * as inputs from "../types/input";
3
+ export interface ApiServiceIntegrationGrantedScope {
4
+ /**
5
+ * The scope of the API service integration
6
+ */
7
+ scope: pulumi.Input<string>;
8
+ }
9
+ export interface ApiTokenNetwork {
10
+ /**
11
+ * The connection type of the Network Condition.
12
+ */
13
+ connection?: pulumi.Input<string>;
14
+ /**
15
+ * The IP address the excluded zone.
16
+ */
17
+ excludes?: pulumi.Input<pulumi.Input<string>[]>;
18
+ /**
19
+ * The IP address the included zone.
20
+ */
21
+ includes?: pulumi.Input<pulumi.Input<string>[]>;
22
+ }
3
23
  export interface AppGroupAssignmentsGroup {
4
24
  /**
5
25
  * A group to associate with the application
@@ -503,6 +523,46 @@ export interface FeatureStage {
503
523
  state: pulumi.Input<string>;
504
524
  value: pulumi.Input<string>;
505
525
  }
526
+ export interface GetApiServiceIntegrationGrantedScope {
527
+ /**
528
+ * The scope of the API service integration granted.
529
+ */
530
+ scope?: string;
531
+ }
532
+ export interface GetApiServiceIntegrationGrantedScopeArgs {
533
+ /**
534
+ * The scope of the API service integration granted.
535
+ */
536
+ scope?: pulumi.Input<string>;
537
+ }
538
+ export interface GetApiTokenNetwork {
539
+ /**
540
+ * The connection type of the Network Condition.
541
+ */
542
+ connection?: string;
543
+ /**
544
+ * The IP address the excluded zone.
545
+ */
546
+ excludes?: string[];
547
+ /**
548
+ * The IP address the included zone.
549
+ */
550
+ includes?: string[];
551
+ }
552
+ export interface GetApiTokenNetworkArgs {
553
+ /**
554
+ * The connection type of the Network Condition.
555
+ */
556
+ connection?: pulumi.Input<string>;
557
+ /**
558
+ * The IP address the excluded zone.
559
+ */
560
+ excludes?: pulumi.Input<pulumi.Input<string>[]>;
561
+ /**
562
+ * The IP address the included zone.
563
+ */
564
+ includes?: pulumi.Input<pulumi.Input<string>[]>;
565
+ }
506
566
  export interface GetCampaignNotificationSettings {
507
567
  notifyReviewPeriodEnd?: boolean;
508
568
  notifyReviewerAtCampaignEnd?: boolean;
@@ -1115,6 +1175,150 @@ export interface GetDeviceAssurancePolicyThirdPartySignalProviderDtcOsVersion {
1115
1175
  export interface GetDeviceAssurancePolicyThirdPartySignalProviderDtcOsVersionArgs {
1116
1176
  minimum: pulumi.Input<string>;
1117
1177
  }
1178
+ export interface GetDeviceProfile {
1179
+ /**
1180
+ * The disk encryption type of the device.
1181
+ */
1182
+ diskEncryptionType?: string;
1183
+ /**
1184
+ * The display name of the device.
1185
+ */
1186
+ displayName?: string;
1187
+ /**
1188
+ * The International Mobile Equipment Identity (IMEI) of the device.
1189
+ */
1190
+ imei?: string;
1191
+ /**
1192
+ * Indicates if the device is jailbroken or rooted. Only applicable to IOS and ANDROID platforms.
1193
+ */
1194
+ integrityJailBreak?: boolean;
1195
+ /**
1196
+ * The manufacturer of the device.
1197
+ */
1198
+ manufacturer?: string;
1199
+ /**
1200
+ * The Mobile Equipment Identifier (MEID) of the device.
1201
+ */
1202
+ meid?: string;
1203
+ /**
1204
+ * The model of the device.
1205
+ */
1206
+ model?: string;
1207
+ /**
1208
+ * The OS version of the device.
1209
+ */
1210
+ osVersion?: string;
1211
+ /**
1212
+ * The platform of the device.
1213
+ */
1214
+ platform?: string;
1215
+ /**
1216
+ * Indicates if the device is registered at Okta.
1217
+ */
1218
+ registered?: boolean;
1219
+ /**
1220
+ * Indicates if secure hardware is present on the device.
1221
+ */
1222
+ secureHardwarePresent?: boolean;
1223
+ /**
1224
+ * The serial number of the device.
1225
+ */
1226
+ serialNumber?: string;
1227
+ /**
1228
+ * The Security Identifier (SID) of the device.
1229
+ */
1230
+ sid?: string;
1231
+ /**
1232
+ * Windows Trusted Platform Module hash value.
1233
+ */
1234
+ tpmPublicKeyHash?: string;
1235
+ /**
1236
+ * MacOS Unique device identifier of the device.
1237
+ */
1238
+ udid?: string;
1239
+ }
1240
+ export interface GetDeviceProfileArgs {
1241
+ /**
1242
+ * The disk encryption type of the device.
1243
+ */
1244
+ diskEncryptionType?: pulumi.Input<string>;
1245
+ /**
1246
+ * The display name of the device.
1247
+ */
1248
+ displayName?: pulumi.Input<string>;
1249
+ /**
1250
+ * The International Mobile Equipment Identity (IMEI) of the device.
1251
+ */
1252
+ imei?: pulumi.Input<string>;
1253
+ /**
1254
+ * Indicates if the device is jailbroken or rooted. Only applicable to IOS and ANDROID platforms.
1255
+ */
1256
+ integrityJailBreak?: pulumi.Input<boolean>;
1257
+ /**
1258
+ * The manufacturer of the device.
1259
+ */
1260
+ manufacturer?: pulumi.Input<string>;
1261
+ /**
1262
+ * The Mobile Equipment Identifier (MEID) of the device.
1263
+ */
1264
+ meid?: pulumi.Input<string>;
1265
+ /**
1266
+ * The model of the device.
1267
+ */
1268
+ model?: pulumi.Input<string>;
1269
+ /**
1270
+ * The OS version of the device.
1271
+ */
1272
+ osVersion?: pulumi.Input<string>;
1273
+ /**
1274
+ * The platform of the device.
1275
+ */
1276
+ platform?: pulumi.Input<string>;
1277
+ /**
1278
+ * Indicates if the device is registered at Okta.
1279
+ */
1280
+ registered?: pulumi.Input<boolean>;
1281
+ /**
1282
+ * Indicates if secure hardware is present on the device.
1283
+ */
1284
+ secureHardwarePresent?: pulumi.Input<boolean>;
1285
+ /**
1286
+ * The serial number of the device.
1287
+ */
1288
+ serialNumber?: pulumi.Input<string>;
1289
+ /**
1290
+ * The Security Identifier (SID) of the device.
1291
+ */
1292
+ sid?: pulumi.Input<string>;
1293
+ /**
1294
+ * Windows Trusted Platform Module hash value.
1295
+ */
1296
+ tpmPublicKeyHash?: pulumi.Input<string>;
1297
+ /**
1298
+ * MacOS Unique device identifier of the device.
1299
+ */
1300
+ udid?: pulumi.Input<string>;
1301
+ }
1302
+ export interface GetDeviceResourceDisplayName {
1303
+ /**
1304
+ * Indicates if the resource display name is sensitive.
1305
+ */
1306
+ sensitive?: boolean;
1307
+ /**
1308
+ * The value of the resource display name.
1309
+ */
1310
+ value?: string;
1311
+ }
1312
+ export interface GetDeviceResourceDisplayNameArgs {
1313
+ /**
1314
+ * Indicates if the resource display name is sensitive.
1315
+ */
1316
+ sensitive?: pulumi.Input<boolean>;
1317
+ /**
1318
+ * The value of the resource display name.
1319
+ */
1320
+ value?: pulumi.Input<string>;
1321
+ }
1118
1322
  export interface GetEndUserMyRequestsRequested {
1119
1323
  /**
1120
1324
  * ID of the access scope
@@ -1761,6 +1965,74 @@ export interface GetPrincipalEntitlementsTargetPrincipalArgs {
1761
1965
  externalId: pulumi.Input<string>;
1762
1966
  type: pulumi.Input<string>;
1763
1967
  }
1968
+ export interface GetPushProviderConfiguration {
1969
+ apnsConfiguration?: inputs.GetPushProviderConfigurationApnsConfiguration;
1970
+ fcmConfiguration?: inputs.GetPushProviderConfigurationFcmConfiguration;
1971
+ }
1972
+ export interface GetPushProviderConfigurationArgs {
1973
+ apnsConfiguration?: pulumi.Input<inputs.GetPushProviderConfigurationApnsConfigurationArgs>;
1974
+ fcmConfiguration?: pulumi.Input<inputs.GetPushProviderConfigurationFcmConfigurationArgs>;
1975
+ }
1976
+ export interface GetPushProviderConfigurationApnsConfiguration {
1977
+ /**
1978
+ * File name for Admin Console display.
1979
+ */
1980
+ fileName?: string;
1981
+ /**
1982
+ * 10-character Key ID obtained from the Apple developer account. Required for APNS provider type.
1983
+ */
1984
+ keyId?: string;
1985
+ /**
1986
+ * 10-character Team ID used to develop the iOS app. Required for APNS provider type.
1987
+ */
1988
+ teamId?: string;
1989
+ }
1990
+ export interface GetPushProviderConfigurationApnsConfigurationArgs {
1991
+ /**
1992
+ * File name for Admin Console display.
1993
+ */
1994
+ fileName?: pulumi.Input<string>;
1995
+ /**
1996
+ * 10-character Key ID obtained from the Apple developer account. Required for APNS provider type.
1997
+ */
1998
+ keyId?: pulumi.Input<string>;
1999
+ /**
2000
+ * 10-character Team ID used to develop the iOS app. Required for APNS provider type.
2001
+ */
2002
+ teamId?: pulumi.Input<string>;
2003
+ }
2004
+ export interface GetPushProviderConfigurationFcmConfiguration {
2005
+ /**
2006
+ * JSON containing the private service account key and service account details. Required for FCM provider type.
2007
+ */
2008
+ serviceAccountJson?: inputs.GetPushProviderConfigurationFcmConfigurationServiceAccountJson;
2009
+ }
2010
+ export interface GetPushProviderConfigurationFcmConfigurationArgs {
2011
+ /**
2012
+ * JSON containing the private service account key and service account details. Required for FCM provider type.
2013
+ */
2014
+ serviceAccountJson?: pulumi.Input<inputs.GetPushProviderConfigurationFcmConfigurationServiceAccountJsonArgs>;
2015
+ }
2016
+ export interface GetPushProviderConfigurationFcmConfigurationServiceAccountJson {
2017
+ /**
2018
+ * File name for Admin Console display.
2019
+ */
2020
+ fileName?: string;
2021
+ /**
2022
+ * The project ID.
2023
+ */
2024
+ projectId?: string;
2025
+ }
2026
+ export interface GetPushProviderConfigurationFcmConfigurationServiceAccountJsonArgs {
2027
+ /**
2028
+ * File name for Admin Console display.
2029
+ */
2030
+ fileName?: pulumi.Input<string>;
2031
+ /**
2032
+ * The project ID.
2033
+ */
2034
+ projectId?: pulumi.Input<string>;
2035
+ }
1764
2036
  export interface GetRequestConditionAccessScopeSettings {
1765
2037
  /**
1766
2038
  * Block list of groups/entitlement bundles ids.
@@ -2211,6 +2483,34 @@ export interface GetReviewReviewerProfileArgs {
2211
2483
  login?: pulumi.Input<string>;
2212
2484
  status?: pulumi.Input<string>;
2213
2485
  }
2486
+ export interface GetSecurityEventsProviderSettings {
2487
+ /**
2488
+ * Issuer URL.
2489
+ */
2490
+ issuer?: string;
2491
+ /**
2492
+ * The public URL where the JWKS public key is uploaded.
2493
+ */
2494
+ jwksUrl?: string;
2495
+ /**
2496
+ * The published well-known URL of the Security Events Provider (the SSF transmitter).
2497
+ */
2498
+ wellKnownUrl?: string;
2499
+ }
2500
+ export interface GetSecurityEventsProviderSettingsArgs {
2501
+ /**
2502
+ * Issuer URL.
2503
+ */
2504
+ issuer?: pulumi.Input<string>;
2505
+ /**
2506
+ * The public URL where the JWKS public key is uploaded.
2507
+ */
2508
+ jwksUrl?: pulumi.Input<string>;
2509
+ /**
2510
+ * The published well-known URL of the Security Events Provider (the SSF transmitter).
2511
+ */
2512
+ wellKnownUrl?: pulumi.Input<string>;
2513
+ }
2214
2514
  export interface GroupSchemaPropertyArrayOneOf {
2215
2515
  /**
2216
2516
  * Value mapping to member of `arrayEnum`
@@ -2306,6 +2606,80 @@ export interface PreviewSigninPageWidgetCustomizations {
2306
2606
  usernameLabel?: pulumi.Input<string>;
2307
2607
  widgetGeneration: pulumi.Input<string>;
2308
2608
  }
2609
+ export interface PushProviderConfiguration {
2610
+ apnsConfiguration?: pulumi.Input<inputs.PushProviderConfigurationApnsConfiguration>;
2611
+ fcmConfiguration?: pulumi.Input<inputs.PushProviderConfigurationFcmConfiguration>;
2612
+ }
2613
+ export interface PushProviderConfigurationApnsConfiguration {
2614
+ /**
2615
+ * File name for Admin Console display.
2616
+ */
2617
+ fileName?: pulumi.Input<string>;
2618
+ /**
2619
+ * 10-character Key ID obtained from the Apple developer account. Required for APNS provider type.
2620
+ */
2621
+ keyId?: pulumi.Input<string>;
2622
+ /**
2623
+ * 10-character Team ID used to develop the iOS app. Required for APNS provider type.
2624
+ */
2625
+ teamId?: pulumi.Input<string>;
2626
+ /**
2627
+ * APNs private authentication token signing key. Required for APNS provider type.
2628
+ */
2629
+ tokenSigningKey?: pulumi.Input<string>;
2630
+ }
2631
+ export interface PushProviderConfigurationFcmConfiguration {
2632
+ /**
2633
+ * JSON containing the private service account key and service account details. Required for FCM provider type.
2634
+ */
2635
+ serviceAccountJson?: pulumi.Input<inputs.PushProviderConfigurationFcmConfigurationServiceAccountJson>;
2636
+ }
2637
+ export interface PushProviderConfigurationFcmConfigurationServiceAccountJson {
2638
+ /**
2639
+ * The auth provider x509 cert URL.
2640
+ */
2641
+ authProviderX509CertUrl?: pulumi.Input<string>;
2642
+ /**
2643
+ * The auth URI.
2644
+ */
2645
+ authUri?: pulumi.Input<string>;
2646
+ /**
2647
+ * The client email.
2648
+ */
2649
+ clientEmail?: pulumi.Input<string>;
2650
+ /**
2651
+ * The client ID.
2652
+ */
2653
+ clientId?: pulumi.Input<string>;
2654
+ /**
2655
+ * The client x509 cert URL.
2656
+ */
2657
+ clientX509CertUrl?: pulumi.Input<string>;
2658
+ /**
2659
+ * File name for Admin Console display.
2660
+ */
2661
+ fileName?: pulumi.Input<string>;
2662
+ /**
2663
+ * The private key.
2664
+ */
2665
+ privateKey?: pulumi.Input<string>;
2666
+ /**
2667
+ * The private key ID.
2668
+ */
2669
+ privateKeyId?: pulumi.Input<string>;
2670
+ /**
2671
+ * The project ID.
2672
+ */
2673
+ projectId?: pulumi.Input<string>;
2674
+ /**
2675
+ * The token URI.
2676
+ */
2677
+ tokenUri?: pulumi.Input<string>;
2678
+ /**
2679
+ * The type of the service account.
2680
+ */
2681
+ type?: pulumi.Input<string>;
2682
+ }
2309
2683
  export interface RateLimitingUseCaseModeOverrides {
2310
2684
  loginPage?: pulumi.Input<string>;
2311
2685
  oauth2Authorize?: pulumi.Input<string>;
@@ -2449,6 +2823,20 @@ export interface RequestV2RequesterFieldValue {
2449
2823
  export interface RequestV2RequesterFieldValueValue {
2450
2824
  value?: pulumi.Input<string>;
2451
2825
  }
2826
+ export interface SecurityEventsProviderSettings {
2827
+ /**
2828
+ * Issuer URL. Maximum length: 700 characters. To be used along with `jwksUrl`.
2829
+ */
2830
+ issuer?: pulumi.Input<string>;
2831
+ /**
2832
+ * The public URL where the JWKS public key is uploaded. Maximum length: 1000 characters. To be used along with `issuer`.
2833
+ */
2834
+ jwksUrl?: pulumi.Input<string>;
2835
+ /**
2836
+ * The published well-known URL of the Security Events Provider (the SSF transmitter). Maximum length: 1000 characters.
2837
+ */
2838
+ wellKnownUrl?: pulumi.Input<string>;
2839
+ }
2452
2840
  export interface TemplateSmsTranslation {
2453
2841
  /**
2454
2842
  * The language to map the template to.
@@ -2484,6 +2872,524 @@ export interface UserSchemaPropertyOneOf {
2484
2872
  title: pulumi.Input<string>;
2485
2873
  }
2486
2874
  export declare namespace app {
2875
+ interface ConnectionProfile {
2876
+ /**
2877
+ * Authentication scheme. Valid values are TOKEN or OAUTH2.
2878
+ */
2879
+ authScheme: pulumi.Input<string>;
2880
+ /**
2881
+ * OAuth2 client ID (required for OAUTH2 auth scheme).
2882
+ */
2883
+ clientId?: pulumi.Input<string>;
2884
+ /**
2885
+ * Additional settings for OAuth2 authentication.
2886
+ */
2887
+ settings?: pulumi.Input<inputs.app.ConnectionProfileSettings>;
2888
+ /**
2889
+ * Signing configuration.
2890
+ */
2891
+ signing?: pulumi.Input<inputs.app.ConnectionProfileSigning>;
2892
+ /**
2893
+ * Authentication token (required for TOKEN auth scheme).
2894
+ */
2895
+ token?: pulumi.Input<string>;
2896
+ }
2897
+ interface ConnectionProfileSettings {
2898
+ /**
2899
+ * Admin password for OAuth2.
2900
+ */
2901
+ adminPassword?: pulumi.Input<string>;
2902
+ /**
2903
+ * Admin username for OAuth2.
2904
+ */
2905
+ adminUsername?: pulumi.Input<string>;
2906
+ }
2907
+ interface ConnectionProfileSigning {
2908
+ /**
2909
+ * Token rotation mode.
2910
+ */
2911
+ rotationMode?: pulumi.Input<string>;
2912
+ }
2913
+ interface FeaturesCapabilities {
2914
+ /**
2915
+ * (Optional) Block for create lifecycle settings:
2916
+ */
2917
+ create?: pulumi.Input<inputs.app.FeaturesCapabilitiesCreate>;
2918
+ /**
2919
+ * (Optional) Block for import rules configuration:
2920
+ */
2921
+ importRules?: pulumi.Input<inputs.app.FeaturesCapabilitiesImportRules>;
2922
+ /**
2923
+ * (Optional) Block for import settings configuration:
2924
+ */
2925
+ importSettings?: pulumi.Input<inputs.app.FeaturesCapabilitiesImportSettings>;
2926
+ /**
2927
+ * (Optional) Block for update settings:
2928
+ */
2929
+ update?: pulumi.Input<inputs.app.FeaturesCapabilitiesUpdate>;
2930
+ }
2931
+ interface FeaturesCapabilitiesCreate {
2932
+ /**
2933
+ * (Optional) Block for create lifecycle configuration:
2934
+ */
2935
+ lifecycleCreate?: pulumi.Input<inputs.app.FeaturesCapabilitiesCreateLifecycleCreate>;
2936
+ }
2937
+ interface FeaturesCapabilitiesCreateLifecycleCreate {
2938
+ /**
2939
+ * The status of the feature. Valid values are `ENABLED` or `DISABLED`.
2940
+ */
2941
+ status?: pulumi.Input<string>;
2942
+ }
2943
+ interface FeaturesCapabilitiesImportRules {
2944
+ /**
2945
+ * (Optional) Block for user matching and creation rules:
2946
+ */
2947
+ userCreateAndMatch?: pulumi.Input<inputs.app.FeaturesCapabilitiesImportRulesUserCreateAndMatch>;
2948
+ }
2949
+ interface FeaturesCapabilitiesImportRulesUserCreateAndMatch {
2950
+ /**
2951
+ * (Optional) Whether to allow partial matching based on first and last names.
2952
+ */
2953
+ allowPartialMatch?: pulumi.Input<boolean>;
2954
+ /**
2955
+ * (Optional) Whether imported new users are automatically activated.
2956
+ */
2957
+ autoActivateNewUsers?: pulumi.Input<boolean>;
2958
+ /**
2959
+ * (Optional) Whether exact-matched users are automatically confirmed.
2960
+ */
2961
+ autoconfirmExactMatch?: pulumi.Input<boolean>;
2962
+ /**
2963
+ * (Optional) Whether imported new users are automatically confirmed.
2964
+ */
2965
+ autoconfirmNewUsers?: pulumi.Input<boolean>;
2966
+ /**
2967
+ * (Optional) Whether partially matched users are automatically confirmed.
2968
+ */
2969
+ autoconfirmPartialMatch?: pulumi.Input<boolean>;
2970
+ /**
2971
+ * (Optional) Attribute used for exact matching (e.g., `USERNAME`, `EMAIL`).
2972
+ */
2973
+ exactMatchCriteria?: pulumi.Input<string>;
2974
+ }
2975
+ interface FeaturesCapabilitiesImportSettings {
2976
+ /**
2977
+ * (Optional) Block for import schedule configuration:
2978
+ */
2979
+ schedule?: pulumi.Input<inputs.app.FeaturesCapabilitiesImportSettingsSchedule>;
2980
+ /**
2981
+ * (Optional) Block for username configuration:
2982
+ */
2983
+ username?: pulumi.Input<inputs.app.FeaturesCapabilitiesImportSettingsUsername>;
2984
+ }
2985
+ interface FeaturesCapabilitiesImportSettingsSchedule {
2986
+ /**
2987
+ * (Optional) Block for full import schedule:
2988
+ */
2989
+ fullImport?: pulumi.Input<inputs.app.FeaturesCapabilitiesImportSettingsScheduleFullImport>;
2990
+ /**
2991
+ * (Optional) Block for incremental import schedule:
2992
+ */
2993
+ incrementalImport?: pulumi.Input<inputs.app.FeaturesCapabilitiesImportSettingsScheduleIncrementalImport>;
2994
+ /**
2995
+ * The status of the feature. Valid values are `ENABLED` or `DISABLED`.
2996
+ */
2997
+ status?: pulumi.Input<string>;
2998
+ }
2999
+ interface FeaturesCapabilitiesImportSettingsScheduleFullImport {
3000
+ /**
3001
+ * (Optional) UNIX cron expression for incremental import schedule.
3002
+ */
3003
+ expression?: pulumi.Input<string>;
3004
+ /**
3005
+ * (Optional) IANA timezone name for the schedule.
3006
+ */
3007
+ timezone?: pulumi.Input<string>;
3008
+ }
3009
+ interface FeaturesCapabilitiesImportSettingsScheduleIncrementalImport {
3010
+ /**
3011
+ * (Optional) UNIX cron expression for incremental import schedule.
3012
+ */
3013
+ expression?: pulumi.Input<string>;
3014
+ /**
3015
+ * (Optional) IANA timezone name for the schedule.
3016
+ */
3017
+ timezone?: pulumi.Input<string>;
3018
+ }
3019
+ interface FeaturesCapabilitiesImportSettingsUsername {
3020
+ /**
3021
+ * (Optional) Okta Expression Language statement for custom username format.
3022
+ */
3023
+ usernameExpression?: pulumi.Input<string>;
3024
+ /**
3025
+ * (Optional) Format for usernames (e.g., `EMAIL`, `CUSTOM`).
3026
+ */
3027
+ usernameFormat?: pulumi.Input<string>;
3028
+ }
3029
+ interface FeaturesCapabilitiesUpdate {
3030
+ /**
3031
+ * (Optional) Block for deactivation lifecycle configuration:
3032
+ */
3033
+ lifecycleDeactivate?: pulumi.Input<inputs.app.FeaturesCapabilitiesUpdateLifecycleDeactivate>;
3034
+ /**
3035
+ * (Optional) Block for password synchronization settings:
3036
+ */
3037
+ password?: pulumi.Input<inputs.app.FeaturesCapabilitiesUpdatePassword>;
3038
+ /**
3039
+ * (Optional) Block for profile update settings:
3040
+ */
3041
+ profile?: pulumi.Input<inputs.app.FeaturesCapabilitiesUpdateProfile>;
3042
+ }
3043
+ interface FeaturesCapabilitiesUpdateLifecycleDeactivate {
3044
+ /**
3045
+ * The status of the feature. Valid values are `ENABLED` or `DISABLED`.
3046
+ */
3047
+ status?: pulumi.Input<string>;
3048
+ }
3049
+ interface FeaturesCapabilitiesUpdatePassword {
3050
+ /**
3051
+ * (Optional) Determines password change behavior. Valid values are `CHANGE` or `KEEP_EXISTING`.
3052
+ */
3053
+ change?: pulumi.Input<string>;
3054
+ /**
3055
+ * (Optional) Determines password source. Valid values are `OKTA` or `RANDOM`.
3056
+ */
3057
+ seed?: pulumi.Input<string>;
3058
+ /**
3059
+ * The status of the feature. Valid values are `ENABLED` or `DISABLED`.
3060
+ */
3061
+ status?: pulumi.Input<string>;
3062
+ }
3063
+ interface FeaturesCapabilitiesUpdateProfile {
3064
+ /**
3065
+ * The status of the feature. Valid values are `ENABLED` or `DISABLED`.
3066
+ */
3067
+ status?: pulumi.Input<string>;
3068
+ }
3069
+ interface GetConnectionProfile {
3070
+ /**
3071
+ * Defines the method of authentication.
3072
+ */
3073
+ authScheme?: string;
3074
+ }
3075
+ interface GetConnectionProfileArgs {
3076
+ /**
3077
+ * Defines the method of authentication.
3078
+ */
3079
+ authScheme?: pulumi.Input<string>;
3080
+ }
3081
+ interface GetFeaturesCapabilities {
3082
+ /**
3083
+ * Block for create lifecycle settings:
3084
+ */
3085
+ create?: inputs.app.GetFeaturesCapabilitiesCreate;
3086
+ /**
3087
+ * Block for import rules configuration:
3088
+ */
3089
+ importRules?: inputs.app.GetFeaturesCapabilitiesImportRules;
3090
+ /**
3091
+ * Block for import settings configuration:
3092
+ */
3093
+ importSettings?: inputs.app.GetFeaturesCapabilitiesImportSettings;
3094
+ /**
3095
+ * Block for update settings:
3096
+ */
3097
+ update?: inputs.app.GetFeaturesCapabilitiesUpdate;
3098
+ }
3099
+ interface GetFeaturesCapabilitiesArgs {
3100
+ /**
3101
+ * Block for create lifecycle settings:
3102
+ */
3103
+ create?: pulumi.Input<inputs.app.GetFeaturesCapabilitiesCreateArgs>;
3104
+ /**
3105
+ * Block for import rules configuration:
3106
+ */
3107
+ importRules?: pulumi.Input<inputs.app.GetFeaturesCapabilitiesImportRulesArgs>;
3108
+ /**
3109
+ * Block for import settings configuration:
3110
+ */
3111
+ importSettings?: pulumi.Input<inputs.app.GetFeaturesCapabilitiesImportSettingsArgs>;
3112
+ /**
3113
+ * Block for update settings:
3114
+ */
3115
+ update?: pulumi.Input<inputs.app.GetFeaturesCapabilitiesUpdateArgs>;
3116
+ }
3117
+ interface GetFeaturesCapabilitiesCreate {
3118
+ /**
3119
+ * Block for create lifecycle configuration:
3120
+ */
3121
+ lifecycleCreate?: inputs.app.GetFeaturesCapabilitiesCreateLifecycleCreate;
3122
+ }
3123
+ interface GetFeaturesCapabilitiesCreateArgs {
3124
+ /**
3125
+ * Block for create lifecycle configuration:
3126
+ */
3127
+ lifecycleCreate?: pulumi.Input<inputs.app.GetFeaturesCapabilitiesCreateLifecycleCreateArgs>;
3128
+ }
3129
+ interface GetFeaturesCapabilitiesCreateLifecycleCreate {
3130
+ /**
3131
+ * (String) Status of the import schedule. Valid values are `ENABLED` or `DISABLED`.
3132
+ */
3133
+ status?: string;
3134
+ }
3135
+ interface GetFeaturesCapabilitiesCreateLifecycleCreateArgs {
3136
+ /**
3137
+ * (String) Status of the import schedule. Valid values are `ENABLED` or `DISABLED`.
3138
+ */
3139
+ status?: pulumi.Input<string>;
3140
+ }
3141
+ interface GetFeaturesCapabilitiesImportRules {
3142
+ /**
3143
+ * Block for user matching and creation rules:
3144
+ */
3145
+ userCreateAndMatch?: inputs.app.GetFeaturesCapabilitiesImportRulesUserCreateAndMatch;
3146
+ }
3147
+ interface GetFeaturesCapabilitiesImportRulesArgs {
3148
+ /**
3149
+ * Block for user matching and creation rules:
3150
+ */
3151
+ userCreateAndMatch?: pulumi.Input<inputs.app.GetFeaturesCapabilitiesImportRulesUserCreateAndMatchArgs>;
3152
+ }
3153
+ interface GetFeaturesCapabilitiesImportRulesUserCreateAndMatch {
3154
+ /**
3155
+ * (Boolean) Whether to allow partial matching based on first and last names.
3156
+ */
3157
+ allowPartialMatch?: boolean;
3158
+ /**
3159
+ * (Boolean) Whether imported new users are automatically activated.
3160
+ */
3161
+ autoActivateNewUsers?: boolean;
3162
+ /**
3163
+ * (Boolean) Whether exact-matched users are automatically confirmed.
3164
+ */
3165
+ autoconfirmExactMatch?: boolean;
3166
+ /**
3167
+ * (Boolean) Whether imported new users are automatically confirmed.
3168
+ */
3169
+ autoconfirmNewUsers?: boolean;
3170
+ /**
3171
+ * (Boolean) Whether partially matched users are automatically confirmed.
3172
+ */
3173
+ autoconfirmPartialMatch?: boolean;
3174
+ /**
3175
+ * (String) Attribute used for exact matching (e.g., `USERNAME`, `EMAIL`).
3176
+ */
3177
+ exactMatchCriteria?: string;
3178
+ }
3179
+ interface GetFeaturesCapabilitiesImportRulesUserCreateAndMatchArgs {
3180
+ /**
3181
+ * (Boolean) Whether to allow partial matching based on first and last names.
3182
+ */
3183
+ allowPartialMatch?: pulumi.Input<boolean>;
3184
+ /**
3185
+ * (Boolean) Whether imported new users are automatically activated.
3186
+ */
3187
+ autoActivateNewUsers?: pulumi.Input<boolean>;
3188
+ /**
3189
+ * (Boolean) Whether exact-matched users are automatically confirmed.
3190
+ */
3191
+ autoconfirmExactMatch?: pulumi.Input<boolean>;
3192
+ /**
3193
+ * (Boolean) Whether imported new users are automatically confirmed.
3194
+ */
3195
+ autoconfirmNewUsers?: pulumi.Input<boolean>;
3196
+ /**
3197
+ * (Boolean) Whether partially matched users are automatically confirmed.
3198
+ */
3199
+ autoconfirmPartialMatch?: pulumi.Input<boolean>;
3200
+ /**
3201
+ * (String) Attribute used for exact matching (e.g., `USERNAME`, `EMAIL`).
3202
+ */
3203
+ exactMatchCriteria?: pulumi.Input<string>;
3204
+ }
3205
+ interface GetFeaturesCapabilitiesImportSettings {
3206
+ /**
3207
+ * Block for import schedule configuration:
3208
+ */
3209
+ schedule?: inputs.app.GetFeaturesCapabilitiesImportSettingsSchedule;
3210
+ /**
3211
+ * Block for username configuration:
3212
+ */
3213
+ username?: inputs.app.GetFeaturesCapabilitiesImportSettingsUsername;
3214
+ }
3215
+ interface GetFeaturesCapabilitiesImportSettingsArgs {
3216
+ /**
3217
+ * Block for import schedule configuration:
3218
+ */
3219
+ schedule?: pulumi.Input<inputs.app.GetFeaturesCapabilitiesImportSettingsScheduleArgs>;
3220
+ /**
3221
+ * Block for username configuration:
3222
+ */
3223
+ username?: pulumi.Input<inputs.app.GetFeaturesCapabilitiesImportSettingsUsernameArgs>;
3224
+ }
3225
+ interface GetFeaturesCapabilitiesImportSettingsSchedule {
3226
+ /**
3227
+ * Block for full import schedule:
3228
+ */
3229
+ fullImport?: inputs.app.GetFeaturesCapabilitiesImportSettingsScheduleFullImport;
3230
+ /**
3231
+ * Block for incremental import schedule:
3232
+ */
3233
+ incrementalImport?: inputs.app.GetFeaturesCapabilitiesImportSettingsScheduleIncrementalImport;
3234
+ /**
3235
+ * (String) Status of the import schedule. Valid values are `ENABLED` or `DISABLED`.
3236
+ */
3237
+ status?: string;
3238
+ }
3239
+ interface GetFeaturesCapabilitiesImportSettingsScheduleArgs {
3240
+ /**
3241
+ * Block for full import schedule:
3242
+ */
3243
+ fullImport?: pulumi.Input<inputs.app.GetFeaturesCapabilitiesImportSettingsScheduleFullImportArgs>;
3244
+ /**
3245
+ * Block for incremental import schedule:
3246
+ */
3247
+ incrementalImport?: pulumi.Input<inputs.app.GetFeaturesCapabilitiesImportSettingsScheduleIncrementalImportArgs>;
3248
+ /**
3249
+ * (String) Status of the import schedule. Valid values are `ENABLED` or `DISABLED`.
3250
+ */
3251
+ status?: pulumi.Input<string>;
3252
+ }
3253
+ interface GetFeaturesCapabilitiesImportSettingsScheduleFullImport {
3254
+ /**
3255
+ * (String) UNIX cron expression for incremental import schedule.
3256
+ */
3257
+ expression?: string;
3258
+ /**
3259
+ * (String) IANA timezone name for the schedule.
3260
+ */
3261
+ timezone?: string;
3262
+ }
3263
+ interface GetFeaturesCapabilitiesImportSettingsScheduleFullImportArgs {
3264
+ /**
3265
+ * (String) UNIX cron expression for incremental import schedule.
3266
+ */
3267
+ expression?: pulumi.Input<string>;
3268
+ /**
3269
+ * (String) IANA timezone name for the schedule.
3270
+ */
3271
+ timezone?: pulumi.Input<string>;
3272
+ }
3273
+ interface GetFeaturesCapabilitiesImportSettingsScheduleIncrementalImport {
3274
+ /**
3275
+ * (String) UNIX cron expression for incremental import schedule.
3276
+ */
3277
+ expression?: string;
3278
+ /**
3279
+ * (String) IANA timezone name for the schedule.
3280
+ */
3281
+ timezone?: string;
3282
+ }
3283
+ interface GetFeaturesCapabilitiesImportSettingsScheduleIncrementalImportArgs {
3284
+ /**
3285
+ * (String) UNIX cron expression for incremental import schedule.
3286
+ */
3287
+ expression?: pulumi.Input<string>;
3288
+ /**
3289
+ * (String) IANA timezone name for the schedule.
3290
+ */
3291
+ timezone?: pulumi.Input<string>;
3292
+ }
3293
+ interface GetFeaturesCapabilitiesImportSettingsUsername {
3294
+ /**
3295
+ * (String) Okta Expression Language statement for custom username format.
3296
+ */
3297
+ usernameExpression?: string;
3298
+ /**
3299
+ * (String) Format for usernames (e.g., `EMAIL`, `CUSTOM`).
3300
+ */
3301
+ usernameFormat?: string;
3302
+ }
3303
+ interface GetFeaturesCapabilitiesImportSettingsUsernameArgs {
3304
+ /**
3305
+ * (String) Okta Expression Language statement for custom username format.
3306
+ */
3307
+ usernameExpression?: pulumi.Input<string>;
3308
+ /**
3309
+ * (String) Format for usernames (e.g., `EMAIL`, `CUSTOM`).
3310
+ */
3311
+ usernameFormat?: pulumi.Input<string>;
3312
+ }
3313
+ interface GetFeaturesCapabilitiesUpdate {
3314
+ /**
3315
+ * Block for deactivation lifecycle configuration:
3316
+ */
3317
+ lifecycleDeactivate?: inputs.app.GetFeaturesCapabilitiesUpdateLifecycleDeactivate;
3318
+ /**
3319
+ * Block for password synchronization settings:
3320
+ */
3321
+ password?: inputs.app.GetFeaturesCapabilitiesUpdatePassword;
3322
+ /**
3323
+ * Block for profile update settings:
3324
+ */
3325
+ profile?: inputs.app.GetFeaturesCapabilitiesUpdateProfile;
3326
+ }
3327
+ interface GetFeaturesCapabilitiesUpdateArgs {
3328
+ /**
3329
+ * Block for deactivation lifecycle configuration:
3330
+ */
3331
+ lifecycleDeactivate?: pulumi.Input<inputs.app.GetFeaturesCapabilitiesUpdateLifecycleDeactivateArgs>;
3332
+ /**
3333
+ * Block for password synchronization settings:
3334
+ */
3335
+ password?: pulumi.Input<inputs.app.GetFeaturesCapabilitiesUpdatePasswordArgs>;
3336
+ /**
3337
+ * Block for profile update settings:
3338
+ */
3339
+ profile?: pulumi.Input<inputs.app.GetFeaturesCapabilitiesUpdateProfileArgs>;
3340
+ }
3341
+ interface GetFeaturesCapabilitiesUpdateLifecycleDeactivate {
3342
+ /**
3343
+ * (String) Status of the import schedule. Valid values are `ENABLED` or `DISABLED`.
3344
+ */
3345
+ status?: string;
3346
+ }
3347
+ interface GetFeaturesCapabilitiesUpdateLifecycleDeactivateArgs {
3348
+ /**
3349
+ * (String) Status of the import schedule. Valid values are `ENABLED` or `DISABLED`.
3350
+ */
3351
+ status?: pulumi.Input<string>;
3352
+ }
3353
+ interface GetFeaturesCapabilitiesUpdatePassword {
3354
+ /**
3355
+ * (String) Determines password change behavior. Valid values are `CHANGE` or `KEEP_EXISTING`.
3356
+ */
3357
+ change?: string;
3358
+ /**
3359
+ * (String) Determines password source. Valid values are `OKTA` or `RANDOM`.
3360
+ */
3361
+ seed?: string;
3362
+ /**
3363
+ * (String) Status of the import schedule. Valid values are `ENABLED` or `DISABLED`.
3364
+ */
3365
+ status?: string;
3366
+ }
3367
+ interface GetFeaturesCapabilitiesUpdatePasswordArgs {
3368
+ /**
3369
+ * (String) Determines password change behavior. Valid values are `CHANGE` or `KEEP_EXISTING`.
3370
+ */
3371
+ change?: pulumi.Input<string>;
3372
+ /**
3373
+ * (String) Determines password source. Valid values are `OKTA` or `RANDOM`.
3374
+ */
3375
+ seed?: pulumi.Input<string>;
3376
+ /**
3377
+ * (String) Status of the import schedule. Valid values are `ENABLED` or `DISABLED`.
3378
+ */
3379
+ status?: pulumi.Input<string>;
3380
+ }
3381
+ interface GetFeaturesCapabilitiesUpdateProfile {
3382
+ /**
3383
+ * (String) Status of the import schedule. Valid values are `ENABLED` or `DISABLED`.
3384
+ */
3385
+ status?: string;
3386
+ }
3387
+ interface GetFeaturesCapabilitiesUpdateProfileArgs {
3388
+ /**
3389
+ * (String) Status of the import schedule. Valid values are `ENABLED` or `DISABLED`.
3390
+ */
3391
+ status?: pulumi.Input<string>;
3392
+ }
2487
3393
  interface OAuthGroupsClaim {
2488
3394
  /**
2489
3395
  * Groups claim filter. Can only be set if type is FILTER.