@pulumi/auth0 3.29.0-alpha.1759209463 → 3.29.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/client.d.ts +12 -0
- package/client.js +2 -0
- package/client.js.map +1 -1
- package/getClient.d.ts +4 -0
- package/getClient.js.map +1 -1
- package/getOutboundIps.d.ts +31 -0
- package/getOutboundIps.js +24 -0
- package/getOutboundIps.js.map +1 -0
- package/getSelfServiceProfile.d.ts +5 -1
- package/getSelfServiceProfile.js.map +1 -1
- package/getTenant.d.ts +4 -0
- package/getTenant.js.map +1 -1
- package/getUserAttributeProfile.d.ts +61 -0
- package/getUserAttributeProfile.js +32 -0
- package/getUserAttributeProfile.js.map +1 -0
- package/index.d.ts +9 -0
- package/index.js +13 -2
- package/index.js.map +1 -1
- package/package.json +2 -2
- package/selfServiceProfile.d.ts +17 -3
- package/selfServiceProfile.js +4 -0
- package/selfServiceProfile.js.map +1 -1
- package/tenant.d.ts +13 -0
- package/tenant.js +3 -0
- package/tenant.js.map +1 -1
- package/types/input.d.ts +116 -0
- package/types/output.d.ts +264 -0
- package/userAttributeProfile.d.ts +79 -0
- package/userAttributeProfile.js +61 -0
- package/userAttributeProfile.js.map +1 -0
package/tenant.d.ts
CHANGED
|
@@ -23,6 +23,7 @@ import * as outputs from "./types/output";
|
|
|
23
23
|
* sandboxVersion: "12",
|
|
24
24
|
* enabledLocales: ["en"],
|
|
25
25
|
* defaultRedirectionUri: "https://example.com/login",
|
|
26
|
+
* skipNonVerifiableCallbackUriConfirmationPrompt: true,
|
|
26
27
|
* flags: {
|
|
27
28
|
* disableClickjackProtectionHeaders: true,
|
|
28
29
|
* enablePublicSignupUserExistsError: true,
|
|
@@ -163,6 +164,10 @@ export declare class Tenant extends pulumi.CustomResource {
|
|
|
163
164
|
* Sessions related settings for the tenant.
|
|
164
165
|
*/
|
|
165
166
|
readonly sessions: pulumi.Output<outputs.TenantSessions>;
|
|
167
|
+
/**
|
|
168
|
+
* Indicates whether to skip the confirmation prompt when using non-verifiable callback URIs.
|
|
169
|
+
*/
|
|
170
|
+
readonly skipNonVerifiableCallbackUriConfirmationPrompt: pulumi.Output<boolean | undefined>;
|
|
166
171
|
/**
|
|
167
172
|
* Support email address for authenticating users.
|
|
168
173
|
*/
|
|
@@ -272,6 +277,10 @@ export interface TenantState {
|
|
|
272
277
|
* Sessions related settings for the tenant.
|
|
273
278
|
*/
|
|
274
279
|
sessions?: pulumi.Input<inputs.TenantSessions>;
|
|
280
|
+
/**
|
|
281
|
+
* Indicates whether to skip the confirmation prompt when using non-verifiable callback URIs.
|
|
282
|
+
*/
|
|
283
|
+
skipNonVerifiableCallbackUriConfirmationPrompt?: pulumi.Input<boolean>;
|
|
275
284
|
/**
|
|
276
285
|
* Support email address for authenticating users.
|
|
277
286
|
*/
|
|
@@ -373,6 +382,10 @@ export interface TenantArgs {
|
|
|
373
382
|
* Sessions related settings for the tenant.
|
|
374
383
|
*/
|
|
375
384
|
sessions?: pulumi.Input<inputs.TenantSessions>;
|
|
385
|
+
/**
|
|
386
|
+
* Indicates whether to skip the confirmation prompt when using non-verifiable callback URIs.
|
|
387
|
+
*/
|
|
388
|
+
skipNonVerifiableCallbackUriConfirmationPrompt?: pulumi.Input<boolean>;
|
|
376
389
|
/**
|
|
377
390
|
* Support email address for authenticating users.
|
|
378
391
|
*/
|
package/tenant.js
CHANGED
|
@@ -27,6 +27,7 @@ const utilities = require("./utilities");
|
|
|
27
27
|
* sandboxVersion: "12",
|
|
28
28
|
* enabledLocales: ["en"],
|
|
29
29
|
* defaultRedirectionUri: "https://example.com/login",
|
|
30
|
+
* skipNonVerifiableCallbackUriConfirmationPrompt: true,
|
|
30
31
|
* flags: {
|
|
31
32
|
* disableClickjackProtectionHeaders: true,
|
|
32
33
|
* enablePublicSignupUserExistsError: true,
|
|
@@ -113,6 +114,7 @@ class Tenant extends pulumi.CustomResource {
|
|
|
113
114
|
resourceInputs["sessionCookie"] = state?.sessionCookie;
|
|
114
115
|
resourceInputs["sessionLifetime"] = state?.sessionLifetime;
|
|
115
116
|
resourceInputs["sessions"] = state?.sessions;
|
|
117
|
+
resourceInputs["skipNonVerifiableCallbackUriConfirmationPrompt"] = state?.skipNonVerifiableCallbackUriConfirmationPrompt;
|
|
116
118
|
resourceInputs["supportEmail"] = state?.supportEmail;
|
|
117
119
|
resourceInputs["supportUrl"] = state?.supportUrl;
|
|
118
120
|
}
|
|
@@ -140,6 +142,7 @@ class Tenant extends pulumi.CustomResource {
|
|
|
140
142
|
resourceInputs["sessionCookie"] = args?.sessionCookie;
|
|
141
143
|
resourceInputs["sessionLifetime"] = args?.sessionLifetime;
|
|
142
144
|
resourceInputs["sessions"] = args?.sessions;
|
|
145
|
+
resourceInputs["skipNonVerifiableCallbackUriConfirmationPrompt"] = args?.skipNonVerifiableCallbackUriConfirmationPrompt;
|
|
143
146
|
resourceInputs["supportEmail"] = args?.supportEmail;
|
|
144
147
|
resourceInputs["supportUrl"] = args?.supportUrl;
|
|
145
148
|
}
|
package/tenant.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tenant.js","sourceRoot":"","sources":["../tenant.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"tenant.js","sourceRoot":"","sources":["../tenant.ts"],"names":[],"mappings":"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"}
|
package/types/input.d.ts
CHANGED
|
@@ -1728,6 +1728,10 @@ export interface ConnectionOptionsAttributeEmail {
|
|
|
1728
1728
|
* Defines signup settings for Email attribute
|
|
1729
1729
|
*/
|
|
1730
1730
|
signups?: pulumi.Input<pulumi.Input<inputs.ConnectionOptionsAttributeEmailSignup>[]>;
|
|
1731
|
+
/**
|
|
1732
|
+
* If set to false, it allow multiple accounts with the same email address
|
|
1733
|
+
*/
|
|
1734
|
+
unique?: pulumi.Input<boolean>;
|
|
1731
1735
|
/**
|
|
1732
1736
|
* Defines whether whether user will receive a link or an OTP during user signup for email verification and password reset for email verification
|
|
1733
1737
|
*/
|
|
@@ -3299,6 +3303,118 @@ export interface TriggerActionsAction {
|
|
|
3299
3303
|
*/
|
|
3300
3304
|
id: pulumi.Input<string>;
|
|
3301
3305
|
}
|
|
3306
|
+
export interface UserAttributeProfileUserAttribute {
|
|
3307
|
+
/**
|
|
3308
|
+
* The Auth0 mapping for the user attribute.
|
|
3309
|
+
*/
|
|
3310
|
+
auth0Mapping: pulumi.Input<string>;
|
|
3311
|
+
/**
|
|
3312
|
+
* Description of the user attribute.
|
|
3313
|
+
*/
|
|
3314
|
+
description: pulumi.Input<string>;
|
|
3315
|
+
/**
|
|
3316
|
+
* Display label for the user attribute.
|
|
3317
|
+
*/
|
|
3318
|
+
label: pulumi.Input<string>;
|
|
3319
|
+
/**
|
|
3320
|
+
* Name of the user attribute.
|
|
3321
|
+
*/
|
|
3322
|
+
name: pulumi.Input<string>;
|
|
3323
|
+
/**
|
|
3324
|
+
* The OIDC mapping configuration for the user attribute.
|
|
3325
|
+
*/
|
|
3326
|
+
oidcMapping?: pulumi.Input<inputs.UserAttributeProfileUserAttributeOidcMapping>;
|
|
3327
|
+
/**
|
|
3328
|
+
* Whether the attribute is required in the profile.
|
|
3329
|
+
*/
|
|
3330
|
+
profileRequired: pulumi.Input<boolean>;
|
|
3331
|
+
/**
|
|
3332
|
+
* SAML mapping override for this strategy.
|
|
3333
|
+
*/
|
|
3334
|
+
samlMappings?: pulumi.Input<pulumi.Input<string>[]>;
|
|
3335
|
+
/**
|
|
3336
|
+
* The SCIM mapping for the user attribute.
|
|
3337
|
+
*/
|
|
3338
|
+
scimMapping?: pulumi.Input<string>;
|
|
3339
|
+
/**
|
|
3340
|
+
* Strategy-specific overrides for user attribute mapping.
|
|
3341
|
+
*/
|
|
3342
|
+
strategyOverrides?: pulumi.Input<pulumi.Input<inputs.UserAttributeProfileUserAttributeStrategyOverride>[]>;
|
|
3343
|
+
}
|
|
3344
|
+
export interface UserAttributeProfileUserAttributeOidcMapping {
|
|
3345
|
+
/**
|
|
3346
|
+
* Display name for the OIDC mapping.
|
|
3347
|
+
*/
|
|
3348
|
+
displayName?: pulumi.Input<string>;
|
|
3349
|
+
/**
|
|
3350
|
+
* The OIDC mapping field.
|
|
3351
|
+
*/
|
|
3352
|
+
mapping: pulumi.Input<string>;
|
|
3353
|
+
}
|
|
3354
|
+
export interface UserAttributeProfileUserAttributeStrategyOverride {
|
|
3355
|
+
/**
|
|
3356
|
+
* OIDC mapping override for this strategy.
|
|
3357
|
+
*/
|
|
3358
|
+
oidcMapping?: pulumi.Input<inputs.UserAttributeProfileUserAttributeStrategyOverrideOidcMapping>;
|
|
3359
|
+
/**
|
|
3360
|
+
* SAML mapping override for this strategy.
|
|
3361
|
+
*/
|
|
3362
|
+
samlMappings?: pulumi.Input<pulumi.Input<string>[]>;
|
|
3363
|
+
/**
|
|
3364
|
+
* SCIM mapping override for this strategy.
|
|
3365
|
+
*/
|
|
3366
|
+
scimMapping?: pulumi.Input<string>;
|
|
3367
|
+
/**
|
|
3368
|
+
* The strategy name (e.g., 'oidc', 'samlp', 'ad', etc.).
|
|
3369
|
+
*/
|
|
3370
|
+
strategy: pulumi.Input<string>;
|
|
3371
|
+
}
|
|
3372
|
+
export interface UserAttributeProfileUserAttributeStrategyOverrideOidcMapping {
|
|
3373
|
+
/**
|
|
3374
|
+
* Display name for the OIDC mapping.
|
|
3375
|
+
*/
|
|
3376
|
+
displayName?: pulumi.Input<string>;
|
|
3377
|
+
/**
|
|
3378
|
+
* The OIDC mapping field.
|
|
3379
|
+
*/
|
|
3380
|
+
mapping: pulumi.Input<string>;
|
|
3381
|
+
}
|
|
3382
|
+
export interface UserAttributeProfileUserId {
|
|
3383
|
+
/**
|
|
3384
|
+
* The OIDC mapping for the user ID.
|
|
3385
|
+
*/
|
|
3386
|
+
oidcMapping?: pulumi.Input<string>;
|
|
3387
|
+
/**
|
|
3388
|
+
* The SAML mapping for the user ID.
|
|
3389
|
+
*/
|
|
3390
|
+
samlMappings?: pulumi.Input<pulumi.Input<string>[]>;
|
|
3391
|
+
/**
|
|
3392
|
+
* The SCIM mapping for the user ID.
|
|
3393
|
+
*/
|
|
3394
|
+
scimMapping?: pulumi.Input<string>;
|
|
3395
|
+
/**
|
|
3396
|
+
* Strategy-specific overrides for user ID mapping.
|
|
3397
|
+
*/
|
|
3398
|
+
strategyOverrides?: pulumi.Input<pulumi.Input<inputs.UserAttributeProfileUserIdStrategyOverride>[]>;
|
|
3399
|
+
}
|
|
3400
|
+
export interface UserAttributeProfileUserIdStrategyOverride {
|
|
3401
|
+
/**
|
|
3402
|
+
* OIDC mapping override for this strategy.
|
|
3403
|
+
*/
|
|
3404
|
+
oidcMapping?: pulumi.Input<string>;
|
|
3405
|
+
/**
|
|
3406
|
+
* SAML mapping override for this strategy.
|
|
3407
|
+
*/
|
|
3408
|
+
samlMappings?: pulumi.Input<pulumi.Input<string>[]>;
|
|
3409
|
+
/**
|
|
3410
|
+
* SCIM mapping override for this strategy.
|
|
3411
|
+
*/
|
|
3412
|
+
scimMapping?: pulumi.Input<string>;
|
|
3413
|
+
/**
|
|
3414
|
+
* The strategy name (e.g., 'oidc', 'samlp', 'ad', etc.).
|
|
3415
|
+
*/
|
|
3416
|
+
strategy: pulumi.Input<string>;
|
|
3417
|
+
}
|
|
3302
3418
|
export interface UserPermissionsPermission {
|
|
3303
3419
|
/**
|
|
3304
3420
|
* Description of the permission.
|
package/types/output.d.ts
CHANGED
|
@@ -1727,6 +1727,10 @@ export interface ConnectionOptionsAttributeEmail {
|
|
|
1727
1727
|
* Defines signup settings for Email attribute
|
|
1728
1728
|
*/
|
|
1729
1729
|
signups?: outputs.ConnectionOptionsAttributeEmailSignup[];
|
|
1730
|
+
/**
|
|
1731
|
+
* If set to false, it allow multiple accounts with the same email address
|
|
1732
|
+
*/
|
|
1733
|
+
unique?: boolean;
|
|
1730
1734
|
/**
|
|
1731
1735
|
* Defines whether whether user will receive a link or an OTP during user signup for email verification and password reset for email verification
|
|
1732
1736
|
*/
|
|
@@ -3574,6 +3578,10 @@ export interface GetClientsClient {
|
|
|
3574
3578
|
*/
|
|
3575
3579
|
resourceServerIdentifier: string;
|
|
3576
3580
|
sessionTransfers: outputs.GetClientsClientSessionTransfer[];
|
|
3581
|
+
/**
|
|
3582
|
+
* Indicates whether to skip the confirmation prompt when using non-verifiable callback URIs.
|
|
3583
|
+
*/
|
|
3584
|
+
skipNonVerifiableCallbackUriConfirmationPrompt: boolean;
|
|
3577
3585
|
/**
|
|
3578
3586
|
* Allows configuration for token exchange
|
|
3579
3587
|
*/
|
|
@@ -4150,6 +4158,10 @@ export interface GetConnectionOptionAttributeEmail {
|
|
|
4150
4158
|
* Defines signup settings for Email attribute
|
|
4151
4159
|
*/
|
|
4152
4160
|
signups: outputs.GetConnectionOptionAttributeEmailSignup[];
|
|
4161
|
+
/**
|
|
4162
|
+
* If set to false, it allow multiple accounts with the same email address
|
|
4163
|
+
*/
|
|
4164
|
+
unique: boolean;
|
|
4153
4165
|
/**
|
|
4154
4166
|
* Defines whether whether user will receive a link or an OTP during user signup for email verification and password reset for email verification
|
|
4155
4167
|
*/
|
|
@@ -4683,6 +4695,34 @@ export interface GetOrganizationTokenQuotaClientCredential {
|
|
|
4683
4695
|
*/
|
|
4684
4696
|
perHour: number;
|
|
4685
4697
|
}
|
|
4698
|
+
export interface GetOutboundIpsChangelog {
|
|
4699
|
+
/**
|
|
4700
|
+
* Type of change (add or remove).
|
|
4701
|
+
*/
|
|
4702
|
+
action: string;
|
|
4703
|
+
/**
|
|
4704
|
+
* Date of the change (YYYY-MM-DD format).
|
|
4705
|
+
*/
|
|
4706
|
+
date: string;
|
|
4707
|
+
/**
|
|
4708
|
+
* List of IPv4 CIDR blocks affected by this change.
|
|
4709
|
+
*/
|
|
4710
|
+
ipv4Cidrs: string[];
|
|
4711
|
+
/**
|
|
4712
|
+
* Region affected by the change.
|
|
4713
|
+
*/
|
|
4714
|
+
region: string;
|
|
4715
|
+
}
|
|
4716
|
+
export interface GetOutboundIpsRegion {
|
|
4717
|
+
/**
|
|
4718
|
+
* A list of IPv4 CIDR blocks for the region.
|
|
4719
|
+
*/
|
|
4720
|
+
ipv4Cidrs: string[];
|
|
4721
|
+
/**
|
|
4722
|
+
* The code for the region (e.g., 'US', 'CA').
|
|
4723
|
+
*/
|
|
4724
|
+
region: string;
|
|
4725
|
+
}
|
|
4686
4726
|
export interface GetPagesChangePassword {
|
|
4687
4727
|
/**
|
|
4688
4728
|
* Indicates whether to use the custom Reset Password HTML (`true`) or the default Auth0 page (`false`).
|
|
@@ -5174,6 +5214,118 @@ export interface GetTenantSessionCooky {
|
|
|
5174
5214
|
*/
|
|
5175
5215
|
mode: string;
|
|
5176
5216
|
}
|
|
5217
|
+
export interface GetUserAttributeProfileUserAttribute {
|
|
5218
|
+
/**
|
|
5219
|
+
* The Auth0 mapping for the user attribute.
|
|
5220
|
+
*/
|
|
5221
|
+
auth0Mapping: string;
|
|
5222
|
+
/**
|
|
5223
|
+
* Description of the user attribute.
|
|
5224
|
+
*/
|
|
5225
|
+
description: string;
|
|
5226
|
+
/**
|
|
5227
|
+
* Display label for the user attribute.
|
|
5228
|
+
*/
|
|
5229
|
+
label: string;
|
|
5230
|
+
/**
|
|
5231
|
+
* Name of the user attribute.
|
|
5232
|
+
*/
|
|
5233
|
+
name: string;
|
|
5234
|
+
/**
|
|
5235
|
+
* The OIDC mapping configuration for the user attribute.
|
|
5236
|
+
*/
|
|
5237
|
+
oidcMappings: outputs.GetUserAttributeProfileUserAttributeOidcMapping[];
|
|
5238
|
+
/**
|
|
5239
|
+
* Whether the attribute is required in the profile.
|
|
5240
|
+
*/
|
|
5241
|
+
profileRequired: boolean;
|
|
5242
|
+
/**
|
|
5243
|
+
* SAML mapping override for this strategy.
|
|
5244
|
+
*/
|
|
5245
|
+
samlMappings: string[];
|
|
5246
|
+
/**
|
|
5247
|
+
* The SCIM mapping for the user attribute.
|
|
5248
|
+
*/
|
|
5249
|
+
scimMapping: string;
|
|
5250
|
+
/**
|
|
5251
|
+
* Strategy-specific overrides for user attribute mapping.
|
|
5252
|
+
*/
|
|
5253
|
+
strategyOverrides: outputs.GetUserAttributeProfileUserAttributeStrategyOverride[];
|
|
5254
|
+
}
|
|
5255
|
+
export interface GetUserAttributeProfileUserAttributeOidcMapping {
|
|
5256
|
+
/**
|
|
5257
|
+
* Display name for the OIDC mapping.
|
|
5258
|
+
*/
|
|
5259
|
+
displayName: string;
|
|
5260
|
+
/**
|
|
5261
|
+
* The OIDC mapping field.
|
|
5262
|
+
*/
|
|
5263
|
+
mapping: string;
|
|
5264
|
+
}
|
|
5265
|
+
export interface GetUserAttributeProfileUserAttributeStrategyOverride {
|
|
5266
|
+
/**
|
|
5267
|
+
* OIDC mapping override for this strategy.
|
|
5268
|
+
*/
|
|
5269
|
+
oidcMappings: outputs.GetUserAttributeProfileUserAttributeStrategyOverrideOidcMapping[];
|
|
5270
|
+
/**
|
|
5271
|
+
* SAML mapping override for this strategy.
|
|
5272
|
+
*/
|
|
5273
|
+
samlMappings: string[];
|
|
5274
|
+
/**
|
|
5275
|
+
* SCIM mapping override for this strategy.
|
|
5276
|
+
*/
|
|
5277
|
+
scimMapping: string;
|
|
5278
|
+
/**
|
|
5279
|
+
* The strategy name (e.g., 'oidc', 'samlp', 'ad', etc.).
|
|
5280
|
+
*/
|
|
5281
|
+
strategy: string;
|
|
5282
|
+
}
|
|
5283
|
+
export interface GetUserAttributeProfileUserAttributeStrategyOverrideOidcMapping {
|
|
5284
|
+
/**
|
|
5285
|
+
* Display name for the OIDC mapping.
|
|
5286
|
+
*/
|
|
5287
|
+
displayName: string;
|
|
5288
|
+
/**
|
|
5289
|
+
* The OIDC mapping field.
|
|
5290
|
+
*/
|
|
5291
|
+
mapping: string;
|
|
5292
|
+
}
|
|
5293
|
+
export interface GetUserAttributeProfileUserId {
|
|
5294
|
+
/**
|
|
5295
|
+
* The OIDC mapping for the user ID.
|
|
5296
|
+
*/
|
|
5297
|
+
oidcMapping: string;
|
|
5298
|
+
/**
|
|
5299
|
+
* The SAML mapping for the user ID.
|
|
5300
|
+
*/
|
|
5301
|
+
samlMappings: string[];
|
|
5302
|
+
/**
|
|
5303
|
+
* The SCIM mapping for the user ID.
|
|
5304
|
+
*/
|
|
5305
|
+
scimMapping: string;
|
|
5306
|
+
/**
|
|
5307
|
+
* Strategy-specific overrides for user ID mapping.
|
|
5308
|
+
*/
|
|
5309
|
+
strategyOverrides: outputs.GetUserAttributeProfileUserIdStrategyOverride[];
|
|
5310
|
+
}
|
|
5311
|
+
export interface GetUserAttributeProfileUserIdStrategyOverride {
|
|
5312
|
+
/**
|
|
5313
|
+
* OIDC mapping override for this strategy.
|
|
5314
|
+
*/
|
|
5315
|
+
oidcMapping: string;
|
|
5316
|
+
/**
|
|
5317
|
+
* SAML mapping override for this strategy.
|
|
5318
|
+
*/
|
|
5319
|
+
samlMappings: string[];
|
|
5320
|
+
/**
|
|
5321
|
+
* SCIM mapping override for this strategy.
|
|
5322
|
+
*/
|
|
5323
|
+
scimMapping: string;
|
|
5324
|
+
/**
|
|
5325
|
+
* The strategy name (e.g., 'oidc', 'samlp', 'ad', etc.).
|
|
5326
|
+
*/
|
|
5327
|
+
strategy: string;
|
|
5328
|
+
}
|
|
5177
5329
|
export interface GetUserPermission {
|
|
5178
5330
|
/**
|
|
5179
5331
|
* Description of the permission.
|
|
@@ -6136,6 +6288,118 @@ export interface TriggerActionsAction {
|
|
|
6136
6288
|
*/
|
|
6137
6289
|
id: string;
|
|
6138
6290
|
}
|
|
6291
|
+
export interface UserAttributeProfileUserAttribute {
|
|
6292
|
+
/**
|
|
6293
|
+
* The Auth0 mapping for the user attribute.
|
|
6294
|
+
*/
|
|
6295
|
+
auth0Mapping: string;
|
|
6296
|
+
/**
|
|
6297
|
+
* Description of the user attribute.
|
|
6298
|
+
*/
|
|
6299
|
+
description: string;
|
|
6300
|
+
/**
|
|
6301
|
+
* Display label for the user attribute.
|
|
6302
|
+
*/
|
|
6303
|
+
label: string;
|
|
6304
|
+
/**
|
|
6305
|
+
* Name of the user attribute.
|
|
6306
|
+
*/
|
|
6307
|
+
name: string;
|
|
6308
|
+
/**
|
|
6309
|
+
* The OIDC mapping configuration for the user attribute.
|
|
6310
|
+
*/
|
|
6311
|
+
oidcMapping: outputs.UserAttributeProfileUserAttributeOidcMapping;
|
|
6312
|
+
/**
|
|
6313
|
+
* Whether the attribute is required in the profile.
|
|
6314
|
+
*/
|
|
6315
|
+
profileRequired: boolean;
|
|
6316
|
+
/**
|
|
6317
|
+
* SAML mapping override for this strategy.
|
|
6318
|
+
*/
|
|
6319
|
+
samlMappings: string[];
|
|
6320
|
+
/**
|
|
6321
|
+
* The SCIM mapping for the user attribute.
|
|
6322
|
+
*/
|
|
6323
|
+
scimMapping: string;
|
|
6324
|
+
/**
|
|
6325
|
+
* Strategy-specific overrides for user attribute mapping.
|
|
6326
|
+
*/
|
|
6327
|
+
strategyOverrides: outputs.UserAttributeProfileUserAttributeStrategyOverride[];
|
|
6328
|
+
}
|
|
6329
|
+
export interface UserAttributeProfileUserAttributeOidcMapping {
|
|
6330
|
+
/**
|
|
6331
|
+
* Display name for the OIDC mapping.
|
|
6332
|
+
*/
|
|
6333
|
+
displayName?: string;
|
|
6334
|
+
/**
|
|
6335
|
+
* The OIDC mapping field.
|
|
6336
|
+
*/
|
|
6337
|
+
mapping: string;
|
|
6338
|
+
}
|
|
6339
|
+
export interface UserAttributeProfileUserAttributeStrategyOverride {
|
|
6340
|
+
/**
|
|
6341
|
+
* OIDC mapping override for this strategy.
|
|
6342
|
+
*/
|
|
6343
|
+
oidcMapping: outputs.UserAttributeProfileUserAttributeStrategyOverrideOidcMapping;
|
|
6344
|
+
/**
|
|
6345
|
+
* SAML mapping override for this strategy.
|
|
6346
|
+
*/
|
|
6347
|
+
samlMappings: string[];
|
|
6348
|
+
/**
|
|
6349
|
+
* SCIM mapping override for this strategy.
|
|
6350
|
+
*/
|
|
6351
|
+
scimMapping: string;
|
|
6352
|
+
/**
|
|
6353
|
+
* The strategy name (e.g., 'oidc', 'samlp', 'ad', etc.).
|
|
6354
|
+
*/
|
|
6355
|
+
strategy: string;
|
|
6356
|
+
}
|
|
6357
|
+
export interface UserAttributeProfileUserAttributeStrategyOverrideOidcMapping {
|
|
6358
|
+
/**
|
|
6359
|
+
* Display name for the OIDC mapping.
|
|
6360
|
+
*/
|
|
6361
|
+
displayName?: string;
|
|
6362
|
+
/**
|
|
6363
|
+
* The OIDC mapping field.
|
|
6364
|
+
*/
|
|
6365
|
+
mapping: string;
|
|
6366
|
+
}
|
|
6367
|
+
export interface UserAttributeProfileUserId {
|
|
6368
|
+
/**
|
|
6369
|
+
* The OIDC mapping for the user ID.
|
|
6370
|
+
*/
|
|
6371
|
+
oidcMapping: string;
|
|
6372
|
+
/**
|
|
6373
|
+
* The SAML mapping for the user ID.
|
|
6374
|
+
*/
|
|
6375
|
+
samlMappings: string[];
|
|
6376
|
+
/**
|
|
6377
|
+
* The SCIM mapping for the user ID.
|
|
6378
|
+
*/
|
|
6379
|
+
scimMapping: string;
|
|
6380
|
+
/**
|
|
6381
|
+
* Strategy-specific overrides for user ID mapping.
|
|
6382
|
+
*/
|
|
6383
|
+
strategyOverrides?: outputs.UserAttributeProfileUserIdStrategyOverride[];
|
|
6384
|
+
}
|
|
6385
|
+
export interface UserAttributeProfileUserIdStrategyOverride {
|
|
6386
|
+
/**
|
|
6387
|
+
* OIDC mapping override for this strategy.
|
|
6388
|
+
*/
|
|
6389
|
+
oidcMapping: string;
|
|
6390
|
+
/**
|
|
6391
|
+
* SAML mapping override for this strategy.
|
|
6392
|
+
*/
|
|
6393
|
+
samlMappings: string[];
|
|
6394
|
+
/**
|
|
6395
|
+
* SCIM mapping override for this strategy.
|
|
6396
|
+
*/
|
|
6397
|
+
scimMapping: string;
|
|
6398
|
+
/**
|
|
6399
|
+
* The strategy name (e.g., 'oidc', 'samlp', 'ad', etc.).
|
|
6400
|
+
*/
|
|
6401
|
+
strategy: string;
|
|
6402
|
+
}
|
|
6139
6403
|
export interface UserPermissionsPermission {
|
|
6140
6404
|
/**
|
|
6141
6405
|
* Description of the permission.
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
4
|
+
/**
|
|
5
|
+
* With this resource, you can manage User Attribute Profiles within Auth0. User Attribute Profiles allow you to define how user attributes are mapped between different identity providers and Auth0.
|
|
6
|
+
*
|
|
7
|
+
* > This resource is only available for [EA](https://auth0.com/docs/troubleshoot/product-lifecycle/product-release-stages#early-access) users.
|
|
8
|
+
*/
|
|
9
|
+
export declare class UserAttributeProfile extends pulumi.CustomResource {
|
|
10
|
+
/**
|
|
11
|
+
* Get an existing UserAttributeProfile resource's state with the given name, ID, and optional extra
|
|
12
|
+
* properties used to qualify the lookup.
|
|
13
|
+
*
|
|
14
|
+
* @param name The _unique_ name of the resulting resource.
|
|
15
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
16
|
+
* @param state Any extra arguments used during the lookup.
|
|
17
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
18
|
+
*/
|
|
19
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: UserAttributeProfileState, opts?: pulumi.CustomResourceOptions): UserAttributeProfile;
|
|
20
|
+
/**
|
|
21
|
+
* Returns true if the given object is an instance of UserAttributeProfile. This is designed to work even
|
|
22
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
23
|
+
*/
|
|
24
|
+
static isInstance(obj: any): obj is UserAttributeProfile;
|
|
25
|
+
/**
|
|
26
|
+
* The name of the User Attribute Profile.
|
|
27
|
+
*/
|
|
28
|
+
readonly name: pulumi.Output<string>;
|
|
29
|
+
/**
|
|
30
|
+
* List of user attribute configurations.
|
|
31
|
+
*/
|
|
32
|
+
readonly userAttributes: pulumi.Output<outputs.UserAttributeProfileUserAttribute[]>;
|
|
33
|
+
/**
|
|
34
|
+
* Configuration for mapping the user ID from identity providers.
|
|
35
|
+
*/
|
|
36
|
+
readonly userId: pulumi.Output<outputs.UserAttributeProfileUserId>;
|
|
37
|
+
/**
|
|
38
|
+
* Create a UserAttributeProfile resource with the given unique name, arguments, and options.
|
|
39
|
+
*
|
|
40
|
+
* @param name The _unique_ name of the resource.
|
|
41
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
42
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
43
|
+
*/
|
|
44
|
+
constructor(name: string, args: UserAttributeProfileArgs, opts?: pulumi.CustomResourceOptions);
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* Input properties used for looking up and filtering UserAttributeProfile resources.
|
|
48
|
+
*/
|
|
49
|
+
export interface UserAttributeProfileState {
|
|
50
|
+
/**
|
|
51
|
+
* The name of the User Attribute Profile.
|
|
52
|
+
*/
|
|
53
|
+
name?: pulumi.Input<string>;
|
|
54
|
+
/**
|
|
55
|
+
* List of user attribute configurations.
|
|
56
|
+
*/
|
|
57
|
+
userAttributes?: pulumi.Input<pulumi.Input<inputs.UserAttributeProfileUserAttribute>[]>;
|
|
58
|
+
/**
|
|
59
|
+
* Configuration for mapping the user ID from identity providers.
|
|
60
|
+
*/
|
|
61
|
+
userId?: pulumi.Input<inputs.UserAttributeProfileUserId>;
|
|
62
|
+
}
|
|
63
|
+
/**
|
|
64
|
+
* The set of arguments for constructing a UserAttributeProfile resource.
|
|
65
|
+
*/
|
|
66
|
+
export interface UserAttributeProfileArgs {
|
|
67
|
+
/**
|
|
68
|
+
* The name of the User Attribute Profile.
|
|
69
|
+
*/
|
|
70
|
+
name?: pulumi.Input<string>;
|
|
71
|
+
/**
|
|
72
|
+
* List of user attribute configurations.
|
|
73
|
+
*/
|
|
74
|
+
userAttributes: pulumi.Input<pulumi.Input<inputs.UserAttributeProfileUserAttribute>[]>;
|
|
75
|
+
/**
|
|
76
|
+
* Configuration for mapping the user ID from identity providers.
|
|
77
|
+
*/
|
|
78
|
+
userId?: pulumi.Input<inputs.UserAttributeProfileUserId>;
|
|
79
|
+
}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.UserAttributeProfile = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* With this resource, you can manage User Attribute Profiles within Auth0. User Attribute Profiles allow you to define how user attributes are mapped between different identity providers and Auth0.
|
|
10
|
+
*
|
|
11
|
+
* > This resource is only available for [EA](https://auth0.com/docs/troubleshoot/product-lifecycle/product-release-stages#early-access) users.
|
|
12
|
+
*/
|
|
13
|
+
class UserAttributeProfile extends pulumi.CustomResource {
|
|
14
|
+
/**
|
|
15
|
+
* Get an existing UserAttributeProfile resource's state with the given name, ID, and optional extra
|
|
16
|
+
* properties used to qualify the lookup.
|
|
17
|
+
*
|
|
18
|
+
* @param name The _unique_ name of the resulting resource.
|
|
19
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
20
|
+
* @param state Any extra arguments used during the lookup.
|
|
21
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
22
|
+
*/
|
|
23
|
+
static get(name, id, state, opts) {
|
|
24
|
+
return new UserAttributeProfile(name, state, { ...opts, id: id });
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* Returns true if the given object is an instance of UserAttributeProfile. This is designed to work even
|
|
28
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
29
|
+
*/
|
|
30
|
+
static isInstance(obj) {
|
|
31
|
+
if (obj === undefined || obj === null) {
|
|
32
|
+
return false;
|
|
33
|
+
}
|
|
34
|
+
return obj['__pulumiType'] === UserAttributeProfile.__pulumiType;
|
|
35
|
+
}
|
|
36
|
+
constructor(name, argsOrState, opts) {
|
|
37
|
+
let resourceInputs = {};
|
|
38
|
+
opts = opts || {};
|
|
39
|
+
if (opts.id) {
|
|
40
|
+
const state = argsOrState;
|
|
41
|
+
resourceInputs["name"] = state?.name;
|
|
42
|
+
resourceInputs["userAttributes"] = state?.userAttributes;
|
|
43
|
+
resourceInputs["userId"] = state?.userId;
|
|
44
|
+
}
|
|
45
|
+
else {
|
|
46
|
+
const args = argsOrState;
|
|
47
|
+
if (args?.userAttributes === undefined && !opts.urn) {
|
|
48
|
+
throw new Error("Missing required property 'userAttributes'");
|
|
49
|
+
}
|
|
50
|
+
resourceInputs["name"] = args?.name;
|
|
51
|
+
resourceInputs["userAttributes"] = args?.userAttributes;
|
|
52
|
+
resourceInputs["userId"] = args?.userId;
|
|
53
|
+
}
|
|
54
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
55
|
+
super(UserAttributeProfile.__pulumiType, name, resourceInputs, opts);
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
exports.UserAttributeProfile = UserAttributeProfile;
|
|
59
|
+
/** @internal */
|
|
60
|
+
UserAttributeProfile.__pulumiType = 'auth0:index/userAttributeProfile:UserAttributeProfile';
|
|
61
|
+
//# sourceMappingURL=userAttributeProfile.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"userAttributeProfile.js","sourceRoot":"","sources":["../userAttributeProfile.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;GAIG;AACH,MAAa,oBAAqB,SAAQ,MAAM,CAAC,cAAc;IAC3D;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAiC,EAAE,IAAmC;QAC/H,OAAO,IAAI,oBAAoB,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAC3E,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,oBAAoB,CAAC,YAAY,CAAC;IACrE,CAAC;IAuBD,YAAY,IAAY,EAAE,WAAkE,EAAE,IAAmC;QAC7H,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAoD,CAAC;YACnE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,EAAE,cAAc,CAAC;YACzD,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;SAC5C;aAAM;YACH,MAAM,IAAI,GAAG,WAAmD,CAAC;YACjE,IAAI,IAAI,EAAE,cAAc,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACjD,MAAM,IAAI,KAAK,CAAC,4CAA4C,CAAC,CAAC;aACjE;YACD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,EAAE,cAAc,CAAC;YACxD,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC;SAC3C;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,oBAAoB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACzE,CAAC;;AApEL,oDAqEC;AAvDG,gBAAgB;AACO,iCAAY,GAAG,uDAAuD,CAAC"}
|