@pulumi/auth0 3.37.0 → 3.37.1
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/package.json +2 -2
- package/types/input.d.ts +10 -10
- package/types/output.d.ts +15 -15
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/auth0",
|
|
3
|
-
"version": "3.37.
|
|
3
|
+
"version": "3.37.1",
|
|
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.37.
|
|
26
|
+
"version": "3.37.1"
|
|
27
27
|
}
|
|
28
28
|
}
|
package/types/input.d.ts
CHANGED
|
@@ -156,9 +156,9 @@ export interface AttackProtectionCaptchaArkose {
|
|
|
156
156
|
*/
|
|
157
157
|
failOpen?: pulumi.Input<boolean>;
|
|
158
158
|
/**
|
|
159
|
-
* Secret for Arkose Labs.
|
|
159
|
+
* Secret for Arkose Labs. Required when configuring Arkose Labs.
|
|
160
160
|
*/
|
|
161
|
-
secret
|
|
161
|
+
secret?: pulumi.Input<string>;
|
|
162
162
|
/**
|
|
163
163
|
* Site key for Arkose Labs.
|
|
164
164
|
*/
|
|
@@ -176,9 +176,9 @@ export interface AttackProtectionCaptchaAuthChallenge {
|
|
|
176
176
|
}
|
|
177
177
|
export interface AttackProtectionCaptchaFriendlyCaptcha {
|
|
178
178
|
/**
|
|
179
|
-
* Secret for Friendly Captcha.
|
|
179
|
+
* Secret for Friendly Captcha. Required when configuring Friendly Captcha.
|
|
180
180
|
*/
|
|
181
|
-
secret
|
|
181
|
+
secret?: pulumi.Input<string>;
|
|
182
182
|
/**
|
|
183
183
|
* Site key for Friendly Captcha.
|
|
184
184
|
*/
|
|
@@ -186,9 +186,9 @@ export interface AttackProtectionCaptchaFriendlyCaptcha {
|
|
|
186
186
|
}
|
|
187
187
|
export interface AttackProtectionCaptchaHcaptcha {
|
|
188
188
|
/**
|
|
189
|
-
* Secret for hCaptcha.
|
|
189
|
+
* Secret for hCaptcha. Required when configuring hCaptcha.
|
|
190
190
|
*/
|
|
191
|
-
secret
|
|
191
|
+
secret?: pulumi.Input<string>;
|
|
192
192
|
/**
|
|
193
193
|
* Site key for hCaptcha.
|
|
194
194
|
*/
|
|
@@ -196,9 +196,9 @@ export interface AttackProtectionCaptchaHcaptcha {
|
|
|
196
196
|
}
|
|
197
197
|
export interface AttackProtectionCaptchaRecaptchaEnterprise {
|
|
198
198
|
/**
|
|
199
|
-
* API key for reCAPTCHA Enterprise.
|
|
199
|
+
* API key for reCAPTCHA Enterprise. Required when configuring reCAPTCHA Enterprise.
|
|
200
200
|
*/
|
|
201
|
-
apiKey
|
|
201
|
+
apiKey?: pulumi.Input<string>;
|
|
202
202
|
/**
|
|
203
203
|
* Project ID for reCAPTCHA Enterprise.
|
|
204
204
|
*/
|
|
@@ -210,9 +210,9 @@ export interface AttackProtectionCaptchaRecaptchaEnterprise {
|
|
|
210
210
|
}
|
|
211
211
|
export interface AttackProtectionCaptchaRecaptchaV2 {
|
|
212
212
|
/**
|
|
213
|
-
* Secret for reCAPTCHA v2.
|
|
213
|
+
* Secret for reCAPTCHA v2. Required when configuring reCAPTCHA v2.
|
|
214
214
|
*/
|
|
215
|
-
secret
|
|
215
|
+
secret?: pulumi.Input<string>;
|
|
216
216
|
/**
|
|
217
217
|
* Site key for reCAPTCHA v2.
|
|
218
218
|
*/
|
package/types/output.d.ts
CHANGED
|
@@ -155,9 +155,9 @@ export interface AttackProtectionCaptchaArkose {
|
|
|
155
155
|
*/
|
|
156
156
|
failOpen: boolean;
|
|
157
157
|
/**
|
|
158
|
-
* Secret for Arkose Labs.
|
|
158
|
+
* Secret for Arkose Labs. Required when configuring Arkose Labs.
|
|
159
159
|
*/
|
|
160
|
-
secret
|
|
160
|
+
secret?: string;
|
|
161
161
|
/**
|
|
162
162
|
* Site key for Arkose Labs.
|
|
163
163
|
*/
|
|
@@ -175,9 +175,9 @@ export interface AttackProtectionCaptchaAuthChallenge {
|
|
|
175
175
|
}
|
|
176
176
|
export interface AttackProtectionCaptchaFriendlyCaptcha {
|
|
177
177
|
/**
|
|
178
|
-
* Secret for Friendly Captcha.
|
|
178
|
+
* Secret for Friendly Captcha. Required when configuring Friendly Captcha.
|
|
179
179
|
*/
|
|
180
|
-
secret
|
|
180
|
+
secret?: string;
|
|
181
181
|
/**
|
|
182
182
|
* Site key for Friendly Captcha.
|
|
183
183
|
*/
|
|
@@ -185,9 +185,9 @@ export interface AttackProtectionCaptchaFriendlyCaptcha {
|
|
|
185
185
|
}
|
|
186
186
|
export interface AttackProtectionCaptchaHcaptcha {
|
|
187
187
|
/**
|
|
188
|
-
* Secret for hCaptcha.
|
|
188
|
+
* Secret for hCaptcha. Required when configuring hCaptcha.
|
|
189
189
|
*/
|
|
190
|
-
secret
|
|
190
|
+
secret?: string;
|
|
191
191
|
/**
|
|
192
192
|
* Site key for hCaptcha.
|
|
193
193
|
*/
|
|
@@ -195,9 +195,9 @@ export interface AttackProtectionCaptchaHcaptcha {
|
|
|
195
195
|
}
|
|
196
196
|
export interface AttackProtectionCaptchaRecaptchaEnterprise {
|
|
197
197
|
/**
|
|
198
|
-
* API key for reCAPTCHA Enterprise.
|
|
198
|
+
* API key for reCAPTCHA Enterprise. Required when configuring reCAPTCHA Enterprise.
|
|
199
199
|
*/
|
|
200
|
-
apiKey
|
|
200
|
+
apiKey?: string;
|
|
201
201
|
/**
|
|
202
202
|
* Project ID for reCAPTCHA Enterprise.
|
|
203
203
|
*/
|
|
@@ -209,9 +209,9 @@ export interface AttackProtectionCaptchaRecaptchaEnterprise {
|
|
|
209
209
|
}
|
|
210
210
|
export interface AttackProtectionCaptchaRecaptchaV2 {
|
|
211
211
|
/**
|
|
212
|
-
* Secret for reCAPTCHA v2.
|
|
212
|
+
* Secret for reCAPTCHA v2. Required when configuring reCAPTCHA v2.
|
|
213
213
|
*/
|
|
214
|
-
secret
|
|
214
|
+
secret?: string;
|
|
215
215
|
/**
|
|
216
216
|
* Site key for reCAPTCHA v2.
|
|
217
217
|
*/
|
|
@@ -2848,7 +2848,7 @@ export interface GetAttackProtectionCaptchaArkose {
|
|
|
2848
2848
|
*/
|
|
2849
2849
|
failOpen: boolean;
|
|
2850
2850
|
/**
|
|
2851
|
-
* Secret for Arkose Labs.
|
|
2851
|
+
* Secret for Arkose Labs. Required when configuring Arkose Labs.
|
|
2852
2852
|
*/
|
|
2853
2853
|
secret: string;
|
|
2854
2854
|
/**
|
|
@@ -2868,7 +2868,7 @@ export interface GetAttackProtectionCaptchaAuthChallenge {
|
|
|
2868
2868
|
}
|
|
2869
2869
|
export interface GetAttackProtectionCaptchaFriendlyCaptcha {
|
|
2870
2870
|
/**
|
|
2871
|
-
* Secret for Friendly Captcha.
|
|
2871
|
+
* Secret for Friendly Captcha. Required when configuring Friendly Captcha.
|
|
2872
2872
|
*/
|
|
2873
2873
|
secret: string;
|
|
2874
2874
|
/**
|
|
@@ -2878,7 +2878,7 @@ export interface GetAttackProtectionCaptchaFriendlyCaptcha {
|
|
|
2878
2878
|
}
|
|
2879
2879
|
export interface GetAttackProtectionCaptchaHcaptcha {
|
|
2880
2880
|
/**
|
|
2881
|
-
* Secret for hCaptcha.
|
|
2881
|
+
* Secret for hCaptcha. Required when configuring hCaptcha.
|
|
2882
2882
|
*/
|
|
2883
2883
|
secret: string;
|
|
2884
2884
|
/**
|
|
@@ -2888,7 +2888,7 @@ export interface GetAttackProtectionCaptchaHcaptcha {
|
|
|
2888
2888
|
}
|
|
2889
2889
|
export interface GetAttackProtectionCaptchaRecaptchaEnterprise {
|
|
2890
2890
|
/**
|
|
2891
|
-
* API key for reCAPTCHA Enterprise.
|
|
2891
|
+
* API key for reCAPTCHA Enterprise. Required when configuring reCAPTCHA Enterprise.
|
|
2892
2892
|
*/
|
|
2893
2893
|
apiKey: string;
|
|
2894
2894
|
/**
|
|
@@ -2902,7 +2902,7 @@ export interface GetAttackProtectionCaptchaRecaptchaEnterprise {
|
|
|
2902
2902
|
}
|
|
2903
2903
|
export interface GetAttackProtectionCaptchaRecaptchaV2 {
|
|
2904
2904
|
/**
|
|
2905
|
-
* Secret for reCAPTCHA v2.
|
|
2905
|
+
* Secret for reCAPTCHA v2. Required when configuring reCAPTCHA v2.
|
|
2906
2906
|
*/
|
|
2907
2907
|
secret: string;
|
|
2908
2908
|
/**
|