pulumi-consul 3.12.0a1713461993__py3-none-any.whl → 3.12.0a1713897703__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.
Files changed (50) hide show
  1. pulumi_consul/_inputs.py +22 -22
  2. pulumi_consul/acl_auth_method.py +0 -8
  3. pulumi_consul/acl_binding_rule.py +0 -4
  4. pulumi_consul/acl_policy.py +0 -4
  5. pulumi_consul/acl_role.py +7 -11
  6. pulumi_consul/acl_role_policy_attachment.py +0 -4
  7. pulumi_consul/acl_token.py +0 -4
  8. pulumi_consul/admin_partition.py +0 -4
  9. pulumi_consul/agent_service.py +0 -4
  10. pulumi_consul/autopilot_config.py +0 -4
  11. pulumi_consul/config_entry.py +0 -24
  12. pulumi_consul/config_entry_service_defaults.py +21 -21
  13. pulumi_consul/config_entry_service_intentions.py +21 -25
  14. pulumi_consul/config_entry_service_resolver.py +21 -25
  15. pulumi_consul/config_entry_service_router.py +21 -21
  16. pulumi_consul/config_entry_service_splitter.py +14 -18
  17. pulumi_consul/get_acl_auth_method.py +0 -4
  18. pulumi_consul/get_acl_policy.py +0 -4
  19. pulumi_consul/get_acl_role.py +2 -4
  20. pulumi_consul/get_acl_token.py +0 -4
  21. pulumi_consul/get_acl_token_secret_id.py +0 -4
  22. pulumi_consul/get_agent_config.py +0 -4
  23. pulumi_consul/get_autopilot_health.py +0 -4
  24. pulumi_consul/get_catalog_service.py +0 -8
  25. pulumi_consul/get_catalog_services.py +0 -4
  26. pulumi_consul/get_key_prefix.py +0 -8
  27. pulumi_consul/get_keys.py +0 -4
  28. pulumi_consul/get_network_area_members.py +0 -4
  29. pulumi_consul/get_network_segments.py +0 -4
  30. pulumi_consul/get_peering.py +0 -4
  31. pulumi_consul/get_peerings.py +0 -4
  32. pulumi_consul/get_service.py +0 -8
  33. pulumi_consul/get_services.py +0 -4
  34. pulumi_consul/intention.py +0 -8
  35. pulumi_consul/key_prefix.py +0 -4
  36. pulumi_consul/keys.py +0 -4
  37. pulumi_consul/license.py +0 -4
  38. pulumi_consul/namespace.py +0 -4
  39. pulumi_consul/network_area.py +0 -4
  40. pulumi_consul/node.py +0 -4
  41. pulumi_consul/outputs.py +22 -22
  42. pulumi_consul/peering.py +0 -4
  43. pulumi_consul/peering_token.py +0 -4
  44. pulumi_consul/prepared_query.py +7 -11
  45. pulumi_consul/service.py +7 -19
  46. {pulumi_consul-3.12.0a1713461993.dist-info → pulumi_consul-3.12.0a1713897703.dist-info}/METADATA +1 -1
  47. pulumi_consul-3.12.0a1713897703.dist-info/RECORD +70 -0
  48. pulumi_consul-3.12.0a1713461993.dist-info/RECORD +0 -70
  49. {pulumi_consul-3.12.0a1713461993.dist-info → pulumi_consul-3.12.0a1713897703.dist-info}/WHEEL +0 -0
  50. {pulumi_consul-3.12.0a1713461993.dist-info → pulumi_consul-3.12.0a1713897703.dist-info}/top_level.txt +0 -0
pulumi_consul/service.py CHANGED
@@ -36,7 +36,7 @@ class ServiceArgs:
36
36
  :param pulumi.Input[str] datacenter: The datacenter to use. This overrides the agent's default datacenter and the datacenter in the provider setup.
37
37
  :param pulumi.Input[bool] enable_tag_override: Specifies to disable the anti-entropy feature for this service's tags. Defaults to `false`.
38
38
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] meta: A map of arbitrary KV metadata linked to the service instance.
39
- :param pulumi.Input[str] name: The name of the header.
39
+ :param pulumi.Input[str] name: The name of the service.
40
40
  :param pulumi.Input[str] namespace: The namespace to create the service within.
41
41
  :param pulumi.Input[str] partition: The partition the service is associated with.
