pulumi-tls 5.2.0a1744439866__py3-none-any.whl → 5.3.0a1752821408__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_tls/__init__.py CHANGED
@@ -1,5 +1,5 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
  import builtins
pulumi_tls/_inputs.py CHANGED
@@ -1,5 +1,5 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
  import builtins
@@ -36,6 +36,10 @@ if not MYPY:
36
36
  """
37
37
  Distinguished name: `C`
38
38
  """
39
+ email_address: NotRequired[pulumi.Input[builtins.str]]
40
+ """
41
+ ASN.1 Object Identifier (OID): `1.2.840.113549.1.9.1`
42
+ """
39
43
  locality: NotRequired[pulumi.Input[builtins.str]]
40
44
  """
41
45
  Distinguished name: `L`
@@ -72,6 +76,7 @@ class CertRequestSubjectArgs:
72
76
  def __init__(__self__, *,
73
77
  common_name: Optional[pulumi.Input[builtins.str]] = None,
74
78
  country: Optional[pulumi.Input[builtins.str]] = None,
79
+ email_address: Optional[pulumi.Input[builtins.str]] = None,
75
80
  locality: Optional[pulumi.Input[builtins.str]] = None,
76
81
  organization: Optional[pulumi.Input[builtins.str]] = None,
77
82
  organizational_unit: Optional[pulumi.Input[builtins.str]] = None,
@@ -82,6 +87,7 @@ class CertRequestSubjectArgs:
82
87
  """
83
88
  :param pulumi.Input[builtins.str] common_name: Distinguished name: `CN`
84
89
  :param pulumi.Input[builtins.str] country: Distinguished name: `C`
90
+ :param pulumi.Input[builtins.str] email_address: ASN.1 Object Identifier (OID): `1.2.840.113549.1.9.1`
85
91
  :param pulumi.Input[builtins.str] locality: Distinguished name: `L`
86
92
  :param pulumi.Input[builtins.str] organization: Distinguished name: `O`
87
93
  :param pulumi.Input[builtins.str] organizational_unit: Distinguished name: `OU`
@@ -94,6 +100,8 @@ class CertRequestSubjectArgs:
94
100
  pulumi.set(__self__, "common_name", common_name)
95
101
  if country is not None:
96
102
  pulumi.set(__self__, "country", country)
103
+ if email_address is not None:
104
+ pulumi.set(__self__, "email_address", email_address)
97
105
  if locality is not None:
98
106
  pulumi.set(__self__, "locality", locality)
99
107
  if organization is not None:
@@ -133,6 +141,18 @@ class CertRequestSubjectArgs:
133
141
  def country(self, value: Optional[pulumi.Input[builtins.str]]):
134
142
  pulumi.set(self, "country", value)
135
143
 
144
+ @property
145
+ @pulumi.getter(name="emailAddress")
146
+ def email_address(self) -> Optional[pulumi.Input[builtins.str]]:
147
+ """
148
+ ASN.1 Object Identifier (OID): `1.2.840.113549.1.9.1`
149
+ """
150
+ return pulumi.get(self, "email_address")
151
+
152
+ @email_address.setter
153
+ def email_address(self, value: Optional[pulumi.Input[builtins.str]]):
154
+ pulumi.set(self, "email_address", value)
155
+
136
156
  @property
137
157
  @pulumi.getter
138
158
  def locality(self) -> Optional[pulumi.Input[builtins.str]]:
@@ -320,6 +340,10 @@ if not MYPY:
320
340
  """
321
341
  Distinguished name: `C`
322
342
  """
343
+ email_address: NotRequired[pulumi.Input[builtins.str]]
344
+ """
345
+ ASN.1 Object Identifier (OID): `1.2.840.113549.1.9.1`
346
+ """
323
347
  locality: NotRequired[pulumi.Input[builtins.str]]
324
348
  """
325
349
  Distinguished name: `L`
@@ -356,6 +380,7 @@ class SelfSignedCertSubjectArgs:
356
380
  def __init__(__self__, *,
357
381
  common_name: Optional[pulumi.Input[builtins.str]] = None,
358
382
  country: Optional[pulumi.Input[builtins.str]] = None,
383
+ email_address: Optional[pulumi.Input[builtins.str]] = None,
359
384
  locality: Optional[pulumi.Input[builtins.str]] = None,
360
385
  organization: Optional[pulumi.Input[builtins.str]] = None,
361
386
  organizational_unit: Optional[pulumi.Input[builtins.str]] = None,
@@ -366,6 +391,7 @@ class SelfSignedCertSubjectArgs:
366
391
  """
