pulumi-consul 3.12.0a1715232310__py3-none-any.whl → 3.12.0a1715336047__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/certificate_authority.py +0 -40
- {pulumi_consul-3.12.0a1715232310.dist-info → pulumi_consul-3.12.0a1715336047.dist-info}/METADATA +1 -1
- {pulumi_consul-3.12.0a1715232310.dist-info → pulumi_consul-3.12.0a1715336047.dist-info}/RECORD +5 -5
- {pulumi_consul-3.12.0a1715232310.dist-info → pulumi_consul-3.12.0a1715336047.dist-info}/WHEEL +0 -0
- {pulumi_consul-3.12.0a1715232310.dist-info → pulumi_consul-3.12.0a1715336047.dist-info}/top_level.txt +0 -0
|
@@ -20,10 +20,6 @@ class CertificateAuthorityArgs:
|
|
|
20
20
|
"""
|
|
21
21
|
The set of arguments for constructing a CertificateAuthority resource.
|
|
22
22
|
:param pulumi.Input[str] connect_provider: Specifies the CA provider type to use.
|
|
23
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] config: The raw configuration to use for the chosen provider. For more information on configuring the Connect CA providers, see
|
|
24
|
-
[Provider Config](https://developer.hashicorp.com/consul/docs/connect/ca).
|
|
25
|
-
:param pulumi.Input[str] config_json: The raw configuration to use for the chosen provider. For more information on configuring the Connect CA providers, see
|
|
26
|
-
[Provider Config](https://developer.hashicorp.com/consul/docs/connect/ca).
|
|
27
23
|
"""
|
|
28
24
|
pulumi.set(__self__, "connect_provider", connect_provider)
|
|
29
25
|
if config is not None:
|
|
@@ -49,10 +45,6 @@ class CertificateAuthorityArgs:
|
|
|
49
45
|
@property
|
|
50
46
|
@pulumi.getter
|
|
51
47
|
def config(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
52
|
-
"""
|
|
53
|
-
The raw configuration to use for the chosen provider. For more information on configuring the Connect CA providers, see
|
|
54
|
-
[Provider Config](https://developer.hashicorp.com/consul/docs/connect/ca).
|
|
55
|
-
"""
|
|
56
48
|
warnings.warn("""The config attribute is deprecated, please use config_json instead.""", DeprecationWarning)
|
|
57
49
|
pulumi.log.warn("""config is deprecated: The config attribute is deprecated, please use config_json instead.""")
|
|
58
50
|
|
|
@@ -65,10 +57,6 @@ class CertificateAuthorityArgs:
|
|
|
65
57
|
@property
|
|
66
58
|
@pulumi.getter(name="configJson")
|
|
67
59
|
def config_json(self) -> Optional[pulumi.Input[str]]:
|
|
68
|
-
"""
|
|
69
|
-
The raw configuration to use for the chosen provider. For more information on configuring the Connect CA providers, see
|
|
70
|
-
[Provider Config](https://developer.hashicorp.com/consul/docs/connect/ca).
|
|
71
|
-
"""
|
|
72
60
|
return pulumi.get(self, "config_json")
|
|
73
61
|
|
|
74
62
|
@config_json.setter
|
|
@@ -84,10 +72,6 @@ class _CertificateAuthorityState:
|
|
|
84
72
|
connect_provider: Optional[pulumi.Input[str]] = None):
|
|
85
73
|
"""
|
|
86
74
|
Input properties used for looking up and filtering CertificateAuthority resources.
|
|
87
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] config: The raw configuration to use for the chosen provider. For more information on configuring the Connect CA providers, see
|
|
88
|
-
[Provider Config](https://developer.hashicorp.com/consul/docs/connect/ca).
|
|
89
|
-
:param pulumi.Input[str] config_json: The raw configuration to use for the chosen provider. For more information on configuring the Connect CA providers, see
|
|
90
|
-
[Provider Config](https://developer.hashicorp.com/consul/docs/connect/ca).
|
|
91
75
|
:param pulumi.Input[str] connect_provider: Specifies the CA provider type to use.
|
|
92
76
|
"""
|
|
93
77
|
if config is not None:
|
|
@@ -103,10 +87,6 @@ class _CertificateAuthorityState:
|
|
|
103
87
|
@property
|
|
104
88
|
@pulumi.getter
|
|
105
89
|
def config(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
106
|
-
"""
|
|
107
|
-
The raw configuration to use for the chosen provider. For more information on configuring the Connect CA providers, see
|
|
108
|
-
[Provider Config](https://developer.hashicorp.com/consul/docs/connect/ca).
|
|
109
|
-
"""
|
|
110
90
|
warnings.warn("""The config attribute is deprecated, please use config_json instead.""", DeprecationWarning)
|
|
111
91
|
pulumi.log.warn("""config is deprecated: The config attribute is deprecated, please use config_json instead.""")
|
|
112
92
|
|
|
@@ -119,10 +99,6 @@ class _CertificateAuthorityState:
|
|
|
119
99
|
@property
|
|
120
100
|
@pulumi.getter(name="configJson")
|
|
121
101
|
def config_json(self) -> Optional[pulumi.Input[str]]:
|
|
122
|
-
"""
|
|
123
|
-
The raw configuration to use for the chosen provider. For more information on configuring the Connect CA providers, see
|
|
124
|
-
[Provider Config](https://developer.hashicorp.com/consul/docs/connect/ca).
|
|
125
|
-
"""
|
|
126
102
|
return pulumi.get(self, "config_json")
|
|
127
103
|
|
|
128
104
|
@config_json.setter
|
|
@@ -164,10 +140,6 @@ class CertificateAuthority(pulumi.CustomResource):
|
|
|
164
140
|
|
|
165
141
|
:param str resource_name: The name of the resource.
|
|
166
142
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
167
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] config: The raw configuration to use for the chosen provider. For more information on configuring the Connect CA providers, see
|
|
168
|
-
[Provider Config](https://developer.hashicorp.com/consul/docs/connect/ca).
|
|
169
|
-
:param pulumi.Input[str] config_json: The raw configuration to use for the chosen provider. For more information on configuring the Connect CA providers, see
|
|
170
|
-
[Provider Config](https://developer.hashicorp.com/consul/docs/connect/ca).
|
|
171
143
|
:param pulumi.Input[str] connect_provider: Specifies the CA provider type to use.
|
|
172
144
|
"""
|
|
173
145
|
...
|
|
@@ -239,10 +211,6 @@ class CertificateAuthority(pulumi.CustomResource):
|
|
|
239
211
|
:param str resource_name: The unique name of the resulting resource.
|
|
240
212
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
241
213
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
242
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] config: The raw configuration to use for the chosen provider. For more information on configuring the Connect CA providers, see
|
|
243
|
-
[Provider Config](https://developer.hashicorp.com/consul/docs/connect/ca).
|
|
244
|
-
:param pulumi.Input[str] config_json: The raw configuration to use for the chosen provider. For more information on configuring the Connect CA providers, see
|
|
245
|
-
[Provider Config](https://developer.hashicorp.com/consul/docs/connect/ca).
|
|
246
214
|
:param pulumi.Input[str] connect_provider: Specifies the CA provider type to use.
|
|
247
215
|
"""
|
|
248
216
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
@@ -257,10 +225,6 @@ class CertificateAuthority(pulumi.CustomResource):
|
|
|
257
225
|
@property
|
|
258
226
|
@pulumi.getter
|
|
259
227
|
def config(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
|
260
|
-
"""
|
|
261
|
-
The raw configuration to use for the chosen provider. For more information on configuring the Connect CA providers, see
|
|
262
|
-
[Provider Config](https://developer.hashicorp.com/consul/docs/connect/ca).
|
|
263
|
-
"""
|
|
264
228
|
warnings.warn("""The config attribute is deprecated, please use config_json instead.""", DeprecationWarning)
|
|
265
229
|
pulumi.log.warn("""config is deprecated: The config attribute is deprecated, please use config_json instead.""")
|
|
266
230
|
|
|
@@ -269,10 +233,6 @@ class CertificateAuthority(pulumi.CustomResource):
|
|
|
269
233
|
@property
|
|
270
234
|
@pulumi.getter(name="configJson")
|
|
271
235
|
def config_json(self) -> pulumi.Output[Optional[str]]:
|
|
272
|
-
"""
|
|
273
|
-
The raw configuration to use for the chosen provider. For more information on configuring the Connect CA providers, see
|
|
274
|
-
[Provider Config](https://developer.hashicorp.com/consul/docs/connect/ca).
|
|
275
|
-
"""
|
|
276
236
|
return pulumi.get(self, "config_json")
|
|
277
237
|
|
|
278
238
|
@property
|
{pulumi_consul-3.12.0a1715232310.dist-info → pulumi_consul-3.12.0a1715336047.dist-info}/RECORD
RENAMED
|
@@ -13,7 +13,7 @@ pulumi_consul/admin_partition.py,sha256=2y0RX2FArESVxwhB8xkUmcx6UAlTWpdzPiuVuO5C
|
|
|
13
13
|
pulumi_consul/agent_service.py,sha256=dElBoSCeo_3d7uut7rBQV4AGmGMm56sH5PivFwQAZtw,12987
|
|
14
14
|
pulumi_consul/autopilot_config.py,sha256=g_N2ZqciXVA-H4kD5vZExAsABfawil-5KOpJmo41W7A,28023
|
|
15
15
|
pulumi_consul/catalog_entry.py,sha256=SgNXcjc-AJRZOW8mxOu8Yx4Nqpk5TJBfIRTBdikraZA,17763
|
|
16
|
-
pulumi_consul/certificate_authority.py,sha256=
|
|
16
|
+
pulumi_consul/certificate_authority.py,sha256=FquslNbC2y_DblTfWMlyCBYoe9drs7VIWHMU6KA019E,10835
|
|
17
17
|
pulumi_consul/config_entry.py,sha256=QjMjGua9IGQvYSlAoN0Lxd8dCJrIPakfsCMx2-G-1PE,30488
|
|
18
18
|
pulumi_consul/config_entry_service_defaults.py,sha256=wSyKQVZieDuLJQd64denFq1C-1aVn3jeVyJOohMrZ5k,52869
|
|
19
19
|
pulumi_consul/config_entry_service_intentions.py,sha256=ym6dvGNUvJboSrtvIHM4QE_y7V_1NF4ev0Y4kbh0AjY,22185
|
|
@@ -64,7 +64,7 @@ pulumi_consul/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi
|
|
|
64
64
|
pulumi_consul/config/__init__.pyi,sha256=Xr56VkEbCA8jXnSDMCxONcnilMpQdAHs6-imo_c-TBU,2587
|
|
65
65
|
pulumi_consul/config/outputs.py,sha256=gDtRkTfR9uCq26RXew73SpJWdrCejHeWHhoL5--_LW4,3384
|
|
66
66
|
pulumi_consul/config/vars.py,sha256=SXNUccmf6RtLkyaTd4mMknJtP2rlISHxMcq4PUHRgpg,4255
|
|
67
|
-
pulumi_consul-3.12.
|
|
68
|
-
pulumi_consul-3.12.
|
|
69
|
-
pulumi_consul-3.12.
|
|
70
|
-
pulumi_consul-3.12.
|
|
67
|
+
pulumi_consul-3.12.0a1715336047.dist-info/METADATA,sha256=COjosG5Babv11CLtQ3TA1HTbjRolNicZICVooBxlC3Y,3944
|
|
68
|
+
pulumi_consul-3.12.0a1715336047.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
69
|
+
pulumi_consul-3.12.0a1715336047.dist-info/top_level.txt,sha256=SrKSXrIq8AWqnNKrd7pWSC691idGwXi9XMA-DTWwcfg,14
|
|
70
|
+
pulumi_consul-3.12.0a1715336047.dist-info/RECORD,,
|
{pulumi_consul-3.12.0a1715232310.dist-info → pulumi_consul-3.12.0a1715336047.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|