@pulumi/cloudflare 5.36.0-alpha.1723008332 → 5.36.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/accessApplication.d.ts +12 -0
- package/accessApplication.js +2 -0
- package/accessApplication.js.map +1 -1
- package/accessPolicy.d.ts +0 -12
- package/accessPolicy.js.map +1 -1
- package/getGatewayAppTypes.d.ts +67 -0
- package/getGatewayAppTypes.js +47 -0
- package/getGatewayAppTypes.js.map +1 -0
- package/getZone.d.ts +2 -2
- package/getZone.js +2 -2
- package/index.d.ts +21 -0
- package/index.js +36 -3
- package/index.js.map +1 -1
- package/package.json +2 -2
- package/record.d.ts +21 -3
- package/record.js +5 -3
- package/record.js.map +1 -1
- package/regionalHostname.d.ts +1 -1
- package/regionalHostname.js +1 -1
- package/types/input.d.ts +123 -6
- package/types/output.d.ts +141 -6
- package/workersCronTrigger.d.ts +108 -0
- package/workersCronTrigger.js +98 -0
- package/workersCronTrigger.js.map +1 -0
- package/workersDomain.d.ts +119 -0
- package/workersDomain.js +92 -0
- package/workersDomain.js.map +1 -0
- package/workersForPlatformsDispatchNamespace.d.ts +92 -0
- package/workersForPlatformsDispatchNamespace.js +89 -0
- package/workersForPlatformsDispatchNamespace.js.map +1 -0
- package/workersForPlatformsNamespace.d.ts +1 -1
- package/workersForPlatformsNamespace.js +1 -1
- package/workersRoute.d.ts +96 -0
- package/workersRoute.js +83 -0
- package/workersRoute.js.map +1 -0
- package/workersScript.d.ts +228 -0
- package/workersScript.js +155 -0
- package/workersScript.js.map +1 -0
- package/workersSecret.d.ts +107 -0
- package/workersSecret.js +92 -0
- package/workersSecret.js.map +1 -0
package/accessApplication.d.ts
CHANGED
|
@@ -150,6 +150,10 @@ export declare class AccessApplication extends pulumi.CustomResource {
|
|
|
150
150
|
* How often a user will be forced to re-authorise. Must be in the format `48h` or `2h45m`. Defaults to `24h`.
|
|
151
151
|
*/
|
|
152
152
|
readonly sessionDuration: pulumi.Output<string | undefined>;
|
|
153
|
+
/**
|
|
154
|
+
* Option to skip the App Launcher landing page. Defaults to `false`.
|
|
155
|
+
*/
|
|
156
|
+
readonly skipAppLauncherLoginPage: pulumi.Output<boolean | undefined>;
|
|
153
157
|
/**
|
|
154
158
|
* Option to skip the authorization interstitial when using the CLI. Defaults to `false`.
|
|
155
159
|
*/
|
|
@@ -295,6 +299,10 @@ export interface AccessApplicationState {
|
|
|
295
299
|
* How often a user will be forced to re-authorise. Must be in the format `48h` or `2h45m`. Defaults to `24h`.
|
|
296
300
|
*/
|
|
297
301
|
sessionDuration?: pulumi.Input<string>;
|
|
302
|
+
/**
|
|
303
|
+
* Option to skip the App Launcher landing page. Defaults to `false`.
|
|
304
|
+
*/
|
|
305
|
+
skipAppLauncherLoginPage?: pulumi.Input<boolean>;
|
|
298
306
|
/**
|
|
299
307
|
* Option to skip the authorization interstitial when using the CLI. Defaults to `false`.
|
|
300
308
|
*/
|
|
@@ -428,6 +436,10 @@ export interface AccessApplicationArgs {
|
|
|
428
436
|
* How often a user will be forced to re-authorise. Must be in the format `48h` or `2h45m`. Defaults to `24h`.
|
|
429
437
|
*/
|
|
430
438
|
sessionDuration?: pulumi.Input<string>;
|
|
439
|
+
/**
|
|
440
|
+
* Option to skip the App Launcher landing page. Defaults to `false`.
|
|
441
|
+
*/
|
|
442
|
+
skipAppLauncherLoginPage?: pulumi.Input<boolean>;
|
|
431
443
|
/**
|
|
432
444
|
* Option to skip the authorization interstitial when using the CLI. Defaults to `false`.
|
|
433
445
|
*/
|
package/accessApplication.js
CHANGED
|
@@ -79,6 +79,7 @@ class AccessApplication extends pulumi.CustomResource {
|
|
|
79
79
|
resourceInputs["selfHostedDomains"] = state ? state.selfHostedDomains : undefined;
|
|
80
80
|
resourceInputs["serviceAuth401Redirect"] = state ? state.serviceAuth401Redirect : undefined;
|
|
81
81
|
resourceInputs["sessionDuration"] = state ? state.sessionDuration : undefined;
|
|
82
|
+
resourceInputs["skipAppLauncherLoginPage"] = state ? state.skipAppLauncherLoginPage : undefined;
|
|
82
83
|
resourceInputs["skipInterstitial"] = state ? state.skipInterstitial : undefined;
|
|
83
84
|
resourceInputs["tags"] = state ? state.tags : undefined;
|
|
84
85
|
resourceInputs["type"] = state ? state.type : undefined;
|
|
@@ -114,6 +115,7 @@ class AccessApplication extends pulumi.CustomResource {
|
|
|
114
115
|
resourceInputs["selfHostedDomains"] = args ? args.selfHostedDomains : undefined;
|
|
115
116
|
resourceInputs["serviceAuth401Redirect"] = args ? args.serviceAuth401Redirect : undefined;
|
|
116
117
|
resourceInputs["sessionDuration"] = args ? args.sessionDuration : undefined;
|
|
118
|
+
resourceInputs["skipAppLauncherLoginPage"] = args ? args.skipAppLauncherLoginPage : undefined;
|
|
117
119
|
resourceInputs["skipInterstitial"] = args ? args.skipInterstitial : undefined;
|
|
118
120
|
resourceInputs["tags"] = args ? args.tags : undefined;
|
|
119
121
|
resourceInputs["type"] = args ? args.type : undefined;
|
package/accessApplication.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"accessApplication.js","sourceRoot":"","sources":["../accessApplication.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;GAgBG;AACH,MAAa,iBAAkB,SAAQ,MAAM,CAAC,cAAc;IACxD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA8B,EAAE,IAAmC;QAC5H,OAAO,IAAI,iBAAiB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACxE,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,iBAAiB,CAAC,YAAY,CAAC;IAClE,CAAC;
|
|
1
|
+
{"version":3,"file":"accessApplication.js","sourceRoot":"","sources":["../accessApplication.ts"],"names":[],"mappings":"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"}
|
package/accessPolicy.d.ts
CHANGED
|
@@ -42,8 +42,6 @@ export declare class AccessPolicy extends pulumi.CustomResource {
|
|
|
42
42
|
readonly accountId: pulumi.Output<string | undefined>;
|
|
43
43
|
/**
|
|
44
44
|
* The ID of the application the policy is associated with. Required when using `precedence`. **Modifying this attribute will force creation of a new resource.**
|
|
45
|
-
*
|
|
46
|
-
* @deprecated This field is deprecated. Policies can now be standalone and reusable by multiple applications.Please use `cloudflare_access_application.policies` to associate reusable access policies with access applications.
|
|
47
45
|
*/
|
|
48
46
|
readonly applicationId: pulumi.Output<string | undefined>;
|
|
49
47
|
readonly approvalGroups: pulumi.Output<outputs.AccessPolicyApprovalGroup[] | undefined>;
|
|
@@ -70,8 +68,6 @@ export declare class AccessPolicy extends pulumi.CustomResource {
|
|
|
70
68
|
readonly name: pulumi.Output<string>;
|
|
71
69
|
/**
|
|
72
70
|
* The unique precedence for policies on a single application. Required when using `applicationId`.
|
|
73
|
-
*
|
|
74
|
-
* @deprecated This field is deprecated. Access policies can now be reusable by multiple applications. Please use `cloudflare_access_application.policies` to link policies to an application with ascending order of precedence.
|
|
75
71
|
*/
|
|
76
72
|
readonly precedence: pulumi.Output<number | undefined>;
|
|
77
73
|
/**
|
|
@@ -113,8 +109,6 @@ export interface AccessPolicyState {
|
|
|
113
109
|
accountId?: pulumi.Input<string>;
|
|
114
110
|
/**
|
|
115
111
|
* The ID of the application the policy is associated with. Required when using `precedence`. **Modifying this attribute will force creation of a new resource.**
|
|
116
|
-
*
|
|
117
|
-
* @deprecated This field is deprecated. Policies can now be standalone and reusable by multiple applications.Please use `cloudflare_access_application.policies` to associate reusable access policies with access applications.
|
|
118
112
|
*/
|
|
119
113
|
applicationId?: pulumi.Input<string>;
|
|
120
114
|
approvalGroups?: pulumi.Input<pulumi.Input<inputs.AccessPolicyApprovalGroup>[]>;
|
|
@@ -141,8 +135,6 @@ export interface AccessPolicyState {
|
|
|
141
135
|
name?: pulumi.Input<string>;
|
|
142
136
|
/**
|
|
143
137
|
* The unique precedence for policies on a single application. Required when using `applicationId`.
|
|
144
|
-
*
|
|
145
|
-
* @deprecated This field is deprecated. Access policies can now be reusable by multiple applications. Please use `cloudflare_access_application.policies` to link policies to an application with ascending order of precedence.
|
|
146
138
|
*/
|
|
147
139
|
precedence?: pulumi.Input<number>;
|
|
148
140
|
/**
|
|
@@ -176,8 +168,6 @@ export interface AccessPolicyArgs {
|
|
|
176
168
|
accountId?: pulumi.Input<string>;
|
|
177
169
|
/**
|
|
178
170
|
* The ID of the application the policy is associated with. Required when using `precedence`. **Modifying this attribute will force creation of a new resource.**
|
|
179
|
-
*
|
|
180
|
-
* @deprecated This field is deprecated. Policies can now be standalone and reusable by multiple applications.Please use `cloudflare_access_application.policies` to associate reusable access policies with access applications.
|
|
181
171
|
*/
|
|
182
172
|
applicationId?: pulumi.Input<string>;
|
|
183
173
|
approvalGroups?: pulumi.Input<pulumi.Input<inputs.AccessPolicyApprovalGroup>[]>;
|
|
@@ -204,8 +194,6 @@ export interface AccessPolicyArgs {
|
|
|
204
194
|
name: pulumi.Input<string>;
|
|
205
195
|
/**
|
|
206
196
|
* The unique precedence for policies on a single application. Required when using `applicationId`.
|
|
207
|
-
*
|
|
208
|
-
* @deprecated This field is deprecated. Access policies can now be reusable by multiple applications. Please use `cloudflare_access_application.policies` to link policies to an application with ascending order of precedence.
|
|
209
197
|
*/
|
|
210
198
|
precedence?: pulumi.Input<number>;
|
|
211
199
|
/**
|
package/accessPolicy.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"accessPolicy.js","sourceRoot":"","sources":["../accessPolicy.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;GAkBG;AACH,MAAa,YAAa,SAAQ,MAAM,CAAC,cAAc;IACnD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAyB,EAAE,IAAmC;QACvH,OAAO,IAAI,YAAY,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACnE,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,YAAY,CAAC,YAAY,CAAC;IAC7D,CAAC;
|
|
1
|
+
{"version":3,"file":"accessPolicy.js","sourceRoot":"","sources":["../accessPolicy.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "./types/output";
|
|
3
|
+
/**
|
|
4
|
+
* Use this data source to retrieve all Gateway application types for an account.
|
|
5
|
+
*
|
|
6
|
+
* ## Example Usage
|
|
7
|
+
*
|
|
8
|
+
* ```typescript
|
|
9
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
10
|
+
* import * as cloudflare from "@pulumi/cloudflare";
|
|
11
|
+
*
|
|
12
|
+
* const example = cloudflare.getGatewayAppTypes({
|
|
13
|
+
* accountId: "f037e56e89293a057740de681ac9abbe",
|
|
14
|
+
* });
|
|
15
|
+
* ```
|
|
16
|
+
*/
|
|
17
|
+
export declare function getGatewayAppTypes(args: GetGatewayAppTypesArgs, opts?: pulumi.InvokeOptions): Promise<GetGatewayAppTypesResult>;
|
|
18
|
+
/**
|
|
19
|
+
* A collection of arguments for invoking getGatewayAppTypes.
|
|
20
|
+
*/
|
|
21
|
+
export interface GetGatewayAppTypesArgs {
|
|
22
|
+
/**
|
|
23
|
+
* The account ID to fetch Gateway App Types from.
|
|
24
|
+
*/
|
|
25
|
+
accountId: string;
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* A collection of values returned by getGatewayAppTypes.
|
|
29
|
+
*/
|
|
30
|
+
export interface GetGatewayAppTypesResult {
|
|
31
|
+
/**
|
|
32
|
+
* The account ID to fetch Gateway App Types from.
|
|
33
|
+
*/
|
|
34
|
+
readonly accountId: string;
|
|
35
|
+
/**
|
|
36
|
+
* A list of Gateway App Types.
|
|
37
|
+
*/
|
|
38
|
+
readonly appTypes: outputs.GetGatewayAppTypesAppType[];
|
|
39
|
+
/**
|
|
40
|
+
* The provider-assigned unique ID for this managed resource.
|
|
41
|
+
*/
|
|
42
|
+
readonly id: string;
|
|
43
|
+
}
|
|
44
|
+
/**
|
|
45
|
+
* Use this data source to retrieve all Gateway application types for an account.
|
|
46
|
+
*
|
|
47
|
+
* ## Example Usage
|
|
48
|
+
*
|
|
49
|
+
* ```typescript
|
|
50
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
51
|
+
* import * as cloudflare from "@pulumi/cloudflare";
|
|
52
|
+
*
|
|
53
|
+
* const example = cloudflare.getGatewayAppTypes({
|
|
54
|
+
* accountId: "f037e56e89293a057740de681ac9abbe",
|
|
55
|
+
* });
|
|
56
|
+
* ```
|
|
57
|
+
*/
|
|
58
|
+
export declare function getGatewayAppTypesOutput(args: GetGatewayAppTypesOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetGatewayAppTypesResult>;
|
|
59
|
+
/**
|
|
60
|
+
* A collection of arguments for invoking getGatewayAppTypes.
|
|
61
|
+
*/
|
|
62
|
+
export interface GetGatewayAppTypesOutputArgs {
|
|
63
|
+
/**
|
|
64
|
+
* The account ID to fetch Gateway App Types from.
|
|
65
|
+
*/
|
|
66
|
+
accountId: pulumi.Input<string>;
|
|
67
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
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.getGatewayAppTypesOutput = exports.getGatewayAppTypes = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Use this data source to retrieve all Gateway application types for an account.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as cloudflare from "@pulumi/cloudflare";
|
|
16
|
+
*
|
|
17
|
+
* const example = cloudflare.getGatewayAppTypes({
|
|
18
|
+
* accountId: "f037e56e89293a057740de681ac9abbe",
|
|
19
|
+
* });
|
|
20
|
+
* ```
|
|
21
|
+
*/
|
|
22
|
+
function getGatewayAppTypes(args, opts) {
|
|
23
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
24
|
+
return pulumi.runtime.invoke("cloudflare:index/getGatewayAppTypes:getGatewayAppTypes", {
|
|
25
|
+
"accountId": args.accountId,
|
|
26
|
+
}, opts);
|
|
27
|
+
}
|
|
28
|
+
exports.getGatewayAppTypes = getGatewayAppTypes;
|
|
29
|
+
/**
|
|
30
|
+
* Use this data source to retrieve all Gateway application types for an account.
|
|
31
|
+
*
|
|
32
|
+
* ## Example Usage
|
|
33
|
+
*
|
|
34
|
+
* ```typescript
|
|
35
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
36
|
+
* import * as cloudflare from "@pulumi/cloudflare";
|
|
37
|
+
*
|
|
38
|
+
* const example = cloudflare.getGatewayAppTypes({
|
|
39
|
+
* accountId: "f037e56e89293a057740de681ac9abbe",
|
|
40
|
+
* });
|
|
41
|
+
* ```
|
|
42
|
+
*/
|
|
43
|
+
function getGatewayAppTypesOutput(args, opts) {
|
|
44
|
+
return pulumi.output(args).apply((a) => getGatewayAppTypes(a, opts));
|
|
45
|
+
}
|
|
46
|
+
exports.getGatewayAppTypesOutput = getGatewayAppTypesOutput;
|
|
47
|
+
//# sourceMappingURL=getGatewayAppTypes.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getGatewayAppTypes.js","sourceRoot":"","sources":["../getGatewayAppTypes.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAA2B;IAExF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wDAAwD,EAAE;QACnF,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,gDAMC;AA6BD;;;;;;;;;;;;;GAaG;AACH,SAAgB,wBAAwB,CAAC,IAAkC,EAAE,IAA2B;IACpG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,kBAAkB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC7E,CAAC;AAFD,4DAEC"}
|
package/getZone.d.ts
CHANGED
|
@@ -20,7 +20,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
20
20
|
* const exampleRecord = new cloudflare.Record("example", {
|
|
21
21
|
* zoneId: example.then(example => example.id),
|
|
22
22
|
* name: "www",
|
|
23
|
-
*
|
|
23
|
+
* content: "203.0.113.1",
|
|
24
24
|
* type: "A",
|
|
25
25
|
* proxied: true,
|
|
26
26
|
* });
|
|
@@ -106,7 +106,7 @@ export interface GetZoneResult {
|
|
|
106
106
|
* const exampleRecord = new cloudflare.Record("example", {
|
|
107
107
|
* zoneId: example.then(example => example.id),
|
|
108
108
|
* name: "www",
|
|
109
|
-
*
|
|
109
|
+
* content: "203.0.113.1",
|
|
110
110
|
* type: "A",
|
|
111
111
|
* proxied: true,
|
|
112
112
|
* });
|
package/getZone.js
CHANGED
|
@@ -26,7 +26,7 @@ const utilities = require("./utilities");
|
|
|
26
26
|
* const exampleRecord = new cloudflare.Record("example", {
|
|
27
27
|
* zoneId: example.then(example => example.id),
|
|
28
28
|
* name: "www",
|
|
29
|
-
*
|
|
29
|
+
* content: "203.0.113.1",
|
|
30
30
|
* type: "A",
|
|
31
31
|
* proxied: true,
|
|
32
32
|
* });
|
|
@@ -63,7 +63,7 @@ exports.getZone = getZone;
|
|
|
63
63
|
* const exampleRecord = new cloudflare.Record("example", {
|
|
64
64
|
* zoneId: example.then(example => example.id),
|
|
65
65
|
* name: "www",
|
|
66
|
-
*
|
|
66
|
+
* content: "203.0.113.1",
|
|
67
67
|
* type: "A",
|
|
68
68
|
* proxied: true,
|
|
69
69
|
* });
|
package/index.d.ts
CHANGED
|
@@ -163,6 +163,9 @@ export declare const getDevicesOutput: typeof import("./getDevices").getDevicesO
|
|
|
163
163
|
export { GetDlpDatasetsArgs, GetDlpDatasetsResult, GetDlpDatasetsOutputArgs } from "./getDlpDatasets";
|
|
164
164
|
export declare const getDlpDatasets: typeof import("./getDlpDatasets").getDlpDatasets;
|
|
165
165
|
export declare const getDlpDatasetsOutput: typeof import("./getDlpDatasets").getDlpDatasetsOutput;
|
|
166
|
+
export { GetGatewayAppTypesArgs, GetGatewayAppTypesResult, GetGatewayAppTypesOutputArgs } from "./getGatewayAppTypes";
|
|
167
|
+
export declare const getGatewayAppTypes: typeof import("./getGatewayAppTypes").getGatewayAppTypes;
|
|
168
|
+
export declare const getGatewayAppTypesOutput: typeof import("./getGatewayAppTypes").getGatewayAppTypesOutput;
|
|
166
169
|
export { GetGatewayCategoriesArgs, GetGatewayCategoriesResult, GetGatewayCategoriesOutputArgs } from "./getGatewayCategories";
|
|
167
170
|
export declare const getGatewayCategories: typeof import("./getGatewayCategories").getGatewayCategories;
|
|
168
171
|
export declare const getGatewayCategoriesOutput: typeof import("./getGatewayCategories").getGatewayCategoriesOutput;
|
|
@@ -400,6 +403,15 @@ export declare const WorkerScript: typeof import("./workerScript").WorkerScript;
|
|
|
400
403
|
export { WorkerSecretArgs, WorkerSecretState } from "./workerSecret";
|
|
401
404
|
export type WorkerSecret = import("./workerSecret").WorkerSecret;
|
|
402
405
|
export declare const WorkerSecret: typeof import("./workerSecret").WorkerSecret;
|
|
406
|
+
export { WorkersCronTriggerArgs, WorkersCronTriggerState } from "./workersCronTrigger";
|
|
407
|
+
export type WorkersCronTrigger = import("./workersCronTrigger").WorkersCronTrigger;
|
|
408
|
+
export declare const WorkersCronTrigger: typeof import("./workersCronTrigger").WorkersCronTrigger;
|
|
409
|
+
export { WorkersDomainArgs, WorkersDomainState } from "./workersDomain";
|
|
410
|
+
export type WorkersDomain = import("./workersDomain").WorkersDomain;
|
|
411
|
+
export declare const WorkersDomain: typeof import("./workersDomain").WorkersDomain;
|
|
412
|
+
export { WorkersForPlatformsDispatchNamespaceArgs, WorkersForPlatformsDispatchNamespaceState } from "./workersForPlatformsDispatchNamespace";
|
|
413
|
+
export type WorkersForPlatformsDispatchNamespace = import("./workersForPlatformsDispatchNamespace").WorkersForPlatformsDispatchNamespace;
|
|
414
|
+
export declare const WorkersForPlatformsDispatchNamespace: typeof import("./workersForPlatformsDispatchNamespace").WorkersForPlatformsDispatchNamespace;
|
|
403
415
|
export { WorkersForPlatformsNamespaceArgs, WorkersForPlatformsNamespaceState } from "./workersForPlatformsNamespace";
|
|
404
416
|
export type WorkersForPlatformsNamespace = import("./workersForPlatformsNamespace").WorkersForPlatformsNamespace;
|
|
405
417
|
export declare const WorkersForPlatformsNamespace: typeof import("./workersForPlatformsNamespace").WorkersForPlatformsNamespace;
|
|
@@ -409,6 +421,15 @@ export declare const WorkersKv: typeof import("./workersKv").WorkersKv;
|
|
|
409
421
|
export { WorkersKvNamespaceArgs, WorkersKvNamespaceState } from "./workersKvNamespace";
|
|
410
422
|
export type WorkersKvNamespace = import("./workersKvNamespace").WorkersKvNamespace;
|
|
411
423
|
export declare const WorkersKvNamespace: typeof import("./workersKvNamespace").WorkersKvNamespace;
|
|
424
|
+
export { WorkersRouteArgs, WorkersRouteState } from "./workersRoute";
|
|
425
|
+
export type WorkersRoute = import("./workersRoute").WorkersRoute;
|
|
426
|
+
export declare const WorkersRoute: typeof import("./workersRoute").WorkersRoute;
|
|
427
|
+
export { WorkersScriptArgs, WorkersScriptState } from "./workersScript";
|
|
428
|
+
export type WorkersScript = import("./workersScript").WorkersScript;
|
|
429
|
+
export declare const WorkersScript: typeof import("./workersScript").WorkersScript;
|
|
430
|
+
export { WorkersSecretArgs, WorkersSecretState } from "./workersSecret";
|
|
431
|
+
export type WorkersSecret = import("./workersSecret").WorkersSecret;
|
|
432
|
+
export declare const WorkersSecret: typeof import("./workersSecret").WorkersSecret;
|
|
412
433
|
export { ZoneArgs, ZoneState } from "./zone";
|
|
413
434
|
export type Zone = import("./zone").Zone;
|
|
414
435
|
export declare const Zone: typeof import("./zone").Zone;
|
package/index.js
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
5
|
exports.getAccessIdentityProvider = exports.getAccessApplicationOutput = exports.getAccessApplication = exports.FirewallRule = exports.Filter = exports.FallbackDomain = exports.EmailRoutingSettings = exports.EmailRoutingRule = exports.EmailRoutingCatchAll = exports.EmailRoutingAddress = exports.DlpProfile = exports.DeviceSettingsPolicy = exports.DevicePostureRule = exports.DevicePostureIntegration = exports.DevicePolicyCertificates = exports.DeviceManagedNetworks = exports.DeviceDexTest = exports.D1Database = exports.CustomSsl = exports.CustomPages = exports.CustomHostnameFallbackOrigin = exports.CustomHostname = exports.CertificatePack = exports.ByoIpPrefix = exports.BotManagement = exports.AuthenticatedOriginPullsCertificate = exports.AuthenticatedOriginPulls = exports.Argo = exports.ApiToken = exports.ApiShieldSchemaValidationSettings = exports.ApiShieldSchema = exports.ApiShieldOperationSchemaValidationSettings = exports.ApiShieldOperation = exports.ApiShield = exports.AddressMap = exports.AccountMember = exports.Account = exports.AccessTag = exports.AccessServiceToken = exports.AccessRule = exports.AccessPolicy = exports.AccessOrganization = exports.AccessMutualTlsHostnameSettings = exports.AccessMutualTlsCertificate = exports.AccessKeysConfiguration = exports.AccessIdentityProvider = exports.AccessGroup = exports.AccessCustomPage = exports.AccessCaCertificate = exports.AccessApplication = void 0;
|
|
6
|
-
exports.
|
|
7
|
-
exports.
|
|
8
|
-
exports.types = exports.config = exports.ZoneSettingsOverride = exports.ZoneLockdown = exports.ZoneHold = exports.ZoneDnssec = exports.ZoneCacheVariants = exports.ZoneCacheReserve = exports.Zone = exports.WorkersKvNamespace = exports.WorkersKv = exports.WorkersForPlatformsNamespace = exports.WorkerSecret = exports.WorkerScript = exports.WorkerRoute = exports.WorkerDomain = exports.WorkerCronTrigger = exports.WebAnalyticsSite = exports.WebAnalyticsRule = exports.Web3Hostname = void 0;
|
|
6
|
+
exports.HostnameTlsSetting = exports.Healthcheck = exports.GreTunnel = exports.getZonesOutput = exports.getZones = exports.getZoneDnssecOutput = exports.getZoneDnssec = exports.getZoneCacheReserveOutput = exports.getZoneCacheReserve = exports.getZoneOutput = exports.getZone = exports.getUserOutput = exports.getUser = exports.getTunnelVirtualNetworkOutput = exports.getTunnelVirtualNetwork = exports.getTunnelOutput = exports.getTunnel = exports.getRulesetsOutput = exports.getRulesets = exports.getRecordOutput = exports.getRecord = exports.getOriginCaRootCertificateOutput = exports.getOriginCaRootCertificate = exports.getOriginCaCertificateOutput = exports.getOriginCaCertificate = exports.getLoadBalancerPoolsOutput = exports.getLoadBalancerPools = exports.getListsOutput = exports.getLists = exports.getListOutput = exports.getList = exports.getIpRangesOutput = exports.getIpRanges = exports.getGatewayCategoriesOutput = exports.getGatewayCategories = exports.getGatewayAppTypesOutput = exports.getGatewayAppTypes = exports.getDlpDatasetsOutput = exports.getDlpDatasets = exports.getDevicesOutput = exports.getDevices = exports.getDevicePostureRulesOutput = exports.getDevicePostureRules = exports.getApiTokenPermissionGroupsOutput = exports.getApiTokenPermissionGroups = exports.getAccountsOutput = exports.getAccounts = exports.getAccountRolesOutput = exports.getAccountRoles = exports.getAccessIdentityProviderOutput = void 0;
|
|
7
|
+
exports.WaitingRoomEvent = exports.WaitingRoom = exports.UserAgentBlockingRule = exports.UrlNormalizationSettings = exports.TurnstileWidget = exports.TunnelVirtualNetwork = exports.TunnelRoute = exports.TunnelConfig = exports.Tunnel = exports.TotalTls = exports.TieredCache = exports.TeamsRule = exports.TeamsProxyEndpoint = exports.TeamsLocation = exports.TeamsList = exports.TeamsAccount = exports.StaticRoute = exports.SplitTunnel = exports.SpectrumApplication = exports.Ruleset = exports.RiskBehavior = exports.RegionalTieredCache = exports.RegionalHostname = exports.Record = exports.RateLimit = exports.R2Bucket = exports.Queue = exports.Provider = exports.PagesProject = exports.PagesDomain = exports.PageRule = exports.OriginCaCertificate = exports.ObservatoryScheduledTest = exports.NotificationPolicyWebhooks = exports.NotificationPolicy = exports.MtlsCertificate = exports.ManagedHeaders = exports.MagicFirewallRuleset = exports.LogpushOwnershipChallenge = exports.LogpushJob = exports.LogpullRetention = exports.LoadBalancerPool = exports.LoadBalancerMonitor = exports.LoadBalancer = exports.ListItem = exports.List = exports.KeylessCertificate = exports.IpsecTunnel = exports.HyperdriveConfig = exports.HostnameTlsSettingCiphers = void 0;
|
|
8
|
+
exports.types = exports.config = exports.ZoneSettingsOverride = exports.ZoneLockdown = exports.ZoneHold = exports.ZoneDnssec = exports.ZoneCacheVariants = exports.ZoneCacheReserve = exports.Zone = exports.WorkersSecret = exports.WorkersScript = exports.WorkersRoute = exports.WorkersKvNamespace = exports.WorkersKv = exports.WorkersForPlatformsNamespace = exports.WorkersForPlatformsDispatchNamespace = exports.WorkersDomain = exports.WorkersCronTrigger = exports.WorkerSecret = exports.WorkerScript = exports.WorkerRoute = exports.WorkerDomain = exports.WorkerCronTrigger = exports.WebAnalyticsSite = exports.WebAnalyticsRule = exports.Web3Hostname = exports.WaitingRoomSettings = exports.WaitingRoomRules = void 0;
|
|
9
9
|
const pulumi = require("@pulumi/pulumi");
|
|
10
10
|
const utilities = require("./utilities");
|
|
11
11
|
exports.AccessApplication = null;
|
|
@@ -126,6 +126,9 @@ utilities.lazyLoad(exports, ["getDevices", "getDevicesOutput"], () => require(".
|
|
|
126
126
|
exports.getDlpDatasets = null;
|
|
127
127
|
exports.getDlpDatasetsOutput = null;
|
|
128
128
|
utilities.lazyLoad(exports, ["getDlpDatasets", "getDlpDatasetsOutput"], () => require("./getDlpDatasets"));
|
|
129
|
+
exports.getGatewayAppTypes = null;
|
|
130
|
+
exports.getGatewayAppTypesOutput = null;
|
|
131
|
+
utilities.lazyLoad(exports, ["getGatewayAppTypes", "getGatewayAppTypesOutput"], () => require("./getGatewayAppTypes"));
|
|
129
132
|
exports.getGatewayCategories = null;
|
|
130
133
|
exports.getGatewayCategoriesOutput = null;
|
|
131
134
|
utilities.lazyLoad(exports, ["getGatewayCategories", "getGatewayCategoriesOutput"], () => require("./getGatewayCategories"));
|
|
@@ -300,12 +303,24 @@ exports.WorkerScript = null;
|
|
|
300
303
|
utilities.lazyLoad(exports, ["WorkerScript"], () => require("./workerScript"));
|
|
301
304
|
exports.WorkerSecret = null;
|
|
302
305
|
utilities.lazyLoad(exports, ["WorkerSecret"], () => require("./workerSecret"));
|
|
306
|
+
exports.WorkersCronTrigger = null;
|
|
307
|
+
utilities.lazyLoad(exports, ["WorkersCronTrigger"], () => require("./workersCronTrigger"));
|
|
308
|
+
exports.WorkersDomain = null;
|
|
309
|
+
utilities.lazyLoad(exports, ["WorkersDomain"], () => require("./workersDomain"));
|
|
310
|
+
exports.WorkersForPlatformsDispatchNamespace = null;
|
|
311
|
+
utilities.lazyLoad(exports, ["WorkersForPlatformsDispatchNamespace"], () => require("./workersForPlatformsDispatchNamespace"));
|
|
303
312
|
exports.WorkersForPlatformsNamespace = null;
|
|
304
313
|
utilities.lazyLoad(exports, ["WorkersForPlatformsNamespace"], () => require("./workersForPlatformsNamespace"));
|
|
305
314
|
exports.WorkersKv = null;
|
|
306
315
|
utilities.lazyLoad(exports, ["WorkersKv"], () => require("./workersKv"));
|
|
307
316
|
exports.WorkersKvNamespace = null;
|
|
308
317
|
utilities.lazyLoad(exports, ["WorkersKvNamespace"], () => require("./workersKvNamespace"));
|
|
318
|
+
exports.WorkersRoute = null;
|
|
319
|
+
utilities.lazyLoad(exports, ["WorkersRoute"], () => require("./workersRoute"));
|
|
320
|
+
exports.WorkersScript = null;
|
|
321
|
+
utilities.lazyLoad(exports, ["WorkersScript"], () => require("./workersScript"));
|
|
322
|
+
exports.WorkersSecret = null;
|
|
323
|
+
utilities.lazyLoad(exports, ["WorkersSecret"], () => require("./workersSecret"));
|
|
309
324
|
exports.Zone = null;
|
|
310
325
|
utilities.lazyLoad(exports, ["Zone"], () => require("./zone"));
|
|
311
326
|
exports.ZoneCacheReserve = null;
|
|
@@ -547,12 +562,24 @@ const _module = {
|
|
|
547
562
|
return new exports.WorkerScript(name, undefined, { urn });
|
|
548
563
|
case "cloudflare:index/workerSecret:WorkerSecret":
|
|
549
564
|
return new exports.WorkerSecret(name, undefined, { urn });
|
|
565
|
+
case "cloudflare:index/workersCronTrigger:WorkersCronTrigger":
|
|
566
|
+
return new exports.WorkersCronTrigger(name, undefined, { urn });
|
|
567
|
+
case "cloudflare:index/workersDomain:WorkersDomain":
|
|
568
|
+
return new exports.WorkersDomain(name, undefined, { urn });
|
|
569
|
+
case "cloudflare:index/workersForPlatformsDispatchNamespace:WorkersForPlatformsDispatchNamespace":
|
|
570
|
+
return new exports.WorkersForPlatformsDispatchNamespace(name, undefined, { urn });
|
|
550
571
|
case "cloudflare:index/workersForPlatformsNamespace:WorkersForPlatformsNamespace":
|
|
551
572
|
return new exports.WorkersForPlatformsNamespace(name, undefined, { urn });
|
|
552
573
|
case "cloudflare:index/workersKv:WorkersKv":
|
|
553
574
|
return new exports.WorkersKv(name, undefined, { urn });
|
|
554
575
|
case "cloudflare:index/workersKvNamespace:WorkersKvNamespace":
|
|
555
576
|
return new exports.WorkersKvNamespace(name, undefined, { urn });
|
|
577
|
+
case "cloudflare:index/workersRoute:WorkersRoute":
|
|
578
|
+
return new exports.WorkersRoute(name, undefined, { urn });
|
|
579
|
+
case "cloudflare:index/workersScript:WorkersScript":
|
|
580
|
+
return new exports.WorkersScript(name, undefined, { urn });
|
|
581
|
+
case "cloudflare:index/workersSecret:WorkersSecret":
|
|
582
|
+
return new exports.WorkersSecret(name, undefined, { urn });
|
|
556
583
|
case "cloudflare:index/zone:Zone":
|
|
557
584
|
return new exports.Zone(name, undefined, { urn });
|
|
558
585
|
case "cloudflare:index/zoneCacheReserve:ZoneCacheReserve":
|
|
@@ -681,9 +708,15 @@ pulumi.runtime.registerResourceModule("cloudflare", "index/workerDomain", _modul
|
|
|
681
708
|
pulumi.runtime.registerResourceModule("cloudflare", "index/workerRoute", _module);
|
|
682
709
|
pulumi.runtime.registerResourceModule("cloudflare", "index/workerScript", _module);
|
|
683
710
|
pulumi.runtime.registerResourceModule("cloudflare", "index/workerSecret", _module);
|
|
711
|
+
pulumi.runtime.registerResourceModule("cloudflare", "index/workersCronTrigger", _module);
|
|
712
|
+
pulumi.runtime.registerResourceModule("cloudflare", "index/workersDomain", _module);
|
|
713
|
+
pulumi.runtime.registerResourceModule("cloudflare", "index/workersForPlatformsDispatchNamespace", _module);
|
|
684
714
|
pulumi.runtime.registerResourceModule("cloudflare", "index/workersForPlatformsNamespace", _module);
|
|
685
715
|
pulumi.runtime.registerResourceModule("cloudflare", "index/workersKv", _module);
|
|
686
716
|
pulumi.runtime.registerResourceModule("cloudflare", "index/workersKvNamespace", _module);
|
|
717
|
+
pulumi.runtime.registerResourceModule("cloudflare", "index/workersRoute", _module);
|
|
718
|
+
pulumi.runtime.registerResourceModule("cloudflare", "index/workersScript", _module);
|
|
719
|
+
pulumi.runtime.registerResourceModule("cloudflare", "index/workersSecret", _module);
|
|
687
720
|
pulumi.runtime.registerResourceModule("cloudflare", "index/zone", _module);
|
|
688
721
|
pulumi.runtime.registerResourceModule("cloudflare", "index/zoneCacheReserve", _module);
|
|
689
722
|
pulumi.runtime.registerResourceModule("cloudflare", "index/zoneCacheVariants", _module);
|