42
42
  :param pulumi.Input[int] port: The port of the service.
@@ -157,7 +157,7 @@ class ServiceArgs:
157
157
  @pulumi.getter
158
158
  def name(self) -> Optional[pulumi.Input[str]]:
159
159
  """
160
- The name of the header.
160
+ The name of the service.
161
161
  """
162
162
  return pulumi.get(self, "name")
163
163
 
@@ -248,7 +248,7 @@ class _ServiceState:
248
248
  :param pulumi.Input[str] datacenter: The datacenter to use. This overrides the agent's default datacenter and the datacenter in the provider setup.
249
249
  :param pulumi.Input[bool] enable_tag_override: Specifies to disable the anti-entropy feature for this service's tags. Defaults to `false`.
250
250
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] meta: A map of arbitrary KV metadata linked to the service instance.
251
- :param pulumi.Input[str] name: The name of the header.
251
+ :param pulumi.Input[str] name: The name of the service.
252
252
  :param pulumi.Input[str] namespace: The namespace to create the service within.
253
253
  :param pulumi.Input[str] node: The name of the node the to register the service on.
254
254
  :param pulumi.Input[str] partition: The partition the service is associated with.
@@ -359,7 +359,7 @@ class _ServiceState:
359
359
  @pulumi.getter
360
360
  def name(self) -> Optional[pulumi.Input[str]]:
361
361
  """
362
- The name of the header.
362
+ The name of the service.
363
363
  """
364
364
  return pulumi.get(self, "name")
365
365
 
@@ -473,7 +473,6 @@ class Service(pulumi.CustomResource):
473
473
 
474
474
  Creating a new node with the service:
475
475
 
476
- <!--Start PulumiCodeChooser -->
477
476
  ```python
478
477
  import pulumi
479
478
  import pulumi_consul as consul
@@ -487,11 +486,9 @@ class Service(pulumi.CustomResource):
487
486
  port=80,
488
487
  tags=["tag0"])
489
488
  ```
490
- <!--End PulumiCodeChooser -->
491
489
 
492
490
  Utilizing an existing known node:
493
491
 
494
- <!--Start PulumiCodeChooser -->
495
492
  ```python
496
493
  import pulumi
497
494
  import pulumi_consul as consul
@@ -501,11 +498,9 @@ class Service(pulumi.CustomResource):
501
498
  node="google",
502
499
  port=443)
503
500
  ```
504
- <!--End PulumiCodeChooser -->
505
501
 
506
502
  Register a health-check:
507
503
 
508
- <!--Start PulumiCodeChooser -->
509
504
  ```python
510
505
  import pulumi
511
506
  import pulumi_consul as consul
@@ -536,7 +531,6 @@ class Service(pulumi.CustomResource):
536
531
  ],
537
532
  )])
538
533
  ```
539
- <!--End PulumiCodeChooser -->
540
534
 
541
535
  :param str resource_name: The name of the resource.
542
536
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -544,7 +538,7 @@ class Service(pulumi.CustomResource):
544
538
  :param pulumi.Input[str] datacenter: The datacenter to use. This overrides the agent's default datacenter and the datacenter in the provider setup.
545
539
  :param pulumi.Input[bool] enable_tag_override: Specifies to disable the anti-entropy feature for this service's tags. Defaults to `false`.
546
540
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] meta: A map of arbitrary KV metadata linked to the service instance.
547
- :param pulumi.Input[str] name: The name of the header.
541
+ :param pulumi.Input[str] name: The name of the service.
548
542
  :param pulumi.Input[str] namespace: The namespace to create the service within.
549
543
  :param pulumi.Input[str] node: The name of the node the to register the service on.
550
544
  :param pulumi.Input[str] partition: The partition the service is associated with.
@@ -572,7 +566,6 @@ class Service(pulumi.CustomResource):
572
566
 
573
567
  Creating a new node with the service:
574
568
 
575
- <!--Start PulumiCodeChooser -->
576
569
  ```python
577
570
  import pulumi
578
571
  import pulumi_consul as consul
@@ -586,11 +579,9 @@ class Service(pulumi.CustomResource):
586
579
  port=80,
587
580
  tags=["tag0"])
588
581
  ```
589
- <!--End PulumiCodeChooser -->
590
582
 
591
583
  Utilizing an existing known node:
592
584
 
