pulumi-venafi 1.11.0a1733380379__tar.gz → 1.11.0a1733797592__tar.gz
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_venafi-1.11.0a1733380379 → pulumi_venafi-1.11.0a1733797592}/PKG-INFO +1 -1
- {pulumi_venafi-1.11.0a1733380379 → pulumi_venafi-1.11.0a1733797592}/pulumi_venafi/get_cloud_keystore.py +2 -2
- {pulumi_venafi-1.11.0a1733380379 → pulumi_venafi-1.11.0a1733797592}/pulumi_venafi/get_cloud_provider.py +2 -2
- {pulumi_venafi-1.11.0a1733380379 → pulumi_venafi-1.11.0a1733797592}/pulumi_venafi/pulumi-plugin.json +1 -1
- {pulumi_venafi-1.11.0a1733380379 → pulumi_venafi-1.11.0a1733797592}/pulumi_venafi.egg-info/PKG-INFO +1 -1
- {pulumi_venafi-1.11.0a1733380379 → pulumi_venafi-1.11.0a1733797592}/pyproject.toml +1 -1
- {pulumi_venafi-1.11.0a1733380379 → pulumi_venafi-1.11.0a1733797592}/README.md +0 -0
- {pulumi_venafi-1.11.0a1733380379 → pulumi_venafi-1.11.0a1733797592}/pulumi_venafi/__init__.py +0 -0
- {pulumi_venafi-1.11.0a1733380379 → pulumi_venafi-1.11.0a1733797592}/pulumi_venafi/_utilities.py +0 -0
- {pulumi_venafi-1.11.0a1733380379 → pulumi_venafi-1.11.0a1733797592}/pulumi_venafi/certificate.py +0 -0
- {pulumi_venafi-1.11.0a1733380379 → pulumi_venafi-1.11.0a1733797592}/pulumi_venafi/cloud_keystore_installation.py +0 -0
- {pulumi_venafi-1.11.0a1733380379 → pulumi_venafi-1.11.0a1733797592}/pulumi_venafi/config/__init__.py +0 -0
- {pulumi_venafi-1.11.0a1733380379 → pulumi_venafi-1.11.0a1733797592}/pulumi_venafi/config/__init__.pyi +0 -0
- {pulumi_venafi-1.11.0a1733380379 → pulumi_venafi-1.11.0a1733797592}/pulumi_venafi/config/vars.py +0 -0
- {pulumi_venafi-1.11.0a1733380379 → pulumi_venafi-1.11.0a1733797592}/pulumi_venafi/policy.py +0 -0
- {pulumi_venafi-1.11.0a1733380379 → pulumi_venafi-1.11.0a1733797592}/pulumi_venafi/provider.py +0 -0
- {pulumi_venafi-1.11.0a1733380379 → pulumi_venafi-1.11.0a1733797592}/pulumi_venafi/py.typed +0 -0
- {pulumi_venafi-1.11.0a1733380379 → pulumi_venafi-1.11.0a1733797592}/pulumi_venafi/ssh_certificate.py +0 -0
- {pulumi_venafi-1.11.0a1733380379 → pulumi_venafi-1.11.0a1733797592}/pulumi_venafi/ssh_config.py +0 -0
- {pulumi_venafi-1.11.0a1733380379 → pulumi_venafi-1.11.0a1733797592}/pulumi_venafi.egg-info/SOURCES.txt +0 -0
- {pulumi_venafi-1.11.0a1733380379 → pulumi_venafi-1.11.0a1733797592}/pulumi_venafi.egg-info/dependency_links.txt +0 -0
- {pulumi_venafi-1.11.0a1733380379 → pulumi_venafi-1.11.0a1733797592}/pulumi_venafi.egg-info/requires.txt +0 -0
- {pulumi_venafi-1.11.0a1733380379 → pulumi_venafi-1.11.0a1733797592}/pulumi_venafi.egg-info/top_level.txt +0 -0
- {pulumi_venafi-1.11.0a1733380379 → pulumi_venafi-1.11.0a1733797592}/setup.cfg +0 -0
|
@@ -130,7 +130,7 @@ def get_cloud_keystore(cloud_provider_id: Optional[str] = None,
|
|
|
130
130
|
type=pulumi.get(__ret__, 'type'))
|
|
131
131
|
def get_cloud_keystore_output(cloud_provider_id: Optional[pulumi.Input[str]] = None,
|
|
132
132
|
name: Optional[pulumi.Input[str]] = None,
|
|
133
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetCloudKeystoreResult]:
|
|
133
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetCloudKeystoreResult]:
|
|
134
134
|
"""
|
|
135
135
|
Use this data source to get the `ID` of a cloud keystore in Venafi Control Plane, referenced by its name and parent
|
|
136
136
|
cloud provider ID. You can use `get_cloud_provider` data source to obtain the ID of the parent cloud provider.
|
|
@@ -156,7 +156,7 @@ def get_cloud_keystore_output(cloud_provider_id: Optional[pulumi.Input[str]] = N
|
|
|
156
156
|
__args__ = dict()
|
|
157
157
|
__args__['cloudProviderId'] = cloud_provider_id
|
|
158
158
|
__args__['name'] = name
|
|
159
|
-
opts = pulumi.
|
|
159
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
160
160
|
__ret__ = pulumi.runtime.invoke_output('venafi:index/getCloudKeystore:getCloudKeystore', __args__, opts=opts, typ=GetCloudKeystoreResult)
|
|
161
161
|
return __ret__.apply(lambda __response__: GetCloudKeystoreResult(
|
|
162
162
|
cloud_provider_id=pulumi.get(__response__, 'cloud_provider_id'),
|
|
@@ -137,7 +137,7 @@ def get_cloud_provider(name: Optional[str] = None,
|
|
|
137
137
|
status_details=pulumi.get(__ret__, 'status_details'),
|
|
138
138
|
type=pulumi.get(__ret__, 'type'))
|
|
139
139
|
def get_cloud_provider_output(name: Optional[pulumi.Input[str]] = None,
|
|
140
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetCloudProviderResult]:
|
|
140
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetCloudProviderResult]:
|
|
141
141
|
"""
|
|
142
142
|
Use this data source to get the `ID` of a cloud provider in Venafi Control Plane, referenced by its name.
|
|
143
143
|
|
|
@@ -156,7 +156,7 @@ def get_cloud_provider_output(name: Optional[pulumi.Input[str]] = None,
|
|
|
156
156
|
"""
|
|
157
157
|
__args__ = dict()
|
|
158
158
|
__args__['name'] = name
|
|
159
|
-
opts = pulumi.
|
|
159
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
160
160
|
__ret__ = pulumi.runtime.invoke_output('venafi:index/getCloudProvider:getCloudProvider', __args__, opts=opts, typ=GetCloudProviderResult)
|
|
161
161
|
return __ret__.apply(lambda __response__: GetCloudProviderResult(
|
|
162
162
|
id=pulumi.get(__response__, 'id'),
|
|
File without changes
|
{pulumi_venafi-1.11.0a1733380379 → pulumi_venafi-1.11.0a1733797592}/pulumi_venafi/__init__.py
RENAMED
|
File without changes
|
{pulumi_venafi-1.11.0a1733380379 → pulumi_venafi-1.11.0a1733797592}/pulumi_venafi/_utilities.py
RENAMED
|
File without changes
|
{pulumi_venafi-1.11.0a1733380379 → pulumi_venafi-1.11.0a1733797592}/pulumi_venafi/certificate.py
RENAMED
|
File without changes
|
|
File without changes
|
{pulumi_venafi-1.11.0a1733380379 → pulumi_venafi-1.11.0a1733797592}/pulumi_venafi/config/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{pulumi_venafi-1.11.0a1733380379 → pulumi_venafi-1.11.0a1733797592}/pulumi_venafi/config/vars.py
RENAMED
|
File without changes
|
|
File without changes
|
{pulumi_venafi-1.11.0a1733380379 → pulumi_venafi-1.11.0a1733797592}/pulumi_venafi/provider.py
RENAMED
|
File without changes
|
|
File without changes
|
{pulumi_venafi-1.11.0a1733380379 → pulumi_venafi-1.11.0a1733797592}/pulumi_venafi/ssh_certificate.py
RENAMED
|
File without changes
|
{pulumi_venafi-1.11.0a1733380379 → pulumi_venafi-1.11.0a1733797592}/pulumi_venafi/ssh_config.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|