@pulumi/spotinst 3.37.0-alpha.1686638208 → 3.37.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/spotinst",
3
- "version": "v3.37.0-alpha.1686638208+cd75e3eb",
3
+ "version": "v3.37.0",
4
4
  "description": "A Pulumi package for creating and managing spotinst cloud resources.",
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 spotinst v3.37.0-alpha.1686638208+cd75e3eb"
14
+ "install": "node scripts/install-pulumi-plugin.js resource spotinst v3.37.0"
15
15
  },
16
16
  "dependencies": {
17
17
  "@pulumi/pulumi": "^3.0.0"
package/spark/ocean.d.ts CHANGED
@@ -42,7 +42,7 @@ import * as outputs from "../types/output";
42
42
  * useTaints: true,
43
43
  * },
44
44
  * logCollection: {
45
- * collectDriverLogs: true,
45
+ * collectAppLogs: true,
46
46
  * },
47
47
  * webhook: {
48
48
  * useHostNetwork: false,
package/spark/ocean.js CHANGED
@@ -46,7 +46,7 @@ const utilities = require("../utilities");
46
46
  * useTaints: true,
47
47
  * },
48
48
  * logCollection: {
49
- * collectDriverLogs: true,
49
+ * collectAppLogs: true,
50
50
  * },
51
51
  * webhook: {
52
52
  * useHostNetwork: false,
package/types/input.d.ts CHANGED
@@ -5004,11 +5004,10 @@ export declare namespace spark {
5004
5004
  vpcEndpointService?: pulumi.Input<string>;
5005
5005
  }
5006
5006
  interface OceanLogCollection {
5007
- collectAppLogs?: pulumi.Input<boolean>;
5008
5007
  /**
5009
- * - Enable/disable the collection of driver logs. When enabled, driver logs are stored by NetApp and can be downloaded from the Spot console web interface. The driver logs are deleted after 30 days.
5008
+ * - Enable/Disable collecting driver and executor logs. When enabled, logs are stored by NetApp and can be downloaded from the Spot console web interface. The logs are deleted after 30 days.
5010
5009
  */
5011
- collectDriverLogs?: pulumi.Input<boolean>;
5010
+ collectAppLogs?: pulumi.Input<boolean>;
5012
5011
  }
5013
5012
  interface OceanSpark {
5014
5013
  /**
package/types/output.d.ts CHANGED
@@ -5003,11 +5003,10 @@ export declare namespace spark {
5003
5003
  vpcEndpointService?: string;
5004
5004
  }
5005
5005
  interface OceanLogCollection {
5006
- collectAppLogs: boolean;
5007
5006
  /**
5008
- * - Enable/disable the collection of driver logs. When enabled, driver logs are stored by NetApp and can be downloaded from the Spot console web interface. The driver logs are deleted after 30 days.
5007
+ * - Enable/Disable collecting driver and executor logs. When enabled, logs are stored by NetApp and can be downloaded from the Spot console web interface. The logs are deleted after 30 days.
5009
5008
  */
5010
- collectDriverLogs: boolean;
5009
+ collectAppLogs: boolean;
5011
5010
  }
5012
5011
  interface OceanSpark {
5013
5012
  /**