@pulumi/fastly 7.0.1 → 7.1.0-alpha.1679082899

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/fastly",
3
- "version": "v7.0.1",
3
+ "version": "v7.1.0-alpha.1679082899+dda5a80b",
4
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",
@@ -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 v7.0.1"
14
+ "install": "node scripts/install-pulumi-plugin.js resource fastly v7.1.0-alpha.1679082899+dda5a80b"
15
15
  },
16
16
  "dependencies": {
17
17
  "@pulumi/pulumi": "^3.0.0"
package/package.json.dev CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/fastly",
3
- "version": "v7.0.1",
3
+ "version": "v7.1.0-alpha.1679082899+dda5a80b",
4
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",
@@ -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 v7.0.1"
14
+ "install": "node scripts/install-pulumi-plugin.js resource fastly v7.1.0-alpha.1679082899+dda5a80b"
15
15
  },
16
16
  "dependencies": {
17
17
  "@pulumi/pulumi": "^3.0.0"
package/types/input.d.ts CHANGED
@@ -26,10 +26,6 @@ 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>;
33
29
  /**
34
30
  * How long to wait between bytes in milliseconds. Default `10000`
35
31
  */
@@ -50,6 +46,10 @@ export interface ServiceComputeBackend {
50
46
  * Name of a defined `healthcheck` to assign to this backend
51
47
  */
52
48
  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
  */
@@ -1038,9 +1038,13 @@ export interface ServiceComputeLoggingSyslog {
1038
1038
  }
1039
1039
  export interface ServiceComputePackage {
1040
1040
  /**
1041
- * The path to the Wasm deployment package within your local filesystem
1041
+ * The contents of the Wasm deployment package as a base64 encoded string (e.g. could be provided using an input variable or via external data source output variable). Conflicts with `filename`. Exactly one of these two arguments must be specified
1042
1042
  */
1043
- filename: pulumi.Input<string>;
1043
+ content?: pulumi.Input<string>;
1044
+ /**
1045
+ * The path to the Wasm deployment package within your local filesystem. Conflicts with `content`. Exactly one of these two arguments must be specified
1046
+ */
1047
+ filename?: pulumi.Input<string>;
1044
1048
  sourceCodeHash?: pulumi.Input<string>;
1045
1049
  }
1046
1050
  export interface ServiceComputeProductEnablement {
@@ -1100,6 +1104,10 @@ export interface ServiceVclBackend {
1100
1104
  * Name of a defined `healthcheck` to assign to this backend
1101
1105
  */
1102
1106
  healthcheck?: pulumi.Input<string>;
1107
+ /**
1108
+ * How long in seconds to keep a persistent connection to the backend between requests.
1109
+ */
1110
+ keepaliveTime?: pulumi.Input<number>;
1103
1111
  /**
1104
1112
  * Maximum number of connections for this Backend. Default `200`
1105
1113
  */
package/types/output.d.ts CHANGED
@@ -63,10 +63,6 @@ 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;
70
66
  /**
71
67
  * How long to wait between bytes in milliseconds. Default `10000`
72
68
  */
@@ -87,6 +83,10 @@ export interface ServiceComputeBackend {
87
83
  * Name of a defined `healthcheck` to assign to this backend
88
84
  */
89
85
  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
  */
@@ -1075,9 +1075,13 @@ export interface ServiceComputeLoggingSyslog {
1075
1075
  }
1076
1076
  export interface ServiceComputePackage {
1077
1077
  /**
1078
- * The path to the Wasm deployment package within your local filesystem
1078
+ * The contents of the Wasm deployment package as a base64 encoded string (e.g. could be provided using an input variable or via external data source output variable). Conflicts with `filename`. Exactly one of these two arguments must be specified
1079
1079
  */
1080
- filename: string;
1080
+ content?: string;
1081
+ /**
1082
+ * The path to the Wasm deployment package within your local filesystem. Conflicts with `content`. Exactly one of these two arguments must be specified
1083
+ */
1084
+ filename?: string;
1081
1085
  sourceCodeHash: string;
1082
1086
  }
1083
1087
  export interface ServiceComputeProductEnablement {
@@ -1137,6 +1141,10 @@ export interface ServiceVclBackend {
1137
1141
  * Name of a defined `healthcheck` to assign to this backend
1138
1142
  */
1139
1143
  healthcheck?: string;
1144
+ /**
1145
+ * How long in seconds to keep a persistent connection to the backend between requests.
1146
+ */
1147
+ keepaliveTime?: number;
1140
1148
  /**
1141
1149
  * Maximum number of connections for this Backend. Default `200`
1142
1150
  */