@pulumi/auth0 2.14.0-alpha.1663280530 → 2.14.0-alpha.1666810964
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/action.d.ts +25 -72
- package/action.js +2 -50
- package/action.js.map +1 -1
- package/attackProtection.d.ts +9 -8
- package/attackProtection.js +4 -4
- package/attackProtection.js.map +1 -1
- package/branding.d.ts +31 -30
- package/branding.js +14 -8
- package/branding.js.map +1 -1
- package/brandingTheme.d.ts +156 -0
- package/brandingTheme.js +165 -0
- package/brandingTheme.js.map +1 -0
- package/client.d.ts +145 -126
- package/client.js +26 -22
- package/client.js.map +1 -1
- package/clientGrant.d.ts +12 -13
- package/clientGrant.js +3 -4
- package/clientGrant.js.map +1 -1
- package/config/vars.d.ts +22 -0
- package/config/vars.js +6 -0
- package/config/vars.js.map +1 -1
- package/connection.d.ts +256 -41
- package/connection.js +236 -4
- package/connection.js.map +1 -1
- package/customDomain.d.ts +42 -18
- package/customDomain.js +6 -3
- package/customDomain.js.map +1 -1
- package/customDomainVerification.d.ts +15 -9
- package/customDomainVerification.js +4 -4
- package/customDomainVerification.js.map +1 -1
- package/email.d.ts +37 -18
- package/email.js +23 -5
- package/email.js.map +1 -1
- package/emailTemplate.d.ts +29 -32
- package/emailTemplate.js +2 -5
- package/emailTemplate.js.map +1 -1
- package/getClient.d.ts +111 -6
- package/getClient.js +3 -1
- package/getClient.js.map +1 -1
- package/getGlobalClient.d.ts +98 -31
- package/getGlobalClient.js +3 -11
- package/getGlobalClient.js.map +1 -1
- package/getTenant.d.ts +3 -3
- package/getTenant.js +1 -1
- package/globalClient.d.ts +333 -2
- package/globalClient.js +7 -3
- package/globalClient.js.map +1 -1
- package/guardian.d.ts +32 -56
- package/guardian.js +3 -4
- package/guardian.js.map +1 -1
- package/hook.d.ts +12 -18
- package/hook.js +9 -10
- package/hook.js.map +1 -1
- package/index.d.ts +91 -30
- package/index.js +94 -101
- package/index.js.map +1 -1
- package/logStream.d.ts +34 -18
- package/logStream.js +17 -2
- package/logStream.js.map +1 -1
- package/organization.d.ts +22 -55
- package/organization.js +8 -17
- package/organization.js.map +1 -1
- package/organizationConnection.d.ts +7 -5
- package/organizationConnection.js +7 -5
- package/organizationConnection.js.map +1 -1
- package/organizationMember.d.ts +27 -15
- package/organizationMember.js +18 -6
- package/organizationMember.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/prompt.d.ts +12 -12
- package/prompt.js +4 -4
- package/promptCustomText.d.ts +8 -9
- package/promptCustomText.js +2 -3
- package/promptCustomText.js.map +1 -1
- package/provider.d.ts +41 -0
- package/provider.js +1 -0
- package/provider.js.map +1 -1
- package/resourceServer.d.ts +47 -46
- package/resourceServer.js +4 -1
- package/resourceServer.js.map +1 -1
- package/role.d.ts +13 -17
- package/role.js +2 -4
- package/role.js.map +1 -1
- package/rule.d.ts +19 -25
- package/rule.js +6 -12
- package/rule.js.map +1 -1
- package/ruleConfig.d.ts +12 -14
- package/ruleConfig.js +9 -9
- package/ruleConfig.js.map +1 -1
- package/tenant.d.ts +91 -80
- package/tenant.js +35 -25
- package/tenant.js.map +1 -1
- package/triggerBinding.d.ts +19 -26
- package/triggerBinding.js +11 -16
- package/triggerBinding.js.map +1 -1
- package/types/index.js.map +1 -1
- package/types/input.d.ts +488 -425
- package/types/output.d.ts +500 -435
- package/user.d.ts +87 -44
- package/user.js +6 -6
- package/user.js.map +1 -1
- package/utilities.js +13 -1
- package/utilities.js.map +1 -1
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
4
|
+
/**
|
|
5
|
+
* This resource allows you to manage branding themes for your Universal Login page within your Auth0 tenant.
|
|
6
|
+
*
|
|
7
|
+
* ## Example Usage
|
|
8
|
+
*
|
|
9
|
+
* ```typescript
|
|
10
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
11
|
+
* import * as auth0 from "@pulumi/auth0";
|
|
12
|
+
*
|
|
13
|
+
* const myTheme = new auth0.BrandingTheme("my_theme", {
|
|
14
|
+
* borders: {
|
|
15
|
+
* buttonBorderRadius: 1,
|
|
16
|
+
* buttonBorderWeight: 1,
|
|
17
|
+
* buttonsStyle: "pill",
|
|
18
|
+
* inputBorderRadius: 3,
|
|
19
|
+
* inputBorderWeight: 1,
|
|
20
|
+
* inputsStyle: "pill",
|
|
21
|
+
* showWidgetShadow: false,
|
|
22
|
+
* widgetBorderWeight: 1,
|
|
23
|
+
* widgetCornerRadius: 3,
|
|
24
|
+
* },
|
|
25
|
+
* colors: {
|
|
26
|
+
* bodyText: "#FF00CC",
|
|
27
|
+
* error: "#FF00CC",
|
|
28
|
+
* header: "#FF00CC",
|
|
29
|
+
* icons: "#FF00CC",
|
|
30
|
+
* inputBackground: "#FF00CC",
|
|
31
|
+
* inputBorder: "#FF00CC",
|
|
32
|
+
* inputFilledText: "#FF00CC",
|
|
33
|
+
* inputLabelsPlaceholders: "#FF00CC",
|
|
34
|
+
* linksFocusedComponents: "#FF00CC",
|
|
35
|
+
* primaryButton: "#FF00CC",
|
|
36
|
+
* primaryButtonLabel: "#FF00CC",
|
|
37
|
+
* secondaryButtonBorder: "#FF00CC",
|
|
38
|
+
* secondaryButtonLabel: "#FF00CC",
|
|
39
|
+
* success: "#FF00CC",
|
|
40
|
+
* widgetBackground: "#FF00CC",
|
|
41
|
+
* widgetBorder: "#FF00CC",
|
|
42
|
+
* },
|
|
43
|
+
* fonts: {
|
|
44
|
+
* bodyText: {
|
|
45
|
+
* bold: false,
|
|
46
|
+
* size: 100,
|
|
47
|
+
* },
|
|
48
|
+
* buttonsText: {
|
|
49
|
+
* bold: false,
|
|
50
|
+
* size: 100,
|
|
51
|
+
* },
|
|
52
|
+
* fontUrl: "https://google.com/font.woff",
|
|
53
|
+
* inputLabels: {
|
|
54
|
+
* bold: false,
|
|
55
|
+
* size: 100,
|
|
56
|
+
* },
|
|
57
|
+
* links: {
|
|
58
|
+
* bold: false,
|
|
59
|
+
* size: 100,
|
|
60
|
+
* },
|
|
61
|
+
* linksStyle: "normal",
|
|
62
|
+
* referenceTextSize: 12,
|
|
63
|
+
* subtitle: {
|
|
64
|
+
* bold: false,
|
|
65
|
+
* size: 100,
|
|
66
|
+
* },
|
|
67
|
+
* title: {
|
|
68
|
+
* bold: false,
|
|
69
|
+
* size: 100,
|
|
70
|
+
* },
|
|
71
|
+
* },
|
|
72
|
+
* pageBackground: {
|
|
73
|
+
* backgroundColor: "#000000",
|
|
74
|
+
* backgroundImageUrl: "https://google.com/background.png",
|
|
75
|
+
* pageLayout: "center",
|
|
76
|
+
* },
|
|
77
|
+
* widget: {
|
|
78
|
+
* headerTextAlignment: "center",
|
|
79
|
+
* logoHeight: 55,
|
|
80
|
+
* logoPosition: "center",
|
|
81
|
+
* logoUrl: "https://google.com/logo.png",
|
|
82
|
+
* socialButtonsLayout: "top",
|
|
83
|
+
* },
|
|
84
|
+
* });
|
|
85
|
+
* ```
|
|
86
|
+
*
|
|
87
|
+
* ## Import
|
|
88
|
+
*
|
|
89
|
+
* Branding Themes can be imported using their ID. # Example
|
|
90
|
+
*
|
|
91
|
+
* ```sh
|
|
92
|
+
* $ pulumi import auth0:index/brandingTheme:BrandingTheme my_theme XXXXXXXXXXXXXXXXXXXX
|
|
93
|
+
* ```
|
|
94
|
+
*/
|
|
95
|
+
export declare class BrandingTheme extends pulumi.CustomResource {
|
|
96
|
+
/**
|
|
97
|
+
* Get an existing BrandingTheme resource's state with the given name, ID, and optional extra
|
|
98
|
+
* properties used to qualify the lookup.
|
|
99
|
+
*
|
|
100
|
+
* @param name The _unique_ name of the resulting resource.
|
|
101
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
102
|
+
* @param state Any extra arguments used during the lookup.
|
|
103
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
104
|
+
*/
|
|
105
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: BrandingThemeState, opts?: pulumi.CustomResourceOptions): BrandingTheme;
|
|
106
|
+
/**
|
|
107
|
+
* Returns true if the given object is an instance of BrandingTheme. This is designed to work even
|
|
108
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
109
|
+
*/
|
|
110
|
+
static isInstance(obj: any): obj is BrandingTheme;
|
|
111
|
+
readonly borders: pulumi.Output<outputs.BrandingThemeBorders>;
|
|
112
|
+
readonly colors: pulumi.Output<outputs.BrandingThemeColors>;
|
|
113
|
+
/**
|
|
114
|
+
* The display name for the branding theme.
|
|
115
|
+
*/
|
|
116
|
+
readonly displayName: pulumi.Output<string | undefined>;
|
|
117
|
+
readonly fonts: pulumi.Output<outputs.BrandingThemeFonts>;
|
|
118
|
+
readonly pageBackground: pulumi.Output<outputs.BrandingThemePageBackground>;
|
|
119
|
+
readonly widget: pulumi.Output<outputs.BrandingThemeWidget>;
|
|
120
|
+
/**
|
|
121
|
+
* Create a BrandingTheme resource with the given unique name, arguments, and options.
|
|
122
|
+
*
|
|
123
|
+
* @param name The _unique_ name of the resource.
|
|
124
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
125
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
126
|
+
*/
|
|
127
|
+
constructor(name: string, args: BrandingThemeArgs, opts?: pulumi.CustomResourceOptions);
|
|
128
|
+
}
|
|
129
|
+
/**
|
|
130
|
+
* Input properties used for looking up and filtering BrandingTheme resources.
|
|
131
|
+
*/
|
|
132
|
+
export interface BrandingThemeState {
|
|
133
|
+
borders?: pulumi.Input<inputs.BrandingThemeBorders>;
|
|
134
|
+
colors?: pulumi.Input<inputs.BrandingThemeColors>;
|
|
135
|
+
/**
|
|
136
|
+
* The display name for the branding theme.
|
|
137
|
+
*/
|
|
138
|
+
displayName?: pulumi.Input<string>;
|
|
139
|
+
fonts?: pulumi.Input<inputs.BrandingThemeFonts>;
|
|
140
|
+
pageBackground?: pulumi.Input<inputs.BrandingThemePageBackground>;
|
|
141
|
+
widget?: pulumi.Input<inputs.BrandingThemeWidget>;
|
|
142
|
+
}
|
|
143
|
+
/**
|
|
144
|
+
* The set of arguments for constructing a BrandingTheme resource.
|
|
145
|
+
*/
|
|
146
|
+
export interface BrandingThemeArgs {
|
|
147
|
+
borders: pulumi.Input<inputs.BrandingThemeBorders>;
|
|
148
|
+
colors: pulumi.Input<inputs.BrandingThemeColors>;
|
|
149
|
+
/**
|
|
150
|
+
* The display name for the branding theme.
|
|
151
|
+
*/
|
|
152
|
+
displayName?: pulumi.Input<string>;
|
|
153
|
+
fonts: pulumi.Input<inputs.BrandingThemeFonts>;
|
|
154
|
+
pageBackground: pulumi.Input<inputs.BrandingThemePageBackground>;
|
|
155
|
+
widget: pulumi.Input<inputs.BrandingThemeWidget>;
|
|
156
|
+
}
|
package/brandingTheme.js
ADDED
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
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.BrandingTheme = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* This resource allows you to manage branding themes for your Universal Login page within your Auth0 tenant.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as auth0 from "@pulumi/auth0";
|
|
16
|
+
*
|
|
17
|
+
* const myTheme = new auth0.BrandingTheme("my_theme", {
|
|
18
|
+
* borders: {
|
|
19
|
+
* buttonBorderRadius: 1,
|
|
20
|
+
* buttonBorderWeight: 1,
|
|
21
|
+
* buttonsStyle: "pill",
|
|
22
|
+
* inputBorderRadius: 3,
|
|
23
|
+
* inputBorderWeight: 1,
|
|
24
|
+
* inputsStyle: "pill",
|
|
25
|
+
* showWidgetShadow: false,
|
|
26
|
+
* widgetBorderWeight: 1,
|
|
27
|
+
* widgetCornerRadius: 3,
|
|
28
|
+
* },
|
|
29
|
+
* colors: {
|
|
30
|
+
* bodyText: "#FF00CC",
|
|
31
|
+
* error: "#FF00CC",
|
|
32
|
+
* header: "#FF00CC",
|
|
33
|
+
* icons: "#FF00CC",
|
|
34
|
+
* inputBackground: "#FF00CC",
|
|
35
|
+
* inputBorder: "#FF00CC",
|
|
36
|
+
* inputFilledText: "#FF00CC",
|
|
37
|
+
* inputLabelsPlaceholders: "#FF00CC",
|
|
38
|
+
* linksFocusedComponents: "#FF00CC",
|
|
39
|
+
* primaryButton: "#FF00CC",
|
|
40
|
+
* primaryButtonLabel: "#FF00CC",
|
|
41
|
+
* secondaryButtonBorder: "#FF00CC",
|
|
42
|
+
* secondaryButtonLabel: "#FF00CC",
|
|
43
|
+
* success: "#FF00CC",
|
|
44
|
+
* widgetBackground: "#FF00CC",
|
|
45
|
+
* widgetBorder: "#FF00CC",
|
|
46
|
+
* },
|
|
47
|
+
* fonts: {
|
|
48
|
+
* bodyText: {
|
|
49
|
+
* bold: false,
|
|
50
|
+
* size: 100,
|
|
51
|
+
* },
|
|
52
|
+
* buttonsText: {
|
|
53
|
+
* bold: false,
|
|
54
|
+
* size: 100,
|
|
55
|
+
* },
|
|
56
|
+
* fontUrl: "https://google.com/font.woff",
|
|
57
|
+
* inputLabels: {
|
|
58
|
+
* bold: false,
|
|
59
|
+
* size: 100,
|
|
60
|
+
* },
|
|
61
|
+
* links: {
|
|
62
|
+
* bold: false,
|
|
63
|
+
* size: 100,
|
|
64
|
+
* },
|
|
65
|
+
* linksStyle: "normal",
|
|
66
|
+
* referenceTextSize: 12,
|
|
67
|
+
* subtitle: {
|
|
68
|
+
* bold: false,
|
|
69
|
+
* size: 100,
|
|
70
|
+
* },
|
|
71
|
+
* title: {
|
|
72
|
+
* bold: false,
|
|
73
|
+
* size: 100,
|
|
74
|
+
* },
|
|
75
|
+
* },
|
|
76
|
+
* pageBackground: {
|
|
77
|
+
* backgroundColor: "#000000",
|
|
78
|
+
* backgroundImageUrl: "https://google.com/background.png",
|
|
79
|
+
* pageLayout: "center",
|
|
80
|
+
* },
|
|
81
|
+
* widget: {
|
|
82
|
+
* headerTextAlignment: "center",
|
|
83
|
+
* logoHeight: 55,
|
|
84
|
+
* logoPosition: "center",
|
|
85
|
+
* logoUrl: "https://google.com/logo.png",
|
|
86
|
+
* socialButtonsLayout: "top",
|
|
87
|
+
* },
|
|
88
|
+
* });
|
|
89
|
+
* ```
|
|
90
|
+
*
|
|
91
|
+
* ## Import
|
|
92
|
+
*
|
|
93
|
+
* Branding Themes can be imported using their ID. # Example
|
|
94
|
+
*
|
|
95
|
+
* ```sh
|
|
96
|
+
* $ pulumi import auth0:index/brandingTheme:BrandingTheme my_theme XXXXXXXXXXXXXXXXXXXX
|
|
97
|
+
* ```
|
|
98
|
+
*/
|
|
99
|
+
class BrandingTheme extends pulumi.CustomResource {
|
|
100
|
+
constructor(name, argsOrState, opts) {
|
|
101
|
+
let resourceInputs = {};
|
|
102
|
+
opts = opts || {};
|
|
103
|
+
if (opts.id) {
|
|
104
|
+
const state = argsOrState;
|
|
105
|
+
resourceInputs["borders"] = state ? state.borders : undefined;
|
|
106
|
+
resourceInputs["colors"] = state ? state.colors : undefined;
|
|
107
|
+
resourceInputs["displayName"] = state ? state.displayName : undefined;
|
|
108
|
+
resourceInputs["fonts"] = state ? state.fonts : undefined;
|
|
109
|
+
resourceInputs["pageBackground"] = state ? state.pageBackground : undefined;
|
|
110
|
+
resourceInputs["widget"] = state ? state.widget : undefined;
|
|
111
|
+
}
|
|
112
|
+
else {
|
|
113
|
+
const args = argsOrState;
|
|
114
|
+
if ((!args || args.borders === undefined) && !opts.urn) {
|
|
115
|
+
throw new Error("Missing required property 'borders'");
|
|
116
|
+
}
|
|
117
|
+
if ((!args || args.colors === undefined) && !opts.urn) {
|
|
118
|
+
throw new Error("Missing required property 'colors'");
|
|
119
|
+
}
|
|
120
|
+
if ((!args || args.fonts === undefined) && !opts.urn) {
|
|
121
|
+
throw new Error("Missing required property 'fonts'");
|
|
122
|
+
}
|
|
123
|
+
if ((!args || args.pageBackground === undefined) && !opts.urn) {
|
|
124
|
+
throw new Error("Missing required property 'pageBackground'");
|
|
125
|
+
}
|
|
126
|
+
if ((!args || args.widget === undefined) && !opts.urn) {
|
|
127
|
+
throw new Error("Missing required property 'widget'");
|
|
128
|
+
}
|
|
129
|
+
resourceInputs["borders"] = args ? args.borders : undefined;
|
|
130
|
+
resourceInputs["colors"] = args ? args.colors : undefined;
|
|
131
|
+
resourceInputs["displayName"] = args ? args.displayName : undefined;
|
|
132
|
+
resourceInputs["fonts"] = args ? args.fonts : undefined;
|
|
133
|
+
resourceInputs["pageBackground"] = args ? args.pageBackground : undefined;
|
|
134
|
+
resourceInputs["widget"] = args ? args.widget : undefined;
|
|
135
|
+
}
|
|
136
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
137
|
+
super(BrandingTheme.__pulumiType, name, resourceInputs, opts);
|
|
138
|
+
}
|
|
139
|
+
/**
|
|
140
|
+
* Get an existing BrandingTheme resource's state with the given name, ID, and optional extra
|
|
141
|
+
* properties used to qualify the lookup.
|
|
142
|
+
*
|
|
143
|
+
* @param name The _unique_ name of the resulting resource.
|
|
144
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
145
|
+
* @param state Any extra arguments used during the lookup.
|
|
146
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
147
|
+
*/
|
|
148
|
+
static get(name, id, state, opts) {
|
|
149
|
+
return new BrandingTheme(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
150
|
+
}
|
|
151
|
+
/**
|
|
152
|
+
* Returns true if the given object is an instance of BrandingTheme. This is designed to work even
|
|
153
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
154
|
+
*/
|
|
155
|
+
static isInstance(obj) {
|
|
156
|
+
if (obj === undefined || obj === null) {
|
|
157
|
+
return false;
|
|
158
|
+
}
|
|
159
|
+
return obj['__pulumiType'] === BrandingTheme.__pulumiType;
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
exports.BrandingTheme = BrandingTheme;
|
|
163
|
+
/** @internal */
|
|
164
|
+
BrandingTheme.__pulumiType = 'auth0:index/brandingTheme:BrandingTheme';
|
|
165
|
+
//# sourceMappingURL=brandingTheme.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"brandingTheme.js","sourceRoot":"","sources":["../brandingTheme.ts"],"names":[],"mappings":"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"}
|