367
392
  :param pulumi.Input[builtins.str] common_name: Distinguished name: `CN`
368
393
  :param pulumi.Input[builtins.str] country: Distinguished name: `C`
394
+ :param pulumi.Input[builtins.str] email_address: ASN.1 Object Identifier (OID): `1.2.840.113549.1.9.1`
369
395
  :param pulumi.Input[builtins.str] locality: Distinguished name: `L`
370
396
  :param pulumi.Input[builtins.str] organization: Distinguished name: `O`
371
397
  :param pulumi.Input[builtins.str] organizational_unit: Distinguished name: `OU`
@@ -378,6 +404,8 @@ class SelfSignedCertSubjectArgs:
378
404
  pulumi.set(__self__, "common_name", common_name)
379
405
  if country is not None:
380
406
  pulumi.set(__self__, "country", country)
407
+ if email_address is not None:
408
+ pulumi.set(__self__, "email_address", email_address)
381
409
  if locality is not None:
382
410
  pulumi.set(__self__, "locality", locality)
383
411
  if organization is not None:
@@ -417,6 +445,18 @@ class SelfSignedCertSubjectArgs:
417
445
  def country(self, value: Optional[pulumi.Input[builtins.str]]):
418
446
  pulumi.set(self, "country", value)
419
447
 
448
+ @property
449
+ @pulumi.getter(name="emailAddress")
450
+ def email_address(self) -> Optional[pulumi.Input[builtins.str]]:
451
+ """
452
+ ASN.1 Object Identifier (OID): `1.2.840.113549.1.9.1`
453
+ """
454
+ return pulumi.get(self, "email_address")
455
+
456
+ @email_address.setter
457
+ def email_address(self, value: Optional[pulumi.Input[builtins.str]]):
458
+ pulumi.set(self, "email_address", value)
459
+
420
460
  @property
421
461
  @pulumi.getter
422
462
  def locality(self) -> Optional[pulumi.Input[builtins.str]]:
pulumi_tls/_utilities.py CHANGED
@@ -1,5 +1,5 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
 
@@ -1,5 +1,5 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
  import builtins
@@ -226,6 +226,7 @@ class _CertRequestState:
226
226
  pulumi.set(self, "uris", value)
227
227
 
228
228
 
229
+ @pulumi.type_token("tls:index/certRequest:CertRequest")
229
230
  class CertRequest(pulumi.CustomResource):
230
231
  @overload
