@pulumi/spotinst 3.102.0-alpha.1732602640 → 3.102.0-alpha.1732774957

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.
@@ -91,7 +91,7 @@ export declare class OceanImport extends pulumi.CustomResource {
91
91
  /**
92
92
  * The number of instances to launch and maintain in the cluster.
93
93
  */
94
- readonly desiredCapacity: pulumi.Output<number>;
94
+ readonly desiredCapacity: pulumi.Output<number | undefined>;
95
95
  /**
96
96
  * List of filters. The Instance types that match with all filters compose the Ocean's whitelist parameter. Cannot be configured together with whitelist/blacklist.
97
97
  */
@@ -103,11 +103,11 @@ export declare class OceanImport extends pulumi.CustomResource {
103
103
  /**
104
104
  * The upper limit of instances the cluster can scale up to.
105
105
  */
106
- readonly maxSize: pulumi.Output<number>;
106
+ readonly maxSize: pulumi.Output<number | undefined>;
107
107
  /**
108
108
  * The lower limit of instances the cluster can scale down to.
109
109
  */
110
- readonly minSize: pulumi.Output<number>;
110
+ readonly minSize: pulumi.Output<number | undefined>;
111
111
  /**
112
112
  * The root volume disk type.
113
113
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/spotinst",
3
- "version": "3.102.0-alpha.1732602640",
3
+ "version": "3.102.0-alpha.1732774957",
4
4
  "description": "A Pulumi package for creating and managing spotinst cloud resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -23,6 +23,6 @@
23
23
  "pulumi": {
24
24
  "resource": true,
25
25
  "name": "spotinst",
26
- "version": "3.102.0-alpha.1732602640"
26
+ "version": "3.102.0-alpha.1732774957"
27
27
  }
28
28
  }