@pulumi/nomad 2.6.0-alpha.1776321506 → 2.6.0
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/aclToken.d.ts +12 -2
- package/aclToken.js +4 -0
- package/aclToken.js.map +1 -1
- package/getAclToken.d.ts +8 -0
- package/getAclToken.js +8 -0
- package/getAclToken.js.map +1 -1
- package/getJob.d.ts +12 -5
- package/getJob.js.map +1 -1
- package/getJobParser.d.ts +14 -11
- package/getJobParser.js +2 -0
- package/getJobParser.js.map +1 -1
- package/getNamespace.d.ts +11 -0
- package/getNamespace.js.map +1 -1
- package/getNode.d.ts +138 -0
- package/getNode.js +60 -0
- package/getNode.js.map +1 -0
- package/getNodePool.d.ts +5 -0
- package/getNodePool.js.map +1 -1
- package/getNodes.d.ts +153 -0
- package/getNodes.js +110 -0
- package/getNodes.js.map +1 -0
- package/getVariable.d.ts +8 -0
- package/getVariable.js +8 -0
- package/getVariable.js.map +1 -1
- package/index.d.ts +6 -0
- package/index.js +8 -2
- package/index.js.map +1 -1
- package/job.d.ts +140 -20
- package/job.js +26 -0
- package/job.js.map +1 -1
- package/namespace.d.ts +24 -0
- package/namespace.js +4 -0
- package/namespace.js.map +1 -1
- package/nodePool.d.ts +15 -0
- package/nodePool.js +2 -0
- package/nodePool.js.map +1 -1
- package/package.json +2 -2
- package/provider.js +5 -3
- package/provider.js.map +1 -1
- package/quoteSpecification.d.ts +34 -6
- package/quoteSpecification.js +25 -0
- package/quoteSpecification.js.map +1 -1
- package/types/input.d.ts +284 -5
- package/types/output.d.ts +835 -18
- package/variable.d.ts +50 -5
- package/variable.js +23 -4
- package/variable.js.map +1 -1
package/getNodes.js
ADDED
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.getNodesOutput = exports.getNodes = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Retrieve a list of nodes from Nomad.
|
|
10
|
+
*
|
|
11
|
+
* > **Note:** All node attribute values can change if the node is restarted and
|
|
12
|
+
* its fingerprint changes. In particular, the `drain`, `status`, `statusDescription`,
|
|
13
|
+
* and `schedulingEligibility` fields are ephemeral and can change at any time
|
|
14
|
+
* without an agent restart.
|
|
15
|
+
*
|
|
16
|
+
* ## Example Usage
|
|
17
|
+
*
|
|
18
|
+
* ```typescript
|
|
19
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
20
|
+
* import * as nomad from "@pulumi/nomad";
|
|
21
|
+
*
|
|
22
|
+
* const all = nomad.getNodes({});
|
|
23
|
+
* ```
|
|
24
|
+
*
|
|
25
|
+
* ### Filtering by status
|
|
26
|
+
*
|
|
27
|
+
* ```typescript
|
|
28
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
29
|
+
* import * as nomad from "@pulumi/nomad";
|
|
30
|
+
*
|
|
31
|
+
* const ready = nomad.getNodes({
|
|
32
|
+
* filter: "Status == \"ready\"",
|
|
33
|
+
* });
|
|
34
|
+
* ```
|
|
35
|
+
*
|
|
36
|
+
* ### Including OS attributes and resources
|
|
37
|
+
*
|
|
38
|
+
* ```typescript
|
|
39
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
40
|
+
* import * as nomad from "@pulumi/nomad";
|
|
41
|
+
*
|
|
42
|
+
* const withDetails = nomad.getNodes({
|
|
43
|
+
* os: true,
|
|
44
|
+
* resources: true,
|
|
45
|
+
* });
|
|
46
|
+
* ```
|
|
47
|
+
*/
|
|
48
|
+
function getNodes(args, opts) {
|
|
49
|
+
args = args || {};
|
|
50
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
51
|
+
return pulumi.runtime.invoke("nomad:index/getNodes:getNodes", {
|
|
52
|
+
"filter": args.filter,
|
|
53
|
+
"os": args.os,
|
|
54
|
+
"prefix": args.prefix,
|
|
55
|
+
"resources": args.resources,
|
|
56
|
+
}, opts);
|
|
57
|
+
}
|
|
58
|
+
exports.getNodes = getNodes;
|
|
59
|
+
/**
|
|
60
|
+
* Retrieve a list of nodes from Nomad.
|
|
61
|
+
*
|
|
62
|
+
* > **Note:** All node attribute values can change if the node is restarted and
|
|
63
|
+
* its fingerprint changes. In particular, the `drain`, `status`, `statusDescription`,
|
|
64
|
+
* and `schedulingEligibility` fields are ephemeral and can change at any time
|
|
65
|
+
* without an agent restart.
|
|
66
|
+
*
|
|
67
|
+
* ## Example Usage
|
|
68
|
+
*
|
|
69
|
+
* ```typescript
|
|
70
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
71
|
+
* import * as nomad from "@pulumi/nomad";
|
|
72
|
+
*
|
|
73
|
+
* const all = nomad.getNodes({});
|
|
74
|
+
* ```
|
|
75
|
+
*
|
|
76
|
+
* ### Filtering by status
|
|
77
|
+
*
|
|
78
|
+
* ```typescript
|
|
79
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
80
|
+
* import * as nomad from "@pulumi/nomad";
|
|
81
|
+
*
|
|
82
|
+
* const ready = nomad.getNodes({
|
|
83
|
+
* filter: "Status == \"ready\"",
|
|
84
|
+
* });
|
|
85
|
+
* ```
|
|
86
|
+
*
|
|
87
|
+
* ### Including OS attributes and resources
|
|
88
|
+
*
|
|
89
|
+
* ```typescript
|
|
90
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
91
|
+
* import * as nomad from "@pulumi/nomad";
|
|
92
|
+
*
|
|
93
|
+
* const withDetails = nomad.getNodes({
|
|
94
|
+
* os: true,
|
|
95
|
+
* resources: true,
|
|
96
|
+
* });
|
|
97
|
+
* ```
|
|
98
|
+
*/
|
|
99
|
+
function getNodesOutput(args, opts) {
|
|
100
|
+
args = args || {};
|
|
101
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
102
|
+
return pulumi.runtime.invokeOutput("nomad:index/getNodes:getNodes", {
|
|
103
|
+
"filter": args.filter,
|
|
104
|
+
"os": args.os,
|
|
105
|
+
"prefix": args.prefix,
|
|
106
|
+
"resources": args.resources,
|
|
107
|
+
}, opts);
|
|
108
|
+
}
|
|
109
|
+
exports.getNodesOutput = getNodesOutput;
|
|
110
|
+
//# sourceMappingURL=getNodes.js.map
|
package/getNodes.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getNodes.js","sourceRoot":"","sources":["../getNodes.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAuCG;AACH,SAAgB,QAAQ,CAAC,IAAmB,EAAE,IAA2B;IACrE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,+BAA+B,EAAE;QAC1D,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,4BASC;AA8CD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAuCG;AACH,SAAgB,cAAc,CAAC,IAAyB,EAAE,IAAiC;IACvF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,+BAA+B,EAAE;QAChE,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,wCASC"}
|
package/getVariable.d.ts
CHANGED
|
@@ -2,6 +2,10 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
/**
|
|
3
3
|
* Get the information about a Nomad variable.
|
|
4
4
|
*
|
|
5
|
+
* > **Deprecated:** Use the `nomad.Variable` ephemeral resource instead when you
|
|
6
|
+
* need to read variable items without storing them in Terraform state. This data
|
|
7
|
+
* source will be removed in a future release.
|
|
8
|
+
*
|
|
5
9
|
* > **Warning:** this data source will store the sensitive values from `items`
|
|
6
10
|
* in the Terraform's state file. Take care to
|
|
7
11
|
* [protect your state file](https://www.terraform.io/docs/state/sensitive-data.html).
|
|
@@ -55,6 +59,10 @@ export interface GetVariableResult {
|
|
|
55
59
|
/**
|
|
56
60
|
* Get the information about a Nomad variable.
|
|
57
61
|
*
|
|
62
|
+
* > **Deprecated:** Use the `nomad.Variable` ephemeral resource instead when you
|
|
63
|
+
* need to read variable items without storing them in Terraform state. This data
|
|
64
|
+
* source will be removed in a future release.
|
|
65
|
+
*
|
|
58
66
|
* > **Warning:** this data source will store the sensitive values from `items`
|
|
59
67
|
* in the Terraform's state file. Take care to
|
|
60
68
|
* [protect your state file](https://www.terraform.io/docs/state/sensitive-data.html).
|
package/getVariable.js
CHANGED
|
@@ -8,6 +8,10 @@ const utilities = require("./utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* Get the information about a Nomad variable.
|
|
10
10
|
*
|
|
11
|
+
* > **Deprecated:** Use the `nomad.Variable` ephemeral resource instead when you
|
|
12
|
+
* need to read variable items without storing them in Terraform state. This data
|
|
13
|
+
* source will be removed in a future release.
|
|
14
|
+
*
|
|
11
15
|
* > **Warning:** this data source will store the sensitive values from `items`
|
|
12
16
|
* in the Terraform's state file. Take care to
|
|
13
17
|
* [protect your state file](https://www.terraform.io/docs/state/sensitive-data.html).
|
|
@@ -32,6 +36,10 @@ exports.getVariable = getVariable;
|
|
|
32
36
|
/**
|
|
33
37
|
* Get the information about a Nomad variable.
|
|
34
38
|
*
|
|
39
|
+
* > **Deprecated:** Use the `nomad.Variable` ephemeral resource instead when you
|
|
40
|
+
* need to read variable items without storing them in Terraform state. This data
|
|
41
|
+
* source will be removed in a future release.
|
|
42
|
+
*
|
|
35
43
|
* > **Warning:** this data source will store the sensitive values from `items`
|
|
36
44
|
* in the Terraform's state file. Take care to
|
|
37
45
|
* [protect your state file](https://www.terraform.io/docs/state/sensitive-data.html).
|
package/getVariable.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getVariable.js","sourceRoot":"","sources":["../getVariable.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getVariable.js","sourceRoot":"","sources":["../getVariable.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,WAAW,CAAC,IAAqB,EAAE,IAA2B;IAC1E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,qCAAqC,EAAE;QAChE,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,kCAMC;AAqCD;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,iBAAiB,CAAC,IAA2B,EAAE,IAAiC;IAC5F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,qCAAqC,EAAE;QACtE,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,8CAMC"}
|
package/index.d.ts
CHANGED
|
@@ -73,12 +73,18 @@ export declare const getNamespaceOutput: typeof import("./getNamespace").getName
|
|
|
73
73
|
export { GetNamespacesResult } from "./getNamespaces";
|
|
74
74
|
export declare const getNamespaces: typeof import("./getNamespaces").getNamespaces;
|
|
75
75
|
export declare const getNamespacesOutput: typeof import("./getNamespaces").getNamespacesOutput;
|
|
76
|
+
export { GetNodeArgs, GetNodeResult, GetNodeOutputArgs } from "./getNode";
|
|
77
|
+
export declare const getNode: typeof import("./getNode").getNode;
|
|
78
|
+
export declare const getNodeOutput: typeof import("./getNode").getNodeOutput;
|
|
76
79
|
export { GetNodePoolArgs, GetNodePoolResult, GetNodePoolOutputArgs } from "./getNodePool";
|
|
77
80
|
export declare const getNodePool: typeof import("./getNodePool").getNodePool;
|
|
78
81
|
export declare const getNodePoolOutput: typeof import("./getNodePool").getNodePoolOutput;
|
|
79
82
|
export { GetNodePoolsArgs, GetNodePoolsResult, GetNodePoolsOutputArgs } from "./getNodePools";
|
|
80
83
|
export declare const getNodePools: typeof import("./getNodePools").getNodePools;
|
|
81
84
|
export declare const getNodePoolsOutput: typeof import("./getNodePools").getNodePoolsOutput;
|
|
85
|
+
export { GetNodesArgs, GetNodesResult, GetNodesOutputArgs } from "./getNodes";
|
|
86
|
+
export declare const getNodes: typeof import("./getNodes").getNodes;
|
|
87
|
+
export declare const getNodesOutput: typeof import("./getNodes").getNodesOutput;
|
|
82
88
|
export { GetPluginArgs, GetPluginResult, GetPluginOutputArgs } from "./getPlugin";
|
|
83
89
|
export declare const getPlugin: typeof import("./getPlugin").getPlugin;
|
|
84
90
|
export declare const getPluginOutput: typeof import("./getPlugin").getPluginOutput;
|
package/index.js
CHANGED
|
@@ -16,8 +16,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
17
17
|
};
|
|
18
18
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19
|
-
exports.
|
|
20
|
-
exports.types = exports.config = exports.Volume = exports.Variable = exports.SentinelPolicy = exports.SchedulerConfig = exports.QuoteSpecification = exports.NodePool = exports.Namespace = exports.Job = exports.getVolumesOutput = exports.getVolumes = exports.getVariableOutput = exports.getVariable = exports.getSchedulerPolicyOutput = exports.getSchedulerPolicy = exports.getScalingPolicyOutput = exports.getScalingPolicy = exports.getScalingPoliciesOutput = exports.getScalingPolicies = void 0;
|
|
19
|
+
exports.getPluginOutput = exports.getPlugin = exports.getNodesOutput = exports.getNodes = exports.getNodePoolsOutput = exports.getNodePools = exports.getNodePoolOutput = exports.getNodePool = exports.getNodeOutput = exports.getNode = exports.getNamespacesOutput = exports.getNamespaces = exports.getNamespaceOutput = exports.getNamespace = exports.getJwksOutput = exports.getJwks = exports.getJobParserOutput = exports.getJobParser = exports.getJobOutput = exports.getJob = exports.getDynamicHostVolumeOutput = exports.getDynamicHostVolume = exports.getDeploymentsOutput = exports.getDeployments = exports.getDatacentersOutput = exports.getDatacenters = exports.getAllocationsOutput = exports.getAllocations = exports.getAclTokensOutput = exports.getAclTokens = exports.getAclTokenOutput = exports.getAclToken = exports.getAclRolesOutput = exports.getAclRoles = exports.getAclRoleOutput = exports.getAclRole = exports.getAclPolicyOutput = exports.getAclPolicy = exports.getAclPoliciesOutput = exports.getAclPolicies = exports.ExternalVolume = exports.DynamicHostVolumeRegistration = exports.DynamicHostVolume = exports.CsiVolumeRegistration = exports.CsiVolume = exports.AclToken = exports.AclRole = exports.AclPolicy = exports.AclBindingRule = exports.AclAuthMethod = void 0;
|
|
20
|
+
exports.types = exports.config = exports.Volume = exports.Variable = exports.SentinelPolicy = exports.SchedulerConfig = exports.QuoteSpecification = exports.NodePool = exports.Namespace = exports.Job = exports.getVolumesOutput = exports.getVolumes = exports.getVariableOutput = exports.getVariable = exports.getSchedulerPolicyOutput = exports.getSchedulerPolicy = exports.getScalingPolicyOutput = exports.getScalingPolicy = exports.getScalingPoliciesOutput = exports.getScalingPolicies = exports.getRegionsOutput = exports.getRegions = exports.getPluginsOutput = exports.getPlugins = void 0;
|
|
21
21
|
const pulumi = require("@pulumi/pulumi");
|
|
22
22
|
const utilities = require("./utilities");
|
|
23
23
|
exports.AclAuthMethod = null;
|
|
@@ -85,12 +85,18 @@ utilities.lazyLoad(exports, ["getNamespace", "getNamespaceOutput"], () => requir
|
|
|
85
85
|
exports.getNamespaces = null;
|
|
86
86
|
exports.getNamespacesOutput = null;
|
|
87
87
|
utilities.lazyLoad(exports, ["getNamespaces", "getNamespacesOutput"], () => require("./getNamespaces"));
|
|
88
|
+
exports.getNode = null;
|
|
89
|
+
exports.getNodeOutput = null;
|
|
90
|
+
utilities.lazyLoad(exports, ["getNode", "getNodeOutput"], () => require("./getNode"));
|
|
88
91
|
exports.getNodePool = null;
|
|
89
92
|
exports.getNodePoolOutput = null;
|
|
90
93
|
utilities.lazyLoad(exports, ["getNodePool", "getNodePoolOutput"], () => require("./getNodePool"));
|
|
91
94
|
exports.getNodePools = null;
|
|
92
95
|
exports.getNodePoolsOutput = null;
|
|
93
96
|
utilities.lazyLoad(exports, ["getNodePools", "getNodePoolsOutput"], () => require("./getNodePools"));
|
|
97
|
+
exports.getNodes = null;
|
|
98
|
+
exports.getNodesOutput = null;
|
|
99
|
+
utilities.lazyLoad(exports, ["getNodes", "getNodesOutput"], () => require("./getNodes"));
|
|
94
100
|
exports.getPlugin = null;
|
|
95
101
|
exports.getPluginOutput = null;
|
|
96
102
|
utilities.lazyLoad(exports, ["getPlugin", "getPluginOutput"], () => require("./getPlugin"));
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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"}
|
package/job.d.ts
CHANGED
|
@@ -36,21 +36,33 @@ export declare class Job extends pulumi.CustomResource {
|
|
|
36
36
|
*/
|
|
37
37
|
static isInstance(obj: any): obj is Job;
|
|
38
38
|
/**
|
|
39
|
-
*
|
|
39
|
+
* `(boolean)` - Whether the scheduler can make partial placements on oversubscribed nodes.
|
|
40
|
+
*/
|
|
41
|
+
readonly allAtOnce: pulumi.Output<boolean>;
|
|
42
|
+
/**
|
|
43
|
+
* `(list of strings)` - Allocation IDs associated with the job when `readAllocationIds = true`.
|
|
40
44
|
*
|
|
41
45
|
* @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.
|
|
42
46
|
*/
|
|
43
47
|
readonly allocationIds: pulumi.Output<string[]>;
|
|
44
48
|
/**
|
|
45
|
-
*
|
|
49
|
+
* `(list of maps)` - Job constraints.
|
|
50
|
+
*/
|
|
51
|
+
readonly constraints: pulumi.Output<outputs.JobConstraint[]>;
|
|
52
|
+
/**
|
|
53
|
+
* `(integer)` - The job creation index.
|
|
54
|
+
*/
|
|
55
|
+
readonly createIndex: pulumi.Output<number>;
|
|
56
|
+
/**
|
|
57
|
+
* `(set of strings)` - The target datacenters for the job.
|
|
46
58
|
*/
|
|
47
59
|
readonly datacenters: pulumi.Output<string[]>;
|
|
48
60
|
/**
|
|
49
|
-
* If detach = false
|
|
61
|
+
* `(string)` - If `detach = false`, the deployment associated with the last create or update, if one exists.
|
|
50
62
|
*/
|
|
51
63
|
readonly deploymentId: pulumi.Output<string>;
|
|
52
64
|
/**
|
|
53
|
-
* If detach = false
|
|
65
|
+
* `(string)` - If `detach = false`, the status for the deployment associated with the last create or update, if one exists.
|
|
54
66
|
*/
|
|
55
67
|
readonly deploymentStatus: pulumi.Output<string>;
|
|
56
68
|
/**
|
|
@@ -82,22 +94,40 @@ export declare class Job extends pulumi.CustomResource {
|
|
|
82
94
|
*/
|
|
83
95
|
readonly json: pulumi.Output<boolean | undefined>;
|
|
84
96
|
/**
|
|
85
|
-
* Integer that increments for each change. Used to detect any changes between plan and apply.
|
|
97
|
+
* `(string)` - Integer that increments for each change. Used to detect any changes between plan and apply.
|
|
86
98
|
*/
|
|
87
99
|
readonly modifyIndex: pulumi.Output<string>;
|
|
88
100
|
/**
|
|
89
|
-
*
|
|
101
|
+
* `(string)` - Volume name.
|
|
90
102
|
*/
|
|
91
103
|
readonly name: pulumi.Output<string>;
|
|
92
104
|
/**
|
|
93
|
-
* The namespace of the job, as derived from the jobspec.
|
|
105
|
+
* `(string)` - The namespace of the job, as derived from the jobspec.
|
|
94
106
|
*/
|
|
95
107
|
readonly namespace: pulumi.Output<string>;
|
|
108
|
+
/**
|
|
109
|
+
* `(string)` - The parent job ID, if applicable.
|
|
110
|
+
*/
|
|
111
|
+
readonly parentId: pulumi.Output<string>;
|
|
112
|
+
/**
|
|
113
|
+
* `(list of maps)` - The job's periodic configuration.
|
|
114
|
+
*/
|
|
115
|
+
readonly periodicConfigs: pulumi.Output<outputs.JobPeriodicConfig[]>;
|
|
96
116
|
/**
|
|
97
117
|
* `(boolean: false)` - Determines if the job will override any
|
|
98
118
|
* soft-mandatory Sentinel policies and register even if they fail.
|
|
99
119
|
*/
|
|
100
120
|
readonly policyOverride: pulumi.Output<boolean | undefined>;
|
|
121
|
+
/**
|
|
122
|
+
* `(boolean: false)` - If true, preserves the current task
|
|
123
|
+
* group counts already stored in Nomad during job registration instead of
|
|
124
|
+
* applying the counts from the submitted jobspec.
|
|
125
|
+
*/
|
|
126
|
+
readonly preserveCounts: pulumi.Output<boolean | undefined>;
|
|
127
|
+
/**
|
|
128
|
+
* `(integer)` - The job priority for scheduling and resource access.
|
|
129
|
+
*/
|
|
130
|
+
readonly priority: pulumi.Output<number>;
|
|
101
131
|
/**
|
|
102
132
|
* `(boolean: false)` - Set this to true if you want the job to
|
|
103
133
|
* be purged when the resource is destroyed.
|
|
@@ -108,7 +138,7 @@ export declare class Job extends pulumi.CustomResource {
|
|
|
108
138
|
*/
|
|
109
139
|
readonly readAllocationIds: pulumi.Output<boolean | undefined>;
|
|
110
140
|
/**
|
|
111
|
-
* The target region for the job
|
|
141
|
+
* `(string)` - The target region for the job.
|
|
112
142
|
*/
|
|
113
143
|
readonly region: pulumi.Output<string>;
|
|
114
144
|
/**
|
|
@@ -117,14 +147,41 @@ export declare class Job extends pulumi.CustomResource {
|
|
|
117
147
|
*/
|
|
118
148
|
readonly rerunIfDead: pulumi.Output<boolean | undefined>;
|
|
119
149
|
/**
|
|
120
|
-
*
|
|
150
|
+
* `(boolean)` - Whether the job is stable.
|
|
151
|
+
*/
|
|
152
|
+
readonly stable: pulumi.Output<boolean>;
|
|
153
|
+
/**
|
|
154
|
+
* `(string)` - The current status of the job.
|
|
121
155
|
*/
|
|
122
156
|
readonly status: pulumi.Output<string>;
|
|
157
|
+
/**
|
|
158
|
+
* `(string)` - Additional status information returned by Nomad.
|
|
159
|
+
*/
|
|
160
|
+
readonly statusDescription: pulumi.Output<string>;
|
|
161
|
+
/**
|
|
162
|
+
* `(boolean)` - Whether the job is stopped.
|
|
163
|
+
*/
|
|
164
|
+
readonly stop: pulumi.Output<boolean>;
|
|
165
|
+
/**
|
|
166
|
+
* `(integer)` - The Unix timestamp when the job was submitted.
|
|
167
|
+
*/
|
|
168
|
+
readonly submitTime: pulumi.Output<string>;
|
|
169
|
+
/**
|
|
170
|
+
* `(list of maps)` - A list of the job's task groups.
|
|
171
|
+
*/
|
|
123
172
|
readonly taskGroups: pulumi.Output<outputs.JobTaskGroup[]>;
|
|
124
173
|
/**
|
|
125
|
-
*
|
|
174
|
+
* `(string)` - Volume type.
|
|
126
175
|
*/
|
|
127
176
|
readonly type: pulumi.Output<string>;
|
|
177
|
+
/**
|
|
178
|
+
* `(list of maps)` - Effective update strategy for the task group.
|
|
179
|
+
*/
|
|
180
|
+
readonly updateStrategies: pulumi.Output<outputs.JobUpdateStrategy[]>;
|
|
181
|
+
/**
|
|
182
|
+
* `(integer)` - The current job version.
|
|
183
|
+
*/
|
|
184
|
+
readonly version: pulumi.Output<number>;
|
|
128
185
|
/**
|
|
129
186
|
* Create a Job resource with the given unique name, arguments, and options.
|
|
130
187
|
*
|
|
@@ -139,21 +196,33 @@ export declare class Job extends pulumi.CustomResource {
|
|
|
139
196
|
*/
|
|
140
197
|
export interface JobState {
|
|
141
198
|
/**
|
|
142
|
-
*
|
|
199
|
+
* `(boolean)` - Whether the scheduler can make partial placements on oversubscribed nodes.
|
|
200
|
+
*/
|
|
201
|
+
allAtOnce?: pulumi.Input<boolean>;
|
|
202
|
+
/**
|
|
203
|
+
* `(list of strings)` - Allocation IDs associated with the job when `readAllocationIds = true`.
|
|
143
204
|
*
|
|
144
205
|
* @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.
|
|
145
206
|
*/
|
|
146
207
|
allocationIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
147
208
|
/**
|
|
148
|
-
*
|
|
209
|
+
* `(list of maps)` - Job constraints.
|
|
210
|
+
*/
|
|
211
|
+
constraints?: pulumi.Input<pulumi.Input<inputs.JobConstraint>[]>;
|
|
212
|
+
/**
|
|
213
|
+
* `(integer)` - The job creation index.
|
|
214
|
+
*/
|
|
215
|
+
createIndex?: pulumi.Input<number>;
|
|
216
|
+
/**
|
|
217
|
+
* `(set of strings)` - The target datacenters for the job.
|
|
149
218
|
*/
|
|
150
219
|
datacenters?: pulumi.Input<pulumi.Input<string>[]>;
|
|
151
220
|
/**
|
|
152
|
-
* If detach = false
|
|
221
|
+
* `(string)` - If `detach = false`, the deployment associated with the last create or update, if one exists.
|
|
153
222
|
*/
|
|
154
223
|
deploymentId?: pulumi.Input<string>;
|
|
155
224
|
/**
|
|
156
|
-
* If detach = false
|
|
225
|
+
* `(string)` - If `detach = false`, the status for the deployment associated with the last create or update, if one exists.
|
|
157
226
|
*/
|
|
158
227
|
deploymentStatus?: pulumi.Input<string>;
|
|
159
228
|
/**
|
|
@@ -185,22 +254,40 @@ export interface JobState {
|
|
|
185
254
|
*/
|
|
186
255
|
json?: pulumi.Input<boolean>;
|
|
187
256
|
/**
|
|
188
|
-
* Integer that increments for each change. Used to detect any changes between plan and apply.
|
|
257
|
+
* `(string)` - Integer that increments for each change. Used to detect any changes between plan and apply.
|
|
189
258
|
*/
|
|
190
259
|
modifyIndex?: pulumi.Input<string>;
|
|
191
260
|
/**
|
|
192
|
-
*
|
|
261
|
+
* `(string)` - Volume name.
|
|
193
262
|
*/
|
|
194
263
|
name?: pulumi.Input<string>;
|
|
195
264
|
/**
|
|
196
|
-
* The namespace of the job, as derived from the jobspec.
|
|
265
|
+
* `(string)` - The namespace of the job, as derived from the jobspec.
|
|
197
266
|
*/
|
|
198
267
|
namespace?: pulumi.Input<string>;
|
|
268
|
+
/**
|
|
269
|
+
* `(string)` - The parent job ID, if applicable.
|
|
270
|
+
*/
|
|
271
|
+
parentId?: pulumi.Input<string>;
|
|
272
|
+
/**
|
|
273
|
+
* `(list of maps)` - The job's periodic configuration.
|
|
274
|
+
*/
|
|
275
|
+
periodicConfigs?: pulumi.Input<pulumi.Input<inputs.JobPeriodicConfig>[]>;
|
|
199
276
|
/**
|
|
200
277
|
* `(boolean: false)` - Determines if the job will override any
|
|
201
278
|
* soft-mandatory Sentinel policies and register even if they fail.
|
|
202
279
|
*/
|
|
203
280
|
policyOverride?: pulumi.Input<boolean>;
|
|
281
|
+
/**
|
|
282
|
+
* `(boolean: false)` - If true, preserves the current task
|
|
283
|
+
* group counts already stored in Nomad during job registration instead of
|
|
284
|
+
* applying the counts from the submitted jobspec.
|
|
285
|
+
*/
|
|
286
|
+
preserveCounts?: pulumi.Input<boolean>;
|
|
287
|
+
/**
|
|
288
|
+
* `(integer)` - The job priority for scheduling and resource access.
|
|
289
|
+
*/
|
|
290
|
+
priority?: pulumi.Input<number>;
|
|
204
291
|
/**
|
|
205
292
|
* `(boolean: false)` - Set this to true if you want the job to
|
|
206
293
|
* be purged when the resource is destroyed.
|
|
@@ -211,7 +298,7 @@ export interface JobState {
|
|
|
211
298
|
*/
|
|
212
299
|
readAllocationIds?: pulumi.Input<boolean>;
|
|
213
300
|
/**
|
|
214
|
-
* The target region for the job
|
|
301
|
+
* `(string)` - The target region for the job.
|
|
215
302
|
*/
|
|
216
303
|
region?: pulumi.Input<string>;
|
|
217
304
|
/**
|
|
@@ -220,14 +307,41 @@ export interface JobState {
|
|
|
220
307
|
*/
|
|
221
308
|
rerunIfDead?: pulumi.Input<boolean>;
|
|
222
309
|
/**
|
|
223
|
-
*
|
|
310
|
+
* `(boolean)` - Whether the job is stable.
|
|
311
|
+
*/
|
|
312
|
+
stable?: pulumi.Input<boolean>;
|
|
313
|
+
/**
|
|
314
|
+
* `(string)` - The current status of the job.
|
|
224
315
|
*/
|
|
225
316
|
status?: pulumi.Input<string>;
|
|
317
|
+
/**
|
|
318
|
+
* `(string)` - Additional status information returned by Nomad.
|
|
319
|
+
*/
|
|
320
|
+
statusDescription?: pulumi.Input<string>;
|
|
321
|
+
/**
|
|
322
|
+
* `(boolean)` - Whether the job is stopped.
|
|
323
|
+
*/
|
|
324
|
+
stop?: pulumi.Input<boolean>;
|
|
325
|
+
/**
|
|
326
|
+
* `(integer)` - The Unix timestamp when the job was submitted.
|
|
327
|
+
*/
|
|
328
|
+
submitTime?: pulumi.Input<string>;
|
|
329
|
+
/**
|
|
330
|
+
* `(list of maps)` - A list of the job's task groups.
|
|
331
|
+
*/
|
|
226
332
|
taskGroups?: pulumi.Input<pulumi.Input<inputs.JobTaskGroup>[]>;
|
|
227
333
|
/**
|
|
228
|
-
*
|
|
334
|
+
* `(string)` - Volume type.
|
|
229
335
|
*/
|
|
230
336
|
type?: pulumi.Input<string>;
|
|
337
|
+
/**
|
|
338
|
+
* `(list of maps)` - Effective update strategy for the task group.
|
|
339
|
+
*/
|
|
340
|
+
updateStrategies?: pulumi.Input<pulumi.Input<inputs.JobUpdateStrategy>[]>;
|
|
341
|
+
/**
|
|
342
|
+
* `(integer)` - The current job version.
|
|
343
|
+
*/
|
|
344
|
+
version?: pulumi.Input<number>;
|
|
231
345
|
}
|
|
232
346
|
/**
|
|
233
347
|
* The set of arguments for constructing a Job resource.
|
|
@@ -266,6 +380,12 @@ export interface JobArgs {
|
|
|
266
380
|
* soft-mandatory Sentinel policies and register even if they fail.
|
|
267
381
|
*/
|
|
268
382
|
policyOverride?: pulumi.Input<boolean>;
|
|
383
|
+
/**
|
|
384
|
+
* `(boolean: false)` - If true, preserves the current task
|
|
385
|
+
* group counts already stored in Nomad during job registration instead of
|
|
386
|
+
* applying the counts from the submitted jobspec.
|
|
387
|
+
*/
|
|
388
|
+
preserveCounts?: pulumi.Input<boolean>;
|
|
269
389
|
/**
|
|
270
390
|
* `(boolean: false)` - Set this to true if you want the job to
|
|
271
391
|
* be purged when the resource is destroyed.
|
package/job.js
CHANGED
|
@@ -51,7 +51,10 @@ class Job extends pulumi.CustomResource {
|
|
|
51
51
|
opts = opts || {};
|
|
52
52
|
if (opts.id) {
|
|
53
53
|
const state = argsOrState;
|
|
54
|
+
resourceInputs["allAtOnce"] = state?.allAtOnce;
|
|
54
55
|
resourceInputs["allocationIds"] = state?.allocationIds;
|
|
56
|
+
resourceInputs["constraints"] = state?.constraints;
|
|
57
|
+
resourceInputs["createIndex"] = state?.createIndex;
|
|
55
58
|
resourceInputs["datacenters"] = state?.datacenters;
|
|
56
59
|
resourceInputs["deploymentId"] = state?.deploymentId;
|
|
57
60
|
resourceInputs["deploymentStatus"] = state?.deploymentStatus;
|
|
@@ -64,14 +67,24 @@ class Job extends pulumi.CustomResource {
|
|
|
64
67
|
resourceInputs["modifyIndex"] = state?.modifyIndex;
|
|
65
68
|
resourceInputs["name"] = state?.name;
|
|
66
69
|
resourceInputs["namespace"] = state?.namespace;
|
|
70
|
+
resourceInputs["parentId"] = state?.parentId;
|
|
71
|
+
resourceInputs["periodicConfigs"] = state?.periodicConfigs;
|
|
67
72
|
resourceInputs["policyOverride"] = state?.policyOverride;
|
|
73
|
+
resourceInputs["preserveCounts"] = state?.preserveCounts;
|
|
74
|
+
resourceInputs["priority"] = state?.priority;
|
|
68
75
|
resourceInputs["purgeOnDestroy"] = state?.purgeOnDestroy;
|
|
69
76
|
resourceInputs["readAllocationIds"] = state?.readAllocationIds;
|
|
70
77
|
resourceInputs["region"] = state?.region;
|
|
71
78
|
resourceInputs["rerunIfDead"] = state?.rerunIfDead;
|
|
79
|
+
resourceInputs["stable"] = state?.stable;
|
|
72
80
|
resourceInputs["status"] = state?.status;
|
|
81
|
+
resourceInputs["statusDescription"] = state?.statusDescription;
|
|
82
|
+
resourceInputs["stop"] = state?.stop;
|
|
83
|
+
resourceInputs["submitTime"] = state?.submitTime;
|
|
73
84
|
resourceInputs["taskGroups"] = state?.taskGroups;
|
|
74
85
|
resourceInputs["type"] = state?.type;
|
|
86
|
+
resourceInputs["updateStrategies"] = state?.updateStrategies;
|
|
87
|
+
resourceInputs["version"] = state?.version;
|
|
75
88
|
}
|
|
76
89
|
else {
|
|
77
90
|
const args = argsOrState;
|
|
@@ -85,20 +98,33 @@ class Job extends pulumi.CustomResource {
|
|
|
85
98
|
resourceInputs["jobspec"] = args?.jobspec;
|
|
86
99
|
resourceInputs["json"] = args?.json;
|
|
87
100
|
resourceInputs["policyOverride"] = args?.policyOverride;
|
|
101
|
+
resourceInputs["preserveCounts"] = args?.preserveCounts;
|
|
88
102
|
resourceInputs["purgeOnDestroy"] = args?.purgeOnDestroy;
|
|
89
103
|
resourceInputs["readAllocationIds"] = args?.readAllocationIds;
|
|
90
104
|
resourceInputs["rerunIfDead"] = args?.rerunIfDead;
|
|
105
|
+
resourceInputs["allAtOnce"] = undefined /*out*/;
|
|
91
106
|
resourceInputs["allocationIds"] = undefined /*out*/;
|
|
107
|
+
resourceInputs["constraints"] = undefined /*out*/;
|
|
108
|
+
resourceInputs["createIndex"] = undefined /*out*/;
|
|
92
109
|
resourceInputs["datacenters"] = undefined /*out*/;
|
|
93
110
|
resourceInputs["deploymentId"] = undefined /*out*/;
|
|
94
111
|
resourceInputs["deploymentStatus"] = undefined /*out*/;
|
|
95
112
|
resourceInputs["modifyIndex"] = undefined /*out*/;
|
|
96
113
|
resourceInputs["name"] = undefined /*out*/;
|
|
97
114
|
resourceInputs["namespace"] = undefined /*out*/;
|
|
115
|
+
resourceInputs["parentId"] = undefined /*out*/;
|
|
116
|
+
resourceInputs["periodicConfigs"] = undefined /*out*/;
|
|
117
|
+
resourceInputs["priority"] = undefined /*out*/;
|
|
98
118
|
resourceInputs["region"] = undefined /*out*/;
|
|
119
|
+
resourceInputs["stable"] = undefined /*out*/;
|
|
99
120
|
resourceInputs["status"] = undefined /*out*/;
|
|
121
|
+
resourceInputs["statusDescription"] = undefined /*out*/;
|
|
122
|
+
resourceInputs["stop"] = undefined /*out*/;
|
|
123
|
+
resourceInputs["submitTime"] = undefined /*out*/;
|
|
100
124
|
resourceInputs["taskGroups"] = undefined /*out*/;
|
|
101
125
|
resourceInputs["type"] = undefined /*out*/;
|
|
126
|
+
resourceInputs["updateStrategies"] = undefined /*out*/;
|
|
127
|
+
resourceInputs["version"] = undefined /*out*/;
|
|
102
128
|
}
|
|
103
129
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
104
130
|
super(Job.__pulumiType, name, resourceInputs, opts);
|
package/job.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"job.js","sourceRoot":"","sources":["../job.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;GAiBG;AACH,MAAa,GAAI,SAAQ,MAAM,CAAC,cAAc;IAC1C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAgB,EAAE,IAAmC;QAC9G,OAAO,IAAI,GAAG,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAC1D,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,GAAG,CAAC,YAAY,CAAC;IACpD,CAAC;
|
|
1
|
+
{"version":3,"file":"job.js","sourceRoot":"","sources":["../job.ts"],"names":[],"mappings":"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"}
|