231
232
  def __init__(__self__,
@@ -1,5 +1,5 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
  import builtins
@@ -1,5 +1,5 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
  import builtins
@@ -1,5 +1,5 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
  import builtins
pulumi_tls/config/vars.py CHANGED
@@ -1,5 +1,5 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
  import builtins
@@ -1,5 +1,5 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
  import builtins
@@ -1,5 +1,5 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
  import builtins
@@ -1,5 +1,5 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
  import builtins
@@ -356,6 +356,7 @@ class _LocallySignedCertState:
356
356
  pulumi.set(self, "validity_start_time", value)
357
357
 
358
358
 
359
+ @pulumi.type_token("tls:index/locallySignedCert:LocallySignedCert")
359
360
  class LocallySignedCert(pulumi.CustomResource):
360
361
  @overload
361
362
  def __init__(__self__,
pulumi_tls/outputs.py CHANGED
@@ -1,5 +1,5 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
  import builtins
@@ -28,6 +28,8 @@ class CertRequestSubject(dict):
28
28
  suggest = None
29
29
  if key == "commonName":
30
30
  suggest = "common_name"
31
+ elif key == "emailAddress":
32
+ suggest = "email_address"
31
33
  elif key == "organizationalUnit":
32
34
  suggest = "organizational_unit"
33
35
  elif key == "postalCode":
@@ -51,6 +53,7 @@ class CertRequestSubject(dict):
51
53
  def __init__(__self__, *,
52
54
  common_name: Optional[builtins.str] = None,
53
55
  country: Optional[builtins.str] = None,
56
+ email_address: Optional[builtins.str] = None,
54
57
  locality: Optional[builtins.str] = None,
55
58
  organization: Optional[builtins.str] = None,
56
59
  organizational_unit: Optional[builtins.str] = None,
@@ -61,6 +64,7 @@ class CertRequestSubject(dict):
61
64
  """
62
65
  :param builtins.str common_name: Distinguished name: `CN`
63
66
  :param builtins.str country: Distinguished name: `C`
67
+ :param builtins.str email_address: ASN.1 Object Identifier (OID): `1.2.840.113549.1.9.1`
64
68
  :param builtins.str locality: Distinguished name: `L`
65
69
  :param builtins.str organization: Distinguished name: `O`
66
70
  :param builtins.str organizational_unit: Distinguished name: `OU`
@@ -73,6 +77,8 @@ class CertRequestSubject(dict):
73
77
  pulumi.set(__self__, "common_name", common_name)
74
78
  if country is not None:
75
79
  pulumi.set(__self__, "country", country)
80
+ if email_address is not None:
81
+ pulumi.set(__self__, "email_address", email_address)
76
82
  if locality is not None:
77
83
  pulumi.set(__self__, "locality", locality)
78
84
  if organization is not None:
@@ -104,6 +110,14 @@ class CertRequestSubject(dict):
104
110
  """
105
111
  return pulumi.get(self, "country")
106
112
 
113
+ @property
114
+ @pulumi.getter(name="emailAddress")
115
+ def email_address(self) -> Optional[builtins.str]:
116
+ """
117
+ ASN.1 Object Identifier (OID): `1.2.840.113549.1.9.1`
118
+ """
119
+ return pulumi.get(self, "email_address")
120
+
107
121
  @property
108
122
  @pulumi.getter
109
123
  def locality(self) -> Optional[builtins.str]:
@@ -168,6 +182,8 @@ class SelfSignedCertSubject(dict):
168
182
  suggest = None
169
183
  if key == "commonName":
170
184
  suggest = "common_name"
185
+ elif key == "emailAddress":
186
+ suggest = "email_address"
171
187
  elif key == "organizationalUnit":
172
188
  suggest = "organizational_unit"
173
189
  elif key == "postalCode":
@@ -191,6 +207,7 @@ class SelfSignedCertSubject(dict):
191
207
  def __init__(__self__, *,
192
208
  common_name: Optional[builtins.str] = None,
193
209
  country: Optional[builtins.str] = None,
210
+ email_address: Optional[builtins.str] = None,
194
211
  locality: Optional[builtins.str] = None,
195
212
  organization: Optional[builtins.str] = None,
196
213
  organizational_unit: Optional[builtins.str] = None,
@@ -201,6 +218,7 @@ class SelfSignedCertSubject(dict):
201
218
  """
202
219
  :param builtins.str common_name: Distinguished name: `CN`
203
220
  :param builtins.str country: Distinguished name: `C`
221
+ :param builtins.str email_address: ASN.1 Object Identifier (OID): `1.2.840.113549.1.9.1`
204
222
  :param builtins.str locality: Distinguished name: `L`
205
223
  :param builtins.str organization: Distinguished name: `O`
206
224
  :param builtins.str organizational_unit: Distinguished name: `OU`
@@ -213,6 +231,8 @@ class SelfSignedCertSubject(dict):
213
231
  pulumi.set(__self__, "common_name", common_name)
214
232
  if country is not None:
215
233
  pulumi.set(__self__, "country", country)
234
+ if email_address is not None:
235
+ pulumi.set(__self__, "email_address", email_address)
216
236
  if locality is not None:
217
237
  pulumi.set(__self__, "locality", locality)
218
238
  if organization is not None:
@@ -244,6 +264,14 @@ class SelfSignedCertSubject(dict):
244
264
  """
245
265
  return pulumi.get(self, "country")
246
266
 
267
+ @property
268
+ @pulumi.getter(name="emailAddress")
269
+ def email_address(self) -> Optional[builtins.str]:
270
+ """
271
+ ASN.1 Object Identifier (OID): `1.2.840.113549.1.9.1`
272
+ """
273
+ return pulumi.get(self, "email_address")
274
+
247
275
  @property
248
276
  @pulumi.getter
249
277
  def locality(self) -> Optional[builtins.str]:
pulumi_tls/private_key.py CHANGED
@@ -1,5 +1,5 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
  import builtins
@@ -240,6 +240,7 @@ class _PrivateKeyState:
240
240
  pulumi.set(self, "rsa_bits", value)
241
241
 
242
242
 
243
+ @pulumi.type_token("tls:index/privateKey:PrivateKey")
243
244
  class PrivateKey(pulumi.CustomResource):
244
245
  @overload
245
246
  def __init__(__self__,
pulumi_tls/provider.py CHANGED
@@ -1,5 +1,5 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
  import builtins
@@ -42,6 +42,7 @@ class ProviderArgs:
42
42
  pulumi.set(self, "proxy", value)
43
43
 
44
44
 
45
+ @pulumi.type_token("pulumi:providers:tls")
45
46
  class Provider(pulumi.ProviderResource):
46
47
  @overload
47
48
  def __init__(__self__,
@@ -103,3 +104,23 @@ class Provider(pulumi.ProviderResource):
103
104
  __props__,
104
105
  opts)
105
106
 
107
+ @pulumi.output_type
108
+ class TerraformConfigResult:
109
+ def __init__(__self__, result=None):
110
+ if result and not isinstance(result, dict):
111
+ raise TypeError("Expected argument 'result' to be a dict")
112
+ pulumi.set(__self__, "result", result)
113
+
114
+ @property
115
+ @pulumi.getter
116
+ def result(self) -> Mapping[str, Any]:
117
+ return pulumi.get(self, "result")
118
+
119
+ def terraform_config(__self__) -> pulumi.Output['Provider.TerraformConfigResult']:
120
+ """
121
+ This function returns a Terraform config object with terraform-namecased keys,to be used with the Terraform Module Provider.
122
+ """
123
+ __args__ = dict()
124
+ __args__['__self__'] = __self__
125
+ return pulumi.runtime.call('pulumi:providers:tls/terraformConfig', __args__, res=__self__, typ=Provider.TerraformConfigResult)
126
+
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "tls",
4
- "version": "5.2.0-alpha.1744439866"
4
+ "version": "5.3.0-alpha.1752821408"
5
5
  }
@@ -1,5 +1,5 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
  import builtins
@@ -456,6 +456,7 @@ class _SelfSignedCertState:
456
456
  pulumi.set(self, "validity_start_time", value)
457
457
 
458
458
 
459
+ @pulumi.type_token("tls:index/selfSignedCert:SelfSignedCert")
459
460
  class SelfSignedCert(pulumi.CustomResource):
460
461
  @overload
461
462
  def __init__(__self__,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulumi_tls
3
- Version: 5.2.0a1744439866
3
+ Version: 5.3.0a1752821408
4
4
  Summary: A Pulumi package to create TLS resources in Pulumi programs.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
@@ -9,9 +9,9 @@ Keywords: pulumi,tls
9
9
  Requires-Python: >=3.9
10
10
  Description-Content-Type: text/markdown
11
11
  Requires-Dist: parver>=0.2.1
12
- Requires-Dist: pulumi<4.0.0,>=3.142.0
12
+ Requires-Dist: pulumi<4.0.0,>=3.165.0
13
13
  Requires-Dist: semver>=2.8.1
14
- Requires-Dist: typing-extensions>=4.11; python_version < "3.11"
14
+ Requires-Dist: typing-extensions<5,>=4.11; python_version < "3.11"
15
15
 
16
16
  [![Actions Status](https://github.com/pulumi/pulumi-tls/workflows/master/badge.svg)](https://github.com/pulumi/pulumi-tls/actions)
17
17
  [![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com)
@@ -0,0 +1,21 @@
1
+ pulumi_tls/__init__.py,sha256=BdKTXXfVqJ5y6yimFRKk8wSRs02PMzOQgapjkZ8n6pI,1521
2
+ pulumi_tls/_inputs.py,sha256=b1ofgkzTmzx-ArfSpRUov05a98Ax_LZ2I9SfYHLTTwE,20562
3
+ pulumi_tls/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
4
+ pulumi_tls/cert_request.py,sha256=FpuHfNL-So34zwwfGyuYJjHL_jMSsa0cCffoGT2iJB8,23727
5
+ pulumi_tls/get_certificate.py,sha256=6SqU1yovRmq0MXYbhXfBQWiLH8M8M5A1pl1OIpzuw_w,6518
6
+ pulumi_tls/get_public_key.py,sha256=XM6JqMXL-jsQDGoPGX0GgASisfIp_3234yFFPA2aqO4,12517
7
+ pulumi_tls/locally_signed_cert.py,sha256=w73JO_KWLjnXiooMd_FTJXucZBCfEIqEckTeQsKO4Mg,39758
8
+ pulumi_tls/outputs.py,sha256=haJHHDYBe2DM6Q1UV2Son9lR_nAE10A4l_wdg74Phmc,17696
9
+ pulumi_tls/private_key.py,sha256=23NBWJXGGic7z3ih9TzAUxssksLCWog7nrolOx70LVE,26406
10
+ pulumi_tls/provider.py,sha256=SLhh_NMIJurEy9kt_xCQSmycPrqUmOoqHUv-nWFPMxk,5694
11
+ pulumi_tls/pulumi-plugin.json,sha256=hr_A3UBidDmQL1qYVcJgpccxIPlxDzQifMUo9G5hy3s,79
12
+ pulumi_tls/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
+ pulumi_tls/self_signed_cert.py,sha256=A7NipJGCs2Pe104JmbBZZoIAFyuF_UHOdOdoBUbmmjw,49688
14
+ pulumi_tls/config/__init__.py,sha256=LBsoZbCKMHDFo-5RJPY0lRzMsShB1weBQPxL9RQBFtY,283
15
+ pulumi_tls/config/__init__.pyi,sha256=Sh22CUNol0D0I7hr4TXoRbcVfR53_XySycRjQ106U_c,646
16
+ pulumi_tls/config/outputs.py,sha256=8lEmmdbe3jTab9XX2mUqknmb161sm77LMmI91o6rHfE,2933
17
+ pulumi_tls/config/vars.py,sha256=LLvpIAqWHQYhNJ4YuejirRroG2TUsXb1YWWWgwdfr4Y,833
18
+ pulumi_tls-5.3.0a1752821408.dist-info/METADATA,sha256=eP-6MSwUYV-_LxrnSB3w6Tc0JutGBPf3QDs-KBYCdDI,2493
19
+ pulumi_tls-5.3.0a1752821408.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
20
+ pulumi_tls-5.3.0a1752821408.dist-info/top_level.txt,sha256=w0yJOTuCUb1BpNsSTm0FJZPucueobFIfzPGzjYklx1U,11
21
+ pulumi_tls-5.3.0a1752821408.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (78.1.0)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,21 +0,0 @@
1
- pulumi_tls/__init__.py,sha256=igmqUHAUNcc8tBKQILO7YNi_YZk1cOywYEulwwQUmws,1539
2
- pulumi_tls/_inputs.py,sha256=5La2SUxiwjnZc3GGGCT8GhUjjmSB_ke6FuAuIv5xzVI,18882
3
- pulumi_tls/_utilities.py,sha256=yyuODPikZ9pto3JWJRfMJo98dWmQ5_y45-TVcZG_K8Y,10807
4
- pulumi_tls/cert_request.py,sha256=AvFCagL3J9Nne9azeAXIt_8XOkPjz519-xT9pXSTqaE,23689
5
- pulumi_tls/get_certificate.py,sha256=H8hsryJB-CfFIGetSF-jAQoqONbCn8o9RiBttfzyReY,6536
6
- pulumi_tls/get_public_key.py,sha256=cs_Uc45e0SDKPRF-GN2VI15dvrX6xYFZllLzJsYNH9I,12535
7
- pulumi_tls/locally_signed_cert.py,sha256=UWIiwASaZJL84HO8r5XcRyr7hqQO2fcy7GRlcdlT4PY,39708
8
- pulumi_tls/outputs.py,sha256=2hO5OU2RoZmEiET7XZJP1yQU3xfcWzqcyOJS9sJrpVI,16550
9
- pulumi_tls/private_key.py,sha256=5i2QyLm5OOx8AYw56iF2oDy3e8l9lYAgD_5tTV8ol2k,26370
10
- pulumi_tls/provider.py,sha256=_chxb8RMsRNSfnfNN09Wxp-x4l0It9aaPdH7SjnCqsU,4803
11
- pulumi_tls/pulumi-plugin.json,sha256=EhNmxRmSgnn8L0CQn__t1sFcrbG8_tSZjyL7y9wFrM4,79
12
- pulumi_tls/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
- pulumi_tls/self_signed_cert.py,sha256=hoszlxypY_7zVe4RwJScuTgtajLU-G48d2Oao2T4GaI,49644
14
- pulumi_tls/config/__init__.py,sha256=nKVKdvQbN3zgJ23HPoKpz1sGrfjaDijL6xvKxGVmj7c,301
15
- pulumi_tls/config/__init__.pyi,sha256=Z1ZoNt3OF5wvrVIN44zrQ7bHwyx-AKpSthNEHaNmcFc,664
16
- pulumi_tls/config/outputs.py,sha256=NciNLqyFfMQRFalV1H-Svtw7SiQq6L50ExjXpiBp2sw,2951
17
- pulumi_tls/config/vars.py,sha256=u38zR1MajTlqwLMtNjWziDZSvecTybyMd_i9de2js10,851
18
- pulumi_tls-5.2.0a1744439866.dist-info/METADATA,sha256=KOC5_BkE-giuPXOk1IJgSzRRTRG8mcpmHml2oe50mbQ,2490
19
- pulumi_tls-5.2.0a1744439866.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
20
- pulumi_tls-5.2.0a1744439866.dist-info/top_level.txt,sha256=w0yJOTuCUb1BpNsSTm0FJZPucueobFIfzPGzjYklx1U,11
21
- pulumi_tls-5.2.0a1744439866.dist-info/RECORD,,