pulumi-nomad 2.1.0a1698439181__py3-none-any.whl → 2.1.0a1698477283__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 +88 -785
- pulumi_nomad/_utilities.py +0 -19
- pulumi_nomad/acl_auth_method.py +13 -76
- pulumi_nomad/acl_binding_rule.py +11 -69
- pulumi_nomad/acl_policy.py +9 -58
- pulumi_nomad/acl_role.py +7 -43
- pulumi_nomad/acl_token.py +17 -89
- pulumi_nomad/config/outputs.py +3 -20
- pulumi_nomad/config/vars.py +1 -1
- pulumi_nomad/csi_volume.py +36 -182
- pulumi_nomad/csi_volume_registration.py +34 -168
- pulumi_nomad/external_volume.py +38 -188
- pulumi_nomad/get_acl_policies.py +1 -1
- pulumi_nomad/get_acl_policy.py +1 -1
- pulumi_nomad/get_acl_role.py +1 -1
- pulumi_nomad/get_acl_roles.py +1 -1
- pulumi_nomad/get_acl_token.py +1 -1
- pulumi_nomad/get_acl_tokens.py +1 -1
- pulumi_nomad/get_allocations.py +1 -1
- pulumi_nomad/get_datacenters.py +1 -1
- pulumi_nomad/get_deployments.py +1 -1
- pulumi_nomad/get_job.py +1 -1
- pulumi_nomad/get_job_parser.py +1 -1
- pulumi_nomad/get_namespace.py +1 -1
- pulumi_nomad/get_namespaces.py +1 -1
- pulumi_nomad/get_node_pool.py +1 -1
- pulumi_nomad/get_node_pools.py +1 -1
- pulumi_nomad/get_plugin.py +1 -1
- pulumi_nomad/get_plugins.py +1 -1
- pulumi_nomad/get_regions.py +1 -1
- pulumi_nomad/get_scaling_policies.py +1 -1
- pulumi_nomad/get_scaling_policy.py +1 -1
- pulumi_nomad/get_scheduler_policy.py +1 -1
- pulumi_nomad/get_variable.py +1 -1
- pulumi_nomad/get_volumes.py +1 -1
- pulumi_nomad/job.py +35 -166
- pulumi_nomad/namespace.py +13 -65
- pulumi_nomad/node_pool.py +9 -52
- pulumi_nomad/outputs.py +169 -1432
- pulumi_nomad/provider.py +16 -85
- pulumi_nomad/quote_specification.py +7 -43
- pulumi_nomad/scheduler_config.py +7 -53
- pulumi_nomad/sentinel_policy.py +11 -63
- pulumi_nomad/variable.py +7 -45
- pulumi_nomad/volume.py +40 -194
- {pulumi_nomad-2.1.0a1698439181.dist-info → pulumi_nomad-2.1.0a1698477283.dist-info}/METADATA +1 -1
- pulumi_nomad-2.1.0a1698477283.dist-info/RECORD +53 -0
- pulumi_nomad-2.1.0a1698439181.dist-info/RECORD +0 -53
- {pulumi_nomad-2.1.0a1698439181.dist-info → pulumi_nomad-2.1.0a1698477283.dist-info}/WHEEL +0 -0
- {pulumi_nomad-2.1.0a1698439181.dist-info → pulumi_nomad-2.1.0a1698477283.dist-info}/top_level.txt +0 -0
pulumi_nomad/volume.py
CHANGED
@@ -6,7 +6,7 @@ import copy
|
|
6
6
|
import warnings
|
7
7
|
import pulumi
|
8
8
|
import pulumi.runtime
|
9
|
-
from typing import Any,
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
10
10
|
from . import _utilities
|
11
11
|
from . import outputs
|
12
12
|
from ._inputs import *
|
@@ -54,100 +54,39 @@ class VolumeArgs:
|
|
54
54
|
:param pulumi.Input['VolumeTopologyRequestArgs'] topology_request: `(``TopologyRequest``: <optional>)` - Specify locations (region, zone, rack, etc.) where the provisioned volume is accessible from.
|
55
55
|
:param pulumi.Input[str] type: `(string: <required>)` - The type of the volume. Currently, only `csi` is supported.
|
56
56
|
"""
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
plugin_id=plugin_id,
|
61
|
-
volume_id=volume_id,
|
62
|
-
access_mode=access_mode,
|
63
|
-
attachment_mode=attachment_mode,
|
64
|
-
capabilities=capabilities,
|
65
|
-
context=context,
|
66
|
-
deregister_on_destroy=deregister_on_destroy,
|
67
|
-
mount_options=mount_options,
|
68
|
-
name=name,
|
69
|
-
namespace=namespace,
|
70
|
-
parameters=parameters,
|
71
|
-
secrets=secrets,
|
72
|
-
topology_request=topology_request,
|
73
|
-
type=type,
|
74
|
-
)
|
75
|
-
@staticmethod
|
76
|
-
def _configure(
|
77
|
-
_setter: Callable[[Any, Any], None],
|
78
|
-
external_id: Optional[pulumi.Input[str]] = None,
|
79
|
-
plugin_id: Optional[pulumi.Input[str]] = None,
|
80
|
-
volume_id: Optional[pulumi.Input[str]] = None,
|
81
|
-
access_mode: Optional[pulumi.Input[str]] = None,
|
82
|
-
attachment_mode: Optional[pulumi.Input[str]] = None,
|
83
|
-
capabilities: Optional[pulumi.Input[Sequence[pulumi.Input['VolumeCapabilityArgs']]]] = None,
|
84
|
-
context: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
85
|
-
deregister_on_destroy: Optional[pulumi.Input[bool]] = None,
|
86
|
-
mount_options: Optional[pulumi.Input['VolumeMountOptionsArgs']] = None,
|
87
|
-
name: Optional[pulumi.Input[str]] = None,
|
88
|
-
namespace: Optional[pulumi.Input[str]] = None,
|
89
|
-
parameters: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
90
|
-
secrets: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
91
|
-
topology_request: Optional[pulumi.Input['VolumeTopologyRequestArgs']] = None,
|
92
|
-
type: Optional[pulumi.Input[str]] = None,
|
93
|
-
opts: Optional[pulumi.ResourceOptions] = None,
|
94
|
-
**kwargs):
|
95
|
-
if external_id is None and 'externalId' in kwargs:
|
96
|
-
external_id = kwargs['externalId']
|
97
|
-
if external_id is None:
|
98
|
-
raise TypeError("Missing 'external_id' argument")
|
99
|
-
if plugin_id is None and 'pluginId' in kwargs:
|
100
|
-
plugin_id = kwargs['pluginId']
|
101
|
-
if plugin_id is None:
|
102
|
-
raise TypeError("Missing 'plugin_id' argument")
|
103
|
-
if volume_id is None and 'volumeId' in kwargs:
|
104
|
-
volume_id = kwargs['volumeId']
|
105
|
-
if volume_id is None:
|
106
|
-
raise TypeError("Missing 'volume_id' argument")
|
107
|
-
if access_mode is None and 'accessMode' in kwargs:
|
108
|
-
access_mode = kwargs['accessMode']
|
109
|
-
if attachment_mode is None and 'attachmentMode' in kwargs:
|
110
|
-
attachment_mode = kwargs['attachmentMode']
|
111
|
-
if deregister_on_destroy is None and 'deregisterOnDestroy' in kwargs:
|
112
|
-
deregister_on_destroy = kwargs['deregisterOnDestroy']
|
113
|
-
if mount_options is None and 'mountOptions' in kwargs:
|
114
|
-
mount_options = kwargs['mountOptions']
|
115
|
-
if topology_request is None and 'topologyRequest' in kwargs:
|
116
|
-
topology_request = kwargs['topologyRequest']
|
117
|
-
|
118
|
-
_setter("external_id", external_id)
|
119
|
-
_setter("plugin_id", plugin_id)
|
120
|
-
_setter("volume_id", volume_id)
|
57
|
+
pulumi.set(__self__, "external_id", external_id)
|
58
|
+
pulumi.set(__self__, "plugin_id", plugin_id)
|
59
|
+
pulumi.set(__self__, "volume_id", volume_id)
|
121
60
|
if access_mode is not None:
|
122
61
|
warnings.warn("""use capability instead""", DeprecationWarning)
|
123
62
|
pulumi.log.warn("""access_mode is deprecated: use capability instead""")
|
124
63
|
if access_mode is not None:
|
125
|
-
|
64
|
+
pulumi.set(__self__, "access_mode", access_mode)
|
126
65
|
if attachment_mode is not None:
|
127
66
|
warnings.warn("""use capability instead""", DeprecationWarning)
|
128
67
|
pulumi.log.warn("""attachment_mode is deprecated: use capability instead""")
|
129
68
|
if attachment_mode is not None:
|
130
|
-
|
69
|
+
pulumi.set(__self__, "attachment_mode", attachment_mode)
|
131
70
|
if capabilities is not None:
|
132
|
-
|
71
|
+
pulumi.set(__self__, "capabilities", capabilities)
|
133
72
|
if context is not None:
|
134
|
-
|
73
|
+
pulumi.set(__self__, "context", context)
|
135
74
|
if deregister_on_destroy is not None:
|
136
|
-
|
75
|
+
pulumi.set(__self__, "deregister_on_destroy", deregister_on_destroy)
|
137
76
|
if mount_options is not None:
|
138
|
-
|
77
|
+
pulumi.set(__self__, "mount_options", mount_options)
|
139
78
|
if name is not None:
|
140
|
-
|
79
|
+
pulumi.set(__self__, "name", name)
|
141
80
|
if namespace is not None:
|
142
|
-
|
81
|
+
pulumi.set(__self__, "namespace", namespace)
|
143
82
|
if parameters is not None:
|
144
|
-
|
83
|
+
pulumi.set(__self__, "parameters", parameters)
|
145
84
|
if secrets is not None:
|
146
|
-
|
85
|
+
pulumi.set(__self__, "secrets", secrets)
|
147
86
|
if topology_request is not None:
|
148
|
-
|
87
|
+
pulumi.set(__self__, "topology_request", topology_request)
|
149
88
|
if type is not None:
|
150
|
-
|
89
|
+
pulumi.set(__self__, "type", type)
|
151
90
|
|
152
91
|
@property
|
153
92
|
@pulumi.getter(name="externalId")
|
@@ -400,147 +339,60 @@ class _VolumeState:
|
|
400
339
|
:param pulumi.Input[str] type: `(string: <required>)` - The type of the volume. Currently, only `csi` is supported.
|
401
340
|
:param pulumi.Input[str] volume_id: `(string: <required>)` - The unique ID of the volume.
|
402
341
|
"""
|
403
|
-
_VolumeState._configure(
|
404
|
-
lambda key, value: pulumi.set(__self__, key, value),
|
405
|
-
access_mode=access_mode,
|
406
|
-
attachment_mode=attachment_mode,
|
407
|
-
capabilities=capabilities,
|
408
|
-
context=context,
|
409
|
-
controller_required=controller_required,
|
410
|
-
controllers_expected=controllers_expected,
|
411
|
-
controllers_healthy=controllers_healthy,
|
412
|
-
deregister_on_destroy=deregister_on_destroy,
|
413
|
-
external_id=external_id,
|
414
|
-
mount_options=mount_options,
|
415
|
-
name=name,
|
416
|
-
namespace=namespace,
|
417
|
-
nodes_expected=nodes_expected,
|
418
|
-
nodes_healthy=nodes_healthy,
|
419
|
-
parameters=parameters,
|
420
|
-
plugin_id=plugin_id,
|
421
|
-
plugin_provider=plugin_provider,
|
422
|
-
plugin_provider_version=plugin_provider_version,
|
423
|
-
schedulable=schedulable,
|
424
|
-
secrets=secrets,
|
425
|
-
topologies=topologies,
|
426
|
-
topology_request=topology_request,
|
427
|
-
type=type,
|
428
|
-
volume_id=volume_id,
|
429
|
-
)
|
430
|
-
@staticmethod
|
431
|
-
def _configure(
|
432
|
-
_setter: Callable[[Any, Any], None],
|
433
|
-
access_mode: Optional[pulumi.Input[str]] = None,
|
434
|
-
attachment_mode: Optional[pulumi.Input[str]] = None,
|
435
|
-
capabilities: Optional[pulumi.Input[Sequence[pulumi.Input['VolumeCapabilityArgs']]]] = None,
|
436
|
-
context: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
437
|
-
controller_required: Optional[pulumi.Input[bool]] = None,
|
438
|
-
controllers_expected: Optional[pulumi.Input[int]] = None,
|
439
|
-
controllers_healthy: Optional[pulumi.Input[int]] = None,
|
440
|
-
deregister_on_destroy: Optional[pulumi.Input[bool]] = None,
|
441
|
-
external_id: Optional[pulumi.Input[str]] = None,
|
442
|
-
mount_options: Optional[pulumi.Input['VolumeMountOptionsArgs']] = None,
|
443
|
-
name: Optional[pulumi.Input[str]] = None,
|
444
|
-
namespace: Optional[pulumi.Input[str]] = None,
|
445
|
-
nodes_expected: Optional[pulumi.Input[int]] = None,
|
446
|
-
nodes_healthy: Optional[pulumi.Input[int]] = None,
|
447
|
-
parameters: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
448
|
-
plugin_id: Optional[pulumi.Input[str]] = None,
|
449
|
-
plugin_provider: Optional[pulumi.Input[str]] = None,
|
450
|
-
plugin_provider_version: Optional[pulumi.Input[str]] = None,
|
451
|
-
schedulable: Optional[pulumi.Input[bool]] = None,
|
452
|
-
secrets: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
453
|
-
topologies: Optional[pulumi.Input[Sequence[pulumi.Input['VolumeTopologyArgs']]]] = None,
|
454
|
-
topology_request: Optional[pulumi.Input['VolumeTopologyRequestArgs']] = None,
|
455
|
-
type: Optional[pulumi.Input[str]] = None,
|
456
|
-
volume_id: Optional[pulumi.Input[str]] = None,
|
457
|
-
opts: Optional[pulumi.ResourceOptions] = None,
|
458
|
-
**kwargs):
|
459
|
-
if access_mode is None and 'accessMode' in kwargs:
|
460
|
-
access_mode = kwargs['accessMode']
|
461
|
-
if attachment_mode is None and 'attachmentMode' in kwargs:
|
462
|
-
attachment_mode = kwargs['attachmentMode']
|
463
|
-
if controller_required is None and 'controllerRequired' in kwargs:
|
464
|
-
controller_required = kwargs['controllerRequired']
|
465
|
-
if controllers_expected is None and 'controllersExpected' in kwargs:
|
466
|
-
controllers_expected = kwargs['controllersExpected']
|
467
|
-
if controllers_healthy is None and 'controllersHealthy' in kwargs:
|
468
|
-
controllers_healthy = kwargs['controllersHealthy']
|
469
|
-
if deregister_on_destroy is None and 'deregisterOnDestroy' in kwargs:
|
470
|
-
deregister_on_destroy = kwargs['deregisterOnDestroy']
|
471
|
-
if external_id is None and 'externalId' in kwargs:
|
472
|
-
external_id = kwargs['externalId']
|
473
|
-
if mount_options is None and 'mountOptions' in kwargs:
|
474
|
-
mount_options = kwargs['mountOptions']
|
475
|
-
if nodes_expected is None and 'nodesExpected' in kwargs:
|
476
|
-
nodes_expected = kwargs['nodesExpected']
|
477
|
-
if nodes_healthy is None and 'nodesHealthy' in kwargs:
|
478
|
-
nodes_healthy = kwargs['nodesHealthy']
|
479
|
-
if plugin_id is None and 'pluginId' in kwargs:
|
480
|
-
plugin_id = kwargs['pluginId']
|
481
|
-
if plugin_provider is None and 'pluginProvider' in kwargs:
|
482
|
-
plugin_provider = kwargs['pluginProvider']
|
483
|
-
if plugin_provider_version is None and 'pluginProviderVersion' in kwargs:
|
484
|
-
plugin_provider_version = kwargs['pluginProviderVersion']
|
485
|
-
if topology_request is None and 'topologyRequest' in kwargs:
|
486
|
-
topology_request = kwargs['topologyRequest']
|
487
|
-
if volume_id is None and 'volumeId' in kwargs:
|
488
|
-
volume_id = kwargs['volumeId']
|
489
|
-
|
490
342
|
if access_mode is not None:
|
491
343
|
warnings.warn("""use capability instead""", DeprecationWarning)
|
492
344
|
pulumi.log.warn("""access_mode is deprecated: use capability instead""")
|
493
345
|
if access_mode is not None:
|
494
|
-
|
346
|
+
pulumi.set(__self__, "access_mode", access_mode)
|
495
347
|
if attachment_mode is not None:
|
496
348
|
warnings.warn("""use capability instead""", DeprecationWarning)
|
497
349
|
pulumi.log.warn("""attachment_mode is deprecated: use capability instead""")
|
498
350
|
if attachment_mode is not None:
|
499
|
-
|
351
|
+
pulumi.set(__self__, "attachment_mode", attachment_mode)
|
500
352
|
if capabilities is not None:
|
501
|
-
|
353
|
+
pulumi.set(__self__, "capabilities", capabilities)
|
502
354
|
if context is not None:
|
503
|
-
|
355
|
+
pulumi.set(__self__, "context", context)
|
504
356
|
if controller_required is not None:
|
505
|
-
|
357
|
+
pulumi.set(__self__, "controller_required", controller_required)
|
506
358
|
if controllers_expected is not None:
|
507
|
-
|
359
|
+
pulumi.set(__self__, "controllers_expected", controllers_expected)
|
508
360
|
if controllers_healthy is not None:
|
509
|
-
|
361
|
+
pulumi.set(__self__, "controllers_healthy", controllers_healthy)
|
510
362
|
if deregister_on_destroy is not None:
|
511
|
-
|
363
|
+
pulumi.set(__self__, "deregister_on_destroy", deregister_on_destroy)
|
512
364
|
if external_id is not None:
|
513
|
-
|
365
|
+
pulumi.set(__self__, "external_id", external_id)
|
514
366
|
if mount_options is not None:
|
515
|
-
|
367
|
+
pulumi.set(__self__, "mount_options", mount_options)
|
516
368
|
if name is not None:
|
517
|
-
|
369
|
+
pulumi.set(__self__, "name", name)
|
518
370
|
if namespace is not None:
|
519
|
-
|
371
|
+
pulumi.set(__self__, "namespace", namespace)
|
520
372
|
if nodes_expected is not None:
|
521
|
-
|
373
|
+
pulumi.set(__self__, "nodes_expected", nodes_expected)
|
522
374
|
if nodes_healthy is not None:
|
523
|
-
|
375
|
+
pulumi.set(__self__, "nodes_healthy", nodes_healthy)
|
524
376
|
if parameters is not None:
|
525
|
-
|
377
|
+
pulumi.set(__self__, "parameters", parameters)
|
526
378
|
if plugin_id is not None:
|
527
|
-
|
379
|
+
pulumi.set(__self__, "plugin_id", plugin_id)
|
528
380
|
if plugin_provider is not None:
|
529
|
-
|
381
|
+
pulumi.set(__self__, "plugin_provider", plugin_provider)
|
530
382
|
if plugin_provider_version is not None:
|
531
|
-
|
383
|
+
pulumi.set(__self__, "plugin_provider_version", plugin_provider_version)
|
532
384
|
if schedulable is not None:
|
533
|
-
|
385
|
+
pulumi.set(__self__, "schedulable", schedulable)
|
534
386
|
if secrets is not None:
|
535
|
-
|
387
|
+
pulumi.set(__self__, "secrets", secrets)
|
536
388
|
if topologies is not None:
|
537
|
-
|
389
|
+
pulumi.set(__self__, "topologies", topologies)
|
538
390
|
if topology_request is not None:
|
539
|
-
|
391
|
+
pulumi.set(__self__, "topology_request", topology_request)
|
540
392
|
if type is not None:
|
541
|
-
|
393
|
+
pulumi.set(__self__, "type", type)
|
542
394
|
if volume_id is not None:
|
543
|
-
|
395
|
+
pulumi.set(__self__, "volume_id", volume_id)
|
544
396
|
|
545
397
|
@property
|
546
398
|
@pulumi.getter(name="accessMode")
|
@@ -988,10 +840,6 @@ class Volume(pulumi.CustomResource):
|
|
988
840
|
if resource_args is not None:
|
989
841
|
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
990
842
|
else:
|
991
|
-
kwargs = kwargs or {}
|
992
|
-
def _setter(key, value):
|
993
|
-
kwargs[key] = value
|
994
|
-
VolumeArgs._configure(_setter, **kwargs)
|
995
843
|
__self__._internal_init(resource_name, *args, **kwargs)
|
996
844
|
|
997
845
|
def _internal_init(__self__,
|
@@ -1029,7 +877,6 @@ class Volume(pulumi.CustomResource):
|
|
1029
877
|
if external_id is None and not opts.urn:
|
1030
878
|
raise TypeError("Missing required property 'external_id'")
|
1031
879
|
__props__.__dict__["external_id"] = external_id
|
1032
|
-
mount_options = _utilities.configure(mount_options, VolumeMountOptionsArgs, True)
|
1033
880
|
__props__.__dict__["mount_options"] = mount_options
|
1034
881
|
__props__.__dict__["name"] = name
|
1035
882
|
__props__.__dict__["namespace"] = namespace
|
@@ -1038,7 +885,6 @@ class Volume(pulumi.CustomResource):
|
|
1038
885
|
raise TypeError("Missing required property 'plugin_id'")
|
1039
886
|
__props__.__dict__["plugin_id"] = plugin_id
|
1040
887
|
__props__.__dict__["secrets"] = None if secrets is None else pulumi.Output.secret(secrets)
|
1041
|
-
topology_request = _utilities.configure(topology_request, VolumeTopologyRequestArgs, True)
|
1042
888
|
__props__.__dict__["topology_request"] = topology_request
|
1043
889
|
__props__.__dict__["type"] = type
|
1044
890
|
if volume_id is None and not opts.urn:
|
@@ -0,0 +1,53 @@
|
|
1
|
+
pulumi_nomad/__init__.py,sha256=QUArXGICF8dmn0esax2QRn_bSJNVdbfnLlaahZRlmAU,4332
|
2
|
+
pulumi_nomad/_inputs.py,sha256=UYkywwjA6YcK47y9OHGQKsaKaF0lMMNHADf5ji0bc5I,69191
|
3
|
+
pulumi_nomad/_utilities.py,sha256=fRvpCIKutW049SlpPUAoouFyjnSSk1J-OY0b8SDzJaE,8081
|
4
|
+
pulumi_nomad/acl_auth_method.py,sha256=hejbCDU_yEE-SclQmnn6lARG0bUbms_WpsK4BKq2ceE,20092
|
5
|
+
pulumi_nomad/acl_binding_rule.py,sha256=7YZsOVUoabSUsThSiusJBju9S5kYcQGAclPqqRjj3PY,16396
|
6
|
+
pulumi_nomad/acl_policy.py,sha256=t1coaWYlkmx7IZIpG3eza4tq8Z_vzZgbjEgYukO_lvA,13550
|
7
|
+
pulumi_nomad/acl_role.py,sha256=AzyAijJ-05LPP71sGis0paEqTI9wjVjj9EnTAN1Ln7A,10526
|
8
|
+
pulumi_nomad/acl_token.py,sha256=8bqR29azqPxfIprvaVySFv3tL2cb2YjpYY5IDYGqPe4,28545
|
9
|
+
pulumi_nomad/csi_volume.py,sha256=zfrvJZb3aBCafDGqNJfeA2Rvw_0X7FlkwK_nv3Buzho,49823
|
10
|
+
pulumi_nomad/csi_volume_registration.py,sha256=khZEstN17syu-b2ckFbzUXaDrAVKWGYGhCRsV_KHs5Q,47842
|
11
|
+
pulumi_nomad/external_volume.py,sha256=RkqLWGFJrY_JHPErFM0SO0Vvgk6Val6moXaWEV_gBQQ,52267
|
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=K9Ees2FNoKTw-bfgDtN8apWUCoO3gE_hNWGU6GGmoD0,4447
|
19
|
+
pulumi_nomad/get_datacenters.py,sha256=hkbKI_ZJ_NCgYC7d4KyqZ4zpc-kDNfxNd0aBZZVc17w,4647
|
20
|
+
pulumi_nomad/get_deployments.py,sha256=GEG8vGt3iE77VuupXQNR6yAzzYwrt-BlLV3iLglumQo,2715
|
21
|
+
pulumi_nomad/get_job.py,sha256=hbBj4btH8J7_2YAcMG9EBhEfkMDGRU6rzy3wTWV7hTA,13429
|
22
|
+
pulumi_nomad/get_job_parser.py,sha256=3MhVQHTsrCQIL0jgH1Evm8yhYDOQWkdgW57RUHp7iKc,4461
|
23
|
+
pulumi_nomad/get_namespace.py,sha256=9adN4SkbcVBpdZHfurTwItlCOfT_AxIYtg6ed8J6q6g,5344
|
24
|
+
pulumi_nomad/get_namespaces.py,sha256=m_OV2WUlDfslvnZGEeSp-40QjCgkjyyvuopGS2Chf84,3441
|
25
|
+
pulumi_nomad/get_node_pool.py,sha256=ZdTbZ52F9WC6sXOuQLDcbN1DH8j29qc1Wr-wLze7Wp4,4427
|
26
|
+
pulumi_nomad/get_node_pools.py,sha256=iCF2UKsYpe5YRGCeLaE7bV-0Z7yqB4_KXPCj-ijNUGE,4370
|
27
|
+
pulumi_nomad/get_plugin.py,sha256=PDW-DeUwyvlR-lMe1K6DGJ6Al85X_VBxPVNYNjjwhn8,10732
|
28
|
+
pulumi_nomad/get_plugins.py,sha256=1KmI_tUHm4oqAyNklXl61jk7M6xAhdfGL3T86QFV3-Q,3109
|
29
|
+
pulumi_nomad/get_regions.py,sha256=lo008485fC7yjnmpzL7R9_m01FeczuAfx8lRe252BC4,2336
|
30
|
+
pulumi_nomad/get_scaling_policies.py,sha256=eAwRT7u4ene-8AM0W8PcXF-G3hfxV-pdFgO_sc_5f3k,4658
|
31
|
+
pulumi_nomad/get_scaling_policy.py,sha256=dMBw5Qi17KzFyj1hDjtrh6u4Qqw_khbUysERHWFRty8,5116
|
32
|
+
pulumi_nomad/get_scheduler_policy.py,sha256=NCYMl9s00oLdc8j2EkwxNUtq2s9vYU3rDfmtMwQSLPc,4546
|
33
|
+
pulumi_nomad/get_variable.py,sha256=FARInWW4OX1W5IwS3GOatclP_BqVcvKqVN7kVFv2tnE,4113
|
34
|
+
pulumi_nomad/get_volumes.py,sha256=bxPF8gchK6FhEJcySOi5cnxg0e0bn7xnTvk-2D36vxI,5420
|
35
|
+
pulumi_nomad/job.py,sha256=MscZd488GZEvZQRtfdvTnL393lAyza3tOO1R44KVrqY,48609
|
36
|
+
pulumi_nomad/namespace.py,sha256=dCreO2T1cDQdLQJe976q04D2hqHTbYZrg5mIVkiDuRQ,20349
|
37
|
+
pulumi_nomad/node_pool.py,sha256=cc7XCrKVakbhKmQLQTPgqLIzcoAnSVDOv8q6hgpwUeg,13078
|
38
|
+
pulumi_nomad/outputs.py,sha256=76vrrvbBiIn7Sb05Ybdxsyi0fxygyaMLufajuEYG1Os,96141
|
39
|
+
pulumi_nomad/provider.py,sha256=kXiczhVPifjDrveY1h4jz1sqGvu8ahRNbh-f3QLDuew,21549
|
40
|
+
pulumi_nomad/pulumi-plugin.json,sha256=2s0bEeojFder0tplFBIeTqy2h7Y8kNsJQ696Q6gJHqU,42
|
41
|
+
pulumi_nomad/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
42
|
+
pulumi_nomad/quote_specification.py,sha256=QtuMzrxxLcy0GcDqHizKeNSQ5F9CaHqJykm8T5JmynM,12053
|
43
|
+
pulumi_nomad/scheduler_config.py,sha256=GnKh8AMaTNOxcFw9gp5Z3Oigeti7-HyRDev8h7iEsAU,14110
|
44
|
+
pulumi_nomad/sentinel_policy.py,sha256=LedlscXzgaANbMeYI_sDvfCDcdtWWzm53FHK_rtVE3w,17000
|
45
|
+
pulumi_nomad/variable.py,sha256=__xAfv3nJuPHxOCkxFdDh8UX-qUMjZe5IgezmbKfOY8,11523
|
46
|
+
pulumi_nomad/volume.py,sha256=d7gUAeMfHqO0mModJ4hNhxEa4xXLYGX9WXkg8sYDydA,57315
|
47
|
+
pulumi_nomad/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
48
|
+
pulumi_nomad/config/outputs.py,sha256=L-VjkbG4Oj_tMe8HpJ-B7rQcitQeAP8Rc8OvnZj3qi8,798
|
49
|
+
pulumi_nomad/config/vars.py,sha256=pNNlDdaVJeMKr6TPOOJ4wW-_KPneYFizgpPjUIxa9rU,3432
|
50
|
+
pulumi_nomad-2.1.0a1698477283.dist-info/METADATA,sha256=7tfzYg1xQz2OHEZC6xDJYwP3RLb53IG-ugCSMHbiXaQ,4730
|
51
|
+
pulumi_nomad-2.1.0a1698477283.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
52
|
+
pulumi_nomad-2.1.0a1698477283.dist-info/top_level.txt,sha256=1JxoZWssmXqN-8vVDXtedeoWtI703uNWUOzlm8Byv-o,13
|
53
|
+
pulumi_nomad-2.1.0a1698477283.dist-info/RECORD,,
|
@@ -1,53 +0,0 @@
|
|
1
|
-
pulumi_nomad/__init__.py,sha256=QUArXGICF8dmn0esax2QRn_bSJNVdbfnLlaahZRlmAU,4332
|
2
|
-
pulumi_nomad/_inputs.py,sha256=hXpS5sTs3XHYJmOVtKsy0W8jLX07FgpWNDaV8eOnXbQ,97768
|
3
|
-
pulumi_nomad/_utilities.py,sha256=gEJgwmfYYqdEGeUJsGQtt67DByZiBW4wytye4oezFWY,8705
|
4
|
-
pulumi_nomad/acl_auth_method.py,sha256=fEqcn_dl8vB7jxFzmDXO66SPzWlsvSQTHgeqV_49AqI,22716
|
5
|
-
pulumi_nomad/acl_binding_rule.py,sha256=dS7GdvDtv8yoGRCzJC9c-1YAALJjBi1UAmpashVwTlQ,18756
|
6
|
-
pulumi_nomad/acl_policy.py,sha256=SOs5hdZHAJCeXhNM9cDgxzh41aqQtER6nF2Vr0VJygA,15480
|
7
|
-
pulumi_nomad/acl_role.py,sha256=9QSiN7u0Cg8ctOKMJu_Nw7Ml_nw4_2GDF4AAk3KFTLE,11883
|
8
|
-
pulumi_nomad/acl_token.py,sha256=i_puQNO5qyNZD2Dz5SaefEpVOIV6ar9DwGsnhRpPmBM,31575
|
9
|
-
pulumi_nomad/csi_volume.py,sha256=aVXBXR8WCmLIj0Y9V83e6vxjfuhvKBH0DJ01XENJW7k,57108
|
10
|
-
pulumi_nomad/csi_volume_registration.py,sha256=ww5itVcm205S2m8Wv4KdabdhPhbaQg6GXSXCG-NaSYY,54857
|
11
|
-
pulumi_nomad/external_volume.py,sha256=rhMuemo94fiAJzK1i-qtDnHDYEZspRrlCzspn05zMUI,59742
|
12
|
-
pulumi_nomad/get_acl_policies.py,sha256=1D0I_HSaL8qqh-ox46PsmTupHqOlVjVCBR3JoL0wp7o,3560
|
13
|
-
pulumi_nomad/get_acl_policy.py,sha256=DLvS_JrlJ-0oBxauiodJE5sT192JCKrrbuJ_D51hAFk,3810
|
14
|
-
pulumi_nomad/get_acl_role.py,sha256=53YegVH41CtS8RNnrnslxiZNT-70y9wDDBp-H-0p8I4,3883
|
15
|
-
pulumi_nomad/get_acl_roles.py,sha256=8xKhLxHCovhJKjK7SO7j2Ozb6uz8mtqPfe1F6kUuaWI,3456
|
16
|
-
pulumi_nomad/get_acl_token.py,sha256=nwfxO8SQ83So1hWUiK4Wbp7ZJ9EkQE6oiX2BMIOyeTU,7640
|
17
|
-
pulumi_nomad/get_acl_tokens.py,sha256=8v1Ihvf58xJypqmzTwFMg16uRRc8GIagEkkNono5ZzA,3429
|
18
|
-
pulumi_nomad/get_allocations.py,sha256=yP8J-i_6pooc3yaEegPaAOzH1oG8FYUZloj0DEbRwkg,4457
|
19
|
-
pulumi_nomad/get_datacenters.py,sha256=8o0smnYxv_ISRQm3c8BI8t9cbxLzEJDMzat0P6cqjgg,4657
|
20
|
-
pulumi_nomad/get_deployments.py,sha256=EeZQN9CrUYpSFLU2wQtb81jCXLODWO34QcbO-2dB7Ms,2725
|
21
|
-
pulumi_nomad/get_job.py,sha256=ywLfMV_5pd6DHrK3-hRpp2fyh55j9T4hZGZOY2X_jm0,13439
|
22
|
-
pulumi_nomad/get_job_parser.py,sha256=qiMaLGSOFZuiaFwNMFpTyaHrmZ5ZW8ZcGUFsWwvnycs,4471
|
23
|
-
pulumi_nomad/get_namespace.py,sha256=KROudCvvasVws1d9CS7ZxaqKoFSsRo4XWn57vFEJMD8,5354
|
24
|
-
pulumi_nomad/get_namespaces.py,sha256=Ciqz4IHUTZ2D42Oht_5hv78isOOfAFzpyENgWAyM6LE,3451
|
25
|
-
pulumi_nomad/get_node_pool.py,sha256=YsEUue6XfywEi8N0t-PoJlLANIuk79hqAQCac6WwSA4,4437
|
26
|
-
pulumi_nomad/get_node_pools.py,sha256=oiCZoubYAcvPkqOd2LLm0J8ybJTLzd7JvShuSrTLtk0,4380
|
27
|
-
pulumi_nomad/get_plugin.py,sha256=MlMXS9ERc8PJfNkvY4TYzRXbc3k3F0UI12hDhLnLK70,10742
|
28
|
-
pulumi_nomad/get_plugins.py,sha256=tEZgXEVjJM7fOVduesQy_C39D1BdS6NdAV1CwI3_5Zo,3119
|
29
|
-
pulumi_nomad/get_regions.py,sha256=ER2wBqocLr7-6SVit5u0EMpOjJadGpMzSc0UwhdWB4A,2346
|
30
|
-
pulumi_nomad/get_scaling_policies.py,sha256=FsRCq4lBO1VDto4M_rTOn7-aoWb0_UuHzzQ_J7tKjGQ,4668
|
31
|
-
pulumi_nomad/get_scaling_policy.py,sha256=WcUTEWCJpl17A8GNDoRh8DwC1WfA1ANCNAKxzMRkkLs,5126
|
32
|
-
pulumi_nomad/get_scheduler_policy.py,sha256=mm0uMsToeSPAXLpQwAmfU-pN5ldt-KPuRslI_TJzfIQ,4556
|
33
|
-
pulumi_nomad/get_variable.py,sha256=MEU-ya8JTUqA85AOAeMjsabdY6w0u4eZlSLjQKJEYdY,4123
|
34
|
-
pulumi_nomad/get_volumes.py,sha256=gO01VJpanJR1fmqeSFWZMiaABJ0gmn7vGiii5wmkTpk,5430
|
35
|
-
pulumi_nomad/job.py,sha256=45jSoxV8xRcTvVIV5_gWY3ZrOxGr9BZZ8OqskB9BKwg,54923
|
36
|
-
pulumi_nomad/namespace.py,sha256=wyeVoni7wuot194gzsUhykFHFF3mGz0sJbDEvbBwQNA,22640
|
37
|
-
pulumi_nomad/node_pool.py,sha256=CyI0gCugVV9OFboJ0tIAh0PtikUKHH0WFh247HTPFl4,14913
|
38
|
-
pulumi_nomad/outputs.py,sha256=QzY04KI7PhYshjnTgEbeyX4knXr-kLdYfHH2TC2HtcU,145417
|
39
|
-
pulumi_nomad/provider.py,sha256=YoJsjuhOmKVIXtDXxsomfhzlwWj-GPppqy29J0Oxy0g,24540
|
40
|
-
pulumi_nomad/pulumi-plugin.json,sha256=2s0bEeojFder0tplFBIeTqy2h7Y8kNsJQ696Q6gJHqU,42
|
41
|
-
pulumi_nomad/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
42
|
-
pulumi_nomad/quote_specification.py,sha256=ltbYO_G97rBesgL5kMuEE4gqcc8Du0kl1apT4B3UJCQ,13447
|
43
|
-
pulumi_nomad/scheduler_config.py,sha256=WZmaRMh0IRB9Y3T6FIxjcebsHAdI-eW7Rb3KSIYx8D4,16551
|
44
|
-
pulumi_nomad/sentinel_policy.py,sha256=n3okE57d7b93lVhnbIk22IfDoILTpzF6KrZqBHJ_IRE,19074
|
45
|
-
pulumi_nomad/variable.py,sha256=XGtfaV-K8akVUsLXxqmGIktv_0SGBeV53oi4mYG7_yY,12875
|
46
|
-
pulumi_nomad/volume.py,sha256=ywHsAVCqGlQ-r7KrRbNslu33NUT11Pl6eIVvqPHaJcA,65104
|
47
|
-
pulumi_nomad/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
48
|
-
pulumi_nomad/config/outputs.py,sha256=vTf4i_agHOtpsxowXBptRvlIHEDSK0UKkzN6qU4FKQ0,1351
|
49
|
-
pulumi_nomad/config/vars.py,sha256=Zx41lc7zQAJQvCo-iH5vda-bJEBO_EUJ7fTsMp49a-c,3442
|
50
|
-
pulumi_nomad-2.1.0a1698439181.dist-info/METADATA,sha256=AjGvtB6H7WAwwJgQm5kukVZshsbId6_sRgmfS-eL_m8,4730
|
51
|
-
pulumi_nomad-2.1.0a1698439181.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
52
|
-
pulumi_nomad-2.1.0a1698439181.dist-info/top_level.txt,sha256=1JxoZWssmXqN-8vVDXtedeoWtI703uNWUOzlm8Byv-o,13
|
53
|
-
pulumi_nomad-2.1.0a1698439181.dist-info/RECORD,,
|
File without changes
|
{pulumi_nomad-2.1.0a1698439181.dist-info → pulumi_nomad-2.1.0a1698477283.dist-info}/top_level.txt
RENAMED
File without changes
|