pulumi-venafi 1.10.0a1715766105__py3-none-any.whl → 1.11.0a1736835975__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-venafi might be problematic. Click here for more details.

@@ -0,0 +1,167 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
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
15
+ from . import _utilities
16
+
17
+ __all__ = [
18
+ 'GetCloudProviderResult',
19
+ 'AwaitableGetCloudProviderResult',
20
+ 'get_cloud_provider',
21
+ 'get_cloud_provider_output',
22
+ ]
23
+
24
+ @pulumi.output_type
25
+ class GetCloudProviderResult:
26
+ """
27
+ A collection of values returned by getCloudProvider.
28
+ """
29
+ def __init__(__self__, id=None, keystores_count=None, name=None, status=None, status_details=None, type=None):
30
+ if id and not isinstance(id, str):
31
+ raise TypeError("Expected argument 'id' to be a str")
32
+ pulumi.set(__self__, "id", id)
33
+ if keystores_count and not isinstance(keystores_count, int):
34
+ raise TypeError("Expected argument 'keystores_count' to be a int")
35
+ pulumi.set(__self__, "keystores_count", keystores_count)
36
+ if name and not isinstance(name, str):
37
+ raise TypeError("Expected argument 'name' to be a str")
38
+ pulumi.set(__self__, "name", name)
39
+ if status and not isinstance(status, str):
40
+ raise TypeError("Expected argument 'status' to be a str")
41
+ pulumi.set(__self__, "status", status)
42
+ if status_details and not isinstance(status_details, str):
43
+ raise TypeError("Expected argument 'status_details' to be a str")
44
+ pulumi.set(__self__, "status_details", status_details)
45
+ if type and not isinstance(type, str):
46
+ raise TypeError("Expected argument 'type' to be a str")
47
+ pulumi.set(__self__, "type", type)
48
+
49
+ @property
50
+ @pulumi.getter
51
+ def id(self) -> str:
52
+ """
53
+ The provider-assigned unique ID for this managed resource.
54
+ """
55
+ return pulumi.get(self, "id")
56
+
57
+ @property
58
+ @pulumi.getter(name="keystoresCount")
59
+ def keystores_count(self) -> int:
60
+ """
61
+ Number of Cloud Keystores configured with the Cloud Provider
62
+ """
63
+ return pulumi.get(self, "keystores_count")
64
+
65
+ @property
66
+ @pulumi.getter
67
+ def name(self) -> str:
68
+ return pulumi.get(self, "name")
69
+
70
+ @property
71
+ @pulumi.getter
72
+ def status(self) -> str:
73
+ """
74
+ The status of the Cloud Provider. Either `VALIDATED` or `NOT_VALIDATED`.
75
+ """
76
+ return pulumi.get(self, "status")
77
+
78
+ @property
79
+ @pulumi.getter(name="statusDetails")
80
+ def status_details(self) -> str:
81
+ """
82
+ The details of the Cloud Provider status. If the status is `VALIDATED`, this value will be empty.
83
+ """
84
+ return pulumi.get(self, "status_details")
85
+
86
+ @property
87
+ @pulumi.getter
88
+ def type(self) -> str:
89
+ """
90
+ The Cloud Provider type. Either `AWS`, `AZURE` or `GCP`
91
+ """
92
+ return pulumi.get(self, "type")
93
+
94
+
95
+ class AwaitableGetCloudProviderResult(GetCloudProviderResult):
96
+ # pylint: disable=using-constant-test
97
+ def __await__(self):
98
+ if False:
99
+ yield self
100
+ return GetCloudProviderResult(
101
+ id=self.id,
102
+ keystores_count=self.keystores_count,
103
+ name=self.name,
104
+ status=self.status,
105
+ status_details=self.status_details,
106
+ type=self.type)
107
+
108
+
109
+ def get_cloud_provider(name: Optional[str] = None,
110
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetCloudProviderResult:
111
+ """
112
+ Use this data source to get the `ID` of a cloud provider in Venafi Control Plane, referenced by its name.
113
+
114
+ ## Example Usage
115
+
116
+ ```python
117
+ import pulumi
118
+ import pulumi_venafi as venafi
119
+
120
+ # Find a cloud provider
121
+ cp_example = venafi.get_cloud_provider(name="Cloud Provider Example")
122
+ ```
123
+
124
+
125
+ :param str name: Name of the Cloud Provider to look up.
126
+ """
127
+ __args__ = dict()
128
+ __args__['name'] = name
129
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
130
+ __ret__ = pulumi.runtime.invoke('venafi:index/getCloudProvider:getCloudProvider', __args__, opts=opts, typ=GetCloudProviderResult).value
131
+
132
+ return AwaitableGetCloudProviderResult(
133
+ id=pulumi.get(__ret__, 'id'),
134
+ keystores_count=pulumi.get(__ret__, 'keystores_count'),
135
+ name=pulumi.get(__ret__, 'name'),
136
+ status=pulumi.get(__ret__, 'status'),
137
+ status_details=pulumi.get(__ret__, 'status_details'),
138
+ type=pulumi.get(__ret__, 'type'))
139
+ def get_cloud_provider_output(name: Optional[pulumi.Input[str]] = None,
140
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetCloudProviderResult]:
141
+ """
142
+ Use this data source to get the `ID` of a cloud provider in Venafi Control Plane, referenced by its name.
143
+
144
+ ## Example Usage
145
+
146
+ ```python
147
+ import pulumi
148
+ import pulumi_venafi as venafi
149
+
150
+ # Find a cloud provider
151
+ cp_example = venafi.get_cloud_provider(name="Cloud Provider Example")
152
+ ```
153
+
154
+
155
+ :param str name: Name of the Cloud Provider to look up.
156
+ """
157
+ __args__ = dict()
158
+ __args__['name'] = name
159
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
160
+ __ret__ = pulumi.runtime.invoke_output('venafi:index/getCloudProvider:getCloudProvider', __args__, opts=opts, typ=GetCloudProviderResult)
161
+ return __ret__.apply(lambda __response__: GetCloudProviderResult(
162
+ id=pulumi.get(__response__, 'id'),
163
+ keystores_count=pulumi.get(__response__, 'keystores_count'),
164
+ name=pulumi.get(__response__, 'name'),
165
+ status=pulumi.get(__response__, 'status'),
166
+ status_details=pulumi.get(__response__, 'status_details'),
167
+ type=pulumi.get(__response__, 'type')))
pulumi_venafi/policy.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__ = ['PolicyArgs', 'Policy']
pulumi_venafi/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
 
12
17
  __all__ = ['ProviderArgs', 'Provider']
@@ -34,7 +39,7 @@ class ProviderArgs:
34
39
  :param pulumi.Input[str] api_key: API key for Venafi Control Plane. Example: 142231b7-cvb0-412e-886b-6aeght0bc93d
35
40
  :param pulumi.Input[str] client_id: application that will be using the token
36
41
  :param pulumi.Input[bool] dev_mode: When set to true, the resulting certificate will be issued by an ephemeral, no trust CA rather than enrolling using
37
- Venafi as a Service or Trust Protection Platform. Useful for development and testing.
42
+ Venafi as a Service or Trust Protection Platform. Useful for development and testing
38
43
  :param pulumi.Input[str] external_jwt: JWT of the identity provider associated to the Venafi Control Plane service account that is granting the access token
39
44
  :param pulumi.Input[str] p12_cert_filename: Filename of PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to
40
45
  TLSPDC
@@ -124,7 +129,7 @@ class ProviderArgs:
124
129
  def dev_mode(self) -> Optional[pulumi.Input[bool]]:
125
130
  """
126
131
  When set to true, the resulting certificate will be issued by an ephemeral, no trust CA rather than enrolling using
127
- Venafi as a Service or Trust Protection Platform. Useful for development and testing.
132
+ Venafi as a Service or Trust Protection Platform. Useful for development and testing
128
133
  """
129
134
  return pulumi.get(self, "dev_mode")
130
135
 
@@ -192,13 +197,11 @@ class ProviderArgs:
192
197
 
193
198
  @property
194
199
  @pulumi.getter(name="tppPassword")
200
+ @_utilities.deprecated(""", please use access_token instead""")
195
201
  def tpp_password(self) -> Optional[pulumi.Input[str]]:
196
202
  """
197
203
  Password for WebSDK user. Example: password
198
204
  """
199
- warnings.warn(""", please use access_token instead""", DeprecationWarning)
200
- pulumi.log.warn("""tpp_password is deprecated: , please use access_token instead""")
201
-
202
205
  return pulumi.get(self, "tpp_password")
203
206
 
204
207
  @tpp_password.setter
@@ -207,13 +210,11 @@ class ProviderArgs:
207
210
 
208
211
  @property
209
212
  @pulumi.getter(name="tppUsername")
213
+ @_utilities.deprecated(""", please use access_token instead""")
210
214
  def tpp_username(self) -> Optional[pulumi.Input[str]]:
211
215
  """
212
216
  WebSDK user for Venafi TLSPDC. Example: admin
213
217
  """
214
- warnings.warn(""", please use access_token instead""", DeprecationWarning)
215
- pulumi.log.warn("""tpp_username is deprecated: , please use access_token instead""")
216
-
217
218
  return pulumi.get(self, "tpp_username")
218
219
 
219
220
  @tpp_username.setter
@@ -291,7 +292,7 @@ class Provider(pulumi.ProviderResource):
291
292
  :param pulumi.Input[str] api_key: API key for Venafi Control Plane. Example: 142231b7-cvb0-412e-886b-6aeght0bc93d
292
293
  :param pulumi.Input[str] client_id: application that will be using the token
293
294
  :param pulumi.Input[bool] dev_mode: When set to true, the resulting certificate will be issued by an ephemeral, no trust CA rather than enrolling using
294
- Venafi as a Service or Trust Protection Platform. Useful for development and testing.
295
+ Venafi as a Service or Trust Protection Platform. Useful for development and testing
295
296
  :param pulumi.Input[str] external_jwt: JWT of the identity provider associated to the Venafi Control Plane service account that is granting the access token
296
297
  :param pulumi.Input[str] p12_cert_filename: Filename of PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to
297
298
  TLSPDC
@@ -436,24 +437,20 @@ class Provider(pulumi.ProviderResource):
436
437
 
437
438
  @property
438
439
  @pulumi.getter(name="tppPassword")
440
+ @_utilities.deprecated(""", please use access_token instead""")
439
441
  def tpp_password(self) -> pulumi.Output[Optional[str]]:
440
442
  """
441
443
  Password for WebSDK user. Example: password
442
444
  """
443
- warnings.warn(""", please use access_token instead""", DeprecationWarning)
444
- pulumi.log.warn("""tpp_password is deprecated: , please use access_token instead""")
445
-
446
445
  return pulumi.get(self, "tpp_password")
447
446
 
448
447
  @property
449
448
  @pulumi.getter(name="tppUsername")
449
+ @_utilities.deprecated(""", please use access_token instead""")
450
450
  def tpp_username(self) -> pulumi.Output[Optional[str]]:
451
451
  """
452
452
  WebSDK user for Venafi TLSPDC. Example: admin
453
453
  """
454
- warnings.warn(""", please use access_token instead""", DeprecationWarning)
455
- pulumi.log.warn("""tpp_username is deprecated: , please use access_token instead""")
456
-
457
454
  return pulumi.get(self, "tpp_username")
458
455
 
459
456
  @property
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "venafi",
4
- "version": "1.10.0-alpha.1715766105+b034fc6"
4
+ "version": "1.11.0-alpha.1736835975"
5
5
  }
