@pulumi/auth0 3.35.0-alpha.1766207726 → 3.35.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,58 @@
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.getBrandingPhoneNotificationTemplateOutput = exports.getBrandingPhoneNotificationTemplate = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * Data source to retrieve a specific Auth0 Phone Notification Template by `templateId`.
10
+ *
11
+ * ## Example Usage
12
+ *
13
+ * ```typescript
14
+ * import * as pulumi from "@pulumi/pulumi";
15
+ * import * as auth0 from "@pulumi/auth0";
16
+ *
17
+ * // Data Source Example: Retrieve Auth0 Phone Notification Templates
18
+ * // This example shows how to fetch existing phone notification templates from your Auth0 tenant
19
+ * // Retrieve the OTP enrollment template
20
+ * const otpEnrollment = auth0.getBrandingPhoneNotificationTemplate({
21
+ * templateId: "tem_xxxxxxxxxxxxxxxxx",
22
+ * });
23
+ * export const otpEnrollmentId = otpEnrollment.then(otpEnrollment => otpEnrollment.id);
24
+ * ```
25
+ */
26
+ function getBrandingPhoneNotificationTemplate(args, opts) {
27
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
28
+ return pulumi.runtime.invoke("auth0:index/getBrandingPhoneNotificationTemplate:getBrandingPhoneNotificationTemplate", {
29
+ "templateId": args.templateId,
30
+ }, opts);
31
+ }
32
+ exports.getBrandingPhoneNotificationTemplate = getBrandingPhoneNotificationTemplate;
33
+ /**
34
+ * Data source to retrieve a specific Auth0 Phone Notification Template by `templateId`.
35
+ *
36
+ * ## Example Usage
37
+ *
38
+ * ```typescript
39
+ * import * as pulumi from "@pulumi/pulumi";
40
+ * import * as auth0 from "@pulumi/auth0";
41
+ *
42
+ * // Data Source Example: Retrieve Auth0 Phone Notification Templates
43
+ * // This example shows how to fetch existing phone notification templates from your Auth0 tenant
44
+ * // Retrieve the OTP enrollment template
45
+ * const otpEnrollment = auth0.getBrandingPhoneNotificationTemplate({
46
+ * templateId: "tem_xxxxxxxxxxxxxxxxx",
47
+ * });
48
+ * export const otpEnrollmentId = otpEnrollment.then(otpEnrollment => otpEnrollment.id);
49
+ * ```
50
+ */
51
+ function getBrandingPhoneNotificationTemplateOutput(args, opts) {
52
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
53
+ return pulumi.runtime.invokeOutput("auth0:index/getBrandingPhoneNotificationTemplate:getBrandingPhoneNotificationTemplate", {
54
+ "templateId": args.templateId,
55
+ }, opts);
56
+ }
57
+ exports.getBrandingPhoneNotificationTemplateOutput = getBrandingPhoneNotificationTemplateOutput;
58
+ //# sourceMappingURL=getBrandingPhoneNotificationTemplate.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getBrandingPhoneNotificationTemplate.js","sourceRoot":"","sources":["../getBrandingPhoneNotificationTemplate.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;GAiBG;AACH,SAAgB,oCAAoC,CAAC,IAA8C,EAAE,IAA2B;IAC5H,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,uFAAuF,EAAE;QAClH,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,oFAKC;AAiDD;;;;;;;;;;;;;;;;;GAiBG;AACH,SAAgB,0CAA0C,CAAC,IAAoD,EAAE,IAAiC;IAC9I,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,uFAAuF,EAAE;QACxH,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,gGAKC"}
@@ -0,0 +1,99 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as outputs from "./types/output";
3
+ /**
4
+ * Data source to retrieve directory provisioning configuration for an Auth0 connection by `connectionId`.
5
+ *
6
+ * ## Example Usage
7
+ *
8
+ * ```typescript
9
+ * import * as pulumi from "@pulumi/pulumi";
10
+ * import * as auth0 from "@pulumi/auth0";
11
+ *
12
+ * const myDirectoryConfig = auth0.getConnectionDirectory({
13
+ * connectionId: "con_xxxxxxxxxxxxx",
14
+ * });
15
+ * ```
16
+ */
17
+ export declare function getConnectionDirectory(args: GetConnectionDirectoryArgs, opts?: pulumi.InvokeOptions): Promise<GetConnectionDirectoryResult>;
18
+ /**
19
+ * A collection of arguments for invoking getConnectionDirectory.
20
+ */
21
+ export interface GetConnectionDirectoryArgs {
22
+ /**
23
+ * ID of the connection for this directory provisioning configuration.
24
+ */
25
+ connectionId: string;
26
+ }
27
+ /**
28
+ * A collection of values returned by getConnectionDirectory.
29
+ */
30
+ export interface GetConnectionDirectoryResult {
31
+ /**
32
+ * ID of the connection for this directory provisioning configuration.
33
+ */
34
+ readonly connectionId: string;
35
+ /**
36
+ * Name of the connection for this directory provisioning configuration.
37
+ */
38
+ readonly connectionName: string;
39
+ /**
40
+ * The timestamp at which the directory provisioning configuration was created.
41
+ */
42
+ readonly createdAt: string;
43
+ /**
44
+ * The provider-assigned unique ID for this managed resource.
45
+ */
46
+ readonly id: string;
47
+ /**
48
+ * The timestamp at which the connection was last synchronized.
49
+ */
50
+ readonly lastSynchronizationAt: string;
51
+ /**
52
+ * The error message of the last synchronization, if any.
53
+ */
54
+ readonly lastSynchronizationError: string;
55
+ /**
56
+ * The status of the last synchronization.
57
+ */
58
+ readonly lastSynchronizationStatus: string;
59
+ /**
60
+ * Mapping between Auth0 attributes and IDP user attributes. Defaults to default mapping for the connection type if not specified.
61
+ */
62
+ readonly mappings: outputs.GetConnectionDirectoryMapping[];
63
+ /**
64
+ * Strategy of the connection for this directory provisioning configuration.
65
+ */
66
+ readonly strategy: string;
67
+ /**
68
+ * Whether periodic automatic synchronization is enabled. Defaults to false.
69
+ */
70
+ readonly synchronizeAutomatically: boolean;
71
+ /**
72
+ * The timestamp at which the directory provisioning configuration was last updated.
73
+ */
74
+ readonly updatedAt: string;
75
+ }
76
+ /**
77
+ * Data source to retrieve directory provisioning configuration for an Auth0 connection by `connectionId`.
78
+ *
79
+ * ## Example Usage
80
+ *
81
+ * ```typescript
82
+ * import * as pulumi from "@pulumi/pulumi";
83
+ * import * as auth0 from "@pulumi/auth0";
84
+ *
85
+ * const myDirectoryConfig = auth0.getConnectionDirectory({
86
+ * connectionId: "con_xxxxxxxxxxxxx",
87
+ * });
88
+ * ```
89
+ */
90
+ export declare function getConnectionDirectoryOutput(args: GetConnectionDirectoryOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetConnectionDirectoryResult>;
91
+ /**
92
+ * A collection of arguments for invoking getConnectionDirectory.
93
+ */
94
+ export interface GetConnectionDirectoryOutputArgs {
95
+ /**
96
+ * ID of the connection for this directory provisioning configuration.
97
+ */
98
+ connectionId: pulumi.Input<string>;
99
+ }
@@ -0,0 +1,50 @@
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.getConnectionDirectoryOutput = exports.getConnectionDirectory = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * Data source to retrieve directory provisioning configuration for an Auth0 connection by `connectionId`.
10
+ *
11
+ * ## Example Usage
12
+ *
13
+ * ```typescript
14
+ * import * as pulumi from "@pulumi/pulumi";
15
+ * import * as auth0 from "@pulumi/auth0";
16
+ *
17
+ * const myDirectoryConfig = auth0.getConnectionDirectory({
18
+ * connectionId: "con_xxxxxxxxxxxxx",
19
+ * });
20
+ * ```
21
+ */
22
+ function getConnectionDirectory(args, opts) {
23
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
24
+ return pulumi.runtime.invoke("auth0:index/getConnectionDirectory:getConnectionDirectory", {
25
+ "connectionId": args.connectionId,
26
+ }, opts);
27
+ }
28
+ exports.getConnectionDirectory = getConnectionDirectory;
29
+ /**
30
+ * Data source to retrieve directory provisioning configuration for an Auth0 connection by `connectionId`.
31
+ *
32
+ * ## Example Usage
33
+ *
34
+ * ```typescript
35
+ * import * as pulumi from "@pulumi/pulumi";
36
+ * import * as auth0 from "@pulumi/auth0";
37
+ *
38
+ * const myDirectoryConfig = auth0.getConnectionDirectory({
39
+ * connectionId: "con_xxxxxxxxxxxxx",
40
+ * });
41
+ * ```
42
+ */
43
+ function getConnectionDirectoryOutput(args, opts) {
44
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
45
+ return pulumi.runtime.invokeOutput("auth0:index/getConnectionDirectory:getConnectionDirectory", {
46
+ "connectionId": args.connectionId,
47
+ }, opts);
48
+ }
49
+ exports.getConnectionDirectoryOutput = getConnectionDirectoryOutput;
50
+ //# sourceMappingURL=getConnectionDirectory.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getConnectionDirectory.js","sourceRoot":"","sources":["../getConnectionDirectory.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,sBAAsB,CAAC,IAAgC,EAAE,IAA2B;IAChG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,2DAA2D,EAAE;QACtF,cAAc,EAAE,IAAI,CAAC,YAAY;KACpC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,wDAKC;AA6DD;;;;;;;;;;;;;GAaG;AACH,SAAgB,4BAA4B,CAAC,IAAsC,EAAE,IAAiC;IAClH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,2DAA2D,EAAE;QAC5F,cAAc,EAAE,IAAI,CAAC,YAAY;KACpC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,oEAKC"}
@@ -0,0 +1,67 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as outputs from "./types/output";
3
+ /**
4
+ * Data source to retrieve the default attribute mapping for directory provisioning on an Auth0 connection by `connectionId`. This shows the standard mapping that would be used if no custom mapping is specified.
5
+ *
6
+ * ## Example Usage
7
+ *
8
+ * ```typescript
9
+ * import * as pulumi from "@pulumi/pulumi";
10
+ * import * as auth0 from "@pulumi/auth0";
11
+ *
12
+ * const myDirectoryConfigMapping = auth0.getConnectionDirectoryDefaultMapping({
13
+ * connectionId: "con_xxxxxxxxxxxxx",
14
+ * });
15
+ * ```
16
+ */
17
+ export declare function getConnectionDirectoryDefaultMapping(args: GetConnectionDirectoryDefaultMappingArgs, opts?: pulumi.InvokeOptions): Promise<GetConnectionDirectoryDefaultMappingResult>;
18
+ /**
19
+ * A collection of arguments for invoking getConnectionDirectoryDefaultMapping.
20
+ */
21
+ export interface GetConnectionDirectoryDefaultMappingArgs {
22
+ /**
23
+ * ID of the connection to retrieve the default directory provisioning mapping.
24
+ */
25
+ connectionId: string;
26
+ }
27
+ /**
28
+ * A collection of values returned by getConnectionDirectoryDefaultMapping.
29
+ */
30
+ export interface GetConnectionDirectoryDefaultMappingResult {
31
+ /**
32
+ * ID of the connection to retrieve the default directory provisioning mapping.
33
+ */
34
+ readonly connectionId: string;
35
+ /**
36
+ * The provider-assigned unique ID for this managed resource.
37
+ */
38
+ readonly id: string;
39
+ /**
40
+ * Default mapping between Auth0 attributes and IDP user attributes for this connection type.
41
+ */
42
+ readonly mappings: outputs.GetConnectionDirectoryDefaultMappingMapping[];
43
+ }
44
+ /**
45
+ * Data source to retrieve the default attribute mapping for directory provisioning on an Auth0 connection by `connectionId`. This shows the standard mapping that would be used if no custom mapping is specified.
46
+ *
47
+ * ## Example Usage
48
+ *
49
+ * ```typescript
50
+ * import * as pulumi from "@pulumi/pulumi";
51
+ * import * as auth0 from "@pulumi/auth0";
52
+ *
53
+ * const myDirectoryConfigMapping = auth0.getConnectionDirectoryDefaultMapping({
54
+ * connectionId: "con_xxxxxxxxxxxxx",
55
+ * });
56
+ * ```
57
+ */
58
+ export declare function getConnectionDirectoryDefaultMappingOutput(args: GetConnectionDirectoryDefaultMappingOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetConnectionDirectoryDefaultMappingResult>;
59
+ /**
60
+ * A collection of arguments for invoking getConnectionDirectoryDefaultMapping.
61
+ */
62
+ export interface GetConnectionDirectoryDefaultMappingOutputArgs {
63
+ /**
64
+ * ID of the connection to retrieve the default directory provisioning mapping.
65
+ */
66
+ connectionId: pulumi.Input<string>;
67
+ }
@@ -0,0 +1,50 @@
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.getConnectionDirectoryDefaultMappingOutput = exports.getConnectionDirectoryDefaultMapping = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * Data source to retrieve the default attribute mapping for directory provisioning on an Auth0 connection by `connectionId`. This shows the standard mapping that would be used if no custom mapping is specified.
10
+ *
11
+ * ## Example Usage
12
+ *
13
+ * ```typescript
14
+ * import * as pulumi from "@pulumi/pulumi";
15
+ * import * as auth0 from "@pulumi/auth0";
16
+ *
17
+ * const myDirectoryConfigMapping = auth0.getConnectionDirectoryDefaultMapping({
18
+ * connectionId: "con_xxxxxxxxxxxxx",
19
+ * });
20
+ * ```
21
+ */
22
+ function getConnectionDirectoryDefaultMapping(args, opts) {
23
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
24
+ return pulumi.runtime.invoke("auth0:index/getConnectionDirectoryDefaultMapping:getConnectionDirectoryDefaultMapping", {
25
+ "connectionId": args.connectionId,
26
+ }, opts);
27
+ }
28
+ exports.getConnectionDirectoryDefaultMapping = getConnectionDirectoryDefaultMapping;
29
+ /**
30
+ * Data source to retrieve the default attribute mapping for directory provisioning on an Auth0 connection by `connectionId`. This shows the standard mapping that would be used if no custom mapping is specified.
31
+ *
32
+ * ## Example Usage
33
+ *
34
+ * ```typescript
35
+ * import * as pulumi from "@pulumi/pulumi";
36
+ * import * as auth0 from "@pulumi/auth0";
37
+ *
38
+ * const myDirectoryConfigMapping = auth0.getConnectionDirectoryDefaultMapping({
39
+ * connectionId: "con_xxxxxxxxxxxxx",
40
+ * });
41
+ * ```
42
+ */
43
+ function getConnectionDirectoryDefaultMappingOutput(args, opts) {
44
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
45
+ return pulumi.runtime.invokeOutput("auth0:index/getConnectionDirectoryDefaultMapping:getConnectionDirectoryDefaultMapping", {
46
+ "connectionId": args.connectionId,
47
+ }, opts);
48
+ }
49
+ exports.getConnectionDirectoryDefaultMappingOutput = getConnectionDirectoryDefaultMappingOutput;
50
+ //# sourceMappingURL=getConnectionDirectoryDefaultMapping.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getConnectionDirectoryDefaultMapping.js","sourceRoot":"","sources":["../getConnectionDirectoryDefaultMapping.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,oCAAoC,CAAC,IAA8C,EAAE,IAA2B;IAC5H,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,uFAAuF,EAAE;QAClH,cAAc,EAAE,IAAI,CAAC,YAAY;KACpC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,oFAKC;AA6BD;;;;;;;;;;;;;GAaG;AACH,SAAgB,0CAA0C,CAAC,IAAoD,EAAE,IAAiC;IAC9I,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,uFAAuF,EAAE;QACxH,cAAc,EAAE,IAAI,CAAC,YAAY;KACpC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,gGAKC"}
@@ -0,0 +1,65 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as outputs from "./types/output";
3
+ /**
4
+ * Data source to retrieve a specific Auth0 Phone Notification Template by `templateId`.
5
+ */
6
+ export declare function getPhoneNotificationTemplate(args: GetPhoneNotificationTemplateArgs, opts?: pulumi.InvokeOptions): Promise<GetPhoneNotificationTemplateResult>;
7
+ /**
8
+ * A collection of arguments for invoking getPhoneNotificationTemplate.
9
+ */
10
+ export interface GetPhoneNotificationTemplateArgs {
11
+ /**
12
+ * The ID of the Phone Notification Template.
13
+ */
14
+ templateId: string;
15
+ }
16
+ /**
17
+ * A collection of values returned by getPhoneNotificationTemplate.
18
+ */
19
+ export interface GetPhoneNotificationTemplateResult {
20
+ /**
21
+ * The channel of the phone notification template (e.g., `sms`, `voice`).
22
+ */
23
+ readonly channel: string;
24
+ /**
25
+ * The content of the phone notification template.
26
+ */
27
+ readonly contents: outputs.GetPhoneNotificationTemplateContent[];
28
+ /**
29
+ * Indicates whether the phone notification template is customizable.
30
+ */
31
+ readonly customizable: boolean;
32
+ /**
33
+ * Indicates whether the phone notification template is disabled.
34
+ */
35
+ readonly disabled: boolean;
36
+ /**
37
+ * The provider-assigned unique ID for this managed resource.
38
+ */
39
+ readonly id: string;
40
+ /**
41
+ * The ID of the Phone Notification Template.
42
+ */
43
+ readonly templateId: string;
44
+ /**
45
+ * The tenant of the phone notification template.
46
+ */
47
+ readonly tenant: string;
48
+ /**
49
+ * The type of the phone notification template.
50
+ */
51
+ readonly type: string;
52
+ }
53
+ /**
54
+ * Data source to retrieve a specific Auth0 Phone Notification Template by `templateId`.
55
+ */
56
+ export declare function getPhoneNotificationTemplateOutput(args: GetPhoneNotificationTemplateOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetPhoneNotificationTemplateResult>;
57
+ /**
58
+ * A collection of arguments for invoking getPhoneNotificationTemplate.
59
+ */
60
+ export interface GetPhoneNotificationTemplateOutputArgs {
61
+ /**
62
+ * The ID of the Phone Notification Template.
63
+ */
64
+ templateId: pulumi.Input<string>;
65
+ }
@@ -0,0 +1,28 @@
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.getPhoneNotificationTemplateOutput = exports.getPhoneNotificationTemplate = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * Data source to retrieve a specific Auth0 Phone Notification Template by `templateId`.
10
+ */
11
+ function getPhoneNotificationTemplate(args, opts) {
12
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
13
+ return pulumi.runtime.invoke("auth0:index/getPhoneNotificationTemplate:getPhoneNotificationTemplate", {
14
+ "templateId": args.templateId,
15
+ }, opts);
16
+ }
17
+ exports.getPhoneNotificationTemplate = getPhoneNotificationTemplate;
18
+ /**
19
+ * Data source to retrieve a specific Auth0 Phone Notification Template by `templateId`.
20
+ */
21
+ function getPhoneNotificationTemplateOutput(args, opts) {
22
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
23
+ return pulumi.runtime.invokeOutput("auth0:index/getPhoneNotificationTemplate:getPhoneNotificationTemplate", {
24
+ "templateId": args.templateId,
25
+ }, opts);
26
+ }
27
+ exports.getPhoneNotificationTemplateOutput = getPhoneNotificationTemplateOutput;
28
+ //# sourceMappingURL=getPhoneNotificationTemplate.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getPhoneNotificationTemplate.js","sourceRoot":"","sources":["../getPhoneNotificationTemplate.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;GAEG;AACH,SAAgB,4BAA4B,CAAC,IAAsC,EAAE,IAA2B;IAC5G,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,uEAAuE,EAAE;QAClG,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,oEAKC;AAiDD;;GAEG;AACH,SAAgB,kCAAkC,CAAC,IAA4C,EAAE,IAAiC;IAC9H,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,uEAAuE,EAAE;QACxG,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,gFAKC"}
package/index.d.ts CHANGED
@@ -7,6 +7,9 @@ export declare const AttackProtection: typeof import("./attackProtection").Attac
7
7
  export { BrandingArgs, BrandingState } from "./branding";
8
8
  export type Branding = import("./branding").Branding;
9
9
  export declare const Branding: typeof import("./branding").Branding;
10
+ export { BrandingPhoneNotificationTemplateArgs, BrandingPhoneNotificationTemplateState } from "./brandingPhoneNotificationTemplate";
11
+ export type BrandingPhoneNotificationTemplate = import("./brandingPhoneNotificationTemplate").BrandingPhoneNotificationTemplate;
12
+ export declare const BrandingPhoneNotificationTemplate: typeof import("./brandingPhoneNotificationTemplate").BrandingPhoneNotificationTemplate;
10
13
  export { BrandingThemeArgs, BrandingThemeState } from "./brandingTheme";
11
14
  export type BrandingTheme = import("./brandingTheme").BrandingTheme;
12
15
  export declare const BrandingTheme: typeof import("./brandingTheme").BrandingTheme;
@@ -28,6 +31,9 @@ export declare const ConnectionClient: typeof import("./connectionClient").Conne
28
31
  export { ConnectionClientsArgs, ConnectionClientsState } from "./connectionClients";
29
32
  export type ConnectionClients = import("./connectionClients").ConnectionClients;
30
33
  export declare const ConnectionClients: typeof import("./connectionClients").ConnectionClients;
34
+ export { ConnectionDirectoryArgs, ConnectionDirectoryState } from "./connectionDirectory";
35
+ export type ConnectionDirectory = import("./connectionDirectory").ConnectionDirectory;
36
+ export declare const ConnectionDirectory: typeof import("./connectionDirectory").ConnectionDirectory;
31
37
  export { ConnectionKeysArgs, ConnectionKeysState } from "./connectionKeys";
32
38
  export type ConnectionKeys = import("./connectionKeys").ConnectionKeys;
33
39
  export declare const ConnectionKeys: typeof import("./connectionKeys").ConnectionKeys;
@@ -76,6 +82,9 @@ export declare const getAttackProtectionOutput: typeof import("./getAttackProtec
76
82
  export { GetBrandingResult } from "./getBranding";
77
83
  export declare const getBranding: typeof import("./getBranding").getBranding;
78
84
  export declare const getBrandingOutput: typeof import("./getBranding").getBrandingOutput;
85
+ export { GetBrandingPhoneNotificationTemplateArgs, GetBrandingPhoneNotificationTemplateResult, GetBrandingPhoneNotificationTemplateOutputArgs } from "./getBrandingPhoneNotificationTemplate";
86
+ export declare const getBrandingPhoneNotificationTemplate: typeof import("./getBrandingPhoneNotificationTemplate").getBrandingPhoneNotificationTemplate;
87
+ export declare const getBrandingPhoneNotificationTemplateOutput: typeof import("./getBrandingPhoneNotificationTemplate").getBrandingPhoneNotificationTemplateOutput;
79
88
  export { GetBrandingThemeResult } from "./getBrandingTheme";
80
89
  export declare const getBrandingTheme: typeof import("./getBrandingTheme").getBrandingTheme;
81
90
  export declare const getBrandingThemeOutput: typeof import("./getBrandingTheme").getBrandingThemeOutput;
@@ -91,6 +100,12 @@ export declare const getClientsOutput: typeof import("./getClients").getClientsO
91
100
  export { GetConnectionArgs, GetConnectionResult, GetConnectionOutputArgs } from "./getConnection";
92
101
  export declare const getConnection: typeof import("./getConnection").getConnection;
93
102
  export declare const getConnectionOutput: typeof import("./getConnection").getConnectionOutput;
103
+ export { GetConnectionDirectoryArgs, GetConnectionDirectoryResult, GetConnectionDirectoryOutputArgs } from "./getConnectionDirectory";
104
+ export declare const getConnectionDirectory: typeof import("./getConnectionDirectory").getConnectionDirectory;
105
+ export declare const getConnectionDirectoryOutput: typeof import("./getConnectionDirectory").getConnectionDirectoryOutput;
106
+ export { GetConnectionDirectoryDefaultMappingArgs, GetConnectionDirectoryDefaultMappingResult, GetConnectionDirectoryDefaultMappingOutputArgs } from "./getConnectionDirectoryDefaultMapping";
107
+ export declare const getConnectionDirectoryDefaultMapping: typeof import("./getConnectionDirectoryDefaultMapping").getConnectionDirectoryDefaultMapping;
108
+ export declare const getConnectionDirectoryDefaultMappingOutput: typeof import("./getConnectionDirectoryDefaultMapping").getConnectionDirectoryDefaultMappingOutput;
94
109
  export { GetConnectionKeysArgs, GetConnectionKeysResult, GetConnectionKeysOutputArgs } from "./getConnectionKeys";
95
110
  export declare const getConnectionKeys: typeof import("./getConnectionKeys").getConnectionKeys;
96
111
  export declare const getConnectionKeysOutput: typeof import("./getConnectionKeys").getConnectionKeysOutput;
@@ -130,6 +145,9 @@ export declare const getOutboundIpsOutput: typeof import("./getOutboundIps").get
130
145
  export { GetPagesResult } from "./getPages";
131
146
  export declare const getPages: typeof import("./getPages").getPages;
132
147
  export declare const getPagesOutput: typeof import("./getPages").getPagesOutput;
148
+ export { GetPhoneNotificationTemplateArgs, GetPhoneNotificationTemplateResult, GetPhoneNotificationTemplateOutputArgs } from "./getPhoneNotificationTemplate";
149
+ export declare const getPhoneNotificationTemplate: typeof import("./getPhoneNotificationTemplate").getPhoneNotificationTemplate;
150
+ export declare const getPhoneNotificationTemplateOutput: typeof import("./getPhoneNotificationTemplate").getPhoneNotificationTemplateOutput;
133
151
  export { GetPhoneProviderArgs, GetPhoneProviderResult, GetPhoneProviderOutputArgs } from "./getPhoneProvider";
134
152
  export declare const getPhoneProvider: typeof import("./getPhoneProvider").getPhoneProvider;
135
153
  export declare const getPhoneProviderOutput: typeof import("./getPhoneProvider").getPhoneProviderOutput;
@@ -208,6 +226,9 @@ export declare const OrganizationMembers: typeof import("./organizationMembers")
208
226
  export { PagesArgs, PagesState } from "./pages";
209
227
  export type Pages = import("./pages").Pages;
210
228
  export declare const Pages: typeof import("./pages").Pages;
229
+ export { PhoneNotificationTemplateArgs, PhoneNotificationTemplateState } from "./phoneNotificationTemplate";
230
+ export type PhoneNotificationTemplate = import("./phoneNotificationTemplate").PhoneNotificationTemplate;
231
+ export declare const PhoneNotificationTemplate: typeof import("./phoneNotificationTemplate").PhoneNotificationTemplate;
211
232
  export { PhoneProviderArgs, PhoneProviderState } from "./phoneProvider";
212
233
  export type PhoneProvider = import("./phoneProvider").PhoneProvider;
213
234
  export declare const PhoneProvider: typeof import("./phoneProvider").PhoneProvider;
package/index.js CHANGED
@@ -16,9 +16,9 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
16
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
17
17
  };
18
18
  Object.defineProperty(exports, "__esModule", { value: true });
19
- exports.getEventStream = exports.getCustomDomainsOutput = exports.getCustomDomains = exports.getCustomDomainOutput = exports.getCustomDomain = exports.getConnectionScimConfigurationOutput = exports.getConnectionScimConfiguration = exports.getConnectionProfileOutput = exports.getConnectionProfile = exports.getConnectionKeysOutput = exports.getConnectionKeys = exports.getConnectionOutput = exports.getConnection = exports.getClientsOutput = exports.getClients = exports.getClientGrantsOutput = exports.getClientGrants = exports.getClientOutput = exports.getClient = exports.getBrandingThemeOutput = exports.getBrandingTheme = exports.getBrandingOutput = exports.getBranding = exports.getAttackProtectionOutput = exports.getAttackProtection = exports.getActionOutput = exports.getAction = exports.Form = exports.FlowVaultConnection = exports.Flow = exports.EventStream = exports.EncryptionKeyManager = exports.EmailTemplate = exports.EmailProvider = exports.CustomDomainVerification = exports.CustomDomain = exports.ConnectionScimToken = exports.ConnectionScimConfiguration = exports.ConnectionProfile = exports.ConnectionKeys = exports.ConnectionClients = exports.ConnectionClient = exports.Connection = exports.ClientGrant = exports.ClientCredentials = exports.Client = exports.BrandingTheme = exports.Branding = exports.AttackProtection = exports.Action = void 0;
20
- exports.OrganizationMemberRoles = exports.OrganizationMemberRole = exports.OrganizationMember = exports.OrganizationDiscoveryDomains = exports.OrganizationDiscoveryDomain = exports.OrganizationConnections = exports.OrganizationConnection = exports.OrganizationClientGrant = exports.Organization = exports.NetworkAcl = exports.LogStream = exports.Hook = exports.Guardian = exports.getUserAttributeProfileOutput = exports.getUserAttributeProfile = exports.getUserOutput = exports.getUser = exports.getTokenExchangeProfileOutput = exports.getTokenExchangeProfile = exports.getTenantOutput = exports.getTenant = exports.getSigningKeysOutput = exports.getSigningKeys = exports.getSelfServiceProfileOutput = exports.getSelfServiceProfile = exports.getRoleOutput = exports.getRole = exports.getResourceServerOutput = exports.getResourceServer = exports.getPromptScreenRendererOutput = exports.getPromptScreenRenderer = exports.getPromptScreenPartialsOutput = exports.getPromptScreenPartials = exports.getPhoneProviderOutput = exports.getPhoneProvider = exports.getPagesOutput = exports.getPages = exports.getOutboundIpsOutput = exports.getOutboundIps = exports.getOrganizationOutput = exports.getOrganization = exports.getNetworkAclOutput = exports.getNetworkAcl = exports.getFormOutput = exports.getForm = exports.getFlowVaultConnectionOutput = exports.getFlowVaultConnection = exports.getFlowOutput = exports.getFlow = exports.getEventStreamOutput = void 0;
21
- exports.types = exports.config = exports.UserRoles = exports.UserRole = exports.UserPermissions = exports.UserPermission = exports.UserAttributeProfile = exports.User = exports.TriggerActions = exports.TriggerAction = exports.TokenExchangeProfile = exports.Tenant = exports.SelfServiceProfileCustomText = exports.SelfServiceProfile = exports.RuleConfig = exports.Rule = exports.RolePermissions = exports.RolePermission = exports.Role = exports.RiskAssessmentsNewDevice = exports.RiskAssessments = exports.ResourceServerScopes = exports.ResourceServerScope = exports.ResourceServer = exports.PromptScreenRenderer = exports.PromptScreenPartials = exports.PromptScreenPartial = exports.PromptPartials = exports.PromptCustomText = exports.Prompt = exports.PhoneProvider = exports.Pages = exports.OrganizationMembers = void 0;
19
+ exports.getConnectionProfile = exports.getConnectionKeysOutput = exports.getConnectionKeys = exports.getConnectionDirectoryDefaultMappingOutput = exports.getConnectionDirectoryDefaultMapping = exports.getConnectionDirectoryOutput = exports.getConnectionDirectory = exports.getConnectionOutput = exports.getConnection = exports.getClientsOutput = exports.getClients = exports.getClientGrantsOutput = exports.getClientGrants = exports.getClientOutput = exports.getClient = exports.getBrandingThemeOutput = exports.getBrandingTheme = exports.getBrandingPhoneNotificationTemplateOutput = exports.getBrandingPhoneNotificationTemplate = exports.getBrandingOutput = exports.getBranding = exports.getAttackProtectionOutput = exports.getAttackProtection = exports.getActionOutput = exports.getAction = exports.Form = exports.FlowVaultConnection = exports.Flow = exports.EventStream = exports.EncryptionKeyManager = exports.EmailTemplate = exports.EmailProvider = exports.CustomDomainVerification = exports.CustomDomain = exports.ConnectionScimToken = exports.ConnectionScimConfiguration = exports.ConnectionProfile = exports.ConnectionKeys = exports.ConnectionDirectory = exports.ConnectionClients = exports.ConnectionClient = exports.Connection = exports.ClientGrant = exports.ClientCredentials = exports.Client = exports.BrandingTheme = exports.BrandingPhoneNotificationTemplate = exports.Branding = exports.AttackProtection = exports.Action = void 0;
20
+ exports.LogStream = exports.Hook = exports.Guardian = exports.getUserAttributeProfileOutput = exports.getUserAttributeProfile = exports.getUserOutput = exports.getUser = exports.getTokenExchangeProfileOutput = exports.getTokenExchangeProfile = exports.getTenantOutput = exports.getTenant = exports.getSigningKeysOutput = exports.getSigningKeys = exports.getSelfServiceProfileOutput = exports.getSelfServiceProfile = exports.getRoleOutput = exports.getRole = exports.getResourceServerOutput = exports.getResourceServer = exports.getPromptScreenRendererOutput = exports.getPromptScreenRenderer = exports.getPromptScreenPartialsOutput = exports.getPromptScreenPartials = exports.getPhoneProviderOutput = exports.getPhoneProvider = exports.getPhoneNotificationTemplateOutput = exports.getPhoneNotificationTemplate = exports.getPagesOutput = exports.getPages = exports.getOutboundIpsOutput = exports.getOutboundIps = exports.getOrganizationOutput = exports.getOrganization = exports.getNetworkAclOutput = exports.getNetworkAcl = exports.getFormOutput = exports.getForm = exports.getFlowVaultConnectionOutput = exports.getFlowVaultConnection = exports.getFlowOutput = exports.getFlow = exports.getEventStreamOutput = exports.getEventStream = exports.getCustomDomainsOutput = exports.getCustomDomains = exports.getCustomDomainOutput = exports.getCustomDomain = exports.getConnectionScimConfigurationOutput = exports.getConnectionScimConfiguration = exports.getConnectionProfileOutput = void 0;
21
+ exports.types = exports.config = exports.UserRoles = exports.UserRole = exports.UserPermissions = exports.UserPermission = exports.UserAttributeProfile = exports.User = exports.TriggerActions = exports.TriggerAction = exports.TokenExchangeProfile = exports.Tenant = exports.SelfServiceProfileCustomText = exports.SelfServiceProfile = exports.RuleConfig = exports.Rule = exports.RolePermissions = exports.RolePermission = exports.Role = exports.RiskAssessmentsNewDevice = exports.RiskAssessments = exports.ResourceServerScopes = exports.ResourceServerScope = exports.ResourceServer = exports.PromptScreenRenderer = exports.PromptScreenPartials = exports.PromptScreenPartial = exports.PromptPartials = exports.PromptCustomText = exports.Prompt = exports.PhoneProvider = exports.PhoneNotificationTemplate = exports.Pages = exports.OrganizationMembers = exports.OrganizationMemberRoles = exports.OrganizationMemberRole = exports.OrganizationMember = exports.OrganizationDiscoveryDomains = exports.OrganizationDiscoveryDomain = exports.OrganizationConnections = exports.OrganizationConnection = exports.OrganizationClientGrant = exports.Organization = exports.NetworkAcl = void 0;
22
22
  const pulumi = require("@pulumi/pulumi");
23
23
  const utilities = require("./utilities");
24
24
  exports.Action = null;
@@ -27,6 +27,8 @@ exports.AttackProtection = null;
27
27
  utilities.lazyLoad(exports, ["AttackProtection"], () => require("./attackProtection"));
28
28
  exports.Branding = null;
29
29
  utilities.lazyLoad(exports, ["Branding"], () => require("./branding"));
30
+ exports.BrandingPhoneNotificationTemplate = null;
31
+ utilities.lazyLoad(exports, ["BrandingPhoneNotificationTemplate"], () => require("./brandingPhoneNotificationTemplate"));
30
32
  exports.BrandingTheme = null;
31
33
  utilities.lazyLoad(exports, ["BrandingTheme"], () => require("./brandingTheme"));
32
34
  exports.Client = null;
@@ -41,6 +43,8 @@ exports.ConnectionClient = null;
41
43
  utilities.lazyLoad(exports, ["ConnectionClient"], () => require("./connectionClient"));
42
44
  exports.ConnectionClients = null;
43
45
  utilities.lazyLoad(exports, ["ConnectionClients"], () => require("./connectionClients"));
46
+ exports.ConnectionDirectory = null;
47
+ utilities.lazyLoad(exports, ["ConnectionDirectory"], () => require("./connectionDirectory"));
44
48
  exports.ConnectionKeys = null;
45
49
  utilities.lazyLoad(exports, ["ConnectionKeys"], () => require("./connectionKeys"));
46
50
  exports.ConnectionProfile = null;
@@ -76,6 +80,9 @@ utilities.lazyLoad(exports, ["getAttackProtection", "getAttackProtectionOutput"]
76
80
  exports.getBranding = null;
77
81
  exports.getBrandingOutput = null;
78
82
  utilities.lazyLoad(exports, ["getBranding", "getBrandingOutput"], () => require("./getBranding"));
83
+ exports.getBrandingPhoneNotificationTemplate = null;
84
+ exports.getBrandingPhoneNotificationTemplateOutput = null;
85
+ utilities.lazyLoad(exports, ["getBrandingPhoneNotificationTemplate", "getBrandingPhoneNotificationTemplateOutput"], () => require("./getBrandingPhoneNotificationTemplate"));
79
86
  exports.getBrandingTheme = null;
80
87
  exports.getBrandingThemeOutput = null;
81
88
  utilities.lazyLoad(exports, ["getBrandingTheme", "getBrandingThemeOutput"], () => require("./getBrandingTheme"));
@@ -91,6 +98,12 @@ utilities.lazyLoad(exports, ["getClients", "getClientsOutput"], () => require(".
91
98
  exports.getConnection = null;
92
99
  exports.getConnectionOutput = null;
93
100
  utilities.lazyLoad(exports, ["getConnection", "getConnectionOutput"], () => require("./getConnection"));
101
+ exports.getConnectionDirectory = null;
102
+ exports.getConnectionDirectoryOutput = null;
103
+ utilities.lazyLoad(exports, ["getConnectionDirectory", "getConnectionDirectoryOutput"], () => require("./getConnectionDirectory"));
104
+ exports.getConnectionDirectoryDefaultMapping = null;
105
+ exports.getConnectionDirectoryDefaultMappingOutput = null;
106
+ utilities.lazyLoad(exports, ["getConnectionDirectoryDefaultMapping", "getConnectionDirectoryDefaultMappingOutput"], () => require("./getConnectionDirectoryDefaultMapping"));
94
107
  exports.getConnectionKeys = null;
95
108
  exports.getConnectionKeysOutput = null;
96
109
  utilities.lazyLoad(exports, ["getConnectionKeys", "getConnectionKeysOutput"], () => require("./getConnectionKeys"));
@@ -130,6 +143,9 @@ utilities.lazyLoad(exports, ["getOutboundIps", "getOutboundIpsOutput"], () => re
130
143
  exports.getPages = null;
131
144
  exports.getPagesOutput = null;
132
145
  utilities.lazyLoad(exports, ["getPages", "getPagesOutput"], () => require("./getPages"));
146
+ exports.getPhoneNotificationTemplate = null;
147
+ exports.getPhoneNotificationTemplateOutput = null;
148
+ utilities.lazyLoad(exports, ["getPhoneNotificationTemplate", "getPhoneNotificationTemplateOutput"], () => require("./getPhoneNotificationTemplate"));
133
149
  exports.getPhoneProvider = null;
134
150
  exports.getPhoneProviderOutput = null;
135
151
  utilities.lazyLoad(exports, ["getPhoneProvider", "getPhoneProviderOutput"], () => require("./getPhoneProvider"));
@@ -193,6 +209,8 @@ exports.OrganizationMembers = null;
193
209
  utilities.lazyLoad(exports, ["OrganizationMembers"], () => require("./organizationMembers"));
194
210
  exports.Pages = null;
195
211
  utilities.lazyLoad(exports, ["Pages"], () => require("./pages"));
212
+ exports.PhoneNotificationTemplate = null;
213
+ utilities.lazyLoad(exports, ["PhoneNotificationTemplate"], () => require("./phoneNotificationTemplate"));
196
214
  exports.PhoneProvider = null;
197
215
  utilities.lazyLoad(exports, ["PhoneProvider"], () => require("./phoneProvider"));
198
216
  exports.Prompt = null;
@@ -268,6 +286,8 @@ const _module = {
268
286
  return new exports.AttackProtection(name, undefined, { urn });
269
287
  case "auth0:index/branding:Branding":
270
288
  return new exports.Branding(name, undefined, { urn });
289
+ case "auth0:index/brandingPhoneNotificationTemplate:BrandingPhoneNotificationTemplate":
290
+ return new exports.BrandingPhoneNotificationTemplate(name, undefined, { urn });
271
291
  case "auth0:index/brandingTheme:BrandingTheme":
272
292
  return new exports.BrandingTheme(name, undefined, { urn });
273
293
  case "auth0:index/client:Client":
@@ -282,6 +302,8 @@ const _module = {
282
302
  return new exports.ConnectionClient(name, undefined, { urn });
283
303
  case "auth0:index/connectionClients:ConnectionClients":
284
304
  return new exports.ConnectionClients(name, undefined, { urn });
305
+ case "auth0:index/connectionDirectory:ConnectionDirectory":
306
+ return new exports.ConnectionDirectory(name, undefined, { urn });
285
307
  case "auth0:index/connectionKeys:ConnectionKeys":
286
308
  return new exports.ConnectionKeys(name, undefined, { urn });
287
309
  case "auth0:index/connectionProfile:ConnectionProfile":
@@ -338,6 +360,8 @@ const _module = {
338
360
  return new exports.OrganizationMembers(name, undefined, { urn });
339
361
  case "auth0:index/pages:Pages":
340
362
  return new exports.Pages(name, undefined, { urn });
363
+ case "auth0:index/phoneNotificationTemplate:PhoneNotificationTemplate":
364
+ return new exports.PhoneNotificationTemplate(name, undefined, { urn });
341
365
  case "auth0:index/phoneProvider:PhoneProvider":
342
366
  return new exports.PhoneProvider(name, undefined, { urn });
343
367
  case "auth0:index/prompt:Prompt":
@@ -404,6 +428,7 @@ const _module = {
404
428
  pulumi.runtime.registerResourceModule("auth0", "index/action", _module);
405
429
  pulumi.runtime.registerResourceModule("auth0", "index/attackProtection", _module);
406
430
  pulumi.runtime.registerResourceModule("auth0", "index/branding", _module);
431
+ pulumi.runtime.registerResourceModule("auth0", "index/brandingPhoneNotificationTemplate", _module);
407
432
  pulumi.runtime.registerResourceModule("auth0", "index/brandingTheme", _module);
408
433
  pulumi.runtime.registerResourceModule("auth0", "index/client", _module);
409
434
  pulumi.runtime.registerResourceModule("auth0", "index/clientCredentials", _module);
@@ -411,6 +436,7 @@ pulumi.runtime.registerResourceModule("auth0", "index/clientGrant", _module);
411
436
  pulumi.runtime.registerResourceModule("auth0", "index/connection", _module);
412
437
  pulumi.runtime.registerResourceModule("auth0", "index/connectionClient", _module);
413
438
  pulumi.runtime.registerResourceModule("auth0", "index/connectionClients", _module);
439
+ pulumi.runtime.registerResourceModule("auth0", "index/connectionDirectory", _module);
414
440
  pulumi.runtime.registerResourceModule("auth0", "index/connectionKeys", _module);
415
441
  pulumi.runtime.registerResourceModule("auth0", "index/connectionProfile", _module);
416
442
  pulumi.runtime.registerResourceModule("auth0", "index/connectionScimConfiguration", _module);
@@ -439,6 +465,7 @@ pulumi.runtime.registerResourceModule("auth0", "index/organizationMemberRole", _
439
465
  pulumi.runtime.registerResourceModule("auth0", "index/organizationMemberRoles", _module);
440
466
  pulumi.runtime.registerResourceModule("auth0", "index/organizationMembers", _module);
441
467
  pulumi.runtime.registerResourceModule("auth0", "index/pages", _module);
468
+ pulumi.runtime.registerResourceModule("auth0", "index/phoneNotificationTemplate", _module);
442
469
  pulumi.runtime.registerResourceModule("auth0", "index/phoneProvider", _module);
443
470
  pulumi.runtime.registerResourceModule("auth0", "index/prompt", _module);
444
471
  pulumi.runtime.registerResourceModule("auth0", "index/promptCustomText", _module);