pulumi-nomad 2.3.2__py3-none-any.whl → 2.3.3__py3-none-any.whl
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.
- pulumi_nomad/_inputs.py +680 -10
- pulumi_nomad/_utilities.py +1 -1
- pulumi_nomad/acl_auth_method.py +5 -0
- pulumi_nomad/acl_binding_rule.py +5 -0
- pulumi_nomad/acl_policy.py +5 -0
- pulumi_nomad/acl_role.py +5 -0
- pulumi_nomad/acl_token.py +5 -0
- pulumi_nomad/config/__init__.pyi +5 -0
- pulumi_nomad/config/outputs.py +5 -0
- pulumi_nomad/config/vars.py +5 -0
- pulumi_nomad/csi_volume.py +5 -0
- pulumi_nomad/csi_volume_registration.py +5 -0
- pulumi_nomad/external_volume.py +5 -0
- pulumi_nomad/get_acl_policies.py +13 -4
- pulumi_nomad/get_acl_policy.py +14 -4
- pulumi_nomad/get_acl_role.py +14 -4
- pulumi_nomad/get_acl_roles.py +13 -4
- pulumi_nomad/get_acl_token.py +21 -4
- pulumi_nomad/get_acl_tokens.py +13 -4
- pulumi_nomad/get_allocations.py +17 -4
- pulumi_nomad/get_datacenters.py +15 -4
- pulumi_nomad/get_deployments.py +12 -5
- pulumi_nomad/get_job.py +33 -4
- pulumi_nomad/get_job_parser.py +15 -4
- pulumi_nomad/get_jwks.py +12 -4
- pulumi_nomad/get_namespace.py +17 -4
- pulumi_nomad/get_namespaces.py +11 -4
- pulumi_nomad/get_node_pool.py +15 -4
- pulumi_nomad/get_node_pools.py +15 -4
- pulumi_nomad/get_plugin.py +24 -4
- pulumi_nomad/get_plugins.py +14 -5
- pulumi_nomad/get_regions.py +11 -4
- pulumi_nomad/get_scaling_policies.py +15 -4
- pulumi_nomad/get_scaling_policy.py +18 -5
- pulumi_nomad/get_scheduler_policy.py +13 -4
- pulumi_nomad/get_variable.py +16 -5
- pulumi_nomad/get_volumes.py +20 -5
- pulumi_nomad/job.py +5 -0
- pulumi_nomad/namespace.py +5 -0
- pulumi_nomad/node_pool.py +5 -0
- pulumi_nomad/outputs.py +19 -14
- pulumi_nomad/provider.py +5 -0
- pulumi_nomad/pulumi-plugin.json +1 -1
- pulumi_nomad/quote_specification.py +5 -0
- pulumi_nomad/scheduler_config.py +5 -0
- pulumi_nomad/sentinel_policy.py +5 -0
- pulumi_nomad/variable.py +19 -14
- pulumi_nomad/volume.py +5 -0
- {pulumi_nomad-2.3.2.dist-info → pulumi_nomad-2.3.3.dist-info}/METADATA +3 -2
- pulumi_nomad-2.3.3.dist-info/RECORD +55 -0
- {pulumi_nomad-2.3.2.dist-info → pulumi_nomad-2.3.3.dist-info}/WHEEL +1 -1
- pulumi_nomad-2.3.2.dist-info/RECORD +0 -55
- {pulumi_nomad-2.3.2.dist-info → pulumi_nomad-2.3.3.dist-info}/top_level.txt +0 -0
pulumi_nomad/outputs.py
CHANGED
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from . import _utilities
|
11
16
|
from . import outputs
|
12
17
|
|
@@ -1198,13 +1203,13 @@ class JobHcl2(dict):
|
|
1198
1203
|
def __init__(__self__, *,
|
1199
1204
|
allow_fs: Optional[bool] = None,
|
1200
1205
|
enabled: Optional[bool] = None,
|
1201
|
-
vars: Optional[Mapping[str,
|
1206
|
+
vars: Optional[Mapping[str, str]] = None):
|
1202
1207
|
"""
|
1203
1208
|
:param bool allow_fs: `(boolean: false)` - Set this to `true` to be able to use
|
1204
1209
|
HCL2 filesystem functions
|
1205
1210
|
:param bool enabled: `(boolean: false)` - **Deprecated** All HCL jobs are parsed as
|
1206
1211
|
HCL2 by default.
|
1207
|
-
:param Mapping[str,
|
1212
|
+
:param Mapping[str, str] vars: Additional variables to use when templating the job with HCL2
|
1208
1213
|
"""
|
1209
1214
|
if allow_fs is not None:
|
1210
1215
|
pulumi.set(__self__, "allow_fs", allow_fs)
|
@@ -1234,7 +1239,7 @@ class JobHcl2(dict):
|
|
1234
1239
|
|
1235
1240
|
@property
|
1236
1241
|
@pulumi.getter
|
1237
|
-
def vars(self) -> Optional[Mapping[str,
|
1242
|
+
def vars(self) -> Optional[Mapping[str, str]]:
|
1238
1243
|
"""
|
1239
1244
|
Additional variables to use when templating the job with HCL2
|
1240
1245
|
"""
|
@@ -1245,7 +1250,7 @@ class JobHcl2(dict):
|
|
1245
1250
|
class JobTaskGroup(dict):
|
1246
1251
|
def __init__(__self__, *,
|
1247
1252
|
count: Optional[int] = None,
|
1248
|
-
meta: Optional[Mapping[str,
|
1253
|
+
meta: Optional[Mapping[str, str]] = None,
|
1249
1254
|
name: Optional[str] = None,
|
1250
1255
|
tasks: Optional[Sequence['outputs.JobTaskGroupTask']] = None,
|
1251
1256
|
volumes: Optional[Sequence['outputs.JobTaskGroupVolume']] = None):
|
@@ -1267,7 +1272,7 @@ class JobTaskGroup(dict):
|
|
1267
1272
|
|
1268
1273
|
@property
|
1269
1274
|
@pulumi.getter
|
1270
|
-
def meta(self) -> Optional[Mapping[str,
|
1275
|
+
def meta(self) -> Optional[Mapping[str, str]]:
|
1271
1276
|
return pulumi.get(self, "meta")
|
1272
1277
|
|
1273
1278
|
@property
|
@@ -1307,7 +1312,7 @@ class JobTaskGroupTask(dict):
|
|
1307
1312
|
|
1308
1313
|
def __init__(__self__, *,
|
1309
1314
|
driver: Optional[str] = None,
|
1310
|
-
meta: Optional[Mapping[str,
|
1315
|
+
meta: Optional[Mapping[str, str]] = None,
|
1311
1316
|
name: Optional[str] = None,
|
1312
1317
|
volume_mounts: Optional[Sequence['outputs.JobTaskGroupTaskVolumeMount']] = None):
|
1313
1318
|
if driver is not None:
|
@@ -1326,7 +1331,7 @@ class JobTaskGroupTask(dict):
|
|
1326
1331
|
|
1327
1332
|
@property
|
1328
1333
|
@pulumi.getter
|
1329
|
-
def meta(self) -> Optional[Mapping[str,
|
1334
|
+
def meta(self) -> Optional[Mapping[str, str]]:
|
1330
1335
|
return pulumi.get(self, "meta")
|
1331
1336
|
|
1332
1337
|
@property
|
@@ -2494,7 +2499,7 @@ class GetJobPeriodicConfigResult(dict):
|
|
2494
2499
|
class GetJobTaskGroupResult(dict):
|
2495
2500
|
def __init__(__self__, *,
|
2496
2501
|
count: int,
|
2497
|
-
meta: Mapping[str,
|
2502
|
+
meta: Mapping[str, str],
|
2498
2503
|
name: str,
|
2499
2504
|
tasks: Sequence['outputs.GetJobTaskGroupTaskResult'],
|
2500
2505
|
volumes: Sequence['outputs.GetJobTaskGroupVolumeResult']):
|
@@ -2514,7 +2519,7 @@ class GetJobTaskGroupResult(dict):
|
|
2514
2519
|
|
2515
2520
|
@property
|
2516
2521
|
@pulumi.getter
|
2517
|
-
def meta(self) -> Mapping[str,
|
2522
|
+
def meta(self) -> Mapping[str, str]:
|
2518
2523
|
return pulumi.get(self, "meta")
|
2519
2524
|
|
2520
2525
|
@property
|
@@ -2540,7 +2545,7 @@ class GetJobTaskGroupResult(dict):
|
|
2540
2545
|
class GetJobTaskGroupTaskResult(dict):
|
2541
2546
|
def __init__(__self__, *,
|
2542
2547
|
driver: str,
|
2543
|
-
meta: Mapping[str,
|
2548
|
+
meta: Mapping[str, str],
|
2544
2549
|
name: str,
|
2545
2550
|
volume_mounts: Sequence['outputs.GetJobTaskGroupTaskVolumeMountResult']):
|
2546
2551
|
"""
|
@@ -2558,7 +2563,7 @@ class GetJobTaskGroupTaskResult(dict):
|
|
2558
2563
|
|
2559
2564
|
@property
|
2560
2565
|
@pulumi.getter
|
2561
|
-
def meta(self) -> Mapping[str,
|
2566
|
+
def meta(self) -> Mapping[str, str]:
|
2562
2567
|
return pulumi.get(self, "meta")
|
2563
2568
|
|
2564
2569
|
@property
|
@@ -2928,12 +2933,12 @@ class GetScalingPoliciesPolicyResult(dict):
|
|
2928
2933
|
def __init__(__self__, *,
|
2929
2934
|
enabled: bool,
|
2930
2935
|
id: str,
|
2931
|
-
target: Mapping[str,
|
2936
|
+
target: Mapping[str, str],
|
2932
2937
|
type: str):
|
2933
2938
|
"""
|
2934
2939
|
:param bool enabled: `(boolean)` - Whether or not the scaling policy is enabled.
|
2935
2940
|
:param str id: `(string)` - The scaling policy ID.
|
2936
|
-
:param Mapping[str,
|
2941
|
+
:param Mapping[str, str] target: `(map[string]string)` - The scaling policy target.
|
2937
2942
|
:param str type: `(string)` - An optional string to filter scaling policies based on policy type. If not provided, policies of all types are returned.
|
2938
2943
|
"""
|
2939
2944
|
pulumi.set(__self__, "enabled", enabled)
|
@@ -2959,7 +2964,7 @@ class GetScalingPoliciesPolicyResult(dict):
|
|
2959
2964
|
|
2960
2965
|
@property
|
2961
2966
|
@pulumi.getter
|
2962
|
-
def target(self) -> Mapping[str,
|
2967
|
+
def target(self) -> Mapping[str, str]:
|
2963
2968
|
"""
|
2964
2969
|
`(map[string]string)` - The scaling policy target.
|
2965
2970
|
"""
|
pulumi_nomad/provider.py
CHANGED
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from . import _utilities
|
11
16
|
from ._inputs import *
|
12
17
|
|
pulumi_nomad/pulumi-plugin.json
CHANGED
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from . import _utilities
|
11
16
|
from . import outputs
|
12
17
|
from ._inputs import *
|
pulumi_nomad/scheduler_config.py
CHANGED
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from . import _utilities
|
11
16
|
|
12
17
|
__all__ = ['SchedulerConfigArgs', 'SchedulerConfig']
|
pulumi_nomad/sentinel_policy.py
CHANGED
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from . import _utilities
|
11
16
|
|
12
17
|
__all__ = ['SentinelPolicyArgs', 'SentinelPolicy']
|
pulumi_nomad/variable.py
CHANGED
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from . import _utilities
|
11
16
|
|
12
17
|
__all__ = ['VariableArgs', 'Variable']
|
@@ -14,12 +19,12 @@ __all__ = ['VariableArgs', 'Variable']
|
|
14
19
|
@pulumi.input_type
|
15
20
|
class VariableArgs:
|
16
21
|
def __init__(__self__, *,
|
17
|
-
items: pulumi.Input[Mapping[str,
|
22
|
+
items: pulumi.Input[Mapping[str, pulumi.Input[str]]],
|
18
23
|
path: pulumi.Input[str],
|
19
24
|
namespace: Optional[pulumi.Input[str]] = None):
|
20
25
|
"""
|
21
26
|
The set of arguments for constructing a Variable resource.
|
22
|
-
:param pulumi.Input[Mapping[str,
|
27
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] items: `(map[string]string: <required>)` - An arbitrary map of items to create in the variable.
|
23
28
|
:param pulumi.Input[str] path: `(string: <required>)` - A unique path to create the variable at.
|
24
29
|
:param pulumi.Input[str] namespace: `(string: "default")` - The namepsace to create the variable in.
|
25
30
|
"""
|
@@ -30,14 +35,14 @@ class VariableArgs:
|
|
30
35
|
|
31
36
|
@property
|
32
37
|
@pulumi.getter
|
33
|
-
def items(self) -> pulumi.Input[Mapping[str,
|
38
|
+
def items(self) -> pulumi.Input[Mapping[str, pulumi.Input[str]]]:
|
34
39
|
"""
|
35
40
|
`(map[string]string: <required>)` - An arbitrary map of items to create in the variable.
|
36
41
|
"""
|
37
42
|
return pulumi.get(self, "items")
|
38
43
|
|
39
44
|
@items.setter
|
40
|
-
def items(self, value: pulumi.Input[Mapping[str,
|
45
|
+
def items(self, value: pulumi.Input[Mapping[str, pulumi.Input[str]]]):
|
41
46
|
pulumi.set(self, "items", value)
|
42
47
|
|
43
48
|
@property
|
@@ -68,12 +73,12 @@ class VariableArgs:
|
|
68
73
|
@pulumi.input_type
|
69
74
|
class _VariableState:
|
70
75
|
def __init__(__self__, *,
|
71
|
-
items: Optional[pulumi.Input[Mapping[str,
|
76
|
+
items: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
72
77
|
namespace: Optional[pulumi.Input[str]] = None,
|
73
78
|
path: Optional[pulumi.Input[str]] = None):
|
74
79
|
"""
|
75
80
|
Input properties used for looking up and filtering Variable resources.
|
76
|
-
:param pulumi.Input[Mapping[str,
|
81
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] items: `(map[string]string: <required>)` - An arbitrary map of items to create in the variable.
|
77
82
|
:param pulumi.Input[str] namespace: `(string: "default")` - The namepsace to create the variable in.
|
78
83
|
:param pulumi.Input[str] path: `(string: <required>)` - A unique path to create the variable at.
|
79
84
|
"""
|
@@ -86,14 +91,14 @@ class _VariableState:
|
|
86
91
|
|
87
92
|
@property
|
88
93
|
@pulumi.getter
|
89
|
-
def items(self) -> Optional[pulumi.Input[Mapping[str,
|
94
|
+
def items(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
90
95
|
"""
|
91
96
|
`(map[string]string: <required>)` - An arbitrary map of items to create in the variable.
|
92
97
|
"""
|
93
98
|
return pulumi.get(self, "items")
|
94
99
|
|
95
100
|
@items.setter
|
96
|
-
def items(self, value: Optional[pulumi.Input[Mapping[str,
|
101
|
+
def items(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
97
102
|
pulumi.set(self, "items", value)
|
98
103
|
|
99
104
|
@property
|
@@ -126,7 +131,7 @@ class Variable(pulumi.CustomResource):
|
|
126
131
|
def __init__(__self__,
|
127
132
|
resource_name: str,
|
128
133
|
opts: Optional[pulumi.ResourceOptions] = None,
|
129
|
-
items: Optional[pulumi.Input[Mapping[str,
|
134
|
+
items: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
130
135
|
namespace: Optional[pulumi.Input[str]] = None,
|
131
136
|
path: Optional[pulumi.Input[str]] = None,
|
132
137
|
__props__=None):
|
@@ -165,7 +170,7 @@ class Variable(pulumi.CustomResource):
|
|
165
170
|
|
166
171
|
:param str resource_name: The name of the resource.
|
167
172
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
168
|
-
:param pulumi.Input[Mapping[str,
|
173
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] items: `(map[string]string: <required>)` - An arbitrary map of items to create in the variable.
|
169
174
|
:param pulumi.Input[str] namespace: `(string: "default")` - The namepsace to create the variable in.
|
170
175
|
:param pulumi.Input[str] path: `(string: <required>)` - A unique path to create the variable at.
|
171
176
|
"""
|
@@ -223,7 +228,7 @@ class Variable(pulumi.CustomResource):
|
|
223
228
|
def _internal_init(__self__,
|
224
229
|
resource_name: str,
|
225
230
|
opts: Optional[pulumi.ResourceOptions] = None,
|
226
|
-
items: Optional[pulumi.Input[Mapping[str,
|
231
|
+
items: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
227
232
|
namespace: Optional[pulumi.Input[str]] = None,
|
228
233
|
path: Optional[pulumi.Input[str]] = None,
|
229
234
|
__props__=None):
|
@@ -254,7 +259,7 @@ class Variable(pulumi.CustomResource):
|
|
254
259
|
def get(resource_name: str,
|
255
260
|
id: pulumi.Input[str],
|
256
261
|
opts: Optional[pulumi.ResourceOptions] = None,
|
257
|
-
items: Optional[pulumi.Input[Mapping[str,
|
262
|
+
items: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
258
263
|
namespace: Optional[pulumi.Input[str]] = None,
|
259
264
|
path: Optional[pulumi.Input[str]] = None) -> 'Variable':
|
260
265
|
"""
|
@@ -264,7 +269,7 @@ class Variable(pulumi.CustomResource):
|
|
264
269
|
:param str resource_name: The unique name of the resulting resource.
|
265
270
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
266
271
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
267
|
-
:param pulumi.Input[Mapping[str,
|
272
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] items: `(map[string]string: <required>)` - An arbitrary map of items to create in the variable.
|
268
273
|
:param pulumi.Input[str] namespace: `(string: "default")` - The namepsace to create the variable in.
|
269
274
|
:param pulumi.Input[str] path: `(string: <required>)` - A unique path to create the variable at.
|
270
275
|
"""
|
@@ -279,7 +284,7 @@ class Variable(pulumi.CustomResource):
|
|
279
284
|
|
280
285
|
@property
|
281
286
|
@pulumi.getter
|
282
|
-
def items(self) -> pulumi.Output[Mapping[str,
|
287
|
+
def items(self) -> pulumi.Output[Mapping[str, str]]:
|
283
288
|
"""
|
284
289
|
`(map[string]string: <required>)` - An arbitrary map of items to create in the variable.
|
285
290
|
"""
|
pulumi_nomad/volume.py
CHANGED
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from . import _utilities
|
11
16
|
from . import outputs
|
12
17
|
from ._inputs import *
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pulumi_nomad
|
3
|
-
Version: 2.3.
|
3
|
+
Version: 2.3.3
|
4
4
|
Summary: A Pulumi package for creating and managing nomad cloud resources.
|
5
5
|
License: Apache-2.0
|
6
6
|
Project-URL: Homepage, https://pulumi.io
|
@@ -9,8 +9,9 @@ Keywords: pulumi,nomad
|
|
9
9
|
Requires-Python: >=3.8
|
10
10
|
Description-Content-Type: text/markdown
|
11
11
|
Requires-Dist: parver >=0.2.1
|
12
|
-
Requires-Dist: pulumi <4.0.0,>=3.
|
12
|
+
Requires-Dist: pulumi <4.0.0,>=3.136.0
|
13
13
|
Requires-Dist: semver >=2.8.1
|
14
|
+
Requires-Dist: typing-extensions >=4.11 ; python_version < "3.11"
|
14
15
|
|
15
16
|
[](https://github.com/pulumi/pulumi-nomad/actions)
|
16
17
|
[](https://slack.pulumi.com)
|
@@ -0,0 +1,55 @@
|
|
1
|
+
pulumi_nomad/__init__.py,sha256=1DS6wdOPeFhuGq-lUYG1tHqsPNoxIJT2IWHBlaNeRCA,4356
|
2
|
+
pulumi_nomad/_inputs.py,sha256=EYc4-DJFt06W8Re7RpfABXD5qk3NTSKXRPD811YIIrE,102274
|
3
|
+
pulumi_nomad/_utilities.py,sha256=-gxwnD6__OYdSf8jJgJijNuu-UHUwi5pJ1H7-eIHDhg,10504
|
4
|
+
pulumi_nomad/acl_auth_method.py,sha256=Pj0N277F0iDVH005fxblatyghsQcsQ-96GqXcHPzv2I,23956
|
5
|
+
pulumi_nomad/acl_binding_rule.py,sha256=LYTpE6qHi8RMi58dPDpAbCuUCNyleUw1qgG8BcoX4J8,16570
|
6
|
+
pulumi_nomad/acl_policy.py,sha256=vRw-YjlK3j9YuNcCHG1992gNOsYuEuuu8wIw5IqKwh8,12430
|
7
|
+
pulumi_nomad/acl_role.py,sha256=KoNdfLfa9cXE1YaNKapzcOu69-SwBYpf_fDhPIr3JAg,10770
|
8
|
+
pulumi_nomad/acl_token.py,sha256=MMIfjY3nifPwKIVVrtcOfJvnVJhKw3rMc0ly68hPOII,28966
|
9
|
+
pulumi_nomad/csi_volume.py,sha256=0C5_Ld0sziRlzLMub_qbgw36avICwwDDArD1B0Q4eqw,49125
|
10
|
+
pulumi_nomad/csi_volume_registration.py,sha256=uw_SzZWB5T3rvevddrs1h_GV-ZTVHXXfxsaxIrMs3GU,51232
|
11
|
+
pulumi_nomad/external_volume.py,sha256=xiKGJuKuvvRNBQwHwz6EN_NBLfERjn7dFaF5x_hwuzc,50546
|
12
|
+
pulumi_nomad/get_acl_policies.py,sha256=V0xa3vckoG2W6hKRT1mc90SVNbMwPjWIQhPeQJ9Svu8,4157
|
13
|
+
pulumi_nomad/get_acl_policy.py,sha256=SU8_ZnrCXSulBgvY7oRnbkcarDBF20bdii2fOc26Fno,4448
|
14
|
+
pulumi_nomad/get_acl_role.py,sha256=cfUxzOjCBAj-5E4shZkgZUjSBL3Cphb_L29o-qzIgE0,4517
|
15
|
+
pulumi_nomad/get_acl_roles.py,sha256=ppY_nUD5xSqsBso7j59bf7etE8xzXtkIZjllYw2JYvk,4046
|
16
|
+
pulumi_nomad/get_acl_token.py,sha256=8s_ROGX5TrrUZnaY4SYlMsTviDyvPzQkrsT4KPCNLHI,8697
|
17
|
+
pulumi_nomad/get_acl_tokens.py,sha256=dV0BvTT8B2p1ziX1k76JoUDxlFTfibQr-HBPL4N6P6k,4024
|
18
|
+
pulumi_nomad/get_allocations.py,sha256=UN5J7gyPrRAQwPohPqBbsuiafbTBDe2uTP3IyYckRHU,6142
|
19
|
+
pulumi_nomad/get_datacenters.py,sha256=0Wlqbvqo93LZ76GEs5WhvmM6il1aIztzAg23qZAnBe4,5386
|
20
|
+
pulumi_nomad/get_deployments.py,sha256=NbsThEsUB0BbPwA9sFRSf-a7nixXROBUQatJxvBC_f4,3536
|
21
|
+
pulumi_nomad/get_job.py,sha256=Xmq8fqBMFSUKrN_sm0VUZYV1DNSn7HeRa2aANDIKPtM,15134
|
22
|
+
pulumi_nomad/get_job_parser.py,sha256=2IdT4EjfwJToQ5S6PiZ6luqlEJRoZnQkfb4odd-naFs,4689
|
23
|
+
pulumi_nomad/get_jwks.py,sha256=iHyvdntC1RpgrvOsywQ5C9u9VBsTzYMz8TdS_3eqYZA,3992
|
24
|
+
pulumi_nomad/get_namespace.py,sha256=z8s_y0uQZETlN5Tsp58pBsbRKN7ZUJSt3OzU2aMAN28,6176
|
25
|
+
pulumi_nomad/get_namespaces.py,sha256=FNrzPK6PY_bSNLIeIcdMhlGhhC2jrsxOFPmQjLlKvEU,4087
|
26
|
+
pulumi_nomad/get_node_pool.py,sha256=AnK6nivteA3-H2guLJ3EBwUDT5WrgqjzSdD_VatpJxw,5143
|
27
|
+
pulumi_nomad/get_node_pools.py,sha256=SV-XPW9Dp5BW3i4TYdWUUSk6axrsf-_RtvvEy8_zEn8,5058
|
28
|
+
pulumi_nomad/get_plugin.py,sha256=fi-MJY0O4cSAnWkStfZRmzM-2FzxPC1-lO_CondV4qU,12111
|
29
|
+
pulumi_nomad/get_plugins.py,sha256=VCtMEChcAWsY87NFfRSENaveT3c-K1IUZ2dObGNC1q4,3695
|
30
|
+
pulumi_nomad/get_regions.py,sha256=O9fgHybJ9IvEqrqWGm5zm4sgUMtisYLzFn32EAVoVz4,3797
|
31
|
+
pulumi_nomad/get_scaling_policies.py,sha256=xWAVO7u5Vf0HWYln29VsCcIT5-TW72JafoWO7H4ofuA,5351
|
32
|
+
pulumi_nomad/get_scaling_policy.py,sha256=Kc0YQ2r6SVRTOJJcpFBZfUH2GGDzpID-z0W3G5GnFxs,5907
|
33
|
+
pulumi_nomad/get_scheduler_policy.py,sha256=SOOvu7vnRwntJNl2fJsjUB6ZtDjL9LkhDcbVJnvKX4o,5278
|
34
|
+
pulumi_nomad/get_variable.py,sha256=Vt_Vx_W4y9MLH3H15BJ_4GiDv2L_RlsztKY68t_hj1w,4793
|
35
|
+
pulumi_nomad/get_volumes.py,sha256=CAxtwcBzLPXCG9Jj2jQ-qG4-G0NzgLxGGz2469w-XsA,6281
|
36
|
+
pulumi_nomad/job.py,sha256=PnXxvaxHfn9WwO75WfmDlRLq1lWzO_6Q0_9kSBUBk8A,51038
|
37
|
+
pulumi_nomad/namespace.py,sha256=7Bq_f1bG40gUz04Jnr5Cnym1FpNTAlQDD27XYQg-vp8,20779
|
38
|
+
pulumi_nomad/node_pool.py,sha256=WHW0fEZd5Sw625v24IvEWpQSl1xSJsR5zE_dPm9Sn9o,13420
|
39
|
+
pulumi_nomad/outputs.py,sha256=fZFhq4SlySkoXPmY66s1vAzoV-VVVbh_b36wYV6eYUQ,104428
|
40
|
+
pulumi_nomad/provider.py,sha256=IWzu62XrgBMool1GiOsU4_Yv0bPZCkY_1StS9z1OPM0,21768
|
41
|
+
pulumi_nomad/pulumi-plugin.json,sha256=-tsw_fY0v3CTRzRsMc-jEC5ZSD7FWNaN0gp5xXK-u5s,64
|
42
|
+
pulumi_nomad/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
43
|
+
pulumi_nomad/quote_specification.py,sha256=1sb80ZJL4tllOu0_ove0nLSsjvKgmK1sKCkc3WadMis,12277
|
44
|
+
pulumi_nomad/scheduler_config.py,sha256=DkE30G6eeiNoSFCzPWrRKbijo4n83UHjBNQZLjL8rQk,14284
|
45
|
+
pulumi_nomad/sentinel_policy.py,sha256=x9FwUnGBrXLt4fo1fZNSHDY4ukJdBGdBYMDAnwoJIJE,17232
|
46
|
+
pulumi_nomad/variable.py,sha256=e81MdYOOjhWfQ_ZddYijhxyGQ4pUgcrOnOu2SVdofIY,11885
|
47
|
+
pulumi_nomad/volume.py,sha256=QaPFYCztcrsX7WE585oH9FGWpE-uYhRBfeYLf8CjmTA,54951
|
48
|
+
pulumi_nomad/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
49
|
+
pulumi_nomad/config/__init__.pyi,sha256=ZFmbRCMsjcMqRsOkohuoubzDqF1rsUlPox6-OtD73ac,2039
|
50
|
+
pulumi_nomad/config/outputs.py,sha256=Uip-ODtWe-P7OpRSW6W_V4c8OgmVP_VjYH0KlxxyVXk,1177
|
51
|
+
pulumi_nomad/config/vars.py,sha256=svrn_iqEdBe6m9S1xEKUWULVbbx1uHCi5A02ErDpPZk,3606
|
52
|
+
pulumi_nomad-2.3.3.dist-info/METADATA,sha256=WX2ytncJs65WHGYbyjTlj95hMLMbCODjNw50vSCmYxI,4787
|
53
|
+
pulumi_nomad-2.3.3.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
54
|
+
pulumi_nomad-2.3.3.dist-info/top_level.txt,sha256=1JxoZWssmXqN-8vVDXtedeoWtI703uNWUOzlm8Byv-o,13
|
55
|
+
pulumi_nomad-2.3.3.dist-info/RECORD,,
|
@@ -1,55 +0,0 @@
|
|
1
|
-
pulumi_nomad/__init__.py,sha256=1DS6wdOPeFhuGq-lUYG1tHqsPNoxIJT2IWHBlaNeRCA,4356
|
2
|
-
pulumi_nomad/_inputs.py,sha256=Q08QkEqbTXfS10I-t0x9gctJUSm8D76LaBzyrbws7ys,76583
|
3
|
-
pulumi_nomad/_utilities.py,sha256=aNnnaO6zRha3FhNHonuabR4fJLWGXANtK5dlh1Mz95k,10506
|
4
|
-
pulumi_nomad/acl_auth_method.py,sha256=LsdXQE-Svg2YtMYyxbtoiiwXZDrMEQU6dtpz_TNJJUA,23782
|
5
|
-
pulumi_nomad/acl_binding_rule.py,sha256=7YZsOVUoabSUsThSiusJBju9S5kYcQGAclPqqRjj3PY,16396
|
6
|
-
pulumi_nomad/acl_policy.py,sha256=MUWDgTLGFvSzUVKD8f1woNvXQ_Ol_6N6OhF2VhvMF9w,12256
|
7
|
-
pulumi_nomad/acl_role.py,sha256=96b45QbP4k9IotyHCjMUWiPg-ubMmLgk5mOhUYUULTU,10596
|
8
|
-
pulumi_nomad/acl_token.py,sha256=VFEGPoIaVCsiX0BvKEK86O-C7VemwBTchkOIhOnV20w,28792
|
9
|
-
pulumi_nomad/csi_volume.py,sha256=ppo1hxgODqpVNnw9ypu2rJCi5HiwNi1cNggx_lCjacA,48951
|
10
|
-
pulumi_nomad/csi_volume_registration.py,sha256=X6YybkUSVw4WxfOFpcjCk4woRGvRNeDBcFmGl9YP3JM,51058
|
11
|
-
pulumi_nomad/external_volume.py,sha256=GBoDRjWEYqD2NCVOBHel3PogxvBOT40MVcvfiop55G4,50372
|
12
|
-
pulumi_nomad/get_acl_policies.py,sha256=w928nDzy5ax8uGknhbFGffWkxwpFp-KZ1W5__P-BGis,3550
|
13
|
-
pulumi_nomad/get_acl_policy.py,sha256=H8j5lwZ1_oMGUCXJ6Bivqq7ExVsFYVWKmLdNu6lRWQ4,3800
|
14
|
-
pulumi_nomad/get_acl_role.py,sha256=-HK8G7UxuRllQMlZzWIwYwcZMLsqI_whIO_bZzVyW64,3873
|
15
|
-
pulumi_nomad/get_acl_roles.py,sha256=f_0bE9zPIkyiwPMSzTMV433KxiwHkfm2Sb8Kf2wd8wk,3446
|
16
|
-
pulumi_nomad/get_acl_token.py,sha256=Z-sznln3wmpih3XeANG6A_8EgS6NwrwPp3_FDd677Zg,7630
|
17
|
-
pulumi_nomad/get_acl_tokens.py,sha256=7f6JcqS6QIXlnVWp3EEsMD0QsNRMlAA9YBnYRmYpuV4,3419
|
18
|
-
pulumi_nomad/get_allocations.py,sha256=QJzyhCmSr4-GQ9XeYw2TMU0GfvC8_n1-mC4oiIOghrU,5350
|
19
|
-
pulumi_nomad/get_datacenters.py,sha256=Zr-3UV3zvv67rtUuljCdWxLKmbBG8RFx_EP_UitlxJs,4647
|
20
|
-
pulumi_nomad/get_deployments.py,sha256=bM56LXbFeiVFQGn8WkVuk5ebmrwkzPN7LS2eFI61k5U,3005
|
21
|
-
pulumi_nomad/get_job.py,sha256=i-VSx6jQV2y6U-pct1XqP9DO7_Bvdpe2Nej_Un0CggE,13404
|
22
|
-
pulumi_nomad/get_job_parser.py,sha256=seb5mrC1Mr3siKwi21_Jz9IMu4zcTZl0GUo8k4NZBi4,4001
|
23
|
-
pulumi_nomad/get_jwks.py,sha256=kB9_sGxWA_wlNBngSuFxGneD2Cr7jkZ_NwJtduRjxng,3441
|
24
|
-
pulumi_nomad/get_namespace.py,sha256=9adN4SkbcVBpdZHfurTwItlCOfT_AxIYtg6ed8J6q6g,5344
|
25
|
-
pulumi_nomad/get_namespaces.py,sha256=8xnI7fTuBlgmTK984IRrJYGn9RA6-YoPdKF8WvJoGdk,3561
|
26
|
-
pulumi_nomad/get_node_pool.py,sha256=ZdTbZ52F9WC6sXOuQLDcbN1DH8j29qc1Wr-wLze7Wp4,4427
|
27
|
-
pulumi_nomad/get_node_pools.py,sha256=iCF2UKsYpe5YRGCeLaE7bV-0Z7yqB4_KXPCj-ijNUGE,4370
|
28
|
-
pulumi_nomad/get_plugin.py,sha256=PDW-DeUwyvlR-lMe1K6DGJ6Al85X_VBxPVNYNjjwhn8,10732
|
29
|
-
pulumi_nomad/get_plugins.py,sha256=1KmI_tUHm4oqAyNklXl61jk7M6xAhdfGL3T86QFV3-Q,3109
|
30
|
-
pulumi_nomad/get_regions.py,sha256=LhxANBW_mAST_LvbsvMKIKXmtucb2mtTIHDu3rIfbiM,3286
|
31
|
-
pulumi_nomad/get_scaling_policies.py,sha256=eAwRT7u4ene-8AM0W8PcXF-G3hfxV-pdFgO_sc_5f3k,4658
|
32
|
-
pulumi_nomad/get_scaling_policy.py,sha256=dMBw5Qi17KzFyj1hDjtrh6u4Qqw_khbUysERHWFRty8,5116
|
33
|
-
pulumi_nomad/get_scheduler_policy.py,sha256=NCYMl9s00oLdc8j2EkwxNUtq2s9vYU3rDfmtMwQSLPc,4546
|
34
|
-
pulumi_nomad/get_variable.py,sha256=FARInWW4OX1W5IwS3GOatclP_BqVcvKqVN7kVFv2tnE,4113
|
35
|
-
pulumi_nomad/get_volumes.py,sha256=bxPF8gchK6FhEJcySOi5cnxg0e0bn7xnTvk-2D36vxI,5420
|
36
|
-
pulumi_nomad/job.py,sha256=ENGjgmO5pW0bns4BzAYpHGCmc6rPo3kjlZ952CxuLyU,50864
|
37
|
-
pulumi_nomad/namespace.py,sha256=7UwPlJjz8j60ysjWKr0vd864izXFQgy225OskCOSl1M,20605
|
38
|
-
pulumi_nomad/node_pool.py,sha256=kcQH2d071XlpNrdcru4nbtSIZNrC4AvhQED7RXq6eMs,13246
|
39
|
-
pulumi_nomad/outputs.py,sha256=00MA9PyeNtn9haAMqG8el0u5pO2xMMQ9n9wLmniENEA,104254
|
40
|
-
pulumi_nomad/provider.py,sha256=Ngg31Pl3hcqAyr_1mClerw1qGq2mmGTEpfWj8sHTjGs,21594
|
41
|
-
pulumi_nomad/pulumi-plugin.json,sha256=gWzc4PKYBTYa7kwelx7wQyoIDfq3543Q47bylBOjVQA,64
|
42
|
-
pulumi_nomad/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
43
|
-
pulumi_nomad/quote_specification.py,sha256=T6F5RCzcZjqKkbTOp9p0ssbAPjpQ13hU0-g4Wx0h6tI,12103
|
44
|
-
pulumi_nomad/scheduler_config.py,sha256=i8ek-d_x7b6PVnL4e0l-06fdVbKyzEzB51kMAIBDbVw,14110
|
45
|
-
pulumi_nomad/sentinel_policy.py,sha256=pCJOkT_nQH7cp_QvRllj3Ba9sjXexRnStI7uguLEJp8,17058
|
46
|
-
pulumi_nomad/variable.py,sha256=f5Rsw6WTgdvoBX941dEdbn0TO9Rh8dHjggPK_pV9ho8,11529
|
47
|
-
pulumi_nomad/volume.py,sha256=Nw-R9FhfWGTqq3sU2g1h4WH4tdqOmCdcPV1exozobxA,54777
|
48
|
-
pulumi_nomad/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
49
|
-
pulumi_nomad/config/__init__.pyi,sha256=xqQrj9Co22MZN1IMoQwefoce6b6zI5nQfuA4L_uqw3Q,1865
|
50
|
-
pulumi_nomad/config/outputs.py,sha256=EJXQtJx8CPqK4-XlVBLC4rbjzI1AVUBUrOjFgyxwtuk,1003
|
51
|
-
pulumi_nomad/config/vars.py,sha256=pNNlDdaVJeMKr6TPOOJ4wW-_KPneYFizgpPjUIxa9rU,3432
|
52
|
-
pulumi_nomad-2.3.2.dist-info/METADATA,sha256=rNv5mzTE1j1W789wybw9tymMUTs3kEBZrix5rkrbzSE,4719
|
53
|
-
pulumi_nomad-2.3.2.dist-info/WHEEL,sha256=HiCZjzuy6Dw0hdX5R3LCFPDmFS4BWl8H-8W39XfmgX4,91
|
54
|
-
pulumi_nomad-2.3.2.dist-info/top_level.txt,sha256=1JxoZWssmXqN-8vVDXtedeoWtI703uNWUOzlm8Byv-o,13
|
55
|
-
pulumi_nomad-2.3.2.dist-info/RECORD,,
|
File without changes
|