@pulumi/auth0 3.31.0-alpha.1761887850 → 3.31.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.
@@ -0,0 +1,91 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ /**
3
+ * Manage organization discovery domains for Home Realm Discovery. These domains help automatically route users to the correct organization based on their email domain.
4
+ */
5
+ export declare class OrganizationDiscoveryDomain extends pulumi.CustomResource {
6
+ /**
7
+ * Get an existing OrganizationDiscoveryDomain resource's state with the given name, ID, and optional extra
8
+ * properties used to qualify the lookup.
9
+ *
10
+ * @param name The _unique_ name of the resulting resource.
11
+ * @param id The _unique_ provider ID of the resource to lookup.
12
+ * @param state Any extra arguments used during the lookup.
13
+ * @param opts Optional settings to control the behavior of the CustomResource.
14
+ */
15
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: OrganizationDiscoveryDomainState, opts?: pulumi.CustomResourceOptions): OrganizationDiscoveryDomain;
16
+ /**
17
+ * Returns true if the given object is an instance of OrganizationDiscoveryDomain. This is designed to work even
18
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
19
+ */
20
+ static isInstance(obj: any): obj is OrganizationDiscoveryDomain;
21
+ /**
22
+ * The domain name for organization discovery.
23
+ */
24
+ readonly domain: pulumi.Output<string>;
25
+ /**
26
+ * The ID of the organization.
27
+ */
28
+ readonly organizationId: pulumi.Output<string>;
29
+ /**
30
+ * Verification status. Must be either 'pending' or 'verified'.
31
+ */
32
+ readonly status: pulumi.Output<string>;
33
+ /**
34
+ * The full domain where the TXT record should be added.
35
+ */
36
+ readonly verificationHost: pulumi.Output<string>;
37
+ /**
38
+ * TXT record value for domain verification.
39
+ */
40
+ readonly verificationTxt: pulumi.Output<string>;
41
+ /**
42
+ * Create a OrganizationDiscoveryDomain resource with the given unique name, arguments, and options.
43
+ *
44
+ * @param name The _unique_ name of the resource.
45
+ * @param args The arguments to use to populate this resource's properties.
46
+ * @param opts A bag of options that control this resource's behavior.
47
+ */
48
+ constructor(name: string, args: OrganizationDiscoveryDomainArgs, opts?: pulumi.CustomResourceOptions);
49
+ }
50
+ /**
51
+ * Input properties used for looking up and filtering OrganizationDiscoveryDomain resources.
52
+ */
53
+ export interface OrganizationDiscoveryDomainState {
54
+ /**
55
+ * The domain name for organization discovery.
56
+ */
57
+ domain?: pulumi.Input<string>;
58
+ /**
59
+ * The ID of the organization.
60
+ */
61
+ organizationId?: pulumi.Input<string>;
62
+ /**
63
+ * Verification status. Must be either 'pending' or 'verified'.
64
+ */
65
+ status?: pulumi.Input<string>;
66
+ /**
67
+ * The full domain where the TXT record should be added.
68
+ */
69
+ verificationHost?: pulumi.Input<string>;
70
+ /**
71
+ * TXT record value for domain verification.
72
+ */
73
+ verificationTxt?: pulumi.Input<string>;
74
+ }
75
+ /**
76
+ * The set of arguments for constructing a OrganizationDiscoveryDomain resource.
77
+ */
78
+ export interface OrganizationDiscoveryDomainArgs {
79
+ /**
80
+ * The domain name for organization discovery.
81
+ */
82
+ domain: pulumi.Input<string>;
83
+ /**
84
+ * The ID of the organization.
85
+ */
86
+ organizationId: pulumi.Input<string>;
87
+ /**
88
+ * Verification status. Must be either 'pending' or 'verified'.
89
+ */
90
+ status: pulumi.Input<string>;
91
+ }
@@ -0,0 +1,69 @@
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.OrganizationDiscoveryDomain = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * Manage organization discovery domains for Home Realm Discovery. These domains help automatically route users to the correct organization based on their email domain.
10
+ */
11
+ class OrganizationDiscoveryDomain extends pulumi.CustomResource {
12
+ /**
13
+ * Get an existing OrganizationDiscoveryDomain resource's state with the given name, ID, and optional extra
14
+ * properties used to qualify the lookup.
15
+ *
16
+ * @param name The _unique_ name of the resulting resource.
17
+ * @param id The _unique_ provider ID of the resource to lookup.
18
+ * @param state Any extra arguments used during the lookup.
19
+ * @param opts Optional settings to control the behavior of the CustomResource.
20
+ */
21
+ static get(name, id, state, opts) {
22
+ return new OrganizationDiscoveryDomain(name, state, { ...opts, id: id });
23
+ }
24
+ /**
25
+ * Returns true if the given object is an instance of OrganizationDiscoveryDomain. This is designed to work even
26
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
27
+ */
28
+ static isInstance(obj) {
29
+ if (obj === undefined || obj === null) {
30
+ return false;
31
+ }
32
+ return obj['__pulumiType'] === OrganizationDiscoveryDomain.__pulumiType;
33
+ }
34
+ constructor(name, argsOrState, opts) {
35
+ let resourceInputs = {};
36
+ opts = opts || {};
37
+ if (opts.id) {
38
+ const state = argsOrState;
39
+ resourceInputs["domain"] = state?.domain;
40
+ resourceInputs["organizationId"] = state?.organizationId;
41
+ resourceInputs["status"] = state?.status;
42
+ resourceInputs["verificationHost"] = state?.verificationHost;
43
+ resourceInputs["verificationTxt"] = state?.verificationTxt;
44
+ }
45
+ else {
46
+ const args = argsOrState;
47
+ if (args?.domain === undefined && !opts.urn) {
48
+ throw new Error("Missing required property 'domain'");
49
+ }
50
+ if (args?.organizationId === undefined && !opts.urn) {
51
+ throw new Error("Missing required property 'organizationId'");
52
+ }
53
+ if (args?.status === undefined && !opts.urn) {
54
+ throw new Error("Missing required property 'status'");
55
+ }
56
+ resourceInputs["domain"] = args?.domain;
57
+ resourceInputs["organizationId"] = args?.organizationId;
58
+ resourceInputs["status"] = args?.status;
59
+ resourceInputs["verificationHost"] = undefined /*out*/;
60
+ resourceInputs["verificationTxt"] = undefined /*out*/;
61
+ }
62
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
63
+ super(OrganizationDiscoveryDomain.__pulumiType, name, resourceInputs, opts);
64
+ }
65
+ }
66
+ exports.OrganizationDiscoveryDomain = OrganizationDiscoveryDomain;
67
+ /** @internal */
68
+ OrganizationDiscoveryDomain.__pulumiType = 'auth0:index/organizationDiscoveryDomain:OrganizationDiscoveryDomain';
69
+ //# sourceMappingURL=organizationDiscoveryDomain.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"organizationDiscoveryDomain.js","sourceRoot":"","sources":["../organizationDiscoveryDomain.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;GAEG;AACH,MAAa,2BAA4B,SAAQ,MAAM,CAAC,cAAc;IAClE;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAwC,EAAE,IAAmC;QACtI,OAAO,IAAI,2BAA2B,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAClF,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,2BAA2B,CAAC,YAAY,CAAC;IAC5E,CAAC;IA+BD,YAAY,IAAY,EAAE,WAAgF,EAAE,IAAmC;QAC3I,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA2D,CAAC;YAC1E,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;YACzC,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,EAAE,cAAc,CAAC;YACzD,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;YACzC,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,EAAE,gBAAgB,CAAC;YAC7D,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,EAAE,eAAe,CAAC;SAC9D;aAAM;YACH,MAAM,IAAI,GAAG,WAA0D,CAAC;YACxE,IAAI,IAAI,EAAE,MAAM,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACzC,MAAM,IAAI,KAAK,CAAC,oCAAoC,CAAC,CAAC;aACzD;YACD,IAAI,IAAI,EAAE,cAAc,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACjD,MAAM,IAAI,KAAK,CAAC,4CAA4C,CAAC,CAAC;aACjE;YACD,IAAI,IAAI,EAAE,MAAM,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACzC,MAAM,IAAI,KAAK,CAAC,oCAAoC,CAAC,CAAC;aACzD;YACD,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC;YACxC,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,EAAE,cAAc,CAAC;YACxD,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC;YACxC,cAAc,CAAC,kBAAkB,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACvD,cAAc,CAAC,iBAAiB,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SACzD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,2BAA2B,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAChF,CAAC;;AAtFL,kEAuFC;AAzEG,gBAAgB;AACO,wCAAY,GAAG,qEAAqE,CAAC"}
@@ -0,0 +1,65 @@
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 discovery domains on an organization.
6
+ */
7
+ export declare class OrganizationDiscoveryDomains extends pulumi.CustomResource {
8
+ /**
9
+ * Get an existing OrganizationDiscoveryDomains resource's state with the given name, ID, and optional extra
10
+ * properties used to qualify the lookup.
11
+ *
12
+ * @param name The _unique_ name of the resulting resource.
13
+ * @param id The _unique_ provider ID of the resource to lookup.
14
+ * @param state Any extra arguments used during the lookup.
15
+ * @param opts Optional settings to control the behavior of the CustomResource.
16
+ */
17
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: OrganizationDiscoveryDomainsState, opts?: pulumi.CustomResourceOptions): OrganizationDiscoveryDomains;
18
+ /**
19
+ * Returns true if the given object is an instance of OrganizationDiscoveryDomains. This is designed to work even
20
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
21
+ */
22
+ static isInstance(obj: any): obj is OrganizationDiscoveryDomains;
23
+ /**
24
+ * Discovery domains that are configured for the organization.
25
+ */
26
+ readonly discoveryDomains: pulumi.Output<outputs.OrganizationDiscoveryDomainsDiscoveryDomain[]>;
27
+ /**
28
+ * ID of the organization on which to manage the discovery domains.
29
+ */
30
+ readonly organizationId: pulumi.Output<string>;
31
+ /**
32
+ * Create a OrganizationDiscoveryDomains resource with the given unique name, arguments, and options.
33
+ *
34
+ * @param name The _unique_ name of the resource.
35
+ * @param args The arguments to use to populate this resource's properties.
36
+ * @param opts A bag of options that control this resource's behavior.
37
+ */
38
+ constructor(name: string, args: OrganizationDiscoveryDomainsArgs, opts?: pulumi.CustomResourceOptions);
39
+ }
40
+ /**
41
+ * Input properties used for looking up and filtering OrganizationDiscoveryDomains resources.
42
+ */
43
+ export interface OrganizationDiscoveryDomainsState {
44
+ /**
45
+ * Discovery domains that are configured for the organization.
46
+ */
47
+ discoveryDomains?: pulumi.Input<pulumi.Input<inputs.OrganizationDiscoveryDomainsDiscoveryDomain>[]>;
48
+ /**
49
+ * ID of the organization on which to manage the discovery domains.
50
+ */
51
+ organizationId?: pulumi.Input<string>;
52
+ }
53
+ /**
54
+ * The set of arguments for constructing a OrganizationDiscoveryDomains resource.
55
+ */
56
+ export interface OrganizationDiscoveryDomainsArgs {
57
+ /**
58
+ * Discovery domains that are configured for the organization.
59
+ */
60
+ discoveryDomains: pulumi.Input<pulumi.Input<inputs.OrganizationDiscoveryDomainsDiscoveryDomain>[]>;
61
+ /**
62
+ * ID of the organization on which to manage the discovery domains.
63
+ */
64
+ organizationId: pulumi.Input<string>;
65
+ }
@@ -0,0 +1,60 @@
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.OrganizationDiscoveryDomains = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * With this resource, you can manage discovery domains on an organization.
10
+ */
11
+ class OrganizationDiscoveryDomains extends pulumi.CustomResource {
12
+ /**
13
+ * Get an existing OrganizationDiscoveryDomains resource's state with the given name, ID, and optional extra
14
+ * properties used to qualify the lookup.
15
+ *
16
+ * @param name The _unique_ name of the resulting resource.
17
+ * @param id The _unique_ provider ID of the resource to lookup.
18
+ * @param state Any extra arguments used during the lookup.
19
+ * @param opts Optional settings to control the behavior of the CustomResource.
20
+ */
21
+ static get(name, id, state, opts) {
22
+ return new OrganizationDiscoveryDomains(name, state, { ...opts, id: id });
23
+ }
24
+ /**
25
+ * Returns true if the given object is an instance of OrganizationDiscoveryDomains. This is designed to work even
26
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
27
+ */
28
+ static isInstance(obj) {
29
+ if (obj === undefined || obj === null) {
30
+ return false;
31
+ }
32
+ return obj['__pulumiType'] === OrganizationDiscoveryDomains.__pulumiType;
33
+ }
34
+ constructor(name, argsOrState, opts) {
35
+ let resourceInputs = {};
36
+ opts = opts || {};
37
+ if (opts.id) {
38
+ const state = argsOrState;
39
+ resourceInputs["discoveryDomains"] = state?.discoveryDomains;
40
+ resourceInputs["organizationId"] = state?.organizationId;
41
+ }
42
+ else {
43
+ const args = argsOrState;
44
+ if (args?.discoveryDomains === undefined && !opts.urn) {
45
+ throw new Error("Missing required property 'discoveryDomains'");
46
+ }
47
+ if (args?.organizationId === undefined && !opts.urn) {
48
+ throw new Error("Missing required property 'organizationId'");
49
+ }
50
+ resourceInputs["discoveryDomains"] = args?.discoveryDomains;
51
+ resourceInputs["organizationId"] = args?.organizationId;
52
+ }
53
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
54
+ super(OrganizationDiscoveryDomains.__pulumiType, name, resourceInputs, opts);
55
+ }
56
+ }
57
+ exports.OrganizationDiscoveryDomains = OrganizationDiscoveryDomains;
58
+ /** @internal */
59
+ OrganizationDiscoveryDomains.__pulumiType = 'auth0:index/organizationDiscoveryDomains:OrganizationDiscoveryDomains';
60
+ //# sourceMappingURL=organizationDiscoveryDomains.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"organizationDiscoveryDomains.js","sourceRoot":"","sources":["../organizationDiscoveryDomains.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;GAEG;AACH,MAAa,4BAA6B,SAAQ,MAAM,CAAC,cAAc;IACnE;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAyC,EAAE,IAAmC;QACvI,OAAO,IAAI,4BAA4B,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACnF,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,4BAA4B,CAAC,YAAY,CAAC;IAC7E,CAAC;IAmBD,YAAY,IAAY,EAAE,WAAkF,EAAE,IAAmC;QAC7I,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA4D,CAAC;YAC3E,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,EAAE,gBAAgB,CAAC;YAC7D,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,EAAE,cAAc,CAAC;SAC5D;aAAM;YACH,MAAM,IAAI,GAAG,WAA2D,CAAC;YACzE,IAAI,IAAI,EAAE,gBAAgB,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnD,MAAM,IAAI,KAAK,CAAC,8CAA8C,CAAC,CAAC;aACnE;YACD,IAAI,IAAI,EAAE,cAAc,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACjD,MAAM,IAAI,KAAK,CAAC,4CAA4C,CAAC,CAAC;aACjE;YACD,cAAc,CAAC,kBAAkB,CAAC,GAAG,IAAI,EAAE,gBAAgB,CAAC;YAC5D,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,EAAE,cAAc,CAAC;SAC3D;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,4BAA4B,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACjF,CAAC;;AAjEL,oEAkEC;AApDG,gBAAgB;AACO,yCAAY,GAAG,uEAAuE,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/auth0",
3
- "version": "3.31.0-alpha.1761887850",
3
+ "version": "3.31.0",
4
4
  "description": "A Pulumi package for creating and managing auth0 cloud resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -23,6 +23,6 @@