@@ -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__ = ['SshCertificateArgs', 'SshCertificate']
@@ -206,14 +211,12 @@ class SshCertificateArgs:
206
211
 
207
212
  @property
208
213
  @pulumi.getter
214
+ @_utilities.deprecated("""This will be removed in the future. Use \"principals\" instead""")
209
215
  def principal(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
210
216
  """
211
217
  [DEPRECATED] - (Optional, set of strings) Use "principals" instead. A list of usernames for whom the
212
218
  requested certificate will be valid.
213
219
  """
214
- warnings.warn("""This will be removed in the future. Use \"principals\" instead""", DeprecationWarning)
215
- pulumi.log.warn("""principal is deprecated: This will be removed in the future. Use \"principals\" instead""")
216
-
217
220
  return pulumi.get(self, "principal")
218
221
 
219
222
  @principal.setter
@@ -536,14 +539,12 @@ class _SshCertificateState:
536
539
 
537
540
  @property
538
541
  @pulumi.getter
542
+ @_utilities.deprecated("""This will be removed in the future. Use \"principals\" instead""")
539
543
  def principal(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
540
544
  """
541
545
  [DEPRECATED] - (Optional, set of strings) Use "principals" instead. A list of usernames for whom the
542
546
  requested certificate will be valid.
543
547
  """
544
- warnings.warn("""This will be removed in the future. Use \"principals\" instead""", DeprecationWarning)
545
- pulumi.log.warn("""principal is deprecated: This will be removed in the future. Use \"principals\" instead""")
546
-
547
548
  return pulumi.get(self, "principal")
548
549
 
549
550
  @principal.setter
@@ -1063,14 +1064,12 @@ class SshCertificate(pulumi.CustomResource):
1063
1064
 
1064
1065
  @property
1065
1066
  @pulumi.getter
1067
+ @_utilities.deprecated("""This will be removed in the future. Use \"principals\" instead""")
1066
1068
  def principal(self) -> pulumi.Output[Optional[Sequence[str]]]:
1067
1069
  """
1068
1070
  [DEPRECATED] - (Optional, set of strings) Use "principals" instead. A list of usernames for whom the
1069
1071
  requested certificate will be valid.
1070
1072
  """
1071
- warnings.warn("""This will be removed in the future. Use \"principals\" instead""", DeprecationWarning)
1072
- pulumi.log.warn("""principal is deprecated: This will be removed in the future. Use \"principals\" instead""")
1073
-
1074
1073
  return pulumi.get(self, "principal")
1075
1074
 
1076
1075
  @property
@@ -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__ = ['SshConfigArgs', 'SshConfig']
@@ -1,16 +1,17 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: pulumi_venafi
3
- Version: 1.10.0a1715766105
3
+ Version: 1.11.0a1736835975
4
4
  Summary: A Pulumi package for creating and managing venafi cloud resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
7
7
  Project-URL: Repository, https://github.com/pulumi/pulumi-venafi
8
8
  Keywords: pulumi,venafi
9
- Requires-Python: >=3.8
9
+ Requires-Python: >=3.9
10
10
  Description-Content-Type: text/markdown
11
- Requires-Dist: parver >=0.2.1
12
- Requires-Dist: pulumi <4.0.0,>=3.0.0
13
- Requires-Dist: semver >=2.8.1
11
+ Requires-Dist: parver>=0.2.1
12
+ Requires-Dist: pulumi<4.0.0,>=3.142.0
13
+ Requires-Dist: semver>=2.8.1
14
+ Requires-Dist: typing-extensions>=4.11; python_version < "3.11"
14
15
 
15
16
  [![Actions Status](https://github.com/pulumi/pulumi-venafi/workflows/master/badge.svg)](https://github.com/pulumi/pulumi-venafi/actions)
16
17
  [![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com)
@@ -0,0 +1,19 @@
1
+ pulumi_venafi/__init__.py,sha256=h34J0B4E1v2um3rbsc0yu3ambi9FGoY4e_Js6aMydbc,1729
2
+ pulumi_venafi/_utilities.py,sha256=-gxwnD6__OYdSf8jJgJijNuu-UHUwi5pJ1H7-eIHDhg,10504
3
+ pulumi_venafi/certificate.py,sha256=wh_8L_1Xxiy7iFl_79zuba2qCojOh9rFZGig0ibCpKk,61938
4
+ pulumi_venafi/cloud_keystore_installation.py,sha256=jSV-g393cN0zwUzubC77DQTJIbsOosknQH67PTgARLo,20516
5
+ pulumi_venafi/get_cloud_keystore.py,sha256=mGEcyk4Rd04AujY0cv-bWDTsljS0z-l30R_VlITUFUE,6871
6
+ pulumi_venafi/get_cloud_provider.py,sha256=tO4Xzpg1OfwaePAD3Xm9lzwZC7U4U8fGF4wyn4TTXUM,6022
7
+ pulumi_venafi/policy.py,sha256=EMDu8zmiIeeljAOtJzG_hPg9Qyhscdw11SquUJEb4ug,11884
8
+ pulumi_venafi/provider.py,sha256=8TK_cQI0SxuFz1Za3vtNIc_MkH3FnzxKOJlKqrHMFCA,23047
9
+ pulumi_venafi/pulumi-plugin.json,sha256=Ne4uL6RASA_H6Eg9qNcAa_ITZ1THiMJlgtdR2bm_dQA,83
10
+ pulumi_venafi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ pulumi_venafi/ssh_certificate.py,sha256=mVU6fhoxFZ91B3uTl33S_Azatlb6DSfG1lq7oA_BecU,54158
12
+ pulumi_venafi/ssh_config.py,sha256=O2JVh-ifRcavYl11OIND9qgaaF-NCc2u6ZhAP1RIFAU,8680
13
+ pulumi_venafi/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
14
+ pulumi_venafi/config/__init__.pyi,sha256=TR27dlJJIXfnn3ONjd8C2SIHUY3Qi2L-GXm_JHtmy44,2298
15
+ pulumi_venafi/config/vars.py,sha256=SoSoX8n1kUOxlPGwrrSTgperPr5jSBB1SIuPGLxB3rY,3807
16
+ pulumi_venafi-1.11.0a1736835975.dist-info/METADATA,sha256=vV5YpAiIWIlmNq94WUylF6-ISLo_8LsvDjEePujYxE0,3674
17
+ pulumi_venafi-1.11.0a1736835975.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
18
+ pulumi_venafi-1.11.0a1736835975.dist-info/top_level.txt,sha256=Ail5lbFaPXJp8zJFZ3jJASt8lnXFrCD0SBlJWooalBM,14
19
+ pulumi_venafi-1.11.0a1736835975.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.43.0)
2
+ Generator: setuptools (75.8.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,16 +0,0 @@
1
- pulumi_venafi/__init__.py,sha256=xjOmXfhTo-d0Ib4k3UOCfFeJuCM9mRyBs62ckc1-PW0,1404
2
- pulumi_venafi/_utilities.py,sha256=b6gJn0IIeM1t6Q7EVjqw3yhuGyP-uENQhtL5yp7aHR8,9248
3
- pulumi_venafi/certificate.py,sha256=_jC_nk46r2-jFFonAihyrMLdlE8d3M5Q2FOweakZVxE,48561
4
- pulumi_venafi/policy.py,sha256=odTCXTwDiK3mwyseq8eQJF0MK1ujLmTbTxdTqKCwVyM,11710
5
- pulumi_venafi/provider.py,sha256=6kQ7G62W-yH1GmBTRMNzVn_tvccMSU-xqY1aW4wF3lY,23312
6
- pulumi_venafi/pulumi-plugin.json,sha256=dHVjQRUo3vJ2WAvmMi61RshMofDE-4_gaODj7OpV9o4,91
7
- pulumi_venafi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
- pulumi_venafi/ssh_certificate.py,sha256=_hCGBchzkSaGMA1jGzM3LB22jvqMEKbVk9bt_gB0Oag,54389
9
- pulumi_venafi/ssh_config.py,sha256=zxJo5UApIkahFvRBLr5NWAT8wGS6Or3gx1Lou7veZL8,8506
10
- pulumi_venafi/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
11
- pulumi_venafi/config/__init__.pyi,sha256=RD6wdDdvUsaduJNoP5XJvtSHbwZVv6A-UR-Z8QvVUFI,2125
12
- pulumi_venafi/config/vars.py,sha256=ELE7ENBhGBgAoRKW37-Kllk9tdAZm1_tSftiV-NPZjw,3634
13
- pulumi_venafi-1.10.0a1715766105.dist-info/METADATA,sha256=5aegt8tx0qp5GMIv19eLy-On9s8if77lngKJbRBRUEE,3611
14
- pulumi_venafi-1.10.0a1715766105.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
15
- pulumi_venafi-1.10.0a1715766105.dist-info/top_level.txt,sha256=Ail5lbFaPXJp8zJFZ3jJASt8lnXFrCD0SBlJWooalBM,14
16
- pulumi_venafi-1.10.0a1715766105.dist-info/RECORD,,