pulumi-consul 3.13.0a1749706342__py3-none-any.whl → 3.14.0a1768432677__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_consul/__init__.py +1 -1
- pulumi_consul/_inputs.py +1604 -1605
- pulumi_consul/acl_auth_method.py +174 -175
- pulumi_consul/acl_binding_rule.py +123 -124
- pulumi_consul/acl_policy.py +107 -108
- pulumi_consul/acl_role.py +95 -96
- pulumi_consul/acl_role_policy_attachment.py +35 -36
- pulumi_consul/acl_token.py +154 -155
- pulumi_consul/acl_token_policy_attachment.py +35 -36
- pulumi_consul/acl_token_role_attachment.py +35 -36
- pulumi_consul/admin_partition.py +82 -36
- pulumi_consul/agent_service.py +69 -70
- pulumi_consul/autopilot_config.py +137 -138
- pulumi_consul/catalog_entry.py +114 -73
- pulumi_consul/certificate_authority.py +44 -45
- pulumi_consul/config/__init__.py +1 -1
- pulumi_consul/config/__init__.pyi +6 -12
- pulumi_consul/config/outputs.py +24 -25
- pulumi_consul/config/vars.py +22 -28
- pulumi_consul/config_entry.py +86 -87
- pulumi_consul/config_entry_service_defaults.py +275 -224
- pulumi_consul/config_entry_service_intentions.py +75 -76
- pulumi_consul/config_entry_service_resolver.py +132 -133
- pulumi_consul/config_entry_service_router.py +72 -73
- pulumi_consul/config_entry_service_splitter.py +72 -73
- pulumi_consul/config_entry_v2_exported_services.py +137 -138
- pulumi_consul/get_acl_auth_method.py +36 -37
- pulumi_consul/get_acl_policy.py +27 -28
- pulumi_consul/get_acl_role.py +27 -28
- pulumi_consul/get_acl_token.py +32 -33
- pulumi_consul/get_acl_token_secret_id.py +29 -30
- pulumi_consul/get_agent_config.py +15 -16
- pulumi_consul/get_agent_self.py +149 -146
- pulumi_consul/get_autopilot_health.py +14 -15
- pulumi_consul/get_catalog_nodes.py +45 -12
- pulumi_consul/get_catalog_service.py +27 -28
- pulumi_consul/get_catalog_services.py +12 -13
- pulumi_consul/get_config_entry.py +29 -30
- pulumi_consul/get_config_entry_v2_exported_services.py +51 -52
- pulumi_consul/get_datacenters.py +73 -6
- pulumi_consul/get_key_prefix.py +38 -39
- pulumi_consul/get_keys.py +36 -37
- pulumi_consul/get_network_area_members.py +22 -23
- pulumi_consul/get_network_segments.py +17 -18
- pulumi_consul/get_nodes.py +45 -12
- pulumi_consul/get_peering.py +25 -26
- pulumi_consul/get_peerings.py +8 -9
- pulumi_consul/get_service.py +27 -28
- pulumi_consul/get_service_health.py +54 -51
- pulumi_consul/get_services.py +12 -13
- pulumi_consul/intention.py +137 -138
- pulumi_consul/key_prefix.py +106 -107
- pulumi_consul/keys.py +79 -80
- pulumi_consul/license.py +125 -126
- pulumi_consul/namespace.py +103 -104
- pulumi_consul/namespace_policy_attachment.py +35 -36
- pulumi_consul/namespace_role_attachment.py +35 -36
- pulumi_consul/network_area.py +86 -87
- pulumi_consul/node.py +99 -100
- pulumi_consul/outputs.py +1464 -1465
- pulumi_consul/peering.py +107 -108
- pulumi_consul/peering_token.py +74 -75
- pulumi_consul/prepared_query.py +231 -232
- pulumi_consul/provider.py +150 -169
- pulumi_consul/pulumi-plugin.json +1 -1
- pulumi_consul/service.py +251 -205
- {pulumi_consul-3.13.0a1749706342.dist-info → pulumi_consul-3.14.0a1768432677.dist-info}/METADATA +1 -1
- pulumi_consul-3.14.0a1768432677.dist-info/RECORD +72 -0
- pulumi_consul-3.13.0a1749706342.dist-info/RECORD +0 -72
- {pulumi_consul-3.13.0a1749706342.dist-info → pulumi_consul-3.14.0a1768432677.dist-info}/WHEEL +0 -0
- {pulumi_consul-3.13.0a1749706342.dist-info → pulumi_consul-3.14.0a1768432677.dist-info}/top_level.txt +0 -0
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import builtins
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -50,42 +49,42 @@ class GetAclTokenSecretIdResult:
|
|
|
50
49
|
raise TypeError("Expected argument 'secret_id' to be a str")
|
|
51
50
|
pulumi.set(__self__, "secret_id", secret_id)
|
|
52
51
|
|
|
53
|
-
@property
|
|
52
|
+
@_builtins.property
|
|
54
53
|
@pulumi.getter(name="accessorId")
|
|
55
|
-
def accessor_id(self) ->
|
|
54
|
+
def accessor_id(self) -> _builtins.str:
|
|
56
55
|
return pulumi.get(self, "accessor_id")
|
|
57
56
|
|
|
58
|
-
@property
|
|
57
|
+
@_builtins.property
|
|
59
58
|
@pulumi.getter(name="encryptedSecretId")
|
|
60
|
-
def encrypted_secret_id(self) ->
|
|
59
|
+
def encrypted_secret_id(self) -> _builtins.str:
|
|
61
60
|
return pulumi.get(self, "encrypted_secret_id")
|
|
62
61
|
|
|
63
|
-
@property
|
|
62
|
+
@_builtins.property
|
|
64
63
|
@pulumi.getter
|
|
65
|
-
def id(self) ->
|
|
64
|
+
def id(self) -> _builtins.str:
|
|
66
65
|
"""
|
|
67
66
|
The provider-assigned unique ID for this managed resource.
|
|
68
67
|
"""
|
|
69
68
|
return pulumi.get(self, "id")
|
|
70
69
|
|
|
71
|
-
@property
|
|
70
|
+
@_builtins.property
|
|
72
71
|
@pulumi.getter
|
|
73
|
-
def namespace(self) -> Optional[
|
|
72
|
+
def namespace(self) -> Optional[_builtins.str]:
|
|
74
73
|
return pulumi.get(self, "namespace")
|
|
75
74
|
|
|
76
|
-
@property
|
|
75
|
+
@_builtins.property
|
|
77
76
|
@pulumi.getter
|
|
78
|
-
def partition(self) -> Optional[
|
|
77
|
+
def partition(self) -> Optional[_builtins.str]:
|
|
79
78
|
return pulumi.get(self, "partition")
|
|
80
79
|
|
|
81
|
-
@property
|
|
80
|
+
@_builtins.property
|
|
82
81
|
@pulumi.getter(name="pgpKey")
|
|
83
|
-
def pgp_key(self) -> Optional[
|
|
82
|
+
def pgp_key(self) -> Optional[_builtins.str]:
|
|
84
83
|
return pulumi.get(self, "pgp_key")
|
|
85
84
|
|
|
86
|
-
@property
|
|
85
|
+
@_builtins.property
|
|
87
86
|
@pulumi.getter(name="secretId")
|
|
88
|
-
def secret_id(self) ->
|
|
87
|
+
def secret_id(self) -> _builtins.str:
|
|
89
88
|
"""
|
|
90
89
|
The secret ID of the ACL token if `pgp_key` has not been set.
|
|
91
90
|
"""
|
|
@@ -107,10 +106,10 @@ class AwaitableGetAclTokenSecretIdResult(GetAclTokenSecretIdResult):
|
|
|
107
106
|
secret_id=self.secret_id)
|
|
108
107
|
|
|
109
108
|
|
|
110
|
-
def get_acl_token_secret_id(accessor_id: Optional[
|
|
111
|
-
namespace: Optional[
|
|
112
|
-
partition: Optional[
|
|
113
|
-
pgp_key: Optional[
|
|
109
|
+
def get_acl_token_secret_id(accessor_id: Optional[_builtins.str] = None,
|
|
110
|
+
namespace: Optional[_builtins.str] = None,
|
|
111
|
+
partition: Optional[_builtins.str] = None,
|
|
112
|
+
pgp_key: Optional[_builtins.str] = None,
|
|
114
113
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetAclTokenSecretIdResult:
|
|
115
114
|
"""
|
|
116
115
|
## Example Usage
|
|
@@ -133,9 +132,9 @@ def get_acl_token_secret_id(accessor_id: Optional[builtins.str] = None,
|
|
|
133
132
|
```
|
|
134
133
|
|
|
135
134
|
|
|
136
|
-
:param
|
|
137
|
-
:param
|
|
138
|
-
:param
|
|
135
|
+
:param _builtins.str accessor_id: The accessor ID of the ACL token.
|
|
136
|
+
:param _builtins.str namespace: The namespace to lookup the token.
|
|
137
|
+
:param _builtins.str partition: The partition to lookup the token.
|
|
139
138
|
"""
|
|
140
139
|
__args__ = dict()
|
|
141
140
|
__args__['accessorId'] = accessor_id
|
|
@@ -153,10 +152,10 @@ def get_acl_token_secret_id(accessor_id: Optional[builtins.str] = None,
|
|
|
153
152
|
partition=pulumi.get(__ret__, 'partition'),
|
|
154
153
|
pgp_key=pulumi.get(__ret__, 'pgp_key'),
|
|
155
154
|
secret_id=pulumi.get(__ret__, 'secret_id'))
|
|
156
|
-
def get_acl_token_secret_id_output(accessor_id: Optional[pulumi.Input[
|
|
157
|
-
namespace: Optional[pulumi.Input[Optional[
|
|
158
|
-
partition: Optional[pulumi.Input[Optional[
|
|
159
|
-
pgp_key: Optional[pulumi.Input[Optional[
|
|
155
|
+
def get_acl_token_secret_id_output(accessor_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
156
|
+
namespace: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
157
|
+
partition: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
158
|
+
pgp_key: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
160
159
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetAclTokenSecretIdResult]:
|
|
161
160
|
"""
|
|
162
161
|
## Example Usage
|
|
@@ -179,9 +178,9 @@ def get_acl_token_secret_id_output(accessor_id: Optional[pulumi.Input[builtins.s
|
|
|
179
178
|
```
|
|
180
179
|
|
|
181
180
|
|
|
182
|
-
:param
|
|
183
|
-
:param
|
|
184
|
-
:param
|
|
181
|
+
:param _builtins.str accessor_id: The accessor ID of the ACL token.
|
|
182
|
+
:param _builtins.str namespace: The namespace to lookup the token.
|
|
183
|
+
:param _builtins.str partition: The partition to lookup the token.
|
|
185
184
|
"""
|
|
186
185
|
__args__ = dict()
|
|
187
186
|
__args__['accessorId'] = accessor_id
|
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import builtins
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -50,57 +49,57 @@ class GetAgentConfigResult:
|
|
|
50
49
|
raise TypeError("Expected argument 'version' to be a str")
|
|
51
50
|
pulumi.set(__self__, "version", version)
|
|
52
51
|
|
|
53
|
-
@property
|
|
52
|
+
@_builtins.property
|
|
54
53
|
@pulumi.getter
|
|
55
|
-
def datacenter(self) ->
|
|
54
|
+
def datacenter(self) -> _builtins.str:
|
|
56
55
|
"""
|
|
57
56
|
The datacenter the agent is running in
|
|
58
57
|
"""
|
|
59
58
|
return pulumi.get(self, "datacenter")
|
|
60
59
|
|
|
61
|
-
@property
|
|
60
|
+
@_builtins.property
|
|
62
61
|
@pulumi.getter
|
|
63
|
-
def id(self) ->
|
|
62
|
+
def id(self) -> _builtins.str:
|
|
64
63
|
"""
|
|
65
64
|
The provider-assigned unique ID for this managed resource.
|
|
66
65
|
"""
|
|
67
66
|
return pulumi.get(self, "id")
|
|
68
67
|
|
|
69
|
-
@property
|
|
68
|
+
@_builtins.property
|
|
70
69
|
@pulumi.getter(name="nodeId")
|
|
71
|
-
def node_id(self) ->
|
|
70
|
+
def node_id(self) -> _builtins.str:
|
|
72
71
|
"""
|
|
73
72
|
The ID of the node the agent is running on
|
|
74
73
|
"""
|
|
75
74
|
return pulumi.get(self, "node_id")
|
|
76
75
|
|
|
77
|
-
@property
|
|
76
|
+
@_builtins.property
|
|
78
77
|
@pulumi.getter(name="nodeName")
|
|
79
|
-
def node_name(self) ->
|
|
78
|
+
def node_name(self) -> _builtins.str:
|
|
80
79
|
"""
|
|
81
80
|
The name of the node the agent is running on
|
|
82
81
|
"""
|
|
83
82
|
return pulumi.get(self, "node_name")
|
|
84
83
|
|
|
85
|
-
@property
|
|
84
|
+
@_builtins.property
|
|
86
85
|
@pulumi.getter
|
|
87
|
-
def revision(self) ->
|
|
86
|
+
def revision(self) -> _builtins.str:
|
|
88
87
|
"""
|
|
89
88
|
The first 9 characters of the VCS revision of the build of Consul that is running
|
|
90
89
|
"""
|
|
91
90
|
return pulumi.get(self, "revision")
|
|
92
91
|
|
|
93
|
-
@property
|
|
92
|
+
@_builtins.property
|
|
94
93
|
@pulumi.getter
|
|
95
|
-
def server(self) ->
|
|
94
|
+
def server(self) -> _builtins.bool:
|
|
96
95
|
"""
|
|
97
96
|
Boolean if the agent is a server or not
|
|
98
97
|
"""
|
|
99
98
|
return pulumi.get(self, "server")
|
|
100
99
|
|
|
101
|
-
@property
|
|
100
|
+
@_builtins.property
|
|
102
101
|
@pulumi.getter
|
|
103
|
-
def version(self) ->
|
|
102
|
+
def version(self) -> _builtins.str:
|
|
104
103
|
"""
|
|
105
104
|
The version of the build of Consul that is running
|
|
106
105
|
"""
|