@pulumi/auth0 3.34.0-alpha.1763183824 → 3.34.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/types/output.d.ts CHANGED
@@ -1253,6 +1253,50 @@ export interface ClientDefaultOrganization {
1253
1253
  */
1254
1254
  organizationId: string;
1255
1255
  }
1256
+ export interface ClientExpressConfiguration {
1257
+ /**
1258
+ * The domain that admins are expected to log in via for authenticating for express configuration.
1259
+ */
1260
+ adminLoginDomain?: string;
1261
+ /**
1262
+ * The ID of the connection profile to use for this application.
1263
+ */
1264
+ connectionProfileId?: string;
1265
+ /**
1266
+ * When true, all connections made via express configuration will be enabled for this application.
1267
+ */
1268
+ enableClient?: boolean;
1269
+ /**
1270
+ * When true, all connections made via express configuration will have the associated organization enabled.
1271
+ */
1272
+ enableOrganization?: boolean;
1273
+ /**
1274
+ * The URI users should bookmark to log in to this application. Variable substitution is permitted for: organization*name, organization*id, and connection_name.
1275
+ */
1276
+ initiateLoginUriTemplate?: string;
1277
+ /**
1278
+ * List of client IDs that are linked to this express configuration (e.g. web or mobile clients).
1279
+ */
1280
+ linkedClients: outputs.ClientExpressConfigurationLinkedClient[];
1281
+ /**
1282
+ * The identifier of the published application in the OKTA OIN.
1283
+ */
1284
+ oinSubmissionId: string;
1285
+ /**
1286
+ * The unique identifier for the Okta OIN Express Configuration Client.
1287
+ */
1288
+ oktaOinClientId: string;
1289
+ /**
1290
+ * The ID of the user attribute profile to use for this application.
1291
+ */
1292
+ userAttributeProfileId?: string;
1293
+ }
1294
+ export interface ClientExpressConfigurationLinkedClient {
1295
+ /**
1296
+ * The ID of the linked client.
1297
+ */
1298
+ clientId?: string;
1299
+ }
1256
1300
  export interface ClientJwtConfiguration {
1257
1301
  /**
1258
1302
  * Algorithm used to sign JWTs. Can be one of `HS256`, `RS256`, `PS256`.
@@ -2159,6 +2203,148 @@ export interface ConnectionOptionsValidationUsername {
2159
2203
  max?: number;
2160
2204
  min?: number;
2161
2205
  }
2206
+ export interface ConnectionProfileConnectionConfig {
2207
+ }
2208
+ export interface ConnectionProfileOrganization {
2209
+ /**
2210
+ * Whether to assign membership on login.
2211
+ */
2212
+ assignMembershipOnLogin: string;
2213
+ /**
2214
+ * Whether to show organization as a button.
2215
+ */
2216
+ showAsButton: string;
2217
+ }
2218
+ export interface ConnectionProfileStrategyOverrides {
2219
+ /**
2220
+ * Strategy override configuration.
2221
+ */
2222
+ ad: outputs.ConnectionProfileStrategyOverridesAd;
2223
+ /**
2224
+ * Strategy override configuration.
2225
+ */
2226
+ adfs: outputs.ConnectionProfileStrategyOverridesAdfs;
2227
+ /**
2228
+ * Strategy override configuration.
2229
+ */
2230
+ googleApps: outputs.ConnectionProfileStrategyOverridesGoogleApps;
2231
+ /**
2232
+ * Strategy override configuration.
2233
+ */
2234
+ oidc: outputs.ConnectionProfileStrategyOverridesOidc;
2235
+ /**
2236
+ * Strategy override configuration.
2237
+ */
2238
+ okta: outputs.ConnectionProfileStrategyOverridesOkta;
2239
+ /**
2240
+ * Strategy override configuration.
2241
+ */
2242
+ pingfederate: outputs.ConnectionProfileStrategyOverridesPingfederate;
2243
+ /**
2244
+ * Strategy override configuration.
2245
+ */
2246
+ samlp: outputs.ConnectionProfileStrategyOverridesSamlp;
2247
+ /**
2248
+ * Strategy override configuration.
2249
+ */
2250
+ waad: outputs.ConnectionProfileStrategyOverridesWaad;
2251
+ }
2252
+ export interface ConnectionProfileStrategyOverridesAd {
2253
+ /**
2254
+ * Connection config for the strategy override.
2255
+ */
2256
+ connectionConfig: outputs.ConnectionProfileStrategyOverridesAdConnectionConfig;
2257
+ /**
2258
+ * Enabled features for the strategy override.
2259
+ */
2260
+ enabledFeatures: string[];
2261
+ }
2262
+ export interface ConnectionProfileStrategyOverridesAdConnectionConfig {
2263
+ }
2264
+ export interface ConnectionProfileStrategyOverridesAdfs {
2265
+ /**
2266
+ * Connection config for the strategy override.
2267
+ */
2268
+ connectionConfig: outputs.ConnectionProfileStrategyOverridesAdfsConnectionConfig;
2269
+ /**
2270
+ * Enabled features for the strategy override.
2271
+ */
2272
+ enabledFeatures: string[];
2273
+ }
2274
+ export interface ConnectionProfileStrategyOverridesAdfsConnectionConfig {
2275
+ }
2276
+ export interface ConnectionProfileStrategyOverridesGoogleApps {
2277
+ /**
2278
+ * Connection config for the strategy override.
2279
+ */
2280
+ connectionConfig: outputs.ConnectionProfileStrategyOverridesGoogleAppsConnectionConfig;
2281
+ /**
2282
+ * Enabled features for the strategy override.
2283
+ */
2284
+ enabledFeatures: string[];
2285
+ }
2286
+ export interface ConnectionProfileStrategyOverridesGoogleAppsConnectionConfig {
2287
+ }
2288
+ export interface ConnectionProfileStrategyOverridesOidc {
2289
+ /**
2290
+ * Connection config for the strategy override.
2291
+ */
2292
+ connectionConfig: outputs.ConnectionProfileStrategyOverridesOidcConnectionConfig;
2293
+ /**
2294
+ * Enabled features for the strategy override.
2295
+ */
2296
+ enabledFeatures: string[];
2297
+ }
2298
+ export interface ConnectionProfileStrategyOverridesOidcConnectionConfig {
2299
+ }
2300
+ export interface ConnectionProfileStrategyOverridesOkta {
2301
+ /**
2302
+ * Connection config for the strategy override.
2303
+ */
2304
+ connectionConfig: outputs.ConnectionProfileStrategyOverridesOktaConnectionConfig;
2305
+ /**
2306
+ * Enabled features for the strategy override.
2307
+ */
2308
+ enabledFeatures: string[];
2309
+ }
2310
+ export interface ConnectionProfileStrategyOverridesOktaConnectionConfig {
2311
+ }
2312
+ export interface ConnectionProfileStrategyOverridesPingfederate {
2313
+ /**
2314
+ * Connection config for the strategy override.
2315
+ */
2316
+ connectionConfig: outputs.ConnectionProfileStrategyOverridesPingfederateConnectionConfig;
2317
+ /**
2318
+ * Enabled features for the strategy override.
2319
+ */
2320
+ enabledFeatures: string[];
2321
+ }
2322
+ export interface ConnectionProfileStrategyOverridesPingfederateConnectionConfig {
2323
+ }
2324
+ export interface ConnectionProfileStrategyOverridesSamlp {
2325
+ /**
2326
+ * Connection config for the strategy override.
2327
+ */
2328
+ connectionConfig: outputs.ConnectionProfileStrategyOverridesSamlpConnectionConfig;
2329
+ /**
2330
+ * Enabled features for the strategy override.
2331
+ */
2332
+ enabledFeatures: string[];
2333
+ }
2334
+ export interface ConnectionProfileStrategyOverridesSamlpConnectionConfig {
2335
+ }
2336
+ export interface ConnectionProfileStrategyOverridesWaad {
2337
+ /**
2338
+ * Connection config for the strategy override.
2339
+ */
2340
+ connectionConfig: outputs.ConnectionProfileStrategyOverridesWaadConnectionConfig;
2341
+ /**
2342
+ * Enabled features for the strategy override.
2343
+ */
2344
+ enabledFeatures: string[];
2345
+ }
2346
+ export interface ConnectionProfileStrategyOverridesWaadConnectionConfig {
2347
+ }
2162
2348
  export interface ConnectionScimConfigurationMapping {
2163
2349
  /**
2164
2350
  * The field location in the Auth0 schema.
@@ -3598,6 +3784,50 @@ export interface GetClientDefaultOrganization {
3598
3784
  */
3599
3785
  organizationId: string;
3600
3786
  }
