@pulumi/fastly 6.2.0-alpha.1678403579 → 7.0.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/README.md +2 -2
- package/package.json +3 -3
- package/package.json.bak +1 -1
- package/package.json.dev +3 -3
- package/types/input.d.ts +4 -8
- package/types/output.d.ts +4 -8
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
[](https://www.npmjs.com/package/@pulumi/fastly)
|
|
4
4
|
[](https://pypi.org/project/pulumi-fastly)
|
|
5
5
|
[](https://badge.fury.io/nu/pulumi.fastly)
|
|
6
|
-
[](https://pkg.go.dev/github.com/pulumi/pulumi-fastly/sdk/v7/go)
|
|
7
7
|
[](https://github.com/pulumi/pulumi-fastly/blob/master/LICENSE)
|
|
8
8
|
|
|
9
9
|
# Fastly Resource Provider
|
|
@@ -35,7 +35,7 @@ To use from Python, install using `pip`:
|
|
|
35
35
|
|
|
36
36
|
To use from Go, use `go get` to grab the latest version of the library
|
|
37
37
|
|
|
38
|
-
$ go get github.com/pulumi/pulumi-fastly/sdk/
|
|
38
|
+
$ go get github.com/pulumi/pulumi-fastly/sdk/v7
|
|
39
39
|
|
|
40
40
|
### .NET
|
|
41
41
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/fastly",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "A Pulumi package for creating and managing fastly cloud resources
|
|
3
|
+
"version": "v7.0.1",
|
|
4
|
+
"description": "A Pulumi package for creating and managing fastly cloud resources.. Based on terraform-provider-fastly: version v4",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
7
7
|
"fastly"
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"scripts": {
|
|
13
13
|
"build": "tsc",
|
|
14
|
-
"install": "node scripts/install-pulumi-plugin.js resource fastly
|
|
14
|
+
"install": "node scripts/install-pulumi-plugin.js resource fastly v7.0.1"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@pulumi/pulumi": "^3.0.0"
|
package/package.json.bak
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/fastly",
|
|
3
3
|
"version": "${VERSION}",
|
|
4
|
-
"description": "A Pulumi package for creating and managing fastly cloud resources
|
|
4
|
+
"description": "A Pulumi package for creating and managing fastly cloud resources.. Based on terraform-provider-fastly: version v4",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
7
7
|
"fastly"
|
package/package.json.dev
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/fastly",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "A Pulumi package for creating and managing fastly cloud resources
|
|
3
|
+
"version": "v7.0.1",
|
|
4
|
+
"description": "A Pulumi package for creating and managing fastly cloud resources.. Based on terraform-provider-fastly: version v4",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
7
7
|
"fastly"
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"scripts": {
|
|
13
13
|
"build": "tsc",
|
|
14
|
-
"install": "node scripts/install-pulumi-plugin.js resource fastly
|
|
14
|
+
"install": "node scripts/install-pulumi-plugin.js resource fastly v7.0.1"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@pulumi/pulumi": "^3.0.0"
|
package/types/input.d.ts
CHANGED
|
@@ -26,6 +26,10 @@ export interface ServiceComputeBackend {
|
|
|
26
26
|
* An IPv4, hostname, or IPv6 address for the Backend
|
|
27
27
|
*/
|
|
28
28
|
address: pulumi.Input<string>;
|
|
29
|
+
/**
|
|
30
|
+
* Denotes if this Backend should be included in the pool of backends that requests are load balanced against. Default `false`
|
|
31
|
+
*/
|
|
32
|
+
autoLoadbalance?: pulumi.Input<boolean>;
|
|
29
33
|
/**
|
|
30
34
|
* How long to wait between bytes in milliseconds. Default `10000`
|
|
31
35
|
*/
|
|
@@ -46,10 +50,6 @@ export interface ServiceComputeBackend {
|
|
|
46
50
|
* Name of a defined `healthcheck` to assign to this backend
|
|
47
51
|
*/
|
|
48
52
|
healthcheck?: pulumi.Input<string>;
|
|
49
|
-
/**
|
|
50
|
-
* How long in seconds to keep a persistent connection to the backend between requests.
|
|
51
|
-
*/
|
|
52
|
-
keepaliveTime?: pulumi.Input<number>;
|
|
53
53
|
/**
|
|
54
54
|
* Maximum number of connections for this Backend. Default `200`
|
|
55
55
|
*/
|
|
@@ -1100,10 +1100,6 @@ export interface ServiceVclBackend {
|
|
|
1100
1100
|
* Name of a defined `healthcheck` to assign to this backend
|
|
1101
1101
|
*/
|
|
1102
1102
|
healthcheck?: pulumi.Input<string>;
|
|
1103
|
-
/**
|
|
1104
|
-
* How long in seconds to keep a persistent connection to the backend between requests.
|
|
1105
|
-
*/
|
|
1106
|
-
keepaliveTime?: pulumi.Input<number>;
|
|
1107
1103
|
/**
|
|
1108
1104
|
* Maximum number of connections for this Backend. Default `200`
|
|
1109
1105
|
*/
|
package/types/output.d.ts
CHANGED
|
@@ -63,6 +63,10 @@ export interface ServiceComputeBackend {
|
|
|
63
63
|
* An IPv4, hostname, or IPv6 address for the Backend
|
|
64
64
|
*/
|
|
65
65
|
address: string;
|
|
66
|
+
/**
|
|
67
|
+
* Denotes if this Backend should be included in the pool of backends that requests are load balanced against. Default `false`
|
|
68
|
+
*/
|
|
69
|
+
autoLoadbalance?: boolean;
|
|
66
70
|
/**
|
|
67
71
|
* How long to wait between bytes in milliseconds. Default `10000`
|
|
68
72
|
*/
|
|
@@ -83,10 +87,6 @@ export interface ServiceComputeBackend {
|
|
|
83
87
|
* Name of a defined `healthcheck` to assign to this backend
|
|
84
88
|
*/
|
|
85
89
|
healthcheck?: string;
|
|
86
|
-
/**
|
|
87
|
-
* How long in seconds to keep a persistent connection to the backend between requests.
|
|
88
|
-
*/
|
|
89
|
-
keepaliveTime?: number;
|
|
90
90
|
/**
|
|
91
91
|
* Maximum number of connections for this Backend. Default `200`
|
|
92
92
|
*/
|
|
@@ -1137,10 +1137,6 @@ export interface ServiceVclBackend {
|
|
|
1137
1137
|
* Name of a defined `healthcheck` to assign to this backend
|
|
1138
1138
|
*/
|
|
1139
1139
|
healthcheck?: string;
|
|
1140
|
-
/**
|
|
1141
|
-
* How long in seconds to keep a persistent connection to the backend between requests.
|
|
1142
|
-
*/
|
|
1143
|
-
keepaliveTime?: number;
|
|
1144
1140
|
/**
|
|
1145
1141
|
* Maximum number of connections for this Backend. Default `200`
|
|
1146
1142
|
*/
|