pulumi-nomad 2.6.0a1745475318__py3-none-any.whl → 2.6.0a1746080172__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.
@@ -288,6 +288,9 @@ class _AclAuthMethodState:
288
288
 
289
289
 
290
290
  class AclAuthMethod(pulumi.CustomResource):
291
+
292
+ pulumi_type = "nomad:index/aclAuthMethod:AclAuthMethod"
293
+
291
294
  @overload
292
295
  def __init__(__self__,
293
296
  resource_name: str,
@@ -212,6 +212,9 @@ class _AclBindingRuleState:
212
212
 
213
213
 
214
214
  class AclBindingRule(pulumi.CustomResource):
215
+
216
+ pulumi_type = "nomad:index/aclBindingRule:AclBindingRule"
217
+
215
218
  @overload
216
219
  def __init__(__self__,
217
220
  resource_name: str,
@@ -171,6 +171,9 @@ class _AclPolicyState:
171
171
 
172
172
 
173
173
  class AclPolicy(pulumi.CustomResource):
174
+
175
+ pulumi_type = "nomad:index/aclPolicy:AclPolicy"
176
+
174
177
  @overload
175
178
  def __init__(__self__,
176
179
  resource_name: str,
pulumi_nomad/acl_role.py CHANGED
@@ -135,6 +135,9 @@ class _AclRoleState:
135
135
 
136
136
 
137
137
  class AclRole(pulumi.CustomResource):
138
+
139
+ pulumi_type = "nomad:index/aclRole:AclRole"
140
+
138
141
  @overload
139
142
  def __init__(__self__,
140
143
  resource_name: str,
pulumi_nomad/acl_token.py CHANGED
@@ -341,6 +341,9 @@ class _AclTokenState:
341
341
 
342
342
 
343
343
  class AclToken(pulumi.CustomResource):
344
+
345
+ pulumi_type = "nomad:index/aclToken:AclToken"
346
+
344
347
  @overload
345
348
  def __init__(__self__,
346
349
  resource_name: str,
@@ -625,6 +625,9 @@ class _CsiVolumeState:
625
625
 
626
626
 
627
627
  class CsiVolume(pulumi.CustomResource):
628
+
629
+ pulumi_type = "nomad:index/csiVolume:CsiVolume"
630
+
628
631
  @overload
629
632
  def __init__(__self__,
630
633
  resource_name: str,
@@ -625,6 +625,9 @@ class _CsiVolumeRegistrationState:
625
625
 
626
626
 
627
627
  class CsiVolumeRegistration(pulumi.CustomResource):
628
+
629
+ pulumi_type = "nomad:index/csiVolumeRegistration:CsiVolumeRegistration"
630
+
628
631
  @overload
629
632
  def __init__(__self__,
630
633
  resource_name: str,
@@ -554,6 +554,9 @@ class _DynamicHostVolumeState:
554
554
 
555
555
 
556
556
  class DynamicHostVolume(pulumi.CustomResource):
557
+
558
+ pulumi_type = "nomad:index/dynamicHostVolume:DynamicHostVolume"
559
+
557
560
  @overload
558
561
  def __init__(__self__,
559
562
  resource_name: str,
@@ -429,6 +429,9 @@ class _DynamicHostVolumeRegistrationState:
429
429
 
430
430
 
431
431
  class DynamicHostVolumeRegistration(pulumi.CustomResource):
432
+
433
+ pulumi_type = "nomad:index/dynamicHostVolumeRegistration:DynamicHostVolumeRegistration"
434
+
432
435
  @overload
433
436
  def __init__(__self__,
434
437
  resource_name: str,
@@ -589,6 +589,9 @@ class _ExternalVolumeState:
589
589
 
590
590
 
591
591
  class ExternalVolume(pulumi.CustomResource):
592
+
593
+ pulumi_type = "nomad:index/externalVolume:ExternalVolume"
594
+
592
595
  @overload
593
596
  def __init__(__self__,
594
597
  resource_name: str,
@@ -74,14 +74,17 @@ def get_namespaces(opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetN
74
74
 
75
75
  namespaces = nomad.get_namespaces()
76
76
  namespace = []
77
- for range in [{"value": i} for i in range(0, len(namespaces.namespaces))]:
78
- namespace.append(nomad.AclPolicy(f"namespace-{range['value']}",
79
- name=f"namespace-{namespaces[range['value']]}",
80
- description=f"Write to the namespace {namespaces[range['value']]}",
81
- rules_hcl=f\"\"\"namespace "{namespaces[range["value"]]}" {{
77
+ def create_namespace(range_body):
78
+ for range in [{"value": i} for i in range(0, range_body)]:
79
+ namespace.append(nomad.AclPolicy(f"namespace-{range['value']}",
80
+ name=f"namespace-{namespaces[range['value']]}",
81
+ description=f"Write to the namespace {namespaces[range['value']]}",
82
+ rules_hcl=f\"\"\"namespace "{namespaces[range["value"]]}" {{
82
83
  policy = "write"
83
84
  }}
84
85
  \"\"\"))
86
+
87
+ (len(namespaces.namespaces)).apply(create_namespace)
85
88
  ```
86
89
  """
87
90
  __args__ = dict()
@@ -103,14 +106,17 @@ def get_namespaces_output(opts: Optional[Union[pulumi.InvokeOptions, pulumi.Invo
103
106
 
104
107
  namespaces = nomad.get_namespaces()
105
108
  namespace = []
106
- for range in [{"value": i} for i in range(0, len(namespaces.namespaces))]:
107
- namespace.append(nomad.AclPolicy(f"namespace-{range['value']}",
108
- name=f"namespace-{namespaces[range['value']]}",
109
- description=f"Write to the namespace {namespaces[range['value']]}",
110
- rules_hcl=f\"\"\"namespace "{namespaces[range["value"]]}" {{
109
+ def create_namespace(range_body):
110
+ for range in [{"value": i} for i in range(0, range_body)]:
111
+ namespace.append(nomad.AclPolicy(f"namespace-{range['value']}",
112
+ name=f"namespace-{namespaces[range['value']]}",
113
+ description=f"Write to the namespace {namespaces[range['value']]}",
114
+ rules_hcl=f\"\"\"namespace "{namespaces[range["value"]]}" {{
111
115
  policy = "write"
112
116
  }}
113
117
  \"\"\"))
118
+
119
+ (len(namespaces.namespaces)).apply(create_namespace)
114
120
  ```
115
121
  """
116
122
  __args__ = dict()
@@ -79,8 +79,11 @@ def get_regions(opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetRegi
79
79
  my_regions = nomad.get_regions()
80
80
  jobs = not_implemented("The template_file data resource is not yet supported.")
81
81
  app = []
82
- for range in [{"value": i} for i in range(0, len(my_regions.regions))]:
83
- app.append(nomad.Job(f"app-{range['value']}", jobspec=jobs[range["value"]]["rendered"]))
82
+ def create_app(range_body):
83
+ for range in [{"value": i} for i in range(0, range_body)]:
84
+ app.append(nomad.Job(f"app-{range['value']}", jobspec=jobs[range["value"]]["rendered"]))
85
+
86
+ (len(my_regions.regions)).apply(create_app)
84
87
  ```
85
88
  """
86
89
  __args__ = dict()
@@ -107,8 +110,11 @@ def get_regions_output(opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeO
107
110
  my_regions = nomad.get_regions()
108
111
  jobs = not_implemented("The template_file data resource is not yet supported.")
109
112
  app = []
110
- for range in [{"value": i} for i in range(0, len(my_regions.regions))]:
111
- app.append(nomad.Job(f"app-{range['value']}", jobspec=jobs[range["value"]]["rendered"]))
113
+ def create_app(range_body):
114
+ for range in [{"value": i} for i in range(0, range_body)]:
115
+ app.append(nomad.Job(f"app-{range['value']}", jobspec=jobs[range["value"]]["rendered"]))
116
+
117
+ (len(my_regions.regions)).apply(create_app)
112
118
  ```
113
119
  """
114
120
  __args__ = dict()
pulumi_nomad/job.py CHANGED
@@ -555,6 +555,9 @@ class _JobState:
555
555
 
556
556
 
557
557
  class Job(pulumi.CustomResource):
558
+
559
+ pulumi_type = "nomad:index/job:Job"
560
+
558
561
  @overload
559
562
  def __init__(__self__,
560
563
  resource_name: str,
pulumi_nomad/namespace.py CHANGED
@@ -232,6 +232,9 @@ class _NamespaceState:
232
232
 
233
233
 
234
234
  class Namespace(pulumi.CustomResource):
235
+
236
+ pulumi_type = "nomad:index/namespace:Namespace"
237
+
235
238
  @overload
236
239
  def __init__(__self__,
237
240
  resource_name: str,
pulumi_nomad/node_pool.py CHANGED
@@ -168,6 +168,9 @@ class _NodePoolState:
168
168
 
169
169
 
170
170
  class NodePool(pulumi.CustomResource):
171
+
172
+ pulumi_type = "nomad:index/nodePool:NodePool"
173
+
171
174
  @overload
172
175
  def __init__(__self__,
173
176
  resource_name: str,
pulumi_nomad/provider.py CHANGED
@@ -234,6 +234,9 @@ class ProviderArgs:
234
234
 
235
235
 
236
236
  class Provider(pulumi.ProviderResource):
237
+
238
+ pulumi_type = "pulumi:providers:nomad"
239
+
237
240
  @overload
238
241
  def __init__(__self__,
239
242
  resource_name: str,
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "nomad",
4
- "version": "2.6.0-alpha.1745475318"
4
+ "version": "2.6.0-alpha.1746080172"
5
5
  }
@@ -135,6 +135,9 @@ class _QuoteSpecificationState:
135
135
 
136
136
 
137
137
  class QuoteSpecification(pulumi.CustomResource):
138
+
139
+ pulumi_type = "nomad:index/quoteSpecification:QuoteSpecification"
140
+
138
141
  @overload
139
142
  def __init__(__self__,
140
143
  resource_name: str,
@@ -130,6 +130,9 @@ class _SchedulerConfigState:
130
130
 
131
131
 
132
132
  class SchedulerConfig(pulumi.CustomResource):
133
+
134
+ pulumi_type = "nomad:index/schedulerConfig:SchedulerConfig"
135
+
133
136
  @overload
134
137
  def __init__(__self__,
135
138
  resource_name: str,
@@ -207,6 +207,9 @@ class _SentinelPolicyState:
207
207
 
208
208
 
209
209
  class SentinelPolicy(pulumi.CustomResource):
210
+
211
+ pulumi_type = "nomad:index/sentinelPolicy:SentinelPolicy"
212
+
210
213
  @overload
211
214
  def __init__(__self__,
212
215
  resource_name: str,
pulumi_nomad/variable.py CHANGED
@@ -128,6 +128,9 @@ class _VariableState:
128
128
 
129
129
 
130
130
  class Variable(pulumi.CustomResource):
131
+
132
+ pulumi_type = "nomad:index/variable:Variable"
133
+
131
134
  @overload
132
135
  def __init__(__self__,
133
136
  resource_name: str,
pulumi_nomad/volume.py CHANGED
@@ -657,6 +657,9 @@ class _VolumeState:
657
657
 
658
658
 
659
659
  class Volume(pulumi.CustomResource):
660
+
661
+ pulumi_type = "nomad:index/volume:Volume"
662
+
660
663
  @overload
661
664
  def __init__(__self__,
662
665
  resource_name: str,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulumi_nomad
3
- Version: 2.6.0a1745475318
3
+ Version: 2.6.0a1746080172
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
@@ -1,16 +1,16 @@
1
1
  pulumi_nomad/__init__.py,sha256=LO_erEgwPyHI1JQN7HgP8kSuI3JpQm9G8O9zSaq_57Q,4900
2
2
  pulumi_nomad/_inputs.py,sha256=a5TcwMe6NTs6U_UBV2HiM3VehyvDCIeeCpEbJCVQxVA,133936
3
3
  pulumi_nomad/_utilities.py,sha256=yyuODPikZ9pto3JWJRfMJo98dWmQ5_y45-TVcZG_K8Y,10807
4
- pulumi_nomad/acl_auth_method.py,sha256=ZtCCXCsrmv0udW52Q3hOs5bFdmE2558ZrheLz-Zo94g,24728
5
- pulumi_nomad/acl_binding_rule.py,sha256=IQIaU2qQ_3AuexiI1wzlySiLn82t8SrgQpFL-BMjQdo,17216
6
- pulumi_nomad/acl_policy.py,sha256=hW2zIM4ZJ0Axyw0BgHJf9iWMxAj6FUCR1t7A3ZqjTiI,12908
7
- pulumi_nomad/acl_role.py,sha256=cPxu3iHqFOkHfxf-UWJMXqkZK6Ia4wwKQEdwqJ-p7iw,11038
8
- pulumi_nomad/acl_token.py,sha256=FO81-QGAhNeZFjpM9I_UufHg70SL7a4XJDxFuF-BZcM,29864
9
- pulumi_nomad/csi_volume.py,sha256=oUH_3phNHDH4ipFA-slpYOdqPzwDxLkcYRKUu0e6_JY,52237
10
- pulumi_nomad/csi_volume_registration.py,sha256=lVn58zS2Ugpq9sBUEbeCjXjw8JaohizQ-y80IprQ4cg,53129
11
- pulumi_nomad/dynamic_host_volume.py,sha256=q41p6SlodQlGnpbUBZ29QecRPxtv1xRIwsdTtiv7Gj8,51140
12
- pulumi_nomad/dynamic_host_volume_registration.py,sha256=U2PWyDuPvuc4vSnfn29877m3HO8por-tSQoy8mhb1LQ,36725
13
- pulumi_nomad/external_volume.py,sha256=8tf8KXPXpq3QzzMih42rriJ3bm6DpD5wTliryKPuQk0,52308
4
+ pulumi_nomad/acl_auth_method.py,sha256=W2yAvLK7sZ7WMNCOdLVaX8s0gj8IbMZEsgd3Q9Gu7Wk,24790
5
+ pulumi_nomad/acl_binding_rule.py,sha256=dzK7HuBR2EDqTZDfShKpbBdvFplGLViimV7X0jAnGLE,17280
6
+ pulumi_nomad/acl_policy.py,sha256=Xu5I9w0vl1M7DdBJZnT28hjGK189Jhf-eoJO2ziKMsU,12962
7
+ pulumi_nomad/acl_role.py,sha256=1h64u475pT0CPlTFayzqoC_RZGdLNffiRcK5mjeEe68,11088
8
+ pulumi_nomad/acl_token.py,sha256=xvC90BuLfWBOE8UzC20x4tVXat3IE-5Zr6vpHssTcNU,29916
9
+ pulumi_nomad/csi_volume.py,sha256=kfpsHtDbiK6nnAFtlxXJBx6vqO2GM_MaoUMrD45mbi0,52291
10
+ pulumi_nomad/csi_volume_registration.py,sha256=aOT1wt4b3p0A4Er24bkCLFArbuP3SzjXTt4QiLvR-Yc,53207
11
+ pulumi_nomad/dynamic_host_volume.py,sha256=5HxnnSzM8I3lWO4cG14bGqtM_pnIzdCdqMSpPuRADUY,51210
12
+ pulumi_nomad/dynamic_host_volume_registration.py,sha256=on3TJF3_OPB_3snW7YYe_9fJYfmLWsrZeVRCEWjZVDU,36819
13
+ pulumi_nomad/external_volume.py,sha256=dM9JGf7wpsYWnr3f2joYmzDmhaRXqSb5O6EK5lT1UlA,52372
14
14
  pulumi_nomad/get_acl_policies.py,sha256=3wxhLPd6XHTKFKUiRk6EzYK3xYZ1OzZD7VNz9dA3IeM,4268
15
15
  pulumi_nomad/get_acl_policy.py,sha256=dAO66svXM8B7ysKBAPNnT_WVx-YmI8MZ9rMBCHE1o_w,4577
16
16
  pulumi_nomad/get_acl_role.py,sha256=BDXY0kQlsJSh45YgAN1zIfGoegxO3evcMaLbMquSAZ8,4637
@@ -25,34 +25,34 @@ pulumi_nomad/get_job.py,sha256=2_u4ONvuCtcs3x2a0IBqL4Y-gy1jeJ9N0JhlOiRzC0o,15434
25
25
  pulumi_nomad/get_job_parser.py,sha256=vIJkkJ-30h0DJG6yShoZoB4qyh1H0r_2ao1_tmr_wcs,4854
26
26
  pulumi_nomad/get_jwks.py,sha256=Nv0grsw7pqYQwosYBlcck-rjiqwed1ognt4c-XkXS8g,4067
27
27
  pulumi_nomad/get_namespace.py,sha256=CeWo4ftpu-LupkKsjHy2KSZKQf7jfmml00DUVofaK4I,6314
28
- pulumi_nomad/get_namespaces.py,sha256=Y8KZ2qirlChre_5nArHfXEN9yyBTnLJ3vnlHGpiyMBE,4162
28
+ pulumi_nomad/get_namespaces.py,sha256=qYSSK1w-Vjwa3AYGZ3-C9lfOWj_g-p08dM6Ok8aeTew,4362
29
29
  pulumi_nomad/get_node_pool.py,sha256=A1PPdLjozCF1tR_AGq0ujUn6yY9M-LVIwQRcsbcOpls,5272
30
30
  pulumi_nomad/get_node_pools.py,sha256=IZsNtNnKfm7uswEanMFKtApq6hOJ6RuhMmbCu80JY_w,5214
31
31
  pulumi_nomad/get_plugin.py,sha256=0FogGWDoZ6Q70rot_dmxlSvbhpHHbv6hN9LBe0c4MqA,12375
32
32
  pulumi_nomad/get_plugins.py,sha256=9e4hncIzGTJW5qeA9n8MatAJrDHMI-32MzV4RsQckes,3797
33
- pulumi_nomad/get_regions.py,sha256=7TM74uCXQ6xMkWZhkLQKHObe9Le2EyILmjSQUq_xS6w,3872
33
+ pulumi_nomad/get_regions.py,sha256=QsqQWx6cNBYLhL0qOnChWf1LWgElmYBasFoJ3pG_cN0,4024
34
34
  pulumi_nomad/get_scaling_policies.py,sha256=4NU1xyf8cr0Dbv0gtGFbBb11RPLgZejrc4t_P9f4ywA,5507
35
35
  pulumi_nomad/get_scaling_policy.py,sha256=yLG1buFUa4AIKE3_plCV2oG2O6BxMuoG278SB9jy-yE,6063
36
36
  pulumi_nomad/get_scheduler_policy.py,sha256=CpVUl7cMQqwRBmYuSYHsH4np3EqmCysKpBO2x1AG53Y,5371
37
37
  pulumi_nomad/get_variable.py,sha256=5EkZkivhsvvwZRH1La625aFvjWglALRLL3GBJ3L1IEo,4958
38
38
  pulumi_nomad/get_volumes.py,sha256=XBXoetaK8RAT4AW7mH52L0ou_k2reavjD_VOzMKvEBg,6522
39
- pulumi_nomad/job.py,sha256=IK0nelkDw9N-Dg9vjfM1ey6gA_jmXALOUCCMcPX5NK0,44091
40
- pulumi_nomad/namespace.py,sha256=BT5tuCJR63qydUWhjHATiQ7rae7VcHwJFq-CzXE7vqE,21299
41
- pulumi_nomad/node_pool.py,sha256=DjBJLCvEKMVwh5WbulM51PwM_-2EArcrz2NMWfaT_LE,13814
39
+ pulumi_nomad/job.py,sha256=INyxdw1mZImqrMAvfB9aCUvg6P9rYBJNmkhwOGLnKHw,44133
40
+ pulumi_nomad/namespace.py,sha256=TTal39xqR7s38Y9yhyl3_drcNjI6azs-sy2jLvLC2eQ,21353
41
+ pulumi_nomad/node_pool.py,sha256=5GScUem0o6w-pdRbWfE0frMf-5epewsMRd3mX4MZi1E,13866
42
42
  pulumi_nomad/outputs.py,sha256=lb4zy-b59N0UAJPgpjwyHHzQV0lsu1E25o8HjzBUxFs,131801
43
- pulumi_nomad/provider.py,sha256=9EgAcctcZH7xfrY1yBE_ORJ67PFxM6FhhVFvo4CxCU4,19817
44
- pulumi_nomad/pulumi-plugin.json,sha256=0Eutbm7utGDMS4X6R04jH_iFUBVxWj5qwNesmHdEQ48,81
43
+ pulumi_nomad/provider.py,sha256=hU7sxcdoMLrVR71puxT4IQ3Iexrc0zdXKCgZ7Q-L-M4,19862
44
+ pulumi_nomad/pulumi-plugin.json,sha256=ZR1TLIT-qNI4tok9q3scx8nn17pv6FdHNJUtbHh-HFg,81
45
45
  pulumi_nomad/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
46
- pulumi_nomad/quote_specification.py,sha256=ok3P0O7_ILQq_Axz_M1T-rMQ2_fGu9zqno0yBmWDTWk,12545
47
- pulumi_nomad/scheduler_config.py,sha256=VfUmSajKrzOdiLqdcUOoz2jwGTWW6VoPlCJYEZggSDQ,14678
48
- pulumi_nomad/sentinel_policy.py,sha256=Gp9HFUWSW0KOxZu_mJrh7dLF1w_keq0xhvjUuX7mdCI,17878
49
- pulumi_nomad/variable.py,sha256=4483jM17nt3iLt52Oy5TX3Hw3RA_iZgapKdKC9R20Us,12279
50
- pulumi_nomad/volume.py,sha256=4Z6w_mnLy8Uftc2qy0EuxX8-SB6xatZIht1DIV34cuk,56839
46
+ pulumi_nomad/quote_specification.py,sha256=6Pc3IMDKKpl_eoWORez5dVKWht-WGV3ej3k7NsQneI8,12617
47
+ pulumi_nomad/scheduler_config.py,sha256=9qXBsBbRgQdfiQ6YpdAi-E4O-i2BwFYFvX7EXh0x2Kw,14744
48
+ pulumi_nomad/sentinel_policy.py,sha256=L5lusMxZytr1Od8XBj_35OfWxsPy78bYj0xTnDHl9OM,17942
49
+ pulumi_nomad/variable.py,sha256=stiAXeG3AQxPQQPtt9xL1pVPlzb4Ngs9fJojvnyGl4s,12331
50
+ pulumi_nomad/volume.py,sha256=gvkoM3-DGmDmhONEyOBtdtjtOg99-FHpU5xMhrE3Bfs,56887
51
51
  pulumi_nomad/config/__init__.py,sha256=nKVKdvQbN3zgJ23HPoKpz1sGrfjaDijL6xvKxGVmj7c,301
52
52
  pulumi_nomad/config/__init__.pyi,sha256=tIAs_Cv6hVOlpAcpSJ5XGTeTHsfnAeRq3y6kuIQFOwc,1836
53
53
  pulumi_nomad/config/outputs.py,sha256=y7nFXKRL67QW7aD6UQds8ka6ysh7aQYfo_6e-tESDZg,1247
54
54
  pulumi_nomad/config/vars.py,sha256=RGvWqvP9psah81xuR1ztflknBX6cIVSF25SoVr8fCUQ,3202
55
- pulumi_nomad-2.6.0a1745475318.dist-info/METADATA,sha256=r7oqNk6PVgynJZ2dLn9m1GIaaGH9YpQxWuVjNBgp-cU,4793
56
- pulumi_nomad-2.6.0a1745475318.dist-info/WHEEL,sha256=SmOxYU7pzNKBqASvQJ7DjX3XGUF92lrGhMb3R6_iiqI,91
57
- pulumi_nomad-2.6.0a1745475318.dist-info/top_level.txt,sha256=1JxoZWssmXqN-8vVDXtedeoWtI703uNWUOzlm8Byv-o,13
58
- pulumi_nomad-2.6.0a1745475318.dist-info/RECORD,,
55
+ pulumi_nomad-2.6.0a1746080172.dist-info/METADATA,sha256=dqbBFGyINVnuiDcBGs3n_TmaFBRTBw7RP9rU-sFgO20,4793
56
+ pulumi_nomad-2.6.0a1746080172.dist-info/WHEEL,sha256=wXxTzcEDnjrTwFYjLPcsW_7_XihufBwmpiBeiXNBGEA,91
57
+ pulumi_nomad-2.6.0a1746080172.dist-info/top_level.txt,sha256=1JxoZWssmXqN-8vVDXtedeoWtI703uNWUOzlm8Byv-o,13
58
+ pulumi_nomad-2.6.0a1746080172.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (79.0.1)
2
+ Generator: setuptools (80.1.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5