593
- <!--Start PulumiCodeChooser -->
594
585
  ```python
595
586
  import pulumi
596
587
  import pulumi_consul as consul
@@ -600,11 +591,9 @@ class Service(pulumi.CustomResource):
600
591
  node="google",
601
592
  port=443)
602
593
  ```
603
- <!--End PulumiCodeChooser -->
604
594
 
605
595
  Register a health-check:
606
596
 
607
- <!--Start PulumiCodeChooser -->
608
597
  ```python
609
598
  import pulumi
610
599
  import pulumi_consul as consul
@@ -635,7 +624,6 @@ class Service(pulumi.CustomResource):
635
624
  ],
636
625
  )])
637
626
  ```
638
- <!--End PulumiCodeChooser -->
639
627
 
640
628
  :param str resource_name: The name of the resource.
641
629
  :param ServiceArgs args: The arguments to use to populate this resource's properties.
@@ -723,7 +711,7 @@ class Service(pulumi.CustomResource):
723
711
  :param pulumi.Input[str] datacenter: The datacenter to use. This overrides the agent's default datacenter and the datacenter in the provider setup.
724
712
  :param pulumi.Input[bool] enable_tag_override: Specifies to disable the anti-entropy feature for this service's tags. Defaults to `false`.
725
713
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] meta: A map of arbitrary KV metadata linked to the service instance.
726
- :param pulumi.Input[str] name: The name of the header.
714
+ :param pulumi.Input[str] name: The name of the service.
727
715
  :param pulumi.Input[str] namespace: The namespace to create the service within.
728
716
  :param pulumi.Input[str] node: The name of the node the to register the service on.
729
717
  :param pulumi.Input[str] partition: The partition the service is associated with.
@@ -799,7 +787,7 @@ class Service(pulumi.CustomResource):
799
787
  @pulumi.getter
800
788
  def name(self) -> pulumi.Output[str]:
801
789
  """
802
- The name of the header.
790
+ The name of the service.
803
791
  """
804
792
  return pulumi.get(self, "name")
805
793
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_consul
3
- Version: 3.12.0a1713461993
3
+ Version: 3.12.0a1713897703
4
4
  Summary: A Pulumi package for creating and managing consul resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
