@pulumi/linode 4.25.0 → 4.26.0-alpha.1724219346

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/instance.d.ts CHANGED
@@ -316,7 +316,7 @@ export declare class Instance extends pulumi.CustomResource {
316
316
  * accepted if 'stackscript_id' is given. The required values depend on the StackScript being deployed.
317
317
  */
318
318
  readonly stackscriptData: pulumi.Output<{
319
- [key: string]: any;
319
+ [key: string]: string;
320
320
  } | undefined>;
321
321
  /**
322
322
  * The StackScript to deploy to the newly created Linode. If provided, 'image' must also be provided, and must be an Image
@@ -514,7 +514,7 @@ export interface InstanceState {
514
514
  * accepted if 'stackscript_id' is given. The required values depend on the StackScript being deployed.
515
515
  */
516
516
  stackscriptData?: pulumi.Input<{
517
- [key: string]: any;
517
+ [key: string]: pulumi.Input<string>;
518
518
  }>;
519
519
  /**
520
520
  * The StackScript to deploy to the newly created Linode. If provided, 'image' must also be provided, and must be an Image
@@ -672,7 +672,7 @@ export interface InstanceArgs {
672
672
  * accepted if 'stackscript_id' is given. The required values depend on the StackScript being deployed.
673
673
  */
674
674
  stackscriptData?: pulumi.Input<{
675
- [key: string]: any;
675
+ [key: string]: pulumi.Input<string>;
676
676
  }>;
677
677
  /**
678
678
  * The StackScript to deploy to the newly created Linode. If provided, 'image' must also be provided, and must be an Image
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/linode",
3
- "version": "4.25.0",
3
+ "version": "4.26.0-alpha.1724219346",
4
4
  "description": "A Pulumi package for creating and managing linode cloud resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -23,6 +23,6 @@
23
23
  "pulumi": {
24
24
  "resource": true,
25
25
  "name": "linode",
26
- "version": "4.25.0"
26
+ "version": "4.26.0-alpha.1724219346"
27
27
  }
28
28
  }
package/types/input.d.ts CHANGED
@@ -4670,7 +4670,7 @@ export interface InstanceDisk {
4670
4670
  * An object containing responses to any User Defined Fields present in the StackScript being deployed to this Linode. Only accepted if 'stackscript_id' is given. The required values depend on the StackScript being deployed.
4671
4671
  */
4672
4672
  stackscriptData?: pulumi.Input<{
4673
- [key: string]: any;
4673
+ [key: string]: pulumi.Input<string>;
4674
4674
  }>;
4675
4675
  /**
4676
4676
  * The StackScript to deploy to the newly created Linode. If provided, 'image' must also be provided, and must be an Image that is compatible with this StackScript.
package/types/output.d.ts CHANGED
@@ -3901,7 +3901,7 @@ export interface InstanceDisk {
3901
3901
  * An object containing responses to any User Defined Fields present in the StackScript being deployed to this Linode. Only accepted if 'stackscript_id' is given. The required values depend on the StackScript being deployed.
3902
3902
  */
3903
3903
  stackscriptData: {
3904
- [key: string]: any;
3904
+ [key: string]: string;
3905
3905
  };
3906
3906
  /**
3907
3907
  * The StackScript to deploy to the newly created Linode. If provided, 'image' must also be provided, and must be an Image that is compatible with this StackScript.