23
23
  "pulumi": {
24
24
  "resource": true,
25
25
  "name": "auth0",
26
- "version": "3.31.0-alpha.1761887850"
26
+ "version": "3.31.0"
27
27
  }
28
28
  }
package/tenant.d.ts CHANGED
@@ -20,10 +20,9 @@ import * as outputs from "./types/output";
20
20
  * supportUrl: "http://example.com/support",
21
21
  * allowedLogoutUrls: ["http://example.com/logout"],
22
22
  * sessionLifetime: 8760,
23
- * sandboxVersion: "12",
23
+ * sandboxVersion: "22",
24
24
  * enabledLocales: ["en"],
25
25
  * defaultRedirectionUri: "https://example.com/login",
26
- * skipNonVerifiableCallbackUriConfirmationPrompt: true,
27
26
  * flags: {
28
27
  * disableClickjackProtectionHeaders: true,
29
28
  * enablePublicSignupUserExistsError: true,
@@ -165,9 +164,9 @@ export declare class Tenant extends pulumi.CustomResource {
165
164
  */
166
165
  readonly sessions: pulumi.Output<outputs.TenantSessions>;
167
166
  /**
168
- * Indicates whether to skip the confirmation prompt when using non-verifiable callback URIs.
167
+ * Indicates whether the confirmation prompt appears when using non-verifiable callback URIs. Set to true to skip the prompt, false to show it, or null to unset. Accepts (true/false/null) or ("true"/"false"/"null")
169
168
  */
170
- readonly skipNonVerifiableCallbackUriConfirmationPrompt: pulumi.Output<boolean | undefined>;
169
+ readonly skipNonVerifiableCallbackUriConfirmationPrompt: pulumi.Output<string | undefined>;
171
170
  /**
172
171
  * Support email address for authenticating users.
173
172
  */
@@ -278,9 +277,9 @@ export interface TenantState {
278
277
  */
279
278
  sessions?: pulumi.Input<inputs.TenantSessions>;
280
279
  /**
281
- * Indicates whether to skip the confirmation prompt when using non-verifiable callback URIs.
280
+ * Indicates whether the confirmation prompt appears when using non-verifiable callback URIs. Set to true to skip the prompt, false to show it, or null to unset. Accepts (true/false/null) or ("true"/"false"/"null")
282
281
  */
283
- skipNonVerifiableCallbackUriConfirmationPrompt?: pulumi.Input<boolean>;
282
+ skipNonVerifiableCallbackUriConfirmationPrompt?: pulumi.Input<string>;
284
283
  /**
285
284
  * Support email address for authenticating users.
286
285
  */
@@ -383,9 +382,9 @@ export interface TenantArgs {
383
382
  */
384
383
  sessions?: pulumi.Input<inputs.TenantSessions>;
385
384
  /**
386
- * Indicates whether to skip the confirmation prompt when using non-verifiable callback URIs.
385
+ * Indicates whether the confirmation prompt appears when using non-verifiable callback URIs. Set to true to skip the prompt, false to show it, or null to unset. Accepts (true/false/null) or ("true"/"false"/"null")
387
386
  */
388
- skipNonVerifiableCallbackUriConfirmationPrompt?: pulumi.Input<boolean>;
387
+ skipNonVerifiableCallbackUriConfirmationPrompt?: pulumi.Input<string>;
389
388
  /**
390
389
  * Support email address for authenticating users.
391
390
  */
package/tenant.js CHANGED
@@ -24,10 +24,9 @@ const utilities = require("./utilities");
24
24
  * supportUrl: "http://example.com/support",
25
25
  * allowedLogoutUrls: ["http://example.com/logout"],
26
26
  * sessionLifetime: 8760,
27
- * sandboxVersion: "12",
27
+ * sandboxVersion: "22",
28
28
  * enabledLocales: ["en"],
29
29
  * defaultRedirectionUri: "https://example.com/login",
30
- * skipNonVerifiableCallbackUriConfirmationPrompt: true,
31
30
  * flags: {
32
31
  * disableClickjackProtectionHeaders: true,
33
32
  * enablePublicSignupUserExistsError: true,
package/tenant.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"tenant.js","sourceRoot":"","sources":["../tenant.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"tenant.js","sourceRoot":"","sources":["../tenant.ts"],"names":[],"mappings":"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"}
@@ -13,8 +13,8 @@ import * as pulumi from "@pulumi/pulumi";
13
13
  * const myAction = new auth0.Action("my_action", {
14
14
  * name: "TokenExchange-Action",
15
15
  * code: `exports.onExecuteCustomTokenExchange = async (event, api) => {
16
- * \x09console.log("foo")
17
- * };"
16
+ * \\tconsole.log(\\"foo\\")
17
+ * };\\"
18
18
  * `,
19
19
  * deploy: true,
20
20
  * supportedTriggers: {
@@ -19,8 +19,8 @@ const utilities = require("./utilities");
19
19
  * const myAction = new auth0.Action("my_action", {
20
20
  * name: "TokenExchange-Action",
21
21
  * code: `exports.onExecuteCustomTokenExchange = async (event, api) => {
22
- * \x09console.log("foo")
23
- * };"
22
+ * \\tconsole.log(\\"foo\\")
23
+ * };\\"
24
24
  * `,
25
25
  * deploy: true,
26
26
  * supportedTriggers: {
@@ -17,8 +17,8 @@ import * as pulumi from "@pulumi/pulumi";
17
17
  * const loginAlert = new auth0.Action("login_alert", {
18
18
  * name: "Alert after login",
19
19
  * code: `exports.onContinuePostLogin = async (event, api) => {
20
- * console.log("foo");
21
- * };"
20
+ * console.log(\\"foo\\");
21
+ * };\\"
22
22
  * `,
23
23
  * deploy: true,
24
24
  * supportedTriggers: {
package/triggerAction.js CHANGED
@@ -23,8 +23,8 @@ const utilities = require("./utilities");
23
23
  * const loginAlert = new auth0.Action("login_alert", {
24
24
  * name: "Alert after login",
25
25
  * code: `exports.onContinuePostLogin = async (event, api) => {
26
- * console.log("foo");
27
- * };"
26
+ * console.log(\\"foo\\");
27
+ * };\\"
28
28
  * `,
29
29
  * deploy: true,
30
30
  * supportedTriggers: {
@@ -19,8 +19,8 @@ import * as outputs from "./types/output";
19
19
  * const actionFoo = new auth0.Action("action_foo", {
20
20
  * name: "Test Trigger Binding Foo",
21
21
  * code: `exports.onContinuePostLogin = async (event, api) => {
22
- * console.log("foo");
23
- * };"
22
+ * console.log(\\"foo\\");
23
+ * };\\"
24
24
  * `,
25
25
  * deploy: true,
26
26
  * supportedTriggers: {
@@ -31,8 +31,8 @@ import * as outputs from "./types/output";
31
31
  * const actionBar = new auth0.Action("action_bar", {
32
32
  * name: "Test Trigger Binding Bar",
33
33
  * code: `exports.onContinuePostLogin = async (event, api) => {
34
- * console.log("bar");
35
- * };"
34
+ * console.log(\\"bar\\");
35
+ * };\\"
36
36
  * `,
37
37
  * deploy: true,
38
38
  * supportedTriggers: {
package/triggerActions.js CHANGED
@@ -23,8 +23,8 @@ const utilities = require("./utilities");
23
23
  * const actionFoo = new auth0.Action("action_foo", {
24
24
  * name: "Test Trigger Binding Foo",
25
25
  * code: `exports.onContinuePostLogin = async (event, api) => {
26
- * console.log("foo");
27
- * };"
26
+ * console.log(\\"foo\\");
27
+ * };\\"
28
28
  * `,
29
29
  * deploy: true,
30
30
  * supportedTriggers: {
@@ -35,8 +35,8 @@ const utilities = require("./utilities");
35
35
  * const actionBar = new auth0.Action("action_bar", {
36
36
  * name: "Test Trigger Binding Bar",
37
37
  * code: `exports.onContinuePostLogin = async (event, api) => {
38
- * console.log("bar");
39
- * };"
38
+ * console.log(\\"bar\\");
39
+ * };\\"
40
40
  * `,
41
41
  * deploy: true,
42
42
  * supportedTriggers: {
package/types/input.d.ts CHANGED
@@ -1298,6 +1298,10 @@ export interface ConnectionConnectedAccounts {
1298
1298
  active: pulumi.Input<boolean>;
1299
1299
  }
1300
1300
  export interface ConnectionOptions {
1301
+ /**
1302
+ * URL used to exchange a user-authorized request token for an access token.
1303
+ */
1304
+ accessTokenUrl?: pulumi.Input<string>;
1301
1305
  /**
1302
1306
  * ADFS URL where to fetch the metadata source.
1303
1307
  */
@@ -1362,6 +1366,14 @@ export interface ConnectionOptions {
1362
1366
  * Proof Key for Code Exchange (PKCE) configuration settings for an OIDC or Okta Workforce connection.
1363
1367
  */
1364
1368
  connectionSettings?: pulumi.Input<inputs.ConnectionOptionsConnectionSettings>;
1369
+ /**
1370
+ * Identifies the client to the service provider
1371
+ */
1372
+ consumerKey?: pulumi.Input<string>;
1373
+ /**
1374
+ * Secret used to establish ownership of the consumer key.
1375
+ */
1376
+ consumerSecret?: pulumi.Input<string>;
1365
1377
  /**
1366
1378
  * Configure extra headers to the Token endpoint of an OAuth 2.0 provider
1367
1379
  */
@@ -1572,6 +1584,10 @@ export interface ConnectionOptions {
1572
1584
  * Template that formats the SAML request.
1573
1585
  */
1574
1586
  requestTemplate?: pulumi.Input<string>;
1587
+ /**
1588
+ * URL used to obtain an unauthorized request token.
1589
+ */
1590
+ requestTokenUrl?: pulumi.Input<string>;
1575
1591
  /**
1576
1592
  * Indicates whether the user is required to provide a username in addition to an email address.
1577
1593
  */
@@ -1586,6 +1602,10 @@ export interface ConnectionOptions {
1586
1602
  scripts?: pulumi.Input<{
1587
1603
  [key: string]: pulumi.Input<string>;
1588
1604
  }>;
1605
+ /**
1606
+ * Session Key for storing the request token.
1607
+ */
1608
+ sessionKey?: pulumi.Input<string>;
1589
1609
  /**
1590
1610
  * Determines whether to sync user profile attributes (`name`, `givenName`, `familyName`, `nickname`, `picture`) at each login or only on the first login. Options include: `onEachLogin`, `onFirstLogin`, `neverOnLogin`. Default value: `onEachLogin`.
1591
1611
  */
@@ -1610,6 +1630,10 @@ export interface ConnectionOptions {
1610
1630
  * Sign Request Algorithm.
1611
1631
  */
1612
1632
  signatureAlgorithm?: pulumi.Input<string>;
1633
+ /**
1634
+ * Signature method used to sign the request
1635
+ */
1636
+ signatureMethod?: pulumi.Input<string>;
1613
1637
  /**
1614
1638
  * X.509 signing certificate (encoded in PEM or CER) you retrieved from the IdP, Base64-encoded.
1615
1639
  */
@@ -1686,6 +1710,10 @@ export interface ConnectionOptions {
1686
1710
  * Whether to use WS-Fed.
1687
1711
  */
1688
1712
  useWsfed?: pulumi.Input<boolean>;
1713
+ /**
1714
+ * URL used to obtain user authorization.
1715
+ */
1716
+ userAuthorizationUrl?: pulumi.Input<string>;
1689
1717
  /**
1690
1718
  * Attribute in the token that will be mapped to the userId property in Auth0.
1691
1719
  */
@@ -2794,6 +2822,28 @@ export interface OrganizationConnectionsEnabledConnection {
2794
2822
  */
2795
2823
  showAsButton?: pulumi.Input<boolean>;
2796
2824
  }
2825
+ export interface OrganizationDiscoveryDomainsDiscoveryDomain {
2826
+ /**
2827
+ * The domain name for organization discovery.
2828
+ */
2829
+ domain: pulumi.Input<string>;
2830
+ /**
2831
+ * The ID of the discovery domain.
2832
+ */
2833
+ id?: pulumi.Input<string>;
2834
+ /**
2835
+ * Verification status. Must be either 'pending' or 'verified'.
2836
+ */
2837
+ status: pulumi.Input<string>;
2838
+ /**
2839
+ * The full domain where the TXT record should be added.
2840
+ */
2841
+ verificationHost?: pulumi.Input<string>;
2842
+ /**
2843
+ * TXT record value for domain verification.
2844
+ */
2845
+ verificationTxt?: pulumi.Input<string>;
2846
+ }
2797
2847
  export interface OrganizationTokenQuota {
2798
2848
  /**
2799
2849
  * The token quota configuration for client credentials.