pulumi-nomad 2.4.0a1718949565__py3-none-any.whl → 2.4.0a1719261013__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 +1 -3
- pulumi_nomad/_utilities.py +35 -0
- pulumi_nomad/external_volume.py +2 -2
- pulumi_nomad/job.py +5 -15
- pulumi_nomad/outputs.py +1 -3
- pulumi_nomad/pulumi-plugin.json +1 -1
- pulumi_nomad/volume.py +8 -20
- {pulumi_nomad-2.4.0a1718949565.dist-info → pulumi_nomad-2.4.0a1719261013.dist-info}/METADATA +1 -1
- {pulumi_nomad-2.4.0a1718949565.dist-info → pulumi_nomad-2.4.0a1719261013.dist-info}/RECORD +11 -11
- {pulumi_nomad-2.4.0a1718949565.dist-info → pulumi_nomad-2.4.0a1719261013.dist-info}/WHEEL +0 -0
- {pulumi_nomad-2.4.0a1718949565.dist-info → pulumi_nomad-2.4.0a1719261013.dist-info}/top_level.txt +0 -0
pulumi_nomad/_inputs.py
CHANGED
@@ -1194,14 +1194,12 @@ class JobHcl2Args:
|
|
1194
1194
|
|
1195
1195
|
@property
|
1196
1196
|
@pulumi.getter
|
1197
|
+
@_utilities.deprecated("""Starting with version 2.0.0 of the Nomad provider, jobs are parsed using HCL2 by default, so this field is no longer used and may be safely removed from your configuration files. Set 'hcl1 = true' if you must use HCL1 job parsing.""")
|
1197
1198
|
def enabled(self) -> Optional[pulumi.Input[bool]]:
|
1198
1199
|
"""
|
1199
1200
|
`(boolean: false)` - **Deprecated** All HCL jobs are parsed as
|
1200
1201
|
HCL2 by default.
|
1201
1202
|
"""
|
1202
|
-
warnings.warn("""Starting with version 2.0.0 of the Nomad provider, jobs are parsed using HCL2 by default, so this field is no longer used and may be safely removed from your configuration files. Set 'hcl1 = true' if you must use HCL1 job parsing.""", DeprecationWarning)
|
1203
|
-
pulumi.log.warn("""enabled is deprecated: Starting with version 2.0.0 of the Nomad provider, jobs are parsed using HCL2 by default, so this field is no longer used and may be safely removed from your configuration files. Set 'hcl1 = true' if you must use HCL1 job parsing.""")
|
1204
|
-
|
1205
1203
|
return pulumi.get(self, "enabled")
|
1206
1204
|
|
1207
1205
|
@enabled.setter
|
pulumi_nomad/_utilities.py
CHANGED
@@ -4,6 +4,7 @@
|
|
4
4
|
|
5
5
|
|
6
6
|
import asyncio
|
7
|
+
import functools
|
7
8
|
import importlib.metadata
|
8
9
|
import importlib.util
|
9
10
|
import inspect
|
@@ -11,6 +12,7 @@ import json
|
|
11
12
|
import os
|
12
13
|
import sys
|
13
14
|
import typing
|
15
|
+
import warnings
|
14
16
|
|
15
17
|
import pulumi
|
16
18
|
import pulumi.runtime
|
@@ -19,6 +21,8 @@ from pulumi.runtime.sync_await import _sync_await
|
|
19
21
|
from semver import VersionInfo as SemverVersion
|
20
22
|
from parver import Version as PEP440Version
|
21
23
|
|
24
|
+
C = typing.TypeVar("C", bound=typing.Callable)
|
25
|
+
|
22
26
|
|
23
27
|
def get_env(*args):
|
24
28
|
for v in args:
|
@@ -287,5 +291,36 @@ async def _await_output(o: pulumi.Output[typing.Any]) -> typing.Tuple[object, bo
|
|
287
291
|
await o._resources,
|
288
292
|
)
|
289
293
|
|
294
|
+
|
295
|
+
# This is included to provide an upgrade path for users who are using a version
|
296
|
+
# of the Pulumi SDK (<3.121.0) that does not include the `deprecated` decorator.
|
297
|
+
def deprecated(message: str) -> typing.Callable[[C], C]:
|
298
|
+
"""
|
299
|
+
Decorator to indicate a function is deprecated.
|
300
|
+
|
301
|
+
As well as inserting appropriate statements to indicate that the function is
|
302
|
+
deprecated, this decorator also tags the function with a special attribute
|
303
|
+
so that Pulumi code can detect that it is deprecated and react appropriately
|
304
|
+
in certain situations.
|
305
|
+
|
306
|
+
message is the deprecation message that should be printed if the function is called.
|
307
|
+
"""
|
308
|
+
|
309
|
+
def decorator(fn: C) -> C:
|
310
|
+
if not callable(fn):
|
311
|
+
raise TypeError("Expected fn to be callable")
|
312
|
+
|
313
|
+
@functools.wraps(fn)
|
314
|
+
def deprecated_fn(*args, **kwargs):
|
315
|
+
warnings.warn(message)
|
316
|
+
pulumi.warn(f"{fn.__name__} is deprecated: {message}")
|
317
|
+
|
318
|
+
return fn(*args, **kwargs)
|
319
|
+
|
320
|
+
deprecated_fn.__dict__["_pulumi_deprecated_callable"] = fn
|
321
|
+
return typing.cast(C, deprecated_fn)
|
322
|
+
|
323
|
+
return decorator
|
324
|
+
|
290
325
|
def get_plugin_download_url():
|
291
326
|
return None
|
pulumi_nomad/external_volume.py
CHANGED
@@ -645,7 +645,7 @@ class ExternalVolume(pulumi.CustomResource):
|
|
645
645
|
],
|
646
646
|
),
|
647
647
|
),
|
648
|
-
opts=pulumi.ResourceOptions(depends_on=[ebs]))
|
648
|
+
opts = pulumi.ResourceOptions(depends_on=[ebs]))
|
649
649
|
```
|
650
650
|
|
651
651
|
:param str resource_name: The name of the resource.
|
@@ -714,7 +714,7 @@ class ExternalVolume(pulumi.CustomResource):
|
|
714
714
|
],
|
715
715
|
),
|
716
716
|
),
|
717
|
-
opts=pulumi.ResourceOptions(depends_on=[ebs]))
|
717
|
+
opts = pulumi.ResourceOptions(depends_on=[ebs]))
|
718
718
|
```
|
719
719
|
|
720
720
|
:param str resource_name: The name of the resource.
|
pulumi_nomad/job.py
CHANGED
@@ -213,10 +213,8 @@ class JobArgs:
|
|
213
213
|
|
214
214
|
@property
|
215
215
|
@pulumi.getter(name="readAllocationIds")
|
216
|
+
@_utilities.deprecated("""Retrieving allocation IDs from the job resource is deprecated and will be removed in a future release. Use the get_allocations data source instead.""")
|
216
217
|
def read_allocation_ids(self) -> Optional[pulumi.Input[bool]]:
|
217
|
-
warnings.warn("""Retrieving allocation IDs from the job resource is deprecated and will be removed in a future release. Use the get_allocations data source instead.""", DeprecationWarning)
|
218
|
-
pulumi.log.warn("""read_allocation_ids is deprecated: Retrieving allocation IDs from the job resource is deprecated and will be removed in a future release. Use the get_allocations data source instead.""")
|
219
|
-
|
220
218
|
return pulumi.get(self, "read_allocation_ids")
|
221
219
|
|
222
220
|
@read_allocation_ids.setter
|
@@ -369,13 +367,11 @@ class _JobState:
|
|
369
367
|
|
370
368
|
@property
|
371
369
|
@pulumi.getter(name="allocationIds")
|
370
|
+
@_utilities.deprecated("""Retrieving allocation IDs from the job resource is deprecated and will be removed in a future release. Use the get_allocations data source instead.""")
|
372
371
|
def allocation_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
373
372
|
"""
|
374
373
|
The IDs for allocations associated with this job.
|
375
374
|
"""
|
376
|
-
warnings.warn("""Retrieving allocation IDs from the job resource is deprecated and will be removed in a future release. Use the get_allocations data source instead.""", DeprecationWarning)
|
377
|
-
pulumi.log.warn("""allocation_ids is deprecated: Retrieving allocation IDs from the job resource is deprecated and will be removed in a future release. Use the get_allocations data source instead.""")
|
378
|
-
|
379
375
|
return pulumi.get(self, "allocation_ids")
|
380
376
|
|
381
377
|
@allocation_ids.setter
|
@@ -584,10 +580,8 @@ class _JobState:
|
|
584
580
|
|
585
581
|
@property
|
586
582
|
@pulumi.getter(name="readAllocationIds")
|
583
|
+
@_utilities.deprecated("""Retrieving allocation IDs from the job resource is deprecated and will be removed in a future release. Use the get_allocations data source instead.""")
|
587
584
|
def read_allocation_ids(self) -> Optional[pulumi.Input[bool]]:
|
588
|
-
warnings.warn("""Retrieving allocation IDs from the job resource is deprecated and will be removed in a future release. Use the get_allocations data source instead.""", DeprecationWarning)
|
589
|
-
pulumi.log.warn("""read_allocation_ids is deprecated: Retrieving allocation IDs from the job resource is deprecated and will be removed in a future release. Use the get_allocations data source instead.""")
|
590
|
-
|
591
585
|
return pulumi.get(self, "read_allocation_ids")
|
592
586
|
|
593
587
|
@read_allocation_ids.setter
|
@@ -891,13 +885,11 @@ class Job(pulumi.CustomResource):
|
|
891
885
|
|
892
886
|
@property
|
893
887
|
@pulumi.getter(name="allocationIds")
|
888
|
+
@_utilities.deprecated("""Retrieving allocation IDs from the job resource is deprecated and will be removed in a future release. Use the get_allocations data source instead.""")
|
894
889
|
def allocation_ids(self) -> pulumi.Output[Sequence[str]]:
|
895
890
|
"""
|
896
891
|
The IDs for allocations associated with this job.
|
897
892
|
"""
|
898
|
-
warnings.warn("""Retrieving allocation IDs from the job resource is deprecated and will be removed in a future release. Use the get_allocations data source instead.""", DeprecationWarning)
|
899
|
-
pulumi.log.warn("""allocation_ids is deprecated: Retrieving allocation IDs from the job resource is deprecated and will be removed in a future release. Use the get_allocations data source instead.""")
|
900
|
-
|
901
893
|
return pulumi.get(self, "allocation_ids")
|
902
894
|
|
903
895
|
@property
|
@@ -1038,10 +1030,8 @@ class Job(pulumi.CustomResource):
|
|
1038
1030
|
|
1039
1031
|
@property
|
1040
1032
|
@pulumi.getter(name="readAllocationIds")
|
1033
|
+
@_utilities.deprecated("""Retrieving allocation IDs from the job resource is deprecated and will be removed in a future release. Use the get_allocations data source instead.""")
|
1041
1034
|
def read_allocation_ids(self) -> pulumi.Output[Optional[bool]]:
|
1042
|
-
warnings.warn("""Retrieving allocation IDs from the job resource is deprecated and will be removed in a future release. Use the get_allocations data source instead.""", DeprecationWarning)
|
1043
|
-
pulumi.log.warn("""read_allocation_ids is deprecated: Retrieving allocation IDs from the job resource is deprecated and will be removed in a future release. Use the get_allocations data source instead.""")
|
1044
|
-
|
1045
1035
|
return pulumi.get(self, "read_allocation_ids")
|
1046
1036
|
|
1047
1037
|
@property
|
pulumi_nomad/outputs.py
CHANGED
@@ -1188,14 +1188,12 @@ class JobHcl2(dict):
|
|
1188
1188
|
|
1189
1189
|
@property
|
1190
1190
|
@pulumi.getter
|
1191
|
+
@_utilities.deprecated("""Starting with version 2.0.0 of the Nomad provider, jobs are parsed using HCL2 by default, so this field is no longer used and may be safely removed from your configuration files. Set 'hcl1 = true' if you must use HCL1 job parsing.""")
|
1191
1192
|
def enabled(self) -> Optional[bool]:
|
1192
1193
|
"""
|
1193
1194
|
`(boolean: false)` - **Deprecated** All HCL jobs are parsed as
|
1194
1195
|
HCL2 by default.
|
1195
1196
|
"""
|
1196
|
-
warnings.warn("""Starting with version 2.0.0 of the Nomad provider, jobs are parsed using HCL2 by default, so this field is no longer used and may be safely removed from your configuration files. Set 'hcl1 = true' if you must use HCL1 job parsing.""", DeprecationWarning)
|
1197
|
-
pulumi.log.warn("""enabled is deprecated: Starting with version 2.0.0 of the Nomad provider, jobs are parsed using HCL2 by default, so this field is no longer used and may be safely removed from your configuration files. Set 'hcl1 = true' if you must use HCL1 job parsing.""")
|
1198
|
-
|
1199
1197
|
return pulumi.get(self, "enabled")
|
1200
1198
|
|
1201
1199
|
@property
|
pulumi_nomad/pulumi-plugin.json
CHANGED
pulumi_nomad/volume.py
CHANGED
@@ -126,6 +126,7 @@ class VolumeArgs:
|
|
126
126
|
|
127
127
|
@property
|
128
128
|
@pulumi.getter(name="accessMode")
|
129
|
+
@_utilities.deprecated("""use capability instead""")
|
129
130
|
def access_mode(self) -> Optional[pulumi.Input[str]]:
|
130
131
|
"""
|
131
132
|
`(string: <optional>)` - **Deprecated**. Use `capability` block instead. Defines whether a volume should be available concurrently. Possible values are:
|
@@ -135,9 +136,6 @@ class VolumeArgs:
|
|
135
136
|
- `multi-node-single-writer`
|
136
137
|
- `multi-node-multi-writer`
|
137
138
|
"""
|
138
|
-
warnings.warn("""use capability instead""", DeprecationWarning)
|
139
|
-
pulumi.log.warn("""access_mode is deprecated: use capability instead""")
|
140
|
-
|
141
139
|
return pulumi.get(self, "access_mode")
|
142
140
|
|
143
141
|
@access_mode.setter
|
@@ -146,13 +144,11 @@ class VolumeArgs:
|
|
146
144
|
|
147
145
|
@property
|
148
146
|
@pulumi.getter(name="attachmentMode")
|
147
|
+
@_utilities.deprecated("""use capability instead""")
|
149
148
|
def attachment_mode(self) -> Optional[pulumi.Input[str]]:
|
150
149
|
"""
|
151
150
|
`(string: <otional>)` - **Deprecated**. Use `capability` block instead. The storage API that will be used by the volume.
|
152
151
|
"""
|
153
|
-
warnings.warn("""use capability instead""", DeprecationWarning)
|
154
|
-
pulumi.log.warn("""attachment_mode is deprecated: use capability instead""")
|
155
|
-
|
156
152
|
return pulumi.get(self, "attachment_mode")
|
157
153
|
|
158
154
|
@attachment_mode.setter
|
@@ -387,6 +383,7 @@ class _VolumeState:
|
|
387
383
|
|
388
384
|
@property
|
389
385
|
@pulumi.getter(name="accessMode")
|
386
|
+
@_utilities.deprecated("""use capability instead""")
|
390
387
|
def access_mode(self) -> Optional[pulumi.Input[str]]:
|
391
388
|
"""
|
392
389
|
`(string: <optional>)` - **Deprecated**. Use `capability` block instead. Defines whether a volume should be available concurrently. Possible values are:
|
@@ -396,9 +393,6 @@ class _VolumeState:
|
|
396
393
|
- `multi-node-single-writer`
|
397
394
|
- `multi-node-multi-writer`
|
398
395
|
"""
|
399
|
-
warnings.warn("""use capability instead""", DeprecationWarning)
|
400
|
-
pulumi.log.warn("""access_mode is deprecated: use capability instead""")
|
401
|
-
|
402
396
|
return pulumi.get(self, "access_mode")
|
403
397
|
|
404
398
|
@access_mode.setter
|
@@ -407,13 +401,11 @@ class _VolumeState:
|
|
407
401
|
|
408
402
|
@property
|
409
403
|
@pulumi.getter(name="attachmentMode")
|
404
|
+
@_utilities.deprecated("""use capability instead""")
|
410
405
|
def attachment_mode(self) -> Optional[pulumi.Input[str]]:
|
411
406
|
"""
|
412
407
|
`(string: <otional>)` - **Deprecated**. Use `capability` block instead. The storage API that will be used by the volume.
|
413
408
|
"""
|
414
|
-
warnings.warn("""use capability instead""", DeprecationWarning)
|
415
|
-
pulumi.log.warn("""attachment_mode is deprecated: use capability instead""")
|
416
|
-
|
417
409
|
return pulumi.get(self, "attachment_mode")
|
418
410
|
|
419
411
|
@attachment_mode.setter
|
@@ -721,7 +713,7 @@ class Volume(pulumi.CustomResource):
|
|
721
713
|
],
|
722
714
|
),
|
723
715
|
),
|
724
|
-
opts=pulumi.ResourceOptions(depends_on=[ebs]))
|
716
|
+
opts = pulumi.ResourceOptions(depends_on=[ebs]))
|
725
717
|
```
|
726
718
|
|
727
719
|
:param str resource_name: The name of the resource.
|
@@ -795,7 +787,7 @@ class Volume(pulumi.CustomResource):
|
|
795
787
|
],
|
796
788
|
),
|
797
789
|
),
|
798
|
-
opts=pulumi.ResourceOptions(depends_on=[ebs]))
|
790
|
+
opts = pulumi.ResourceOptions(depends_on=[ebs]))
|
799
791
|
```
|
800
792
|
|
801
793
|
:param str resource_name: The name of the resource.
|
@@ -963,6 +955,7 @@ class Volume(pulumi.CustomResource):
|
|
963
955
|
|
964
956
|
@property
|
965
957
|
@pulumi.getter(name="accessMode")
|
958
|
+
@_utilities.deprecated("""use capability instead""")
|
966
959
|
def access_mode(self) -> pulumi.Output[Optional[str]]:
|
967
960
|
"""
|
968
961
|
`(string: <optional>)` - **Deprecated**. Use `capability` block instead. Defines whether a volume should be available concurrently. Possible values are:
|
@@ -972,20 +965,15 @@ class Volume(pulumi.CustomResource):
|
|
972
965
|
- `multi-node-single-writer`
|
973
966
|
- `multi-node-multi-writer`
|
974
967
|
"""
|
975
|
-
warnings.warn("""use capability instead""", DeprecationWarning)
|
976
|
-
pulumi.log.warn("""access_mode is deprecated: use capability instead""")
|
977
|
-
|
978
968
|
return pulumi.get(self, "access_mode")
|
979
969
|
|
980
970
|
@property
|
981
971
|
@pulumi.getter(name="attachmentMode")
|
972
|
+
@_utilities.deprecated("""use capability instead""")
|
982
973
|
def attachment_mode(self) -> pulumi.Output[Optional[str]]:
|
983
974
|
"""
|
984
975
|
`(string: <otional>)` - **Deprecated**. Use `capability` block instead. The storage API that will be used by the volume.
|
985
976
|
"""
|
986
|
-
warnings.warn("""use capability instead""", DeprecationWarning)
|
987
|
-
pulumi.log.warn("""attachment_mode is deprecated: use capability instead""")
|
988
|
-
|
989
977
|
return pulumi.get(self, "attachment_mode")
|
990
978
|
|
991
979
|
@property
|
@@ -1,6 +1,6 @@
|
|
1
1
|
pulumi_nomad/__init__.py,sha256=1DS6wdOPeFhuGq-lUYG1tHqsPNoxIJT2IWHBlaNeRCA,4356
|
2
|
-
pulumi_nomad/_inputs.py,sha256=
|
3
|
-
pulumi_nomad/_utilities.py,sha256=
|
2
|
+
pulumi_nomad/_inputs.py,sha256=KKJ47xHcpwrOJT9Z5WHR882pEqbziV4cenDOLgay3qU,74471
|
3
|
+
pulumi_nomad/_utilities.py,sha256=zozFZPZGnJJ7MjOYHQPdH-l-EHcRcX5lh5TVi22oTCw,10446
|
4
4
|
pulumi_nomad/acl_auth_method.py,sha256=A1HpNX3lM7bl7vwuGTdItg4OER4ZApLEoU0o_vEqf2Q,23704
|
5
5
|
pulumi_nomad/acl_binding_rule.py,sha256=7YZsOVUoabSUsThSiusJBju9S5kYcQGAclPqqRjj3PY,16396
|
6
6
|
pulumi_nomad/acl_policy.py,sha256=xN0klfhu-e5EPhKsaofxnj96m3TPTthsdtRbHW4Xr2Y,12176
|
@@ -8,7 +8,7 @@ pulumi_nomad/acl_role.py,sha256=AzyAijJ-05LPP71sGis0paEqTI9wjVjj9EnTAN1Ln7A,1052
|
|
8
8
|
pulumi_nomad/acl_token.py,sha256=z1DTQyonETd9HCwphdrx5X7GfM2r5kZs98MGswDvBMw,28727
|
9
9
|
pulumi_nomad/csi_volume.py,sha256=3MM-OzEabpT9sDKOj-6fQwqaPr6SXX9BNBMGDG_fwlA,48598
|
10
10
|
pulumi_nomad/csi_volume_registration.py,sha256=cXkYxrFF83EbzA1EqQl-_zWG5jnmU6ecGfBPonL29Ug,50513
|
11
|
-
pulumi_nomad/external_volume.py,sha256=
|
11
|
+
pulumi_nomad/external_volume.py,sha256=i_-0loI2yL5GxREsi83XiJXcX9SAeo-qC7g6OmbCASg,50429
|
12
12
|
pulumi_nomad/get_acl_policies.py,sha256=w928nDzy5ax8uGknhbFGffWkxwpFp-KZ1W5__P-BGis,3550
|
13
13
|
pulumi_nomad/get_acl_policy.py,sha256=H8j5lwZ1_oMGUCXJ6Bivqq7ExVsFYVWKmLdNu6lRWQ4,3800
|
14
14
|
pulumi_nomad/get_acl_role.py,sha256=-HK8G7UxuRllQMlZzWIwYwcZMLsqI_whIO_bZzVyW64,3873
|
@@ -33,23 +33,23 @@ pulumi_nomad/get_scaling_policy.py,sha256=dMBw5Qi17KzFyj1hDjtrh6u4Qqw_khbUysERHW
|
|
33
33
|
pulumi_nomad/get_scheduler_policy.py,sha256=NCYMl9s00oLdc8j2EkwxNUtq2s9vYU3rDfmtMwQSLPc,4546
|
34
34
|
pulumi_nomad/get_variable.py,sha256=FARInWW4OX1W5IwS3GOatclP_BqVcvKqVN7kVFv2tnE,4113
|
35
35
|
pulumi_nomad/get_volumes.py,sha256=bxPF8gchK6FhEJcySOi5cnxg0e0bn7xnTvk-2D36vxI,5420
|
36
|
-
pulumi_nomad/job.py,sha256=
|
36
|
+
pulumi_nomad/job.py,sha256=IdJc9PiwoznL25NOeJtY7wkk9N8iXbC_PGeVQHSn5kE,50811
|
37
37
|
pulumi_nomad/namespace.py,sha256=3ROS7Fdhbl08fMGk2IGxeC3SMpdbxK_q8y90uil1wf0,20505
|
38
38
|
pulumi_nomad/node_pool.py,sha256=OftrmHc1WUaEVnYxjsZDit1sPv_-d2mvflestKGUfVo,13126
|
39
|
-
pulumi_nomad/outputs.py,sha256=
|
39
|
+
pulumi_nomad/outputs.py,sha256=v5zkgDrCECY3OIpVhpJ5X_AyIMMaIXiI305uQFIDRfw,102254
|
40
40
|
pulumi_nomad/provider.py,sha256=kXiczhVPifjDrveY1h4jz1sqGvu8ahRNbh-f3QLDuew,21549
|
41
|
-
pulumi_nomad/pulumi-plugin.json,sha256=
|
41
|
+
pulumi_nomad/pulumi-plugin.json,sha256=o1rc56fn8E_ZZCIXqySrjTrJYIxg5qHwjlBqP-H4i9c,81
|
42
42
|
pulumi_nomad/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
43
43
|
pulumi_nomad/quote_specification.py,sha256=KPx5UE35CwbDACT_orhck4wD0czzJCWPWmlldfKq5tk,12113
|
44
44
|
pulumi_nomad/scheduler_config.py,sha256=i8ek-d_x7b6PVnL4e0l-06fdVbKyzEzB51kMAIBDbVw,14110
|
45
45
|
pulumi_nomad/sentinel_policy.py,sha256=pCJOkT_nQH7cp_QvRllj3Ba9sjXexRnStI7uguLEJp8,17058
|
46
46
|
pulumi_nomad/variable.py,sha256=f5Rsw6WTgdvoBX941dEdbn0TO9Rh8dHjggPK_pV9ho8,11529
|
47
|
-
pulumi_nomad/volume.py,sha256=
|
47
|
+
pulumi_nomad/volume.py,sha256=Wj3KoDDXCbJ27THcGu5MsBd_zhSYgtMpulaZ6sYr_Cg,54866
|
48
48
|
pulumi_nomad/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
49
49
|
pulumi_nomad/config/__init__.pyi,sha256=xqQrj9Co22MZN1IMoQwefoce6b6zI5nQfuA4L_uqw3Q,1865
|
50
50
|
pulumi_nomad/config/outputs.py,sha256=EJXQtJx8CPqK4-XlVBLC4rbjzI1AVUBUrOjFgyxwtuk,1003
|
51
51
|
pulumi_nomad/config/vars.py,sha256=pNNlDdaVJeMKr6TPOOJ4wW-_KPneYFizgpPjUIxa9rU,3432
|
52
|
-
pulumi_nomad-2.4.
|
53
|
-
pulumi_nomad-2.4.
|
54
|
-
pulumi_nomad-2.4.
|
55
|
-
pulumi_nomad-2.4.
|
52
|
+
pulumi_nomad-2.4.0a1719261013.dist-info/METADATA,sha256=sh1ypRrP4-81JO3j2g9vdC4mRVfo1FPi9dZorYRQUAs,4730
|
53
|
+
pulumi_nomad-2.4.0a1719261013.dist-info/WHEEL,sha256=cpQTJ5IWu9CdaPViMhC9YzF8gZuS5-vlfoFihTBC86A,91
|
54
|
+
pulumi_nomad-2.4.0a1719261013.dist-info/top_level.txt,sha256=1JxoZWssmXqN-8vVDXtedeoWtI703uNWUOzlm8Byv-o,13
|
55
|
+
pulumi_nomad-2.4.0a1719261013.dist-info/RECORD,,
|
File without changes
|
{pulumi_nomad-2.4.0a1718949565.dist-info → pulumi_nomad-2.4.0a1719261013.dist-info}/top_level.txt
RENAMED
File without changes
|