@pulumi/nomad 2.4.0-alpha.1723009704 → 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.
- package/getDeployments.d.ts +1 -1
- package/getPlugins.d.ts +1 -1
- package/getScalingPolicy.d.ts +1 -1
- package/getVariable.d.ts +1 -1
- package/getVolumes.d.ts +1 -1
- package/package.json +2 -2
- package/types/input.d.ts +3 -3
- package/types/output.d.ts +6 -6
- package/variable.d.ts +3 -3
package/getDeployments.d.ts
CHANGED
|
@@ -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]:
|
|
28
|
+
[key: string]: string;
|
|
29
29
|
}[];
|
|
30
30
|
/**
|
|
31
31
|
* The provider-assigned unique ID for this managed resource.
|
package/getPlugins.d.ts
CHANGED
package/getScalingPolicy.d.ts
CHANGED
package/getVariable.d.ts
CHANGED
package/getVolumes.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/nomad",
|
|
3
|
-
"version": "2.4.0-alpha.
|
|
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.
|
|
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]:
|
|
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]:
|
|
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]:
|
|
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]:
|
|
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]:
|
|
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]:
|
|
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]:
|
|
722
|
+
[key: string]: string;
|
|
723
723
|
};
|
|
724
724
|
}
|
|
725
725
|
export interface JobTaskGroup {
|
|
726
726
|
count: number;
|
|
727
727
|
meta: {
|
|
728
|
-
[key: string]:
|
|
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]:
|
|
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]:
|
|
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]:
|
|
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]:
|
|
104
|
+
[key: string]: pulumi.Input<string>;
|
|
105
105
|
}>;
|
|
106
106
|
/**
|
|
107
107
|
* `(string: "default")` - The namepsace to create the variable in.
|