3787
+ export interface GetClientExpressConfiguration {
3788
+ /**
3789
+ * The domain that admins are expected to log in via for authenticating for express configuration.
3790
+ */
3791
+ adminLoginDomain: string;
3792
+ /**
3793
+ * The ID of the connection profile to use for this application.
3794
+ */
3795
+ connectionProfileId: string;
3796
+ /**
3797
+ * When true, all connections made via express configuration will be enabled for this application.
3798
+ */
3799
+ enableClient: boolean;
3800
+ /**
3801
+ * When true, all connections made via express configuration will have the associated organization enabled.
3802
+ */
3803
+ enableOrganization: boolean;
3804
+ /**
3805
+ * The URI users should bookmark to log in to this application. Variable substitution is permitted for: organization_name, organization_id, and connection_name.
3806
+ */
3807
+ initiateLoginUriTemplate: string;
3808
+ /**
3809
+ * List of client IDs that are linked to this express configuration (e.g. web or mobile clients).
3810
+ */
3811
+ linkedClients: outputs.GetClientExpressConfigurationLinkedClient[];
3812
+ /**
3813
+ * The identifier of the published application in the OKTA OIN.
3814
+ */
3815
+ oinSubmissionId: string;
3816
+ /**
3817
+ * The unique identifier for the Okta OIN Express Configuration Client.
3818
+ */
3819
+ oktaOinClientId: string;
3820
+ /**
3821
+ * The ID of the user attribute profile to use for this application.
3822
+ */
3823
+ userAttributeProfileId: string;
3824
+ }
3825
+ export interface GetClientExpressConfigurationLinkedClient {
3826
+ /**
3827
+ * The ID of the linked client.
3828
+ */
3829
+ clientId: string;
3830
+ }
3601
3831
  export interface GetClientGrantsClientGrant {
3602
3832
  /**
3603
3833
  * The audience of the client grant.
@@ -3843,7 +4073,7 @@ export interface GetClientsClient {
3843
4073
  */
3844
4074
  allowedOrigins: string[];
3845
4075
  /**
3846
- * Type of application the client represents. Possible values are: `native`, `spa`, `regularWeb`, `nonInteractive`, `resourceServer`,`ssoIntegration`. Specific SSO integrations types accepted as well are: `rms`, `box`, `cloudbees`, `concur`, `dropbox`, `mscrm`, `echosign`, `egnyte`, `newrelic`, `office365`, `salesforce`, `sentry`, `sharepoint`, `slack`, `springcm`, `zendesk`, `zoom`.
4076
+ * Type of application the client represents. Possible values are: `native`, `spa`, `regularWeb`, `nonInteractive`, `resourceServer`,`ssoIntegration`. Specific SSO integrations types accepted as well are: `rms`, `box`, `cloudbees`, `concur`, `dropbox`, `mscrm`, `echosign`, `egnyte`, `newrelic`, `office365`, `salesforce`, `sentry`, `sharepoint`, `slack`, `springcm`, `zendesk`, `zoom`, `expressConfiguration`
3847
4077
  */
3848
4078
  appType: string;
3849
4079
  /**
@@ -3869,6 +4099,10 @@ export interface GetClientsClient {
3869
4099
  * Description of the purpose of the client.
3870
4100
  */
3871
4101
  description: string;
4102
+ /**
4103
+ * Express Configuration settings for the client. Used with OIN Express Configuration.
4104
+ */
4105
+ expressConfigurations: outputs.GetClientsClientExpressConfiguration[];
3872
4106
  /**
3873
4107
  * Types of grants that this client is authorized to use.
3874
4108
  */
@@ -3915,6 +4149,50 @@ export interface GetClientsClient {
3915
4149
  */
3916
4150
  webOrigins: string[];
3917
4151
  }
4152
+ export interface GetClientsClientExpressConfiguration {
4153
+ /**
4154
+ * The domain that admins are expected to log in via for authenticating for express configuration.
4155
+ */
4156
+ adminLoginDomain: string;
4157
+ /**
4158
+ * The ID of the connection profile to use for this application.
4159
+ */
4160
+ connectionProfileId: string;
4161
+ /**
4162
+ * When true, all connections made via express configuration will be enabled for this application.
4163
+ */
4164
+ enableClient: boolean;
4165
+ /**
4166
+ * When true, all connections made via express configuration will have the associated organization enabled.
4167
+ */
4168
+ enableOrganization: boolean;
4169
+ /**
4170
+ * The URI users should bookmark to log in to this application. Variable substitution is permitted for: organization_name, organization_id, and connection_name.
4171
+ */
4172
+ initiateLoginUriTemplate: string;
4173
+ /**
4174
+ * List of client IDs that are linked to this express configuration (e.g. web or mobile clients).
4175
+ */
4176
+ linkedClients: outputs.GetClientsClientExpressConfigurationLinkedClient[];
4177
+ /**
4178
+ * The identifier of the published application in the OKTA OIN.
4179
+ */
4180
+ oinSubmissionId: string;
4181
+ /**
4182
+ * The unique identifier for the Okta OIN Express Configuration Client.
4183
+ */
4184
+ oktaOinClientId: string;
4185
+ /**
4186
+ * The ID of the user attribute profile to use for this application.
4187
+ */
4188
+ userAttributeProfileId: string;
4189
+ }
4190
+ export interface GetClientsClientExpressConfigurationLinkedClient {
4191
+ /**
4192
+ * The ID of the linked client.
4193
+ */
4194
+ clientId: string;
4195
+ }
3918
4196
  export interface GetClientsClientOidcLogout {
3919
4197
  /**
3920
4198
  * Configure OIDC logout initiators for the Client
@@ -4782,6 +5060,148 @@ export interface GetConnectionOptionValidationUsername {
4782
5060
  max: number;
4783
5061
  min: number;
4784
5062
  }
5063
+ export interface GetConnectionProfileConnectionConfig {
5064
+ }
5065
+ export interface GetConnectionProfileOrganization {
5066
+ /**
5067
+ * Whether to assign membership on login.
5068
+ */
5069
+ assignMembershipOnLogin: string;
5070
+ /**
5071
+ * Whether to show organization as a button.
5072
+ */
5073
+ showAsButton: string;
5074
+ }
5075
+ export interface GetConnectionProfileStrategyOverride {
5076
+ /**
5077
+ * Strategy override configuration.
5078
+ */
5079
+ ad: outputs.GetConnectionProfileStrategyOverrideAd;
5080
+ /**
5081
+ * Strategy override configuration.
5082
+ */
5083
+ adfs: outputs.GetConnectionProfileStrategyOverrideAdfs;
5084
+ /**
5085
+ * Strategy override configuration.
5086
+ */
5087
+ googleApps: outputs.GetConnectionProfileStrategyOverrideGoogleApps;
5088
+ /**
5089
+ * Strategy override configuration.
5090
+ */
5091
+ oidc: outputs.GetConnectionProfileStrategyOverrideOidc;
5092
+ /**
5093
+ * Strategy override configuration.
5094
+ */
5095
+ okta: outputs.GetConnectionProfileStrategyOverrideOkta;
5096
+ /**
5097
+ * Strategy override configuration.
5098
+ */
5099
+ pingfederate: outputs.GetConnectionProfileStrategyOverridePingfederate;
5100
+ /**
5101
+ * Strategy override configuration.
5102
+ */
5103
+ samlp: outputs.GetConnectionProfileStrategyOverrideSamlp;
5104
+ /**
5105
+ * Strategy override configuration.
5106
+ */
5107
+ waad: outputs.GetConnectionProfileStrategyOverrideWaad;
5108
+ }
5109
+ export interface GetConnectionProfileStrategyOverrideAd {
5110
+ /**
5111
+ * Connection config for the strategy override.
5112
+ */
5113
+ connectionConfig: outputs.GetConnectionProfileStrategyOverrideAdConnectionConfig;
5114
+ /**
5115
+ * Enabled features for the strategy override.
5116
+ */
5117
+ enabledFeatures: string[];
5118
+ }
5119
+ export interface GetConnectionProfileStrategyOverrideAdConnectionConfig {
5120
+ }
5121
+ export interface GetConnectionProfileStrategyOverrideAdfs {
5122
+ /**
5123
+ * Connection config for the strategy override.
5124
+ */
5125
+ connectionConfig: outputs.GetConnectionProfileStrategyOverrideAdfsConnectionConfig;
5126
+ /**
5127
+ * Enabled features for the strategy override.
5128
+ */
5129
+ enabledFeatures: string[];
5130
+ }
5131
+ export interface GetConnectionProfileStrategyOverrideAdfsConnectionConfig {
5132
+ }
5133
+ export interface GetConnectionProfileStrategyOverrideGoogleApps {
5134
+ /**
5135
+ * Connection config for the strategy override.
5136
+ */
5137
+ connectionConfig: outputs.GetConnectionProfileStrategyOverrideGoogleAppsConnectionConfig;
5138
+ /**
5139
+ * Enabled features for the strategy override.
5140
+ */
5141
+ enabledFeatures: string[];
5142
+ }
5143
+ export interface GetConnectionProfileStrategyOverrideGoogleAppsConnectionConfig {
5144
+ }
5145
+ export interface GetConnectionProfileStrategyOverrideOidc {
5146
+ /**
5147
+ * Connection config for the strategy override.
5148
+ */
5149
+ connectionConfig: outputs.GetConnectionProfileStrategyOverrideOidcConnectionConfig;
5150
+ /**
5151
+ * Enabled features for the strategy override.
5152
+ */
5153
+ enabledFeatures: string[];
5154
+ }
5155
+ export interface GetConnectionProfileStrategyOverrideOidcConnectionConfig {
5156
+ }
5157
+ export interface GetConnectionProfileStrategyOverrideOkta {
5158
+ /**
5159
+ * Connection config for the strategy override.
5160
+ */
5161
+ connectionConfig: outputs.GetConnectionProfileStrategyOverrideOktaConnectionConfig;
5162
+ /**
5163
+ * Enabled features for the strategy override.
5164
+ */
5165
+ enabledFeatures: string[];
5166
+ }
5167
+ export interface GetConnectionProfileStrategyOverrideOktaConnectionConfig {
5168
+ }
5169
+ export interface GetConnectionProfileStrategyOverridePingfederate {
5170
+ /**
5171
+ * Connection config for the strategy override.
5172
+ */
5173
+ connectionConfig: outputs.GetConnectionProfileStrategyOverridePingfederateConnectionConfig;
5174
+ /**
5175
+ * Enabled features for the strategy override.
5176
+ */
5177
+ enabledFeatures: string[];
5178
+ }
5179
+ export interface GetConnectionProfileStrategyOverridePingfederateConnectionConfig {
5180
+ }
5181
+ export interface GetConnectionProfileStrategyOverrideSamlp {
5182
+ /**
5183
+ * Connection config for the strategy override.
5184
+ */
5185
+ connectionConfig: outputs.GetConnectionProfileStrategyOverrideSamlpConnectionConfig;
5186
+ /**
5187
+ * Enabled features for the strategy override.
5188
+ */
5189
+ enabledFeatures: string[];
5190
+ }
5191
+ export interface GetConnectionProfileStrategyOverrideSamlpConnectionConfig {
5192
+ }
5193
+ export interface GetConnectionProfileStrategyOverrideWaad {
5194
+ /**
5195
+ * Connection config for the strategy override.
5196
+ */
5197
+ connectionConfig: outputs.GetConnectionProfileStrategyOverrideWaadConnectionConfig;
5198
+ /**
5199
+ * Enabled features for the strategy override.
5200
+ */
5201
+ enabledFeatures: string[];
5202
+ }
5203
+ export interface GetConnectionProfileStrategyOverrideWaadConnectionConfig {
5204
+ }
4785
5205
  export interface GetConnectionScimConfigurationDefaultMapping {
4786
5206
  /**
4787
5207
  * The field location in the Auth0 schema.