@pulumi/nomad 2.3.0-alpha.1710918439 → 2.3.0-alpha.1711028156
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/job.d.ts +5 -5
- package/package.json +1 -1
package/job.d.ts
CHANGED
|
@@ -20,7 +20,7 @@ export declare class Job extends pulumi.CustomResource {
|
|
|
20
20
|
/**
|
|
21
21
|
* The IDs for allocations associated with this job.
|
|
22
22
|
*
|
|
23
|
-
* @deprecated Retrieving allocation IDs from the job resource is deprecated and will be removed in a future release. Use the
|
|
23
|
+
* @deprecated Retrieving allocation IDs from the job resource is deprecated and will be removed in a future release. Use the nomad.getAllocations data source instead.
|
|
24
24
|
*/
|
|
25
25
|
readonly allocationIds: pulumi.Output<string[]>;
|
|
26
26
|
/**
|
|
@@ -96,7 +96,7 @@ export declare class Job extends pulumi.CustomResource {
|
|
|
96
96
|
*/
|
|
97
97
|
readonly purgeOnDestroy: pulumi.Output<boolean | undefined>;
|
|
98
98
|
/**
|
|
99
|
-
* @deprecated Retrieving allocation IDs from the job resource is deprecated and will be removed in a future release. Use the
|
|
99
|
+
* @deprecated Retrieving allocation IDs from the job resource is deprecated and will be removed in a future release. Use the nomad.getAllocations data source instead.
|
|
100
100
|
*/
|
|
101
101
|
readonly readAllocationIds: pulumi.Output<boolean | undefined>;
|
|
102
102
|
/**
|
|
@@ -138,7 +138,7 @@ export interface JobState {
|
|
|
138
138
|
/**
|
|
139
139
|
* The IDs for allocations associated with this job.
|
|
140
140
|
*
|
|
141
|
-
* @deprecated Retrieving allocation IDs from the job resource is deprecated and will be removed in a future release. Use the
|
|
141
|
+
* @deprecated Retrieving allocation IDs from the job resource is deprecated and will be removed in a future release. Use the nomad.getAllocations data source instead.
|
|
142
142
|
*/
|
|
143
143
|
allocationIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
144
144
|
/**
|
|
@@ -214,7 +214,7 @@ export interface JobState {
|
|
|
214
214
|
*/
|
|
215
215
|
purgeOnDestroy?: pulumi.Input<boolean>;
|
|
216
216
|
/**
|
|
217
|
-
* @deprecated Retrieving allocation IDs from the job resource is deprecated and will be removed in a future release. Use the
|
|
217
|
+
* @deprecated Retrieving allocation IDs from the job resource is deprecated and will be removed in a future release. Use the nomad.getAllocations data source instead.
|
|
218
218
|
*/
|
|
219
219
|
readAllocationIds?: pulumi.Input<boolean>;
|
|
220
220
|
/**
|
|
@@ -294,7 +294,7 @@ export interface JobArgs {
|
|
|
294
294
|
*/
|
|
295
295
|
purgeOnDestroy?: pulumi.Input<boolean>;
|
|
296
296
|
/**
|
|
297
|
-
* @deprecated Retrieving allocation IDs from the job resource is deprecated and will be removed in a future release. Use the
|
|
297
|
+
* @deprecated Retrieving allocation IDs from the job resource is deprecated and will be removed in a future release. Use the nomad.getAllocations data source instead.
|
|
298
298
|
*/
|
|
299
299
|
readAllocationIds?: pulumi.Input<boolean>;
|
|
300
300
|
/**
|
package/package.json
CHANGED