pulumi-consul 3.13.0a1728451349__py3-none-any.whl → 3.13.0a1728590457__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.
Potentially problematic release.
This version of pulumi-consul might be problematic. Click here for more details.
- pulumi_consul/_inputs.py +1571 -8
- pulumi_consul/_utilities.py +1 -1
- pulumi_consul/acl_auth_method.py +5 -0
- pulumi_consul/acl_binding_rule.py +5 -0
- pulumi_consul/acl_policy.py +5 -0
- pulumi_consul/acl_role.py +5 -0
- pulumi_consul/acl_role_policy_attachment.py +5 -0
- pulumi_consul/acl_token.py +5 -0
- pulumi_consul/acl_token_policy_attachment.py +5 -0
- pulumi_consul/acl_token_role_attachment.py +5 -0
- pulumi_consul/admin_partition.py +5 -0
- pulumi_consul/agent_service.py +5 -0
- pulumi_consul/autopilot_config.py +5 -0
- pulumi_consul/catalog_entry.py +5 -0
- pulumi_consul/certificate_authority.py +5 -0
- pulumi_consul/config/__init__.pyi +5 -0
- pulumi_consul/config/outputs.py +5 -0
- pulumi_consul/config/vars.py +5 -0
- pulumi_consul/config_entry.py +5 -0
- pulumi_consul/config_entry_service_defaults.py +5 -0
- pulumi_consul/config_entry_service_intentions.py +5 -0
- pulumi_consul/config_entry_service_resolver.py +5 -0
- pulumi_consul/config_entry_service_router.py +5 -0
- pulumi_consul/config_entry_service_splitter.py +5 -0
- pulumi_consul/config_entry_v2_exported_services.py +5 -0
- pulumi_consul/get_acl_auth_method.py +24 -4
- pulumi_consul/get_acl_policy.py +19 -4
- pulumi_consul/get_acl_role.py +21 -4
- pulumi_consul/get_acl_token.py +24 -4
- pulumi_consul/get_acl_token_secret_id.py +20 -4
- pulumi_consul/get_agent_config.py +16 -4
- pulumi_consul/get_agent_self.py +81 -4
- pulumi_consul/get_autopilot_health.py +15 -4
- pulumi_consul/get_catalog_nodes.py +16 -4
- pulumi_consul/get_catalog_service.py +21 -4
- pulumi_consul/get_catalog_services.py +16 -4
- pulumi_consul/get_config_entry.py +19 -4
- pulumi_consul/get_config_entry_v2_exported_services.py +26 -4
- pulumi_consul/get_datacenters.py +11 -4
- pulumi_consul/get_key_prefix.py +24 -4
- pulumi_consul/get_keys.py +23 -4
- pulumi_consul/get_network_area_members.py +17 -4
- pulumi_consul/get_network_segments.py +15 -4
- pulumi_consul/get_nodes.py +16 -4
- pulumi_consul/get_peering.py +21 -4
- pulumi_consul/get_peerings.py +13 -4
- pulumi_consul/get_service.py +21 -4
- pulumi_consul/get_service_health.py +27 -4
- pulumi_consul/get_services.py +16 -4
- pulumi_consul/intention.py +5 -0
- pulumi_consul/key_prefix.py +5 -0
- pulumi_consul/keys.py +5 -0
- pulumi_consul/license.py +5 -0
- pulumi_consul/namespace.py +5 -0
- pulumi_consul/namespace_policy_attachment.py +5 -0
- pulumi_consul/namespace_role_attachment.py +5 -0
- pulumi_consul/network_area.py +5 -0
- pulumi_consul/node.py +5 -0
- pulumi_consul/outputs.py +5 -0
- pulumi_consul/peering.py +5 -0
- pulumi_consul/peering_token.py +5 -0
- pulumi_consul/prepared_query.py +5 -0
- pulumi_consul/provider.py +5 -0
- pulumi_consul/pulumi-plugin.json +1 -1
- pulumi_consul/service.py +5 -0
- {pulumi_consul-3.13.0a1728451349.dist-info → pulumi_consul-3.13.0a1728590457.dist-info}/METADATA +3 -2
- pulumi_consul-3.13.0a1728590457.dist-info/RECORD +72 -0
- pulumi_consul-3.13.0a1728451349.dist-info/RECORD +0 -72
- {pulumi_consul-3.13.0a1728451349.dist-info → pulumi_consul-3.13.0a1728590457.dist-info}/WHEEL +0 -0
- {pulumi_consul-3.13.0a1728451349.dist-info → pulumi_consul-3.13.0a1728590457.dist-info}/top_level.txt +0 -0
pulumi_consul/get_peering.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__ = [
|
|
@@ -155,9 +160,6 @@ def get_peering(partition: Optional[str] = None,
|
|
|
155
160
|
peer_server_addresses=pulumi.get(__ret__, 'peer_server_addresses'),
|
|
156
161
|
peer_server_name=pulumi.get(__ret__, 'peer_server_name'),
|
|
157
162
|
state=pulumi.get(__ret__, 'state'))
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
@_utilities.lift_output_func(get_peering)
|
|
161
163
|
def get_peering_output(partition: Optional[pulumi.Input[Optional[str]]] = None,
|
|
162
164
|
peer_name: Optional[pulumi.Input[str]] = None,
|
|
163
165
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetPeeringResult]:
|
|
@@ -171,4 +173,19 @@ def get_peering_output(partition: Optional[pulumi.Input[Optional[str]]] = None,
|
|
|
171
173
|
basic = consul.get_peering(peer_name="peered-cluster")
|
|
172
174
|
```
|
|
173
175
|
"""
|
|
174
|
-
|
|
176
|
+
__args__ = dict()
|
|
177
|
+
__args__['partition'] = partition
|
|
178
|
+
__args__['peerName'] = peer_name
|
|
179
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
180
|
+
__ret__ = pulumi.runtime.invoke_output('consul:index/getPeering:getPeering', __args__, opts=opts, typ=GetPeeringResult)
|
|
181
|
+
return __ret__.apply(lambda __response__: GetPeeringResult(
|
|
182
|
+
deleted_at=pulumi.get(__response__, 'deleted_at'),
|
|
183
|
+
id=pulumi.get(__response__, 'id'),
|
|
184
|
+
meta=pulumi.get(__response__, 'meta'),
|
|
185
|
+
partition=pulumi.get(__response__, 'partition'),
|
|
186
|
+
peer_ca_pems=pulumi.get(__response__, 'peer_ca_pems'),
|
|
187
|
+
peer_id=pulumi.get(__response__, 'peer_id'),
|
|
188
|
+
peer_name=pulumi.get(__response__, 'peer_name'),
|
|
189
|
+
peer_server_addresses=pulumi.get(__response__, 'peer_server_addresses'),
|
|
190
|
+
peer_server_name=pulumi.get(__response__, 'peer_server_name'),
|
|
191
|
+
state=pulumi.get(__response__, 'state')))
|
pulumi_consul/get_peerings.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
|
|
|
@@ -84,9 +89,6 @@ def get_peerings(partition: Optional[str] = None,
|
|
|
84
89
|
id=pulumi.get(__ret__, 'id'),
|
|
85
90
|
partition=pulumi.get(__ret__, 'partition'),
|
|
86
91
|
peers=pulumi.get(__ret__, 'peers'))
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
@_utilities.lift_output_func(get_peerings)
|
|
90
92
|
def get_peerings_output(partition: Optional[pulumi.Input[Optional[str]]] = None,
|
|
91
93
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetPeeringsResult]:
|
|
92
94
|
"""
|
|
@@ -99,4 +101,11 @@ def get_peerings_output(partition: Optional[pulumi.Input[Optional[str]]] = None,
|
|
|
99
101
|
peers = consul.get_peerings()
|
|
100
102
|
```
|
|
101
103
|
"""
|
|
102
|
-
|
|
104
|
+
__args__ = dict()
|
|
105
|
+
__args__['partition'] = partition
|
|
106
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
107
|
+
__ret__ = pulumi.runtime.invoke_output('consul:index/getPeerings:getPeerings', __args__, opts=opts, typ=GetPeeringsResult)
|
|
108
|
+
return __ret__.apply(lambda __response__: GetPeeringsResult(
|
|
109
|
+
id=pulumi.get(__response__, 'id'),
|
|
110
|
+
partition=pulumi.get(__response__, 'partition'),
|
|
111
|
+
peers=pulumi.get(__response__, 'peers')))
|
pulumi_consul/get_service.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 *
|
|
@@ -172,9 +177,6 @@ def get_service(datacenter: Optional[str] = None,
|
|
|
172
177
|
query_options=pulumi.get(__ret__, 'query_options'),
|
|
173
178
|
services=pulumi.get(__ret__, 'services'),
|
|
174
179
|
tag=pulumi.get(__ret__, 'tag'))
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
@_utilities.lift_output_func(get_service)
|
|
178
180
|
def get_service_output(datacenter: Optional[pulumi.Input[Optional[str]]] = None,
|
|
179
181
|
filter: Optional[pulumi.Input[Optional[str]]] = None,
|
|
180
182
|
name: Optional[pulumi.Input[str]] = None,
|
|
@@ -216,4 +218,19 @@ def get_service_output(datacenter: Optional[pulumi.Input[Optional[str]]] = None,
|
|
|
216
218
|
:param str tag: A single tag that can be used to filter the list of nodes
|
|
217
219
|
to return based on a single matching tag..
|
|
218
220
|
"""
|
|
219
|
-
|
|
221
|
+
__args__ = dict()
|
|
222
|
+
__args__['datacenter'] = datacenter
|
|
223
|
+
__args__['filter'] = filter
|
|
224
|
+
__args__['name'] = name
|
|
225
|
+
__args__['queryOptions'] = query_options
|
|
226
|
+
__args__['tag'] = tag
|
|
227
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
228
|
+
__ret__ = pulumi.runtime.invoke_output('consul:index/getService:getService', __args__, opts=opts, typ=GetServiceResult)
|
|
229
|
+
return __ret__.apply(lambda __response__: GetServiceResult(
|
|
230
|
+
datacenter=pulumi.get(__response__, 'datacenter'),
|
|
231
|
+
filter=pulumi.get(__response__, 'filter'),
|
|
232
|
+
id=pulumi.get(__response__, 'id'),
|
|
233
|
+
name=pulumi.get(__response__, 'name'),
|
|
234
|
+
query_options=pulumi.get(__response__, 'query_options'),
|
|
235
|
+
services=pulumi.get(__response__, 'services'),
|
|
236
|
+
tag=pulumi.get(__response__, 'tag')))
|
|
@@ -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
|
|
|
@@ -207,9 +212,6 @@ def get_service_health(datacenter: Optional[str] = None,
|
|
|
207
212
|
results=pulumi.get(__ret__, 'results'),
|
|
208
213
|
tag=pulumi.get(__ret__, 'tag'),
|
|
209
214
|
wait_for=pulumi.get(__ret__, 'wait_for'))
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
@_utilities.lift_output_func(get_service_health)
|
|
213
215
|
def get_service_health_output(datacenter: Optional[pulumi.Input[Optional[str]]] = None,
|
|
214
216
|
filter: Optional[pulumi.Input[Optional[str]]] = None,
|
|
215
217
|
name: Optional[pulumi.Input[str]] = None,
|
|
@@ -242,4 +244,25 @@ def get_service_health_output(datacenter: Optional[pulumi.Input[Optional[str]]]
|
|
|
242
244
|
:param str tag: A single tag that can be used to filter the list to return
|
|
243
245
|
based on a single matching tag.
|
|
244
246
|
"""
|
|
245
|
-
|
|
247
|
+
__args__ = dict()
|
|
248
|
+
__args__['datacenter'] = datacenter
|
|
249
|
+
__args__['filter'] = filter
|
|
250
|
+
__args__['name'] = name
|
|
251
|
+
__args__['near'] = near
|
|
252
|
+
__args__['nodeMeta'] = node_meta
|
|
253
|
+
__args__['passing'] = passing
|
|
254
|
+
__args__['tag'] = tag
|
|
255
|
+
__args__['waitFor'] = wait_for
|
|
256
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
257
|
+
__ret__ = pulumi.runtime.invoke_output('consul:index/getServiceHealth:getServiceHealth', __args__, opts=opts, typ=GetServiceHealthResult)
|
|
258
|
+
return __ret__.apply(lambda __response__: GetServiceHealthResult(
|
|
259
|
+
datacenter=pulumi.get(__response__, 'datacenter'),
|
|
260
|
+
filter=pulumi.get(__response__, 'filter'),
|
|
261
|
+
id=pulumi.get(__response__, 'id'),
|
|
262
|
+
name=pulumi.get(__response__, 'name'),
|
|
263
|
+
near=pulumi.get(__response__, 'near'),
|
|
264
|
+
node_meta=pulumi.get(__response__, 'node_meta'),
|
|
265
|
+
passing=pulumi.get(__response__, 'passing'),
|
|
266
|
+
results=pulumi.get(__response__, 'results'),
|
|
267
|
+
tag=pulumi.get(__response__, 'tag'),
|
|
268
|
+
wait_for=pulumi.get(__response__, 'wait_for')))
|
pulumi_consul/get_services.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 *
|
|
@@ -142,9 +147,6 @@ def get_services(query_options: Optional[Sequence[Union['GetServicesQueryOptionA
|
|
|
142
147
|
query_options=pulumi.get(__ret__, 'query_options'),
|
|
143
148
|
services=pulumi.get(__ret__, 'services'),
|
|
144
149
|
tags=pulumi.get(__ret__, 'tags'))
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
@_utilities.lift_output_func(get_services)
|
|
148
150
|
def get_services_output(query_options: Optional[pulumi.Input[Optional[Sequence[Union['GetServicesQueryOptionArgs', 'GetServicesQueryOptionArgsDict']]]]] = None,
|
|
149
151
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetServicesResult]:
|
|
150
152
|
"""
|
|
@@ -175,4 +177,14 @@ def get_services_output(query_options: Optional[pulumi.Input[Optional[Sequence[U
|
|
|
175
177
|
|
|
176
178
|
:param Sequence[Union['GetServicesQueryOptionArgs', 'GetServicesQueryOptionArgsDict']] query_options: See below.
|
|
177
179
|
"""
|
|
178
|
-
|
|
180
|
+
__args__ = dict()
|
|
181
|
+
__args__['queryOptions'] = query_options
|
|
182
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
183
|
+
__ret__ = pulumi.runtime.invoke_output('consul:index/getServices:getServices', __args__, opts=opts, typ=GetServicesResult)
|
|
184
|
+
return __ret__.apply(lambda __response__: GetServicesResult(
|
|
185
|
+
datacenter=pulumi.get(__response__, 'datacenter'),
|
|
186
|
+
id=pulumi.get(__response__, 'id'),
|
|
187
|
+
names=pulumi.get(__response__, 'names'),
|
|
188
|
+
query_options=pulumi.get(__response__, 'query_options'),
|
|
189
|
+
services=pulumi.get(__response__, 'services'),
|
|
190
|
+
tags=pulumi.get(__response__, 'tags')))
|
pulumi_consul/intention.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__ = ['IntentionArgs', 'Intention']
|
pulumi_consul/key_prefix.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 *
|
pulumi_consul/keys.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 *
|
pulumi_consul/license.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__ = ['LicenseArgs', 'License']
|
pulumi_consul/namespace.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__ = ['NamespaceArgs', 'Namespace']
|
|
@@ -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__ = ['NamespacePolicyAttachmentArgs', 'NamespacePolicyAttachment']
|
|
@@ -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__ = ['NamespaceRoleAttachmentArgs', 'NamespaceRoleAttachment']
|
pulumi_consul/network_area.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__ = ['NetworkAreaArgs', 'NetworkArea']
|
pulumi_consul/node.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__ = ['NodeArgs', 'Node']
|
pulumi_consul/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
|
|
pulumi_consul/peering.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__ = ['PeeringArgs', 'Peering']
|
pulumi_consul/peering_token.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__ = ['PeeringTokenArgs', 'PeeringToken']
|
pulumi_consul/prepared_query.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 *
|
pulumi_consul/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_consul/pulumi-plugin.json
CHANGED
pulumi_consul/service.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 *
|
{pulumi_consul-3.13.0a1728451349.dist-info → pulumi_consul-3.13.0a1728590457.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pulumi_consul
|
|
3
|
-
Version: 3.13.
|
|
3
|
+
Version: 3.13.0a1728590457
|
|
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
|
|
@@ -9,8 +9,9 @@ Keywords: pulumi,consul
|
|
|
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-consul/actions)
|
|
16
17
|
[](https://slack.pulumi.com)
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
pulumi_consul/__init__.py,sha256=Pt7eaNDHQaFtqd8PvL3XabtrN5K7M-kUemQUZf2HUbE,8359
|
|
2
|
+
pulumi_consul/_inputs.py,sha256=9ylGvDfyC5q7S7avI25arRjJQPtpfr6ZtLZAkEfpwIs,283079
|
|
3
|
+
pulumi_consul/_utilities.py,sha256=-gxwnD6__OYdSf8jJgJijNuu-UHUwi5pJ1H7-eIHDhg,10504
|
|
4
|
+
pulumi_consul/acl_auth_method.py,sha256=BwaM-CWgFLBgamfjRAMA9HxmAHj0IaBNR5yGX0edCYs,32777
|
|
5
|
+
pulumi_consul/acl_binding_rule.py,sha256=WCZbZ0ZISgSnWd9XGRjBY1NgqPcqyVi5nf-0Zb34Z0s,23023
|
|
6
|
+
pulumi_consul/acl_policy.py,sha256=Arj03LFA_1Nwj8WNf_KRvCZFgAUZDgoB3pC7L3abzo8,15798
|
|
7
|
+
pulumi_consul/acl_role.py,sha256=Kkkr40kYwhuImnhgAIJcluq5h7inMVp3gpJgohwOrb8,24396
|
|
8
|
+
pulumi_consul/acl_role_policy_attachment.py,sha256=gu92X_xLg8GWeOuR-aLH9rVULZsaqpAndPbgeg8JG00,8715
|
|
9
|
+
pulumi_consul/acl_token.py,sha256=gzt5zbeVTPxYt45pFVlDBkpdtr-T9jHEgx5dVS5ixug,31840
|
|
10
|
+
pulumi_consul/acl_token_policy_attachment.py,sha256=I9e8kH3ADwtKozjanEJv5O5kUxwaYUqEGn8QUHBztLQ,8682
|
|
11
|
+
pulumi_consul/acl_token_role_attachment.py,sha256=5_xBK0HNA1ors7JudHt0OBlgzZI0wDrJIa4-sv6QgJY,7931
|
|
12
|
+
pulumi_consul/admin_partition.py,sha256=gxjJLWbFHrxRk7bgjXxSFpjR57mPWdV2aIkMw6CjKWU,8763
|
|
13
|
+
pulumi_consul/agent_service.py,sha256=yArYs5VBjjfMKB5QV1MSpfjlrePiwN-yYx3J7e7AxI0,13161
|
|
14
|
+
pulumi_consul/autopilot_config.py,sha256=dEHfsLv6ypbsEueCnZABEwsxhWYnrorpPxHOYUbUOPc,28197
|
|
15
|
+
pulumi_consul/catalog_entry.py,sha256=bCq-qGWDVHjaTXjYO4B0Mgx7caaZrqErAAw0EnoEkwE,17413
|
|
16
|
+
pulumi_consul/certificate_authority.py,sha256=tdo5sxQlt1mPaHGLDC0j8IQfxSi1P9aSAwD50x26u44,10598
|
|
17
|
+
pulumi_consul/config_entry.py,sha256=chwcWJK-mB9QVF8Eznd2VMDbEXh-37IG2RpR7YwtJzE,30662
|
|
18
|
+
pulumi_consul/config_entry_service_defaults.py,sha256=pUD1a8qbsZvXk3iCYD9zPOV7TAcl4nOjSFW1-tFB4HU,54213
|
|
19
|
+
pulumi_consul/config_entry_service_intentions.py,sha256=n74fIxCKtfkIB33dVlbY_84rou-0JXH5CJ-OP93H9cw,22274
|
|
20
|
+
pulumi_consul/config_entry_service_resolver.py,sha256=8zbjIUgTR691nvUOBIw1coP2HTuaz0qgbSB47r2s1HY,35912
|
|
21
|
+
pulumi_consul/config_entry_service_router.py,sha256=XrblASG8WQp6Sr3TZeonhkUEledELLwAylwpvv3Abo8,14666
|
|
22
|
+
pulumi_consul/config_entry_service_splitter.py,sha256=cWFBJmfCnMR9VHpWvoOV6eDzWvQuM46kUxDinyz-ScI,19804
|
|
23
|
+
pulumi_consul/config_entry_v2_exported_services.py,sha256=BBLL7yU0IZm4xoHO-BF5Gu1ppM3PJj1Nt6mR7DifVZY,21643
|
|
24
|
+
pulumi_consul/get_acl_auth_method.py,sha256=C1_gi-ksLq1VyCM7ZbRJdk1TYYkh_mfWVQAW5dl5EWY,10592
|
|
25
|
+
pulumi_consul/get_acl_policy.py,sha256=mgta4I73MaB3R8dcuNi_dor_EvmjfmKRinUnzu5Vsgk,6826
|
|
26
|
+
pulumi_consul/get_acl_role.py,sha256=g0u72ti2YumT35TOJ6uEjzlcyshSp9FTZOk2SfJ_6Tg,8639
|
|
27
|
+
pulumi_consul/get_acl_token.py,sha256=ZtdkhgAntWWK5PYPGousA5wk8X56a9JUMl7cwRYBom8,11063
|
|
28
|
+
pulumi_consul/get_acl_token_secret_id.py,sha256=DJ7rSXA8Xmdz-27wHa6Ow7xDzJ2NSesKESngRlEVlTw,7864
|
|
29
|
+
pulumi_consul/get_agent_config.py,sha256=xjtBzUmzOvcMDG5Syj69xTIUzHAWDtaC0KvTN9NK_Xk,6757
|
|
30
|
+
pulumi_consul/get_agent_self.py,sha256=8T7BqucoUbg-LnvMHMU1SklEoz0JFF67Tis5MdFjZaU,48455
|
|
31
|
+
pulumi_consul/get_autopilot_health.py,sha256=msb6AS_GhWc9BphVnVW-dCsA3Za3gL_s6Aj7WdlHb5A,6026
|
|
32
|
+
pulumi_consul/get_catalog_nodes.py,sha256=frmNHXxLR1mThoMkgcioYE_uJsDiFLFh4vWt8tfSkEQ,6794
|
|
33
|
+
pulumi_consul/get_catalog_service.py,sha256=0x0LDrSBrEE2bVWrC-eGVUNzaykJkeNlUzrwT0xI92k,10321
|
|
34
|
+
pulumi_consul/get_catalog_services.py,sha256=C1lhqXHGAtGUcHi8wq78-JKukxnTRvVUCEaTgAS1FhQ,7972
|
|
35
|
+
pulumi_consul/get_config_entry.py,sha256=1EtGhEn-a72CQ8cx62RXfhRRY-odYnRIX_i_z0kEz5g,6349
|
|
36
|
+
pulumi_consul/get_config_entry_v2_exported_services.py,sha256=6lBDPtj4MdAK_eyvrGLwr7xUjDMxCX-uPqgg5GVgwCc,11160
|
|
37
|
+
pulumi_consul/get_datacenters.py,sha256=EdAgl5S4TfIGCslIl9d8vMu4VtmNHhMuWkRirz8aeVQ,3201
|
|
38
|
+
pulumi_consul/get_key_prefix.py,sha256=2JBGCs9pyJX9yi_4zY88D361wZ9Q3N5OuAwqh-sWFpc,11517
|
|
39
|
+
pulumi_consul/get_keys.py,sha256=rrfVoxw2bHtNQU146RqjZ4x4WOykkAqBQOaVWGAubqw,10281
|
|
40
|
+
pulumi_consul/get_network_area_members.py,sha256=K-pXh-xBgW-lu8c_rF0Q9vK0wqAujaGxRLiTGwc77P0,7054
|
|
41
|
+
pulumi_consul/get_network_segments.py,sha256=FiPn6ODz-rzFgcJc2C-rXxFky2fJd9CzrWoN9zalZvs,5850
|
|
42
|
+
pulumi_consul/get_nodes.py,sha256=3MVkUY-EN32tqzFfDby755qAy0tAirLHJ1HLxYTpQoc,6224
|
|
43
|
+
pulumi_consul/get_peering.py,sha256=UO20rcaO0AXVLxVCOWFe4wT-idNGNfxWJjCilFbSsoM,7371
|
|
44
|
+
pulumi_consul/get_peerings.py,sha256=ogztKqrJTC_pw4kclwU73wtJkeYBIuZndXh_qMBSRNs,3630
|
|
45
|
+
pulumi_consul/get_service.py,sha256=9fahF1HyAkaP4_0trie7bPVEb1jFyMdrlpmhyfOOUmM,9671
|
|
46
|
+
pulumi_consul/get_service_health.py,sha256=bH_PMj2NIsh2NIS0hNhFsHXArV1h0D1aOfeCBL_38lU,11336
|
|
47
|
+
pulumi_consul/get_services.py,sha256=5W6leljnvmYIftiXJ1rKZYJUPCpHrdTkng3mwaU4BJ0,7385
|
|
48
|
+
pulumi_consul/intention.py,sha256=SDoUf4UYU07-HUp7FEPdKQAxpqCHotHhuxVcMfovezc,26004
|
|
49
|
+
pulumi_consul/key_prefix.py,sha256=B22oizgA96yVBXbC6-su4RNR_WrNUpxA7A-FSvuymbc,25841
|
|
50
|
+
pulumi_consul/keys.py,sha256=RzNt_fHyvvOvYwJlctqFwbkZlj0S9MgWk1khrmHOFMw,17435
|
|
51
|
+
pulumi_consul/license.py,sha256=p4nsBwBkul7-WSxDFNzyxEfPn8gLKFQxI9tvFtSeJlY,20053
|
|
52
|
+
pulumi_consul/namespace.py,sha256=F77W-2-3qM6m2kkypeAszDRc_MfKDKT5KW6wJ4-GCPM,18195
|
|
53
|
+
pulumi_consul/namespace_policy_attachment.py,sha256=4Pk_jUGVnYgY1cDy6oaCpjmQlaCmROb0S8aQgoxOoXs,8374
|
|
54
|
+
pulumi_consul/namespace_role_attachment.py,sha256=A-igBKWmC02e3KCJs5DDnkiHExee5N7kt5AJJL3FqUY,8226
|
|
55
|
+
pulumi_consul/network_area.py,sha256=bI_FgL-aysSmJegkq5x_UhYIzHPMTUcOn0aiC_DeItI,19226
|
|
56
|
+
pulumi_consul/node.py,sha256=2SwmmHMjM0bghXFBAlZJPyVv-tU2du3nJuG5AsBalg4,17555
|
|
57
|
+
pulumi_consul/outputs.py,sha256=UURqdBYdNkJWe_akyyQQNv8e-QsOl9hXp6w4rye-ftE,234867
|
|
58
|
+
pulumi_consul/peering.py,sha256=bS_UJUz6eowyw5WMtAP1wD-M8AL4Rq3Hluo9i_TmGxo,20496
|
|
59
|
+
pulumi_consul/peering_token.py,sha256=hhBRd_buIV_D-hXapUJ725_Zk9fuMRumwnGjC9NBQsE,17440
|
|
60
|
+
pulumi_consul/prepared_query.py,sha256=vMgTgqJVl3wQBdjiPo_Z51ljj68OCn_DTkLNZcAfpzY,53756
|
|
61
|
+
pulumi_consul/provider.py,sha256=5ynqQUjyVBRdAFs_NwjC8zQUSkACQPRpvkVxGCat3KM,24946
|
|
62
|
+
pulumi_consul/pulumi-plugin.json,sha256=tQlj5HOa15NOl0LjI7eviN3s9Ao4dqHACzSnzkYsP48,83
|
|
63
|
+
pulumi_consul/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
64
|
+
pulumi_consul/service.py,sha256=X55eUuJWjihVMXmk5ZFFluoMsdjenT9bbD-a4mEOCKg,34420
|
|
65
|
+
pulumi_consul/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
|
66
|
+
pulumi_consul/config/__init__.pyi,sha256=rrPQ7URZL_BWCKq07Iwc_Frfqou-b0Ahj6NuYbkfxEM,2761
|
|
67
|
+
pulumi_consul/config/outputs.py,sha256=HgcR6itSdkSOlzxeokvlaaJrgzyTfz8bz75ADODP-FY,3558
|
|
68
|
+
pulumi_consul/config/vars.py,sha256=T-72FGpp4_Alu2TD-XOrrcgVypf0QdwAzMzJn7TY8Rk,4429
|
|
69
|
+
pulumi_consul-3.13.0a1728590457.dist-info/METADATA,sha256=lNgSY20kWa4F9sQBuYk4FO0cM1IF_DrgTyGrBa6gPrc,4012
|
|
70
|
+
pulumi_consul-3.13.0a1728590457.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
|
71
|
+
pulumi_consul-3.13.0a1728590457.dist-info/top_level.txt,sha256=SrKSXrIq8AWqnNKrd7pWSC691idGwXi9XMA-DTWwcfg,14
|
|
72
|
+
pulumi_consul-3.13.0a1728590457.dist-info/RECORD,,
|
|
@@ -1,72 +0,0 @@
|
|
|
1
|
-
pulumi_consul/__init__.py,sha256=Pt7eaNDHQaFtqd8PvL3XabtrN5K7M-kUemQUZf2HUbE,8359
|
|
2
|
-
pulumi_consul/_inputs.py,sha256=HRrWfx_uaV0y52NOPPQZjQQnNtHw20w7LSRQdCW3_6Y,217015
|
|
3
|
-
pulumi_consul/_utilities.py,sha256=aNnnaO6zRha3FhNHonuabR4fJLWGXANtK5dlh1Mz95k,10506
|
|
4
|
-
pulumi_consul/acl_auth_method.py,sha256=h-YKdFq49fcmYq44cGYKqonMgidl820jBkt3v_qY2YQ,32603
|
|
5
|
-
pulumi_consul/acl_binding_rule.py,sha256=YGGblWeGx3EkD-g4nnwHpQl5ZVpM3a8zIaVFhlctXuI,22849
|
|
6
|
-
pulumi_consul/acl_policy.py,sha256=0z0_E08Zb8s0EE3lFtveE0t4ns47Dqj5b3IRGe4DpQE,15624
|
|
7
|
-
pulumi_consul/acl_role.py,sha256=06E74GTmYwbdi9VXmtzc5zY8RjTwRJfh-DXTy9nVJx0,24222
|
|
8
|
-
pulumi_consul/acl_role_policy_attachment.py,sha256=Adk9-dTzl9uiXhmk1aT_tZSmIJfLJiHTUWYSzN8pUWM,8541
|
|
9
|
-
pulumi_consul/acl_token.py,sha256=P0ys5GHS37uDeZqjmXy-lk6Wn0Hva-_snJc24vlUzZo,31666
|
|
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=yyF0t0XQoSq3IN9OJHnKdfOCtvDn6Cn9e3j2P82rH2s,17239
|
|
16
|
-
pulumi_consul/certificate_authority.py,sha256=N99dCAFw0CFOZb2eG-WobPPIDB3J9FCDaA0Gl_wcjzQ,10424
|
|
17
|
-
pulumi_consul/config_entry.py,sha256=QjMjGua9IGQvYSlAoN0Lxd8dCJrIPakfsCMx2-G-1PE,30488
|
|
18
|
-
pulumi_consul/config_entry_service_defaults.py,sha256=gds0UmmoUT23HWeUyElka99cdTUmdM4XYKsIoTvnXI4,54039
|
|
19
|
-
pulumi_consul/config_entry_service_intentions.py,sha256=GpINt2_NS16XX0qXTY8di-6tWVgIVRHpS3kIR5f59lc,22100
|
|
20
|
-
pulumi_consul/config_entry_service_resolver.py,sha256=cdhWQlPja2I91XLdckqA1vHjDD3k1Er0AbNTZQJe3_M,35738
|
|
21
|
-
pulumi_consul/config_entry_service_router.py,sha256=5wGTqaLBEerflxPhP1fLloYDhaYMKFZNL85ty0qF1z8,14492
|
|
22
|
-
pulumi_consul/config_entry_service_splitter.py,sha256=NlWfGKHxuGCo_AnI_JKeYiolvb_D6GF6apiK5PIlSg4,19630
|
|
23
|
-
pulumi_consul/config_entry_v2_exported_services.py,sha256=fzqOnQMR3Jk1gzx6GGHSRBMKpFAjk3XGArUfTdZ9Q6k,21469
|
|
24
|
-
pulumi_consul/get_acl_auth_method.py,sha256=3AGxnlKklWqtUynr8s2ThMkdCad5dUE2A1HJcudGSLU,9368
|
|
25
|
-
pulumi_consul/get_acl_policy.py,sha256=LFQlcq2jS7ptdGTWr9Dos9Wq64gqeTv8GNM4G88SNVU,5926
|
|
26
|
-
pulumi_consul/get_acl_role.py,sha256=Rcbne_FKhB2lNSQEj5P87n68uO9hjGRWDx-IJZC-x2o,7581
|
|
27
|
-
pulumi_consul/get_acl_token.py,sha256=7n2WTxRrF-zrYQRmFfy4jLXYjsLsoCQ5s81gVqvEKwU,9808
|
|
28
|
-
pulumi_consul/get_acl_token_secret_id.py,sha256=tQYhYIWXmNT6VP_zimJDetb3PXW8-oBZdn5KqYmDQkg,6869
|
|
29
|
-
pulumi_consul/get_agent_config.py,sha256=F6Khi2DZQROdaxOQVNe2iJtVXroLDICQfQ3t_shRodE,5959
|
|
30
|
-
pulumi_consul/get_agent_self.py,sha256=-cw13p0lRJLyj8qvQp06ZZ5c18JatSdw1am6QoJZqnE,43212
|
|
31
|
-
pulumi_consul/get_autopilot_health.py,sha256=WKtlV88Q7C3JHVaHa6Sa7p7aXeggEXfQaLQXz3ZVwRY,5266
|
|
32
|
-
pulumi_consul/get_catalog_nodes.py,sha256=daWal6M7glBiWHr0IQKHA6Yb8dk0Fs3cWZukx50oBkE,5989
|
|
33
|
-
pulumi_consul/get_catalog_service.py,sha256=Z4lNdUHnV3r0iMtFTyo_UuY-PKTCBntRQ_P2w2QvFlw,9349
|
|
34
|
-
pulumi_consul/get_catalog_services.py,sha256=MNbz-qNxWXuOKDLGzWSY56Nibh2Ts_hRODnAjG2mZJk,7170
|
|
35
|
-
pulumi_consul/get_config_entry.py,sha256=8pHLWLT5RUVPiJj5zU2VV1xkGsT9JpLsmVwxeqbEpzE,5478
|
|
36
|
-
pulumi_consul/get_config_entry_v2_exported_services.py,sha256=Erle3cVbA2CE1ivD0Gg9A53mO4NnKmWt4wMbwCQW9GY,9807
|
|
37
|
-
pulumi_consul/get_datacenters.py,sha256=WNivbaPSVbCtwHtvdRjljUti1YWaOJtqxBBc-_7IFEc,2669
|
|
38
|
-
pulumi_consul/get_key_prefix.py,sha256=xnXLKYYl7Tn3hU1FOX7NWn8bCQSsk-fFjDezkYdBL78,10359
|
|
39
|
-
pulumi_consul/get_keys.py,sha256=kdHRSm4HOXuWFDENZ7NdmugfUKYDYZHYN6uTeFauWCE,9203
|
|
40
|
-
pulumi_consul/get_network_area_members.py,sha256=sQwQj44r8MskEDXYEVg3XmazI2mgAu5LSqmFaJIO4i4,6258
|
|
41
|
-
pulumi_consul/get_network_segments.py,sha256=NhphPW3eeZBPcVuFMoAdoSbTyggyI-kvvdSP_06cXAI,5135
|
|
42
|
-
pulumi_consul/get_nodes.py,sha256=06JU1XEGBUewx4QKJl1qF56C4IH9nEKguIn2EGooJl0,5439
|
|
43
|
-
pulumi_consul/get_peering.py,sha256=Bcpy_TCMVuHrmzWWM5GRTLiaZq5gGJuZYcis9JCMraE,6300
|
|
44
|
-
pulumi_consul/get_peerings.py,sha256=EX1J_eQf01voOEvPB2IuWV6HNdvTeTpn_bbuY0gQ9QQ,3024
|
|
45
|
-
pulumi_consul/get_service.py,sha256=Q8kBHneXtBDJff0lApXAFfPXQxJCOieTCGo0P2TU_28,8719
|
|
46
|
-
pulumi_consul/get_service_health.py,sha256=2CCrunPsyCDOjmcJXhGmSIJSMc6a-0vlvuiEAVJ80Dw,10133
|
|
47
|
-
pulumi_consul/get_services.py,sha256=Z-CPmlL1g0XfQYTQyxSmN8aDcGGm4O8xPNK0R_fL7E0,6603
|
|
48
|
-
pulumi_consul/intention.py,sha256=naX-vekDSLky5qeApRsqjCxralnpkcyBp-upO3fUd3g,25830
|
|
49
|
-
pulumi_consul/key_prefix.py,sha256=u86ybrKgS9Purf4QpSv7cKTWyHJYDV2Gt-5GcNAwJLI,25667
|
|
50
|
-
pulumi_consul/keys.py,sha256=UwtGegvMR607A1VsaSLeYxgfSz-ACDchg--RvaSmjl8,17261
|
|
51
|
-
pulumi_consul/license.py,sha256=OMJsth0jpRMssJjJ64UTUZSdm8eXD_DJA40Wliy0MmI,19879
|
|
52
|
-
pulumi_consul/namespace.py,sha256=CJZE9TgWD0bdKndmb8hlyyWIttNUPJou0k5LJBjyK2E,18021
|
|
53
|
-
pulumi_consul/namespace_policy_attachment.py,sha256=0qlJ92SJLDdocHj8dmm0cd1LAqF-IlB5FouYhUOyATo,8200
|
|
54
|
-
pulumi_consul/namespace_role_attachment.py,sha256=-xlic3f_MQ7JN0i0aNPEvSD7pT8vzrM0fvlUB7KLOoY,8052
|
|
55
|
-
pulumi_consul/network_area.py,sha256=uXillh7ugCOe1VH8t2n1Bb01v8UzIw1j2z0BT4932H8,19052
|
|
56
|
-
pulumi_consul/node.py,sha256=EuyGxn_vJI8tyYBqL-b-3_kyT6PXPHv1xNFacpuLznE,17381
|
|
57
|
-
pulumi_consul/outputs.py,sha256=EeFL7PvjA1O4mq2KadOeM88dxWc3U46RfMJrXaw3vPY,234693
|
|
58
|
-
pulumi_consul/peering.py,sha256=B2_vXke9-rZ2IiFiQRddhW8lDJex8PFtMFqzR5IR6Rc,20322
|
|
59
|
-
pulumi_consul/peering_token.py,sha256=3Yxj8DK832xp_qNF4nnKzCtHbijDMydZlQJr_3rGfYU,17266
|
|
60
|
-
pulumi_consul/prepared_query.py,sha256=YhNyS2bp5k0oEXAPp_KtPwjCaeYzm3Mjq5zFxt-7U9A,53582
|
|
61
|
-
pulumi_consul/provider.py,sha256=dxzpg2v1tXJ4ZpjSFIOvTaIoGqZ2MVGLQ0dQmeRUYxw,24772
|
|
62
|
-
pulumi_consul/pulumi-plugin.json,sha256=5YWHKO8o50dzIayEeWUOFkPLnL1mFKL2v_k52boyAJM,83
|
|
63
|
-
pulumi_consul/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
64
|
-
pulumi_consul/service.py,sha256=QpcEHbvfSWD5PsubJrc5RrXXVPFLYtpDhXqFAnEYLnc,34246
|
|
65
|
-
pulumi_consul/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
|
66
|
-
pulumi_consul/config/__init__.pyi,sha256=Xr56VkEbCA8jXnSDMCxONcnilMpQdAHs6-imo_c-TBU,2587
|
|
67
|
-
pulumi_consul/config/outputs.py,sha256=gDtRkTfR9uCq26RXew73SpJWdrCejHeWHhoL5--_LW4,3384
|
|
68
|
-
pulumi_consul/config/vars.py,sha256=SXNUccmf6RtLkyaTd4mMknJtP2rlISHxMcq4PUHRgpg,4255
|
|
69
|
-
pulumi_consul-3.13.0a1728451349.dist-info/METADATA,sha256=L70iXVBwul6_K2SZKliGNkq_ZVQd_jJyX9Mf2mjTwNc,3944
|
|
70
|
-
pulumi_consul-3.13.0a1728451349.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
|
71
|
-
pulumi_consul-3.13.0a1728451349.dist-info/top_level.txt,sha256=SrKSXrIq8AWqnNKrd7pWSC691idGwXi9XMA-DTWwcfg,14
|
|
72
|
-
pulumi_consul-3.13.0a1728451349.dist-info/RECORD,,
|
{pulumi_consul-3.13.0a1728451349.dist-info → pulumi_consul-3.13.0a1728590457.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|