@pulumi/fastly 8.1.0 → 8.1.2

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": "v8.1.0",
3
+ "version": "v8.1.2",
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 v8.1.0"
14
+ "install": "node scripts/install-pulumi-plugin.js resource fastly v8.1.2"
15
15
  },
16
16
  "dependencies": {
17
17
  "@pulumi/pulumi": "^3.0.0"
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ var childProcess = require("child_process");
3
+
4
+ var args = process.argv.slice(2);
5
+ var res = childProcess.spawnSync("pulumi", ["plugin", "install"].concat(args), {
6
+ stdio: ["ignore", "inherit", "inherit"]
7
+ });
8
+
9
+ if (res.error && res.error.code === "ENOENT") {
10
+ console.error("\nThere was an error installing the resource provider plugin. " +
11
+ "It looks like `pulumi` is not installed on your system. " +
12
+ "Please visit https://pulumi.com/ to install the Pulumi CLI.\n" +
13
+ "You may try manually installing the plugin by running " +
14
+ "`pulumi plugin install " + args.join(" ") + "`");
15
+ } else if (res.error || res.status !== 0) {
16
+ console.error("\nThere was an error installing the resource provider plugin. " +
17
+ "You may try to manually installing the plugin by running " +
18
+ "`pulumi plugin install " + args.join(" ") + "`");
19
+ }
20
+
21
+ process.exit(0);
package/types/input.d.ts CHANGED
@@ -826,6 +826,10 @@ export interface ServiceComputeLoggingS3 {
826
826
  * If you created the S3 bucket outside of `us-east-1`, then specify the corresponding bucket endpoint. Example: `s3-us-west-2.amazonaws.com`
827
827
  */
828
828
  domain?: pulumi.Input<string>;
829
+ /**
830
+ * Maximum size of an uploaded log file, if non-zero.
831
+ */
832
+ fileMaxBytes?: pulumi.Input<number>;
829
833
  /**
830
834
  * Level of Gzip compression from `0-9`. `0` means no compression. `1` is the fastest and the least compressed version, `9` is the slowest and the most compressed version. Default `0`
831
835
  */
@@ -2435,6 +2439,10 @@ export interface ServiceVclLoggingS3 {
2435
2439
  * If you created the S3 bucket outside of `us-east-1`, then specify the corresponding bucket endpoint. Example: `s3-us-west-2.amazonaws.com`
2436
2440
  */
2437
2441
  domain?: pulumi.Input<string>;
2442
+ /**
2443
+ * Maximum size of an uploaded log file, if non-zero.
2444
+ */
2445
+ fileMaxBytes?: pulumi.Input<number>;
2438
2446
  /**
2439
2447
  * Apache-style string or VCL variables to use for log formatting.
2440
2448
  */
package/types/output.d.ts CHANGED
@@ -871,6 +871,10 @@ export interface ServiceComputeLoggingS3 {
871
871
  * If you created the S3 bucket outside of `us-east-1`, then specify the corresponding bucket endpoint. Example: `s3-us-west-2.amazonaws.com`
872
872
  */
873
873
  domain?: string;
874
+ /**
875
+ * Maximum size of an uploaded log file, if non-zero.
876
+ */
877
+ fileMaxBytes?: number;
874
878
  /**
875
879
  * Level of Gzip compression from `0-9`. `0` means no compression. `1` is the fastest and the least compressed version, `9` is the slowest and the most compressed version. Default `0`
876
880
  */
@@ -2480,6 +2484,10 @@ export interface ServiceVclLoggingS3 {
2480
2484
  * If you created the S3 bucket outside of `us-east-1`, then specify the corresponding bucket endpoint. Example: `s3-us-west-2.amazonaws.com`
2481
2485
  */
2482
2486
  domain?: string;
2487
+ /**
2488
+ * Maximum size of an uploaded log file, if non-zero.
2489
+ */
2490
+ fileMaxBytes?: number;
2483
2491
  /**
2484
2492
  * Apache-style string or VCL variables to use for log formatting.
2485
2493
  */