@@ -0,0 +1,70 @@
1
+ pulumi_consul/__init__.py,sha256=WEdXDw8m0r_d5zps4HIp-KZjaIErfJLypM_JVn9whIA,8027
2
+ pulumi_consul/_inputs.py,sha256=VJByst-fIE19jbgoNEvXuyQJN74w7ICOyvq13ZexjCI,217105
3
+ pulumi_consul/_utilities.py,sha256=b6gJn0IIeM1t6Q7EVjqw3yhuGyP-uENQhtL5yp7aHR8,9248
4
+ pulumi_consul/acl_auth_method.py,sha256=TYhT6uOPRcXS3nugKF3umJHjPxeqplGosY_XqcMl0NM,32885
5
+ pulumi_consul/acl_binding_rule.py,sha256=qoMrO-kFxOlCiYmtZRcaNkI6deNTNo7Cu6vM3Ll8nHo,22734
6
+ pulumi_consul/acl_policy.py,sha256=0z0_E08Zb8s0EE3lFtveE0t4ns47Dqj5b3IRGe4DpQE,15624
7
+ pulumi_consul/acl_role.py,sha256=NAz5WiFWotX2_ZCADkFC0OVtaacpIe_wLEl6IUz8OFs,23952
8
+ pulumi_consul/acl_role_policy_attachment.py,sha256=Adk9-dTzl9uiXhmk1aT_tZSmIJfLJiHTUWYSzN8pUWM,8541
9
+ pulumi_consul/acl_token.py,sha256=yoMk7_ERtjigdtcPbTvIjKSWUyqD0lX3qjHkLJ4yi5s,31321
10
+ pulumi_consul/acl_token_policy_attachment.py,sha256=glF99m1ImmIG7uyNOQyRNR24D1cTrsayKh-e3ANXrm8,8508
11
+ pulumi_consul/acl_token_role_attachment.py,sha256=3o1wjCqBWTVQGK-PNLQswAt8rVjiHwoUPmcvMYdHrM8,7757
12
+ pulumi_consul/admin_partition.py,sha256=2y0RX2FArESVxwhB8xkUmcx6UAlTWpdzPiuVuO5CmJ4,8589
13
+ pulumi_consul/agent_service.py,sha256=dElBoSCeo_3d7uut7rBQV4AGmGMm56sH5PivFwQAZtw,12987
14
+ pulumi_consul/autopilot_config.py,sha256=g_N2ZqciXVA-H4kD5vZExAsABfawil-5KOpJmo41W7A,28023
15
+ pulumi_consul/catalog_entry.py,sha256=SgNXcjc-AJRZOW8mxOu8Yx4Nqpk5TJBfIRTBdikraZA,17763
16
+ pulumi_consul/certificate_authority.py,sha256=KV0uvGM4e4yC7zgoh0_DhwhyVolNvGU6F_4r8bsMkU0,14385
17
+ pulumi_consul/config_entry.py,sha256=QjMjGua9IGQvYSlAoN0Lxd8dCJrIPakfsCMx2-G-1PE,30488
18
+ pulumi_consul/config_entry_service_defaults.py,sha256=wSyKQVZieDuLJQd64denFq1C-1aVn3jeVyJOohMrZ5k,52869
19
+ pulumi_consul/config_entry_service_intentions.py,sha256=ym6dvGNUvJboSrtvIHM4QE_y7V_1NF4ev0Y4kbh0AjY,22185
20
+ pulumi_consul/config_entry_service_resolver.py,sha256=8pet5lVdnuMOkaDpJkQnQRqW1_N1-3_fTwsAfN41Ccs,35410
21
+ pulumi_consul/config_entry_service_router.py,sha256=ANW6NOgPxk2nyc5k3rXfEbHpnnNdU5JVsp1FhiUSNPA,14342
22
+ pulumi_consul/config_entry_service_splitter.py,sha256=Yj57zIzBC5l1LpVXVLNwK2UCHuhdjUciqHq6dzFOvD8,20220
23
+ pulumi_consul/get_acl_auth_method.py,sha256=9b56fzKS3TQTKM93R-E30Xc5sGXS-lGYR-wIF3dypLc,9505
24
+ pulumi_consul/get_acl_policy.py,sha256=LFQlcq2jS7ptdGTWr9Dos9Wq64gqeTv8GNM4G88SNVU,5926
25
+ pulumi_consul/get_acl_role.py,sha256=Rcbne_FKhB2lNSQEj5P87n68uO9hjGRWDx-IJZC-x2o,7581
26
+ pulumi_consul/get_acl_token.py,sha256=7n2WTxRrF-zrYQRmFfy4jLXYjsLsoCQ5s81gVqvEKwU,9808
27
+ pulumi_consul/get_acl_token_secret_id.py,sha256=tQYhYIWXmNT6VP_zimJDetb3PXW8-oBZdn5KqYmDQkg,6869
28
+ pulumi_consul/get_agent_config.py,sha256=F6Khi2DZQROdaxOQVNe2iJtVXroLDICQfQ3t_shRodE,5959
29
+ pulumi_consul/get_agent_self.py,sha256=-cw13p0lRJLyj8qvQp06ZZ5c18JatSdw1am6QoJZqnE,43212
30
+ pulumi_consul/get_autopilot_health.py,sha256=WKtlV88Q7C3JHVaHa6Sa7p7aXeggEXfQaLQXz3ZVwRY,5266
31
+ pulumi_consul/get_catalog_nodes.py,sha256=nZZIzVkm74PtG34IlKugBZnX3adeQyOSNmoZz_mHKIE,5881
32
+ pulumi_consul/get_catalog_service.py,sha256=yqx5jEJHt-lvAodRu-jgEOeSMr8PS_EqdzDQpvDM8oY,9233
33
+ pulumi_consul/get_catalog_services.py,sha256=gGR6oN9YncIZSrYY-duOTDChzj5ubje0wMrWVlSzEDE,7110
34
+ pulumi_consul/get_config_entry.py,sha256=8pHLWLT5RUVPiJj5zU2VV1xkGsT9JpLsmVwxeqbEpzE,5478
35
+ pulumi_consul/get_datacenters.py,sha256=WNivbaPSVbCtwHtvdRjljUti1YWaOJtqxBBc-_7IFEc,2669
36
+ pulumi_consul/get_key_prefix.py,sha256=1Xk9NzX3JRGVqFhWMls1EG3eJaqu0LbFyBhhZCcpYlY,10511
37
+ pulumi_consul/get_keys.py,sha256=019DmVUvluUJCaY9SX5hdNdrRFfj6iKgg5zIWaPDx7U,9391
38
+ pulumi_consul/get_network_area_members.py,sha256=N3Ub1clQq_YXSjWfeiMUQHwVYKKfuP2-z4VyDPVmNnc,6466
39
+ pulumi_consul/get_network_segments.py,sha256=-DGSkdohpMeFu8RqvVSytCKbWIbUO4KIC2P-B1Ao0sY,5343
40
+ pulumi_consul/get_nodes.py,sha256=ZcKZWIWuWgclQGj4QYTqKdhvQcSI_rxYZrlBakLRvsA,5359
41
+ pulumi_consul/get_peering.py,sha256=Bcpy_TCMVuHrmzWWM5GRTLiaZq5gGJuZYcis9JCMraE,6300
42
+ pulumi_consul/get_peerings.py,sha256=EX1J_eQf01voOEvPB2IuWV6HNdvTeTpn_bbuY0gQ9QQ,3024
43
+ pulumi_consul/get_service.py,sha256=HV1p2U59QDgDbq5jzpF3R0ProYET9xM-zxvu_3urIjE,8631
44
+ pulumi_consul/get_service_health.py,sha256=2CCrunPsyCDOjmcJXhGmSIJSMc6a-0vlvuiEAVJ80Dw,10133
45
+ pulumi_consul/get_services.py,sha256=2YIBv7zSuGuiGvFotifO_193lcuwPim6Us_IGTKPD8g,6571
46
+ pulumi_consul/intention.py,sha256=naX-vekDSLky5qeApRsqjCxralnpkcyBp-upO3fUd3g,25830
47
+ pulumi_consul/key_prefix.py,sha256=Yf1q4dm5Acq4Awk6Eh9opgiFrVk1a-3RcYbO-wlxU8k,26215
48
+ pulumi_consul/keys.py,sha256=pSGIYmA6ek1qIgbMKaIhzS2Tfpy4HC9PJgaqzkRCR7I,17869
49
+ pulumi_consul/license.py,sha256=OMJsth0jpRMssJjJ64UTUZSdm8eXD_DJA40Wliy0MmI,19879
50
+ pulumi_consul/namespace.py,sha256=CJZE9TgWD0bdKndmb8hlyyWIttNUPJou0k5LJBjyK2E,18021
51
+ pulumi_consul/namespace_policy_attachment.py,sha256=0qlJ92SJLDdocHj8dmm0cd1LAqF-IlB5FouYhUOyATo,8200
52
+ pulumi_consul/namespace_role_attachment.py,sha256=-xlic3f_MQ7JN0i0aNPEvSD7pT8vzrM0fvlUB7KLOoY,8052
53
+ pulumi_consul/network_area.py,sha256=YmboKpGWDpugJ79JXiBrIRJy50m5zHwKgL48Bf0909U,19676
54
+ pulumi_consul/node.py,sha256=yHmlQrpuPQ7250pjl3voR_csUlZmHpQC3EWF9WZtBC4,18005
55
+ pulumi_consul/outputs.py,sha256=QoiPqPKtAGnSzYPxu0m5ylL7k397wovPzQEmyTEpoWU,234783
56
+ pulumi_consul/peering.py,sha256=B2_vXke9-rZ2IiFiQRddhW8lDJex8PFtMFqzR5IR6Rc,20322
57
+ pulumi_consul/peering_token.py,sha256=DMm2gBJ2DaTygdsX99QpXxJaMmdqzEazpm7i2e8P1H8,14065
58
+ pulumi_consul/prepared_query.py,sha256=FZk5ErrLld89cHMEEgk1jNoJL9wbPP_KDSyTEuPz8gM,54153
59
+ pulumi_consul/provider.py,sha256=1xhCm2DWQ1CuCIy7sDnl_lzHDj4wtS2mc3OH7vQaToU,24679
60
+ pulumi_consul/pulumi-plugin.json,sha256=VXjlQuI-OEXhtFLQdyJ645kCumRQ-G5oWRM1hutS4zM,43
61
+ pulumi_consul/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
62
+ pulumi_consul/service.py,sha256=0d-xn84DWLG-BRGFXupJXnoMRXaQ_yrtf9CR49o0WIo,34669
63
+ pulumi_consul/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
64
+ pulumi_consul/config/__init__.pyi,sha256=Xr56VkEbCA8jXnSDMCxONcnilMpQdAHs6-imo_c-TBU,2587
65
+ pulumi_consul/config/outputs.py,sha256=gDtRkTfR9uCq26RXew73SpJWdrCejHeWHhoL5--_LW4,3384
66
+ pulumi_consul/config/vars.py,sha256=SXNUccmf6RtLkyaTd4mMknJtP2rlISHxMcq4PUHRgpg,4255
67
+ pulumi_consul-3.12.0a1713897703.dist-info/METADATA,sha256=YUBqTG1L_Kah6kQ3prhK5zYMfjBlqIyuGp2Qcf1bl20,3944
68
+ pulumi_consul-3.12.0a1713897703.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
69
+ pulumi_consul-3.12.0a1713897703.dist-info/top_level.txt,sha256=SrKSXrIq8AWqnNKrd7pWSC691idGwXi9XMA-DTWwcfg,14
70
+ pulumi_consul-3.12.0a1713897703.dist-info/RECORD,,
@@ -1,70 +0,0 @@
1
- pulumi_consul/__init__.py,sha256=WEdXDw8m0r_d5zps4HIp-KZjaIErfJLypM_JVn9whIA,8027
2
- pulumi_consul/_inputs.py,sha256=Y0SM0tucOqZ0WhBtR2ozXTkoALk9fqpGJaqTrlpM_D8,217041
3
- pulumi_consul/_utilities.py,sha256=b6gJn0IIeM1t6Q7EVjqw3yhuGyP-uENQhtL5yp7aHR8,9248
4
- pulumi_consul/acl_auth_method.py,sha256=ap1yijkcUcrx2elpsdVaV63SdKJmVCG6F5fZ5Ibf9C8,33197
5
- pulumi_consul/acl_binding_rule.py,sha256=3qwDV65ah76CY5uw8e08BPyxDBhGR9wl1vb1EJyrdTM,22890
6
- pulumi_consul/acl_policy.py,sha256=6AxeqGCua8pEoHL9fwKHGyTwPbWD5p3mKN1wcfwjVOE,15780
7
- pulumi_consul/acl_role.py,sha256=vJH_cNLh51zT72VGpkcyBjEjwDuAdYGhw8jkrzhL9Pc,24262
8
- pulumi_consul/acl_role_policy_attachment.py,sha256=jkQ4nKBymEdKwIeG4O7Y_L8TX4ItG6vUYQOHfMIsD6k,8697
9
- pulumi_consul/acl_token.py,sha256=iiN3YNJTvknBwaaSKnesHa3-xQBFi88ptfrLhWPYMEg,31477
10
- pulumi_consul/acl_token_policy_attachment.py,sha256=glF99m1ImmIG7uyNOQyRNR24D1cTrsayKh-e3ANXrm8,8508
11
- pulumi_consul/acl_token_role_attachment.py,sha256=3o1wjCqBWTVQGK-PNLQswAt8rVjiHwoUPmcvMYdHrM8,7757
12
- pulumi_consul/admin_partition.py,sha256=ouLvdEjCD9Te-E3jZ9koe2ibYEEMouHdP0LKf56P2c0,8745
13
- pulumi_consul/agent_service.py,sha256=09t4h17wP-Cc9mKUPlGfCG2dl7gO9RcaD8xXAAjhSy0,13143
14
- pulumi_consul/autopilot_config.py,sha256=cVfU9Mh4dSqxAtqNw5mSZwF7IlXiIH-UsyW8Fl8ZYV0,28179
15
- pulumi_consul/catalog_entry.py,sha256=SgNXcjc-AJRZOW8mxOu8Yx4Nqpk5TJBfIRTBdikraZA,17763
16
- pulumi_consul/certificate_authority.py,sha256=KV0uvGM4e4yC7zgoh0_DhwhyVolNvGU6F_4r8bsMkU0,14385
17
- pulumi_consul/config_entry.py,sha256=yYEyBAmJ09nybDAD8ep53FsF2KiMwvEUNb2jVSqPZAk,31424
18
- pulumi_consul/config_entry_service_defaults.py,sha256=NEWQuq9H4yZfgem7wyss5Zx8c9d7W40pFYWjgdv75d0,52638
19
- pulumi_consul/config_entry_service_intentions.py,sha256=Iqfduf4Gxajw_o6ipnIHF6kaDfFlH9a2j58JHEQs4vE,22782
20
- pulumi_consul/config_entry_service_resolver.py,sha256=ABiARU3GKivFvShRfkJJvqToSjnGvYtv1Xrh2C_PUyc,35993
21
- pulumi_consul/config_entry_service_router.py,sha256=LDmq_VFotxiktmZPUcHs3OVGhQphIE2HIVhIEwbNqmY,14846
22
- pulumi_consul/config_entry_service_splitter.py,sha256=QDO0CPbaI6BMVN8q8DPb3Y6RWW9Le7owejB_4PAedyU,20558
23
- pulumi_consul/get_acl_auth_method.py,sha256=DCcl53wetlkmDw5HHrvPCKq8llPN4e1GarQkXJzZwcI,9645
24
- pulumi_consul/get_acl_policy.py,sha256=GPoln4Z9pJMG9nVYegoJf_XyI7pMGI1dWzaDVSiwX44,6066
25
- pulumi_consul/get_acl_role.py,sha256=UTkbbvlf7OXlLK7n2ysm9AzNxjYPZG8KSbY7p_lyzbo,7627
26
- pulumi_consul/get_acl_token.py,sha256=1nnw-g3CIxH1l9WRrv9NhzrQUcsA4mPxjdgXDkU_bsU,9948
27
- pulumi_consul/get_acl_token_secret_id.py,sha256=L9oObkcJZzmpfBSkPC_GY76RAdLbF21RlTe-_ALUTfM,7009
28
- pulumi_consul/get_agent_config.py,sha256=6DY5BK6_DTGkNz3Z-ghSy9qpyhrgMoOGA8zlmkRttxw,6099
29
- pulumi_consul/get_agent_self.py,sha256=-cw13p0lRJLyj8qvQp06ZZ5c18JatSdw1am6QoJZqnE,43212
30
- pulumi_consul/get_autopilot_health.py,sha256=5891L7T78VCuGE_VLh0VD3TZBgnu-elyTRwtQrjUSSA,5406
31
- pulumi_consul/get_catalog_nodes.py,sha256=nZZIzVkm74PtG34IlKugBZnX3adeQyOSNmoZz_mHKIE,5881
32
- pulumi_consul/get_catalog_service.py,sha256=CJX-xTW3FXuQaCaUmCWatSODohAV12PTFvb0_kclpKI,9743
33
- pulumi_consul/get_catalog_services.py,sha256=IQUgyAZUF76uSJu8k5CZFVS45oZ6-_3jYgKN0cDmzgY,7250
34
- pulumi_consul/get_config_entry.py,sha256=8pHLWLT5RUVPiJj5zU2VV1xkGsT9JpLsmVwxeqbEpzE,5478
35
- pulumi_consul/get_datacenters.py,sha256=WNivbaPSVbCtwHtvdRjljUti1YWaOJtqxBBc-_7IFEc,2669
36
- pulumi_consul/get_key_prefix.py,sha256=9luqabLKQGFu7d2yrbNQ87nX05MwLoxyVd2aQQppIQQ,10791
37
- pulumi_consul/get_keys.py,sha256=EsGvkGfesKzvQrt0nEwFRyDriBqpvRMKgs6RbzXW3bE,9531
38
- pulumi_consul/get_network_area_members.py,sha256=RIZ1wwj--1RUyjh5klJAWKmHW-GPjYyb3G1rlOES_E0,6606
39
- pulumi_consul/get_network_segments.py,sha256=mbX8yTODjbjm7HnAlVsZywn2CfAHkxvYoF3LLCde75A,5483
40
- pulumi_consul/get_nodes.py,sha256=ZcKZWIWuWgclQGj4QYTqKdhvQcSI_rxYZrlBakLRvsA,5359
41
- pulumi_consul/get_peering.py,sha256=UQFjDdpWxfWglJ-7t1BH6zwu1pkS_nVJ3cSVpuZu-Ag,6440
42
- pulumi_consul/get_peerings.py,sha256=NS1nnjxppR2aYqs_vS_EAhStZ8c4bAg7EhUXjFuoPsc,3164
43
- pulumi_consul/get_service.py,sha256=Pua_G1c8hI89kOVQMrDDUaQuBzSGr0O6Nr7DI_ihIis,9141
44
- pulumi_consul/get_service_health.py,sha256=2CCrunPsyCDOjmcJXhGmSIJSMc6a-0vlvuiEAVJ80Dw,10133
45
- pulumi_consul/get_services.py,sha256=qJF1Ye4cSz1Of5WUEOsNRuG9bzmLe9rYg27oVIQ8tVo,6711
46
- pulumi_consul/intention.py,sha256=sl8aMVxLnoguuiDOC5dx599pjAbqR6dRZ3pXYhSFTLk,26142
47
- pulumi_consul/key_prefix.py,sha256=pZ2mXNgEobahSOEgyQX1i5ec0-IzaKC6ottLVYWRZlg,26371
48
- pulumi_consul/keys.py,sha256=kSsD5wO_dRMIFTIp-K80dsg1AtxUbhFJY1AU5TR3Mk4,18025
49
- pulumi_consul/license.py,sha256=s39VtXAVb9fTw7eXglzBY0Nwt-7YwTXHYdAFqX5s6h8,20035
50
- pulumi_consul/namespace.py,sha256=t8K7c07cxNrN-wbW0so7owfWfkWRizwjH5H2dFHXneY,18177
51
- pulumi_consul/namespace_policy_attachment.py,sha256=0qlJ92SJLDdocHj8dmm0cd1LAqF-IlB5FouYhUOyATo,8200
52
- pulumi_consul/namespace_role_attachment.py,sha256=-xlic3f_MQ7JN0i0aNPEvSD7pT8vzrM0fvlUB7KLOoY,8052
53
- pulumi_consul/network_area.py,sha256=_JuwzK8mj1cxHqoqIb9T_qrX0MEOGO4Cnx3f4KelV8g,19832
54
- pulumi_consul/node.py,sha256=G6Z__hr1SbK2OkziFLCdbQWNl-flcm4R99vOVUJxYhw,18161
55
- pulumi_consul/outputs.py,sha256=dwKmGFjl7cIpJvBW6p5Qwkdqgz8q3iEKsl3VKEOPV_k,234719
56
- pulumi_consul/peering.py,sha256=FusDc39drMqHZRJZ-J-uZwEdo34u1Lpwz0H-62CX8hE,20478
57
- pulumi_consul/peering_token.py,sha256=c1fFWbNBqKnNQmEt4U3mGZ9Mr5c5e2j2hnw0o4yHGqw,14221
58
- pulumi_consul/prepared_query.py,sha256=ftUn6Utg4msYA6PwTRV0HjKUO19vzVebkhZlEiZ9fSs,53966
59
- pulumi_consul/provider.py,sha256=1xhCm2DWQ1CuCIy7sDnl_lzHDj4wtS2mc3OH7vQaToU,24679
60
- pulumi_consul/pulumi-plugin.json,sha256=VXjlQuI-OEXhtFLQdyJ645kCumRQ-G5oWRM1hutS4zM,43
61
- pulumi_consul/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
62
- pulumi_consul/service.py,sha256=3k0QxNS1U-_HXQ5yX-U8pi44iH-Pv_3G3_STbt5gZ8U,35130
63
- pulumi_consul/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
64
- pulumi_consul/config/__init__.pyi,sha256=Xr56VkEbCA8jXnSDMCxONcnilMpQdAHs6-imo_c-TBU,2587
65
- pulumi_consul/config/outputs.py,sha256=gDtRkTfR9uCq26RXew73SpJWdrCejHeWHhoL5--_LW4,3384
66
- pulumi_consul/config/vars.py,sha256=SXNUccmf6RtLkyaTd4mMknJtP2rlISHxMcq4PUHRgpg,4255
67
- pulumi_consul-3.12.0a1713461993.dist-info/METADATA,sha256=wcLBKYvs9U_gUusMJ88Wh_re4MBtn2pJVum8peT_Kdk,3944
68
- pulumi_consul-3.12.0a1713461993.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
69
- pulumi_consul-3.12.0a1713461993.dist-info/top_level.txt,sha256=SrKSXrIq8AWqnNKrd7pWSC691idGwXi9XMA-DTWwcfg,14
70
- pulumi_consul-3.12.0a1713461993.dist-info/RECORD,,