@pulumi/fastly 11.1.0-alpha.1761890504 → 11.1.0-alpha.1762369899
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/alert.d.ts +14 -2
- package/alert.js +14 -2
- package/alert.js.map +1 -1
- package/computeAcl.d.ts +92 -0
- package/computeAcl.js +93 -0
- package/computeAcl.js.map +1 -0
- package/computeAclEntries.d.ts +78 -0
- package/computeAclEntries.js +68 -0
- package/computeAclEntries.js.map +1 -0
- package/customDashboard.d.ts +238 -0
- package/customDashboard.js +238 -0
- package/customDashboard.js.map +1 -1
- package/domainV1ServiceLink.d.ts +66 -0
- package/domainV1ServiceLink.js +63 -0
- package/domainV1ServiceLink.js.map +1 -0
- package/getComputeAcls.d.ts +23 -0
- package/getComputeAcls.js +24 -0
- package/getComputeAcls.js.map +1 -0
- package/getDomainsV1.d.ts +71 -0
- package/getDomainsV1.js +56 -0
- package/getDomainsV1.js.map +1 -0
- package/getNgwafAccountLists.d.ts +43 -0
- package/getNgwafAccountLists.js +44 -0
- package/getNgwafAccountLists.js.map +1 -0
- package/getNgwafAccountRules.d.ts +43 -0
- package/getNgwafAccountRules.js +44 -0
- package/getNgwafAccountRules.js.map +1 -0
- package/getNgwafAccountSignals.d.ts +43 -0
- package/getNgwafAccountSignals.js +44 -0
- package/getNgwafAccountSignals.js.map +1 -0
- package/getNgwafWorkspaceLists.d.ts +69 -0
- package/getNgwafWorkspaceLists.js +52 -0
- package/getNgwafWorkspaceLists.js.map +1 -0
- package/getNgwafWorkspaceRules.d.ts +69 -0
- package/getNgwafWorkspaceRules.js +52 -0
- package/getNgwafWorkspaceRules.js.map +1 -0
- package/getNgwafWorkspaceSignals.d.ts +69 -0
- package/getNgwafWorkspaceSignals.js +52 -0
- package/getNgwafWorkspaceSignals.js.map +1 -0
- package/index.d.ts +33 -0
- package/index.js +42 -3
- package/index.js.map +1 -1
- package/ngwafAccountRule.d.ts +6 -6
- package/ngwafAccountRule.js +2 -2
- package/ngwafAccountRule.js.map +1 -1
- package/ngwafThresholds.d.ts +2 -2
- package/ngwafThresholds.js +0 -3
- package/ngwafThresholds.js.map +1 -1
- package/ngwafVirtualPatches.d.ts +1 -1
- package/ngwafVirtualPatches.js +1 -1
- package/ngwafWorkspace.d.ts +29 -0
- package/ngwafWorkspace.js +19 -0
- package/ngwafWorkspace.js.map +1 -1
- package/ngwafWorkspaceRule.d.ts +200 -17
- package/ngwafWorkspaceRule.js +190 -17
- package/ngwafWorkspaceRule.js.map +1 -1
- package/package.json +2 -2
- package/serviceAuthorization.d.ts +11 -2
- package/serviceAuthorization.js +11 -2
- package/serviceAuthorization.js.map +1 -1
- package/serviceCompute.d.ts +9 -3
- package/serviceCompute.js +4 -3
- package/serviceCompute.js.map +1 -1
- package/serviceVcl.d.ts +3 -3
- package/serviceVcl.js +0 -3
- package/serviceVcl.js.map +1 -1
- package/types/input.d.ts +182 -26
- package/types/output.d.ts +354 -26
package/alert.d.ts
CHANGED
|
@@ -10,8 +10,20 @@ import * as outputs from "./types/output";
|
|
|
10
10
|
* import * as pulumi from "@pulumi/pulumi";
|
|
11
11
|
* import * as fastly from "@pulumi/fastly";
|
|
12
12
|
*
|
|
13
|
-
* const example = new fastly.ServiceVcl("example", {
|
|
14
|
-
*
|
|
13
|
+
* const example = new fastly.ServiceVcl("example", {
|
|
14
|
+
* name: "my_vcl_service",
|
|
15
|
+
* domains: [{
|
|
16
|
+
* name: "demo.notexample.com",
|
|
17
|
+
* comment: "demo",
|
|
18
|
+
* }],
|
|
19
|
+
* });
|
|
20
|
+
* const exampleIntegration = new fastly.Integration("example", {
|
|
21
|
+
* name: "my_integration",
|
|
22
|
+
* type: "a_valid_type",
|
|
23
|
+
* config: {
|
|
24
|
+
* webhook: "some_webhook",
|
|
25
|
+
* },
|
|
26
|
+
* });
|
|
15
27
|
* const exampleAlert = new fastly.Alert("example", {
|
|
16
28
|
* name: "my_vcl_service errors",
|
|
17
29
|
* serviceId: example.id,
|
package/alert.js
CHANGED
|
@@ -14,8 +14,20 @@ const utilities = require("./utilities");
|
|
|
14
14
|
* import * as pulumi from "@pulumi/pulumi";
|
|
15
15
|
* import * as fastly from "@pulumi/fastly";
|
|
16
16
|
*
|
|
17
|
-
* const example = new fastly.ServiceVcl("example", {
|
|
18
|
-
*
|
|
17
|
+
* const example = new fastly.ServiceVcl("example", {
|
|
18
|
+
* name: "my_vcl_service",
|
|
19
|
+
* domains: [{
|
|
20
|
+
* name: "demo.notexample.com",
|
|
21
|
+
* comment: "demo",
|
|
22
|
+
* }],
|
|
23
|
+
* });
|
|
24
|
+
* const exampleIntegration = new fastly.Integration("example", {
|
|
25
|
+
* name: "my_integration",
|
|
26
|
+
* type: "a_valid_type",
|
|
27
|
+
* config: {
|
|
28
|
+
* webhook: "some_webhook",
|
|
29
|
+
* },
|
|
30
|
+
* });
|
|
19
31
|
* const exampleAlert = new fastly.Alert("example", {
|
|
20
32
|
* name: "my_vcl_service errors",
|
|
21
33
|
* serviceId: example.id,
|
package/alert.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"alert.js","sourceRoot":"","sources":["../alert.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"alert.js","sourceRoot":"","sources":["../alert.ts"],"names":[],"mappings":"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"}
|
package/computeAcl.d.ts
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Provides a Compute Access Control List (ACL) that defines CIDR-based access rules (e.g., allow/block IP ranges) and is accessible to Compute services during request processing.
|
|
4
|
+
*
|
|
5
|
+
* In order for a Compute ACL (`fastly.ComputeAcl`) to be accessible to a [Compute](https://developer.fastly.com/learning/compute/) service you'll first need to define a Compute service (`fastly.ServiceCompute`) in your configuration, and then create a link to the ACL from within the service using the `resourceLink` block (shown in the below examples).
|
|
6
|
+
*
|
|
7
|
+
* ## Example Usage
|
|
8
|
+
*
|
|
9
|
+
* Basic usage:
|
|
10
|
+
*
|
|
11
|
+
* ```typescript
|
|
12
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
13
|
+
* import * as fastly from "@pulumi/fastly";
|
|
14
|
+
*
|
|
15
|
+
* // IMPORTANT: Deleting a Compute ACL requires first deleting its resource_link.
|
|
16
|
+
* // This requires a two-step `pulumi up` because we can't guarantee deletion order.
|
|
17
|
+
* const exampleComputeAcl = new fastly.ComputeAcl("example", {name: "my_compute_acl"});
|
|
18
|
+
* const example = fastly.getPackageHash({
|
|
19
|
+
* filename: "package.tar.gz",
|
|
20
|
+
* });
|
|
21
|
+
* const exampleServiceCompute = new fastly.ServiceCompute("example", {
|
|
22
|
+
* name: "my_compute_service",
|
|
23
|
+
* domains: [{
|
|
24
|
+
* name: "demo.example.com",
|
|
25
|
+
* }],
|
|
26
|
+
* "package": {
|
|
27
|
+
* filename: "package.tar.gz",
|
|
28
|
+
* sourceCodeHash: example.then(example => example.hash),
|
|
29
|
+
* },
|
|
30
|
+
* resourceLinks: [{
|
|
31
|
+
* name: "my_acl_link",
|
|
32
|
+
* resourceId: exampleComputeAcl.id,
|
|
33
|
+
* }],
|
|
34
|
+
* forceDestroy: true,
|
|
35
|
+
* });
|
|
36
|
+
* ```
|
|
37
|
+
*
|
|
38
|
+
* ## Import
|
|
39
|
+
*
|
|
40
|
+
* Fastly Compute ACLs can be imported using their ACL ID, e.g.
|
|
41
|
+
*
|
|
42
|
+
* ```sh
|
|
43
|
+
* $ pulumi import fastly:index/computeAcl:ComputeAcl example <compute_acl_id>
|
|
44
|
+
* ```
|
|
45
|
+
*/
|
|
46
|
+
export declare class ComputeAcl extends pulumi.CustomResource {
|
|
47
|
+
/**
|
|
48
|
+
* Get an existing ComputeAcl resource's state with the given name, ID, and optional extra
|
|
49
|
+
* properties used to qualify the lookup.
|
|
50
|
+
*
|
|
51
|
+
* @param name The _unique_ name of the resulting resource.
|
|
52
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
53
|
+
* @param state Any extra arguments used during the lookup.
|
|
54
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
55
|
+
*/
|
|
56
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: ComputeAclState, opts?: pulumi.CustomResourceOptions): ComputeAcl;
|
|
57
|
+
/**
|
|
58
|
+
* Returns true if the given object is an instance of ComputeAcl. This is designed to work even
|
|
59
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
60
|
+
*/
|
|
61
|
+
static isInstance(obj: any): obj is ComputeAcl;
|
|
62
|
+
/**
|
|
63
|
+
* A unique name to identify the Compute ACL. It is important to note that changing this attribute will delete and recreate the Compute ACL, and discard the current entries. You MUST first delete the associated resourceLink block from your service before modifying this field.
|
|
64
|
+
*/
|
|
65
|
+
readonly name: pulumi.Output<string>;
|
|
66
|
+
/**
|
|
67
|
+
* Create a ComputeAcl resource with the given unique name, arguments, and options.
|
|
68
|
+
*
|
|
69
|
+
* @param name The _unique_ name of the resource.
|
|
70
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
71
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
72
|
+
*/
|
|
73
|
+
constructor(name: string, args?: ComputeAclArgs, opts?: pulumi.CustomResourceOptions);
|
|
74
|
+
}
|
|
75
|
+
/**
|
|
76
|
+
* Input properties used for looking up and filtering ComputeAcl resources.
|
|
77
|
+
*/
|
|
78
|
+
export interface ComputeAclState {
|
|
79
|
+
/**
|
|
80
|
+
* A unique name to identify the Compute ACL. It is important to note that changing this attribute will delete and recreate the Compute ACL, and discard the current entries. You MUST first delete the associated resourceLink block from your service before modifying this field.
|
|
81
|
+
*/
|
|
82
|
+
name?: pulumi.Input<string>;
|
|
83
|
+
}
|
|
84
|
+
/**
|
|
85
|
+
* The set of arguments for constructing a ComputeAcl resource.
|
|
86
|
+
*/
|
|
87
|
+
export interface ComputeAclArgs {
|
|
88
|
+
/**
|
|
89
|
+
* A unique name to identify the Compute ACL. It is important to note that changing this attribute will delete and recreate the Compute ACL, and discard the current entries. You MUST first delete the associated resourceLink block from your service before modifying this field.
|
|
90
|
+
*/
|
|
91
|
+
name?: pulumi.Input<string>;
|
|
92
|
+
}
|
package/computeAcl.js
ADDED
|
@@ -0,0 +1,93 @@
|
|
|
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.ComputeAcl = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Provides a Compute Access Control List (ACL) that defines CIDR-based access rules (e.g., allow/block IP ranges) and is accessible to Compute services during request processing.
|
|
10
|
+
*
|
|
11
|
+
* In order for a Compute ACL (`fastly.ComputeAcl`) to be accessible to a [Compute](https://developer.fastly.com/learning/compute/) service you'll first need to define a Compute service (`fastly.ServiceCompute`) in your configuration, and then create a link to the ACL from within the service using the `resourceLink` block (shown in the below examples).
|
|
12
|
+
*
|
|
13
|
+
* ## Example Usage
|
|
14
|
+
*
|
|
15
|
+
* Basic usage:
|
|
16
|
+
*
|
|
17
|
+
* ```typescript
|
|
18
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
19
|
+
* import * as fastly from "@pulumi/fastly";
|
|
20
|
+
*
|
|
21
|
+
* // IMPORTANT: Deleting a Compute ACL requires first deleting its resource_link.
|
|
22
|
+
* // This requires a two-step `pulumi up` because we can't guarantee deletion order.
|
|
23
|
+
* const exampleComputeAcl = new fastly.ComputeAcl("example", {name: "my_compute_acl"});
|
|
24
|
+
* const example = fastly.getPackageHash({
|
|
25
|
+
* filename: "package.tar.gz",
|
|
26
|
+
* });
|
|
27
|
+
* const exampleServiceCompute = new fastly.ServiceCompute("example", {
|
|
28
|
+
* name: "my_compute_service",
|
|
29
|
+
* domains: [{
|
|
30
|
+
* name: "demo.example.com",
|
|
31
|
+
* }],
|
|
32
|
+
* "package": {
|
|
33
|
+
* filename: "package.tar.gz",
|
|
34
|
+
* sourceCodeHash: example.then(example => example.hash),
|
|
35
|
+
* },
|
|
36
|
+
* resourceLinks: [{
|
|
37
|
+
* name: "my_acl_link",
|
|
38
|
+
* resourceId: exampleComputeAcl.id,
|
|
39
|
+
* }],
|
|
40
|
+
* forceDestroy: true,
|
|
41
|
+
* });
|
|
42
|
+
* ```
|
|
43
|
+
*
|
|
44
|
+
* ## Import
|
|
45
|
+
*
|
|
46
|
+
* Fastly Compute ACLs can be imported using their ACL ID, e.g.
|
|
47
|
+
*
|
|
48
|
+
* ```sh
|
|
49
|
+
* $ pulumi import fastly:index/computeAcl:ComputeAcl example <compute_acl_id>
|
|
50
|
+
* ```
|
|
51
|
+
*/
|
|
52
|
+
class ComputeAcl extends pulumi.CustomResource {
|
|
53
|
+
/**
|
|
54
|
+
* Get an existing ComputeAcl resource's state with the given name, ID, and optional extra
|
|
55
|
+
* properties used to qualify the lookup.
|
|
56
|
+
*
|
|
57
|
+
* @param name The _unique_ name of the resulting resource.
|
|
58
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
59
|
+
* @param state Any extra arguments used during the lookup.
|
|
60
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
61
|
+
*/
|
|
62
|
+
static get(name, id, state, opts) {
|
|
63
|
+
return new ComputeAcl(name, state, { ...opts, id: id });
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* Returns true if the given object is an instance of ComputeAcl. This is designed to work even
|
|
67
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
68
|
+
*/
|
|
69
|
+
static isInstance(obj) {
|
|
70
|
+
if (obj === undefined || obj === null) {
|
|
71
|
+
return false;
|
|
72
|
+
}
|
|
73
|
+
return obj['__pulumiType'] === ComputeAcl.__pulumiType;
|
|
74
|
+
}
|
|
75
|
+
constructor(name, argsOrState, opts) {
|
|
76
|
+
let resourceInputs = {};
|
|
77
|
+
opts = opts || {};
|
|
78
|
+
if (opts.id) {
|
|
79
|
+
const state = argsOrState;
|
|
80
|
+
resourceInputs["name"] = state?.name;
|
|
81
|
+
}
|
|
82
|
+
else {
|
|
83
|
+
const args = argsOrState;
|
|
84
|
+
resourceInputs["name"] = args?.name;
|
|
85
|
+
}
|
|
86
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
87
|
+
super(ComputeAcl.__pulumiType, name, resourceInputs, opts);
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
exports.ComputeAcl = ComputeAcl;
|
|
91
|
+
/** @internal */
|
|
92
|
+
ComputeAcl.__pulumiType = 'fastly:index/computeAcl:ComputeAcl';
|
|
93
|
+
//# sourceMappingURL=computeAcl.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"computeAcl.js","sourceRoot":"","sources":["../computeAcl.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2CG;AACH,MAAa,UAAW,SAAQ,MAAM,CAAC,cAAc;IACjD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAuB,EAAE,IAAmC;QACrH,OAAO,IAAI,UAAU,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACjE,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,UAAU,CAAC,YAAY,CAAC;IAC3D,CAAC;IAeD,YAAY,IAAY,EAAE,WAA8C,EAAE,IAAmC;QACzG,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA0C,CAAC;YACzD,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;SACxC;aAAM;YACH,MAAM,IAAI,GAAG,WAAyC,CAAC;YACvD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;SACvC;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,UAAU,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC/D,CAAC;;AArDL,gCAsDC;AAxCG,gBAAgB;AACO,uBAAY,GAAG,oCAAoC,CAAC"}
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* ## Import
|
|
4
|
+
*
|
|
5
|
+
* Fastly Compute ACL entries can be imported using the format `<compute_acl_id>/entries`, e.g.
|
|
6
|
+
*
|
|
7
|
+
* ```sh
|
|
8
|
+
* $ pulumi import fastly:index/computeAclEntries:ComputeAclEntries example <compute_acl_id>/entries
|
|
9
|
+
* ```
|
|
10
|
+
*/
|
|
11
|
+
export declare class ComputeAclEntries extends pulumi.CustomResource {
|
|
12
|
+
/**
|
|
13
|
+
* Get an existing ComputeAclEntries resource's state with the given name, ID, and optional extra
|
|
14
|
+
* properties used to qualify the lookup.
|
|
15
|
+
*
|
|
16
|
+
* @param name The _unique_ name of the resulting resource.
|
|
17
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
18
|
+
* @param state Any extra arguments used during the lookup.
|
|
19
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
20
|
+
*/
|
|
21
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: ComputeAclEntriesState, opts?: pulumi.CustomResourceOptions): ComputeAclEntries;
|
|
22
|
+
/**
|
|
23
|
+
* Returns true if the given object is an instance of ComputeAclEntries. This is designed to work even
|
|
24
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
25
|
+
*/
|
|
26
|
+
static isInstance(obj: any): obj is ComputeAclEntries;
|
|
27
|
+
/**
|
|
28
|
+
* Manages entries for a Fastly Compute Access Control List (ACL). To import, use the format \n\n/entries.
|
|
29
|
+
*/
|
|
30
|
+
readonly computeAclId: pulumi.Output<string>;
|
|
31
|
+
/**
|
|
32
|
+
* A map representing the entries in the Compute ACL, where the keys are the prefixes and the values are the actions (ALLOW or BLOCK).
|
|
33
|
+
*/
|
|
34
|
+
readonly entries: pulumi.Output<{
|
|
35
|
+
[key: string]: string;
|
|
36
|
+
}>;
|
|
37
|
+
readonly manageEntries: pulumi.Output<boolean | undefined>;
|
|
38
|
+
/**
|
|
39
|
+
* Create a ComputeAclEntries resource with the given unique name, arguments, and options.
|
|
40
|
+
*
|
|
41
|
+
* @param name The _unique_ name of the resource.
|
|
42
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
43
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
44
|
+
*/
|
|
45
|
+
constructor(name: string, args: ComputeAclEntriesArgs, opts?: pulumi.CustomResourceOptions);
|
|
46
|
+
}
|
|
47
|
+
/**
|
|
48
|
+
* Input properties used for looking up and filtering ComputeAclEntries resources.
|
|
49
|
+
*/
|
|
50
|
+
export interface ComputeAclEntriesState {
|
|
51
|
+
/**
|
|
52
|
+
* Manages entries for a Fastly Compute Access Control List (ACL). To import, use the format \n\n/entries.
|
|
53
|
+
*/
|
|
54
|
+
computeAclId?: pulumi.Input<string>;
|
|
55
|
+
/**
|
|
56
|
+
* A map representing the entries in the Compute ACL, where the keys are the prefixes and the values are the actions (ALLOW or BLOCK).
|
|
57
|
+
*/
|
|
58
|
+
entries?: pulumi.Input<{
|
|
59
|
+
[key: string]: pulumi.Input<string>;
|
|
60
|
+
}>;
|
|
61
|
+
manageEntries?: pulumi.Input<boolean>;
|
|
62
|
+
}
|
|
63
|
+
/**
|
|
64
|
+
* The set of arguments for constructing a ComputeAclEntries resource.
|
|
65
|
+
*/
|
|
66
|
+
export interface ComputeAclEntriesArgs {
|
|
67
|
+
/**
|
|
68
|
+
* Manages entries for a Fastly Compute Access Control List (ACL). To import, use the format \n\n/entries.
|
|
69
|
+
*/
|
|
70
|
+
computeAclId: pulumi.Input<string>;
|
|
71
|
+
/**
|
|
72
|
+
* A map representing the entries in the Compute ACL, where the keys are the prefixes and the values are the actions (ALLOW or BLOCK).
|
|
73
|
+
*/
|
|
74
|
+
entries: pulumi.Input<{
|
|
75
|
+
[key: string]: pulumi.Input<string>;
|
|
76
|
+
}>;
|
|
77
|
+
manageEntries?: pulumi.Input<boolean>;
|
|
78
|
+
}
|
|
@@ -0,0 +1,68 @@
|
|
|
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.ComputeAclEntries = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* ## Import
|
|
10
|
+
*
|
|
11
|
+
* Fastly Compute ACL entries can be imported using the format `<compute_acl_id>/entries`, e.g.
|
|
12
|
+
*
|
|
13
|
+
* ```sh
|
|
14
|
+
* $ pulumi import fastly:index/computeAclEntries:ComputeAclEntries example <compute_acl_id>/entries
|
|
15
|
+
* ```
|
|
16
|
+
*/
|
|
17
|
+
class ComputeAclEntries extends pulumi.CustomResource {
|
|
18
|
+
/**
|
|
19
|
+
* Get an existing ComputeAclEntries resource's state with the given name, ID, and optional extra
|
|
20
|
+
* properties used to qualify the lookup.
|
|
21
|
+
*
|
|
22
|
+
* @param name The _unique_ name of the resulting resource.
|
|
23
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
24
|
+
* @param state Any extra arguments used during the lookup.
|
|
25
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
26
|
+
*/
|
|
27
|
+
static get(name, id, state, opts) {
|
|
28
|
+
return new ComputeAclEntries(name, state, { ...opts, id: id });
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* Returns true if the given object is an instance of ComputeAclEntries. This is designed to work even
|
|
32
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
33
|
+
*/
|
|
34
|
+
static isInstance(obj) {
|
|
35
|
+
if (obj === undefined || obj === null) {
|
|
36
|
+
return false;
|
|
37
|
+
}
|
|
38
|
+
return obj['__pulumiType'] === ComputeAclEntries.__pulumiType;
|
|
39
|
+
}
|
|
40
|
+
constructor(name, argsOrState, opts) {
|
|
41
|
+
let resourceInputs = {};
|
|
42
|
+
opts = opts || {};
|
|
43
|
+
if (opts.id) {
|
|
44
|
+
const state = argsOrState;
|
|
45
|
+
resourceInputs["computeAclId"] = state?.computeAclId;
|
|
46
|
+
resourceInputs["entries"] = state?.entries;
|
|
47
|
+
resourceInputs["manageEntries"] = state?.manageEntries;
|
|
48
|
+
}
|
|
49
|
+
else {
|
|
50
|
+
const args = argsOrState;
|
|
51
|
+
if (args?.computeAclId === undefined && !opts.urn) {
|
|
52
|
+
throw new Error("Missing required property 'computeAclId'");
|
|
53
|
+
}
|
|
54
|
+
if (args?.entries === undefined && !opts.urn) {
|
|
55
|
+
throw new Error("Missing required property 'entries'");
|
|
56
|
+
}
|
|
57
|
+
resourceInputs["computeAclId"] = args?.computeAclId;
|
|
58
|
+
resourceInputs["entries"] = args?.entries;
|
|
59
|
+
resourceInputs["manageEntries"] = args?.manageEntries;
|
|
60
|
+
}
|
|
61
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
62
|
+
super(ComputeAclEntries.__pulumiType, name, resourceInputs, opts);
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
exports.ComputeAclEntries = ComputeAclEntries;
|
|
66
|
+
/** @internal */
|
|
67
|
+
ComputeAclEntries.__pulumiType = 'fastly:index/computeAclEntries:ComputeAclEntries';
|
|
68
|
+
//# sourceMappingURL=computeAclEntries.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"computeAclEntries.js","sourceRoot":"","sources":["../computeAclEntries.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;GAQG;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,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,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;IAoBD,YAAY,IAAY,EAAE,WAA4D,EAAE,IAAmC;QACvH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAiD,CAAC;YAChE,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,EAAE,YAAY,CAAC;YACrD,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,EAAE,OAAO,CAAC;YAC3C,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,EAAE,aAAa,CAAC;SAC1D;aAAM;YACH,MAAM,IAAI,GAAG,WAAgD,CAAC;YAC9D,IAAI,IAAI,EAAE,YAAY,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC/C,MAAM,IAAI,KAAK,CAAC,0CAA0C,CAAC,CAAC;aAC/D;YACD,IAAI,IAAI,EAAE,OAAO,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC1C,MAAM,IAAI,KAAK,CAAC,qCAAqC,CAAC,CAAC;aAC1D;YACD,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,EAAE,YAAY,CAAC;YACpD,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,OAAO,CAAC;YAC1C,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,EAAE,aAAa,CAAC;SACzD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,iBAAiB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACtE,CAAC;;AApEL,8CAqEC;AAvDG,gBAAgB;AACO,8BAAY,GAAG,kDAAkD,CAAC"}
|
package/customDashboard.d.ts
CHANGED
|
@@ -4,6 +4,244 @@ import * as outputs from "./types/output";
|
|
|
4
4
|
/**
|
|
5
5
|
* Provides a Custom Dashboard which can be viewed in the Fastly Control Panel.
|
|
6
6
|
*
|
|
7
|
+
* ## Example Usage
|
|
8
|
+
*
|
|
9
|
+
* ```typescript
|
|
10
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
11
|
+
* import * as fastly from "@pulumi/fastly";
|
|
12
|
+
*
|
|
13
|
+
* const example = new fastly.CustomDashboard("example", {
|
|
14
|
+
* name: "Example Custom Dashboard",
|
|
15
|
+
* description: "This is an example custom dashboard. A few dashboard items are provided to help you get started.",
|
|
16
|
+
* dashboardItems: [
|
|
17
|
+
* {
|
|
18
|
+
* id: "example1",
|
|
19
|
+
* title: "Total Requests",
|
|
20
|
+
* subtitle: "Number of requests processed.",
|
|
21
|
+
* dataSource: {
|
|
22
|
+
* type: "stats.edge",
|
|
23
|
+
* config: {
|
|
24
|
+
* metrics: ["requests"],
|
|
25
|
+
* },
|
|
26
|
+
* },
|
|
27
|
+
* visualization: {
|
|
28
|
+
* type: "chart",
|
|
29
|
+
* config: {
|
|
30
|
+
* format: "requests",
|
|
31
|
+
* plotType: "line",
|
|
32
|
+
* },
|
|
33
|
+
* },
|
|
34
|
+
* },
|
|
35
|
+
* {
|
|
36
|
+
* id: "example2",
|
|
37
|
+
* title: "Hit Ratio",
|
|
38
|
+
* subtitle: "Ratio of requests served from Fastly.",
|
|
39
|
+
* dataSource: {
|
|
40
|
+
* type: "stats.edge",
|
|
41
|
+
* config: {
|
|
42
|
+
* metrics: ["hit_ratio"],
|
|
43
|
+
* },
|
|
44
|
+
* },
|
|
45
|
+
* visualization: {
|
|
46
|
+
* type: "chart",
|
|
47
|
+
* config: {
|
|
48
|
+
* format: "percent",
|
|
49
|
+
* plotType: "donut",
|
|
50
|
+
* calculationMethod: "latest",
|
|
51
|
+
* },
|
|
52
|
+
* },
|
|
53
|
+
* },
|
|
54
|
+
* {
|
|
55
|
+
* id: "example3",
|
|
56
|
+
* title: "Client & Server Errors",
|
|
57
|
+
* subtitle: "Total errors served from the client or server.",
|
|
58
|
+
* dataSource: {
|
|
59
|
+
* type: "stats.edge",
|
|
60
|
+
* config: {
|
|
61
|
+
* metrics: [
|
|
62
|
+
* "status_4xx",
|
|
63
|
+
* "status_5xx",
|
|
64
|
+
* ],
|
|
65
|
+
* },
|
|
66
|
+
* },
|
|
67
|
+
* visualization: {
|
|
68
|
+
* type: "chart",
|
|
69
|
+
* config: {
|
|
70
|
+
* format: "requests",
|
|
71
|
+
* plotType: "bar",
|
|
72
|
+
* },
|
|
73
|
+
* },
|
|
74
|
+
* },
|
|
75
|
+
* {
|
|
76
|
+
* id: "example4",
|
|
77
|
+
* title: "Domain Requests",
|
|
78
|
+
* subtitle: "Requests by Domain.",
|
|
79
|
+
* span: 6,
|
|
80
|
+
* dataSource: {
|
|
81
|
+
* type: "stats.domain",
|
|
82
|
+
* config: {
|
|
83
|
+
* metrics: ["requests"],
|
|
84
|
+
* },
|
|
85
|
+
* },
|
|
86
|
+
* visualization: {
|
|
87
|
+
* type: "chart",
|
|
88
|
+
* config: {
|
|
89
|
+
* format: "requests",
|
|
90
|
+
* plotType: "line",
|
|
91
|
+
* },
|
|
92
|
+
* },
|
|
93
|
+
* },
|
|
94
|
+
* {
|
|
95
|
+
* id: "example5",
|
|
96
|
+
* title: "Origin Responses",
|
|
97
|
+
* subtitle: "Responses by Origin.",
|
|
98
|
+
* span: 6,
|
|
99
|
+
* dataSource: {
|
|
100
|
+
* type: "stats.origin",
|
|
101
|
+
* config: {
|
|
102
|
+
* metrics: ["all_responses"],
|
|
103
|
+
* },
|
|
104
|
+
* },
|
|
105
|
+
* visualization: {
|
|
106
|
+
* type: "chart",
|
|
107
|
+
* config: {
|
|
108
|
+
* plotType: "line",
|
|
109
|
+
* },
|
|
110
|
+
* },
|
|
111
|
+
* },
|
|
112
|
+
* {
|
|
113
|
+
* id: "example6",
|
|
114
|
+
* title: "Total Bandwidth",
|
|
115
|
+
* subtitle: "Total bandwidth served.",
|
|
116
|
+
* span: 12,
|
|
117
|
+
* dataSource: {
|
|
118
|
+
* type: "stats.edge",
|
|
119
|
+
* config: {
|
|
120
|
+
* metrics: ["bandwidth"],
|
|
121
|
+
* },
|
|
122
|
+
* },
|
|
123
|
+
* visualization: {
|
|
124
|
+
* type: "chart",
|
|
125
|
+
* config: {
|
|
126
|
+
* format: "bytes",
|
|
127
|
+
* plotType: "bar",
|
|
128
|
+
* },
|
|
129
|
+
* },
|
|
130
|
+
* },
|
|
131
|
+
* {
|
|
132
|
+
* id: "example7",
|
|
133
|
+
* title: "Products - Image Optimizer & Real-Time Log Streaming",
|
|
134
|
+
* subtitle: "Total IO images served and log statements sent.",
|
|
135
|
+
* span: 8,
|
|
136
|
+
* dataSource: {
|
|
137
|
+
* type: "stats.edge",
|
|
138
|
+
* config: {
|
|
139
|
+
* metrics: [
|
|
140
|
+
* "imgopto",
|
|
141
|
+
* "log",
|
|
142
|
+
* ],
|
|
143
|
+
* },
|
|
144
|
+
* },
|
|
145
|
+
* visualization: {
|
|
146
|
+
* type: "chart",
|
|
147
|
+
* config: {
|
|
148
|
+
* plotType: "line",
|
|
149
|
+
* },
|
|
150
|
+
* },
|
|
151
|
+
* },
|
|
152
|
+
* {
|
|
153
|
+
* id: "example8",
|
|
154
|
+
* title: "Transport Protocols & Security",
|
|
155
|
+
* subtitle: "HTTP Protocols & TLS.",
|
|
156
|
+
* dataSource: {
|
|
157
|
+
* type: "stats.edge",
|
|
158
|
+
* config: {
|
|
159
|
+
* metrics: [
|
|
160
|
+
* "http1",
|
|
161
|
+
* "http2",
|
|
162
|
+
* "http3",
|
|
163
|
+
* "tls_v10",
|
|
164
|
+
* "tls_v11",
|
|
165
|
+
* "tls_v12",
|
|
166
|
+
* "tls_v13",
|
|
167
|
+
* ],
|
|
168
|
+
* },
|
|
169
|
+
* },
|
|
170
|
+
* visualization: {
|
|
171
|
+
* type: "chart",
|
|
172
|
+
* config: {
|
|
173
|
+
* format: "requests",
|
|
174
|
+
* plotType: "line",
|
|
175
|
+
* },
|
|
176
|
+
* },
|
|
177
|
+
* },
|
|
178
|
+
* {
|
|
179
|
+
* id: "example9",
|
|
180
|
+
* title: "Origin Miss Latency",
|
|
181
|
+
* subtitle: "Miss latency times for your origins.",
|
|
182
|
+
* span: 12,
|
|
183
|
+
* dataSource: {
|
|
184
|
+
* type: "stats.edge",
|
|
185
|
+
* config: {
|
|
186
|
+
* metrics: ["origin_latency"],
|
|
187
|
+
* },
|
|
188
|
+
* },
|
|
189
|
+
* visualization: {
|
|
190
|
+
* type: "chart",
|
|
191
|
+
* config: {
|
|
192
|
+
* format: "milliseconds",
|
|
193
|
+
* plotType: "line",
|
|
194
|
+
* },
|
|
195
|
+
* },
|
|
196
|
+
* },
|
|
197
|
+
* {
|
|
198
|
+
* id: "example10",
|
|
199
|
+
* title: "DDoS - Request Flood Attempts",
|
|
200
|
+
* subtitle: "Number of connections the limit-streams action was applied.",
|
|
201
|
+
* span: 6,
|
|
202
|
+
* dataSource: {
|
|
203
|
+
* type: "stats.edge",
|
|
204
|
+
* config: {
|
|
205
|
+
* metrics: [
|
|
206
|
+
* "ddos_action_limit_streams_connections",
|
|
207
|
+
* "ddos_action_limit_streams_requests",
|
|
208
|
+
* ],
|
|
209
|
+
* },
|
|
210
|
+
* },
|
|
211
|
+
* visualization: {
|
|
212
|
+
* type: "chart",
|
|
213
|
+
* config: {
|
|
214
|
+
* format: "requests",
|
|
215
|
+
* plotType: "line",
|
|
216
|
+
* },
|
|
217
|
+
* },
|
|
218
|
+
* },
|
|
219
|
+
* {
|
|
220
|
+
* id: "example11",
|
|
221
|
+
* title: "DDoS - Malicious Bot Attack",
|
|
222
|
+
* subtitle: "Number of times the blackhole action was taken.",
|
|
223
|
+
* span: 6,
|
|
224
|
+
* dataSource: {
|
|
225
|
+
* type: "stats.edge",
|
|
226
|
+
* config: {
|
|
227
|
+
* metrics: [
|
|
228
|
+
* "ddos_action_close",
|
|
229
|
+
* "ddos_action_blackhole",
|
|
230
|
+
* ],
|
|
231
|
+
* },
|
|
232
|
+
* },
|
|
233
|
+
* visualization: {
|
|
234
|
+
* type: "chart",
|
|
235
|
+
* config: {
|
|
236
|
+
* format: "number",
|
|
237
|
+
* plotType: "line",
|
|
238
|
+
* },
|
|
239
|
+
* },
|
|
240
|
+
* },
|
|
241
|
+
* ],
|
|
242
|
+
* });
|
|
243
|
+
* ```
|
|
244
|
+
*
|
|
7
245
|
* ## Import
|
|
8
246
|
*
|
|
9
247
|
* Fastly Custom Dashboards can be imported using their ID, e.g.
|