@pulumi/spotinst 3.120.1 → 3.120.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/spotinst",
3
- "version": "3.120.1",
3
+ "version": "3.120.2",
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.120.1"
26
+ "version": "3.120.2"
27
27
  }
28
28
  }
@@ -186,7 +186,7 @@ import * as outputs from "./types/output";
186
186
  * secureBootEnabled: true,
187
187
  * vtpmEnabled: true,
188
188
  * encryptionAtHost: false,
189
- * confidentialOsDiskEncryption: true,
189
+ * confidentialOsDiskEncryption: "true",
190
190
  * },
191
191
  * tags: [{
192
192
  * tagKey: "Creator",
@@ -568,7 +568,7 @@ export declare class StatefulNodeAzure extends pulumi.CustomResource {
568
568
  readonly resourceGroupName: pulumi.Output<string>;
569
569
  readonly schedulingTasks: pulumi.Output<outputs.StatefulNodeAzureSchedulingTask[]>;
570
570
  readonly secrets: pulumi.Output<outputs.StatefulNodeAzureSecret[] | undefined>;
571
- readonly security: pulumi.Output<outputs.StatefulNodeAzureSecurity | undefined>;
571
+ readonly security: pulumi.Output<outputs.StatefulNodeAzureSecurity>;
572
572
  readonly shouldPersistDataDisks: pulumi.Output<boolean>;
573
573
  readonly shouldPersistNetwork: pulumi.Output<boolean>;
574
574
  readonly shouldPersistOsDisk: pulumi.Output<boolean>;
@@ -190,7 +190,7 @@ const utilities = require("./utilities");
190
190
  * secureBootEnabled: true,
191
191
  * vtpmEnabled: true,
192
192
  * encryptionAtHost: false,
193
- * confidentialOsDiskEncryption: true,
193
+ * confidentialOsDiskEncryption: "true",
194
194
  * },
195
195
  * tags: [{
196
196
  * tagKey: "Creator",
package/types/input.d.ts CHANGED
@@ -500,7 +500,7 @@ export interface StatefulNodeAzureSecretVaultCertificate {
500
500
  certificateUrl?: pulumi.Input<string>;
501
501
  }
502
502
  export interface StatefulNodeAzureSecurity {
503
- confidentialOsDiskEncryption?: pulumi.Input<boolean>;
503
+ confidentialOsDiskEncryption?: pulumi.Input<string>;
504
504
  encryptionAtHost?: pulumi.Input<boolean>;
505
505
  secureBootEnabled?: pulumi.Input<boolean>;
506
506
  securityType?: pulumi.Input<string>;
package/types/output.d.ts CHANGED
@@ -499,11 +499,11 @@ export interface StatefulNodeAzureSecretVaultCertificate {
499
499
  certificateUrl?: string;
500
500
  }
501
501
  export interface StatefulNodeAzureSecurity {
502
- confidentialOsDiskEncryption?: boolean;
503
- encryptionAtHost?: boolean;
504
- secureBootEnabled?: boolean;
502
+ confidentialOsDiskEncryption?: string;
503
+ encryptionAtHost: boolean;
504
+ secureBootEnabled: boolean;
505
505
  securityType?: string;
506
- vtpmEnabled?: boolean;
506
+ vtpmEnabled: boolean;
507
507
  }
508
508
  export interface StatefulNodeAzureSignal {
509
509
  timeout: number;