@pulumi/nomad 2.4.0-alpha.1722937792 → 2.4.0-alpha.1723819902

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.
@@ -25,7 +25,7 @@ export interface GetDeploymentsResult {
25
25
  * * `StatusDescription`: `string` Detailed description of the deployment's status.
26
26
  */
27
27
  readonly deployments: {
28
- [key: string]: any;
28
+ [key: string]: string;
29
29
  }[];
30
30
  /**
31
31
  * The provider-assigned unique ID for this managed resource.
package/getPlugins.d.ts CHANGED
@@ -30,7 +30,7 @@ export interface GetPluginsResult {
30
30
  * `(list of maps)` a list of dynamic plugins registered in the cluster.
31
31
  */
32
32
  readonly plugins: {
33
- [key: string]: any;
33
+ [key: string]: string;
34
34
  }[];
35
35
  readonly type?: string;
36
36
  }
@@ -48,7 +48,7 @@ export interface GetScalingPolicyResult {
48
48
  * `(map[string]string)` - The scaling policy target.
49
49
  */
50
50
  readonly target: {
51
- [key: string]: any;
51
+ [key: string]: string;
52
52
  };
53
53
  /**
54
54
  * `(string)` - The scaling policy type.
package/getVariable.d.ts CHANGED
@@ -35,7 +35,7 @@ export interface GetVariableResult {
35
35
  * `(map[string]string)` - Map of items in the variable.
36
36
  */
37
37
  readonly items: {
38
- [key: string]: any;
38
+ [key: string]: string;
39
39
  };
40
40
  /**
41
41
  * `(string)` - The namespace in which the variable exists.
package/getVolumes.d.ts CHANGED
@@ -52,7 +52,7 @@ export interface GetVolumesResult {
52
52
  * `list of maps` a list of volumes in the cluster.
53
53
  */
54
54
  readonly volumes: {
55
- [key: string]: any;
55
+ [key: string]: string;
56
56
  }[];
57
57
  }
58
58
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/nomad",
3
- "version": "2.4.0-alpha.1722937792",
3
+ "version": "2.4.0-alpha.1723819902",
4
4
  "description": "A Pulumi package for creating and managing nomad cloud resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -23,6 +23,6 @@
23
23
  "pulumi": {
24
24
  "resource": true,
25
25
  "name": "nomad",
26
- "version": "2.4.0-alpha.1722937792"
26
+ "version": "2.4.0-alpha.1723819902"
27
27
  }
28
28
  }
package/types/input.d.ts CHANGED
@@ -356,13 +356,13 @@ export interface JobHcl2 {
356
356
  * Additional variables to use when templating the job with HCL2
357
357
  */
358
358
  vars?: pulumi.Input<{
359
- [key: string]: any;
359
+ [key: string]: pulumi.Input<string>;
360
360
  }>;
361
361
  }
362
362
  export interface JobTaskGroup {
363
363
  count?: pulumi.Input<number>;
364
364
  meta?: pulumi.Input<{
365
- [key: string]: any;
365
+ [key: string]: pulumi.Input<string>;
366
366
  }>;
367
367
  name?: pulumi.Input<string>;
368
368
  tasks?: pulumi.Input<pulumi.Input<inputs.JobTaskGroupTask>[]>;
@@ -371,7 +371,7 @@ export interface JobTaskGroup {
371
371
  export interface JobTaskGroupTask {
372
372
  driver?: pulumi.Input<string>;
373
373
  meta?: pulumi.Input<{
374
- [key: string]: any;
374
+ [key: string]: pulumi.Input<string>;
375
375
  }>;
376
376
  name?: pulumi.Input<string>;
377
377
  volumeMounts?: pulumi.Input<pulumi.Input<inputs.JobTaskGroupTaskVolumeMount>[]>;
package/types/output.d.ts CHANGED
@@ -552,7 +552,7 @@ export interface GetJobPeriodicConfig {
552
552
  export interface GetJobTaskGroup {
553
553
  count: number;
554
554
  meta: {
555
- [key: string]: any;
555
+ [key: string]: string;
556
556
  };
557
557
  /**
558
558
  * `(string)` Name of the job.
@@ -564,7 +564,7 @@ export interface GetJobTaskGroup {
564
564
  export interface GetJobTaskGroupTask {
565
565
  driver: string;
566
566
  meta: {
567
- [key: string]: any;
567
+ [key: string]: string;
568
568
  };
569
569
  /**
570
570
  * `(string)` Name of the job.
@@ -695,7 +695,7 @@ export interface GetScalingPoliciesPolicy {
695
695
  * `(map[string]string)` - The scaling policy target.
696
696
  */
697
697
  target: {
698
- [key: string]: any;
698
+ [key: string]: string;
699
699
  };
700
700
  /**
701
701
  * `(string)` - An optional string to filter scaling policies based on policy type. If not provided, policies of all types are returned.
@@ -719,13 +719,13 @@ export interface JobHcl2 {
719
719
  * Additional variables to use when templating the job with HCL2
720
720
  */
721
721
  vars?: {
722
- [key: string]: any;
722
+ [key: string]: string;
723
723
  };
724
724
  }
725
725
  export interface JobTaskGroup {
726
726
  count: number;
727
727
  meta: {
728
- [key: string]: any;
728
+ [key: string]: string;
729
729
  };
730
730
  name: string;
731
731
  tasks: outputs.JobTaskGroupTask[];
@@ -734,7 +734,7 @@ export interface JobTaskGroup {
734
734
  export interface JobTaskGroupTask {
735
735
  driver: string;
736
736
  meta: {
737
- [key: string]: any;
737
+ [key: string]: string;
738
738
  };
739
739
  name: string;
740
740
  volumeMounts: outputs.JobTaskGroupTaskVolumeMount[];
package/variable.d.ts CHANGED
@@ -55,7 +55,7 @@ export declare class Variable extends pulumi.CustomResource {
55
55
  * `(map[string]string: <required>)` - An arbitrary map of items to create in the variable.
56
56
  */
57
57
  readonly items: pulumi.Output<{
58
- [key: string]: any;
58
+ [key: string]: string;
59
59
  }>;
60
60
  /**
61
61
  * `(string: "default")` - The namepsace to create the variable in.
@@ -82,7 +82,7 @@ export interface VariableState {
82
82
  * `(map[string]string: <required>)` - An arbitrary map of items to create in the variable.
83
83
  */
84
84
  items?: pulumi.Input<{
85
- [key: string]: any;
85
+ [key: string]: pulumi.Input<string>;
86
86
  }>;
87
87
  /**
88
88
  * `(string: "default")` - The namepsace to create the variable in.
@@ -101,7 +101,7 @@ export interface VariableArgs {
101
101
  * `(map[string]string: <required>)` - An arbitrary map of items to create in the variable.
102
102
  */
103
103
  items: pulumi.Input<{
104
- [key: string]: any;
104
+ [key: string]: pulumi.Input<string>;
105
105
  }>;
106
106
  /**
107
107
  * `(string: "default")` - The namepsace to create the variable in.