pulumi-external 0.0.11__tar.gz → 0.1.0a1714455167__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.
Potentially problematic release.
This version of pulumi-external might be problematic. Click here for more details.
- {pulumi_external-0.0.11 → pulumi_external-0.1.0a1714455167}/PKG-INFO +3 -4
- {pulumi_external-0.0.11 → pulumi_external-0.1.0a1714455167}/pulumi_external/_utilities.py +5 -41
- {pulumi_external-0.0.11 → pulumi_external-0.1.0a1714455167}/pulumi_external/get_external.py +5 -18
- {pulumi_external-0.0.11 → pulumi_external-0.1.0a1714455167}/pulumi_external/provider.py +0 -5
- pulumi_external-0.1.0a1714455167/pulumi_external/pulumi-plugin.json +4 -0
- {pulumi_external-0.0.11 → pulumi_external-0.1.0a1714455167}/pulumi_external.egg-info/PKG-INFO +3 -4
- pulumi_external-0.1.0a1714455167/pulumi_external.egg-info/requires.txt +3 -0
- {pulumi_external-0.0.11 → pulumi_external-0.1.0a1714455167}/pyproject.toml +3 -3
- pulumi_external-0.0.11/pulumi_external/pulumi-plugin.json +0 -5
- pulumi_external-0.0.11/pulumi_external.egg-info/requires.txt +0 -6
- {pulumi_external-0.0.11 → pulumi_external-0.1.0a1714455167}/README.md +0 -0
- {pulumi_external-0.0.11 → pulumi_external-0.1.0a1714455167}/pulumi_external/__init__.py +0 -0
- {pulumi_external-0.0.11 → pulumi_external-0.1.0a1714455167}/pulumi_external/py.typed +0 -0
- {pulumi_external-0.0.11 → pulumi_external-0.1.0a1714455167}/pulumi_external.egg-info/SOURCES.txt +0 -0
- {pulumi_external-0.0.11 → pulumi_external-0.1.0a1714455167}/pulumi_external.egg-info/dependency_links.txt +0 -0
- {pulumi_external-0.0.11 → pulumi_external-0.1.0a1714455167}/pulumi_external.egg-info/top_level.txt +0 -0
- {pulumi_external-0.0.11 → pulumi_external-0.1.0a1714455167}/setup.cfg +0 -0
|
@@ -1,17 +1,16 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pulumi_external
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.1.0a1714455167
|
|
4
4
|
Summary: A Pulumi package for creating and managing External cloud resources.
|
|
5
5
|
License: Apache-2.0
|
|
6
6
|
Project-URL: Homepage, https://www.pulumi.com/
|
|
7
7
|
Project-URL: Repository, https://github.com/pulumi/pulumi-external
|
|
8
8
|
Keywords: pulumi,category/cloud
|
|
9
|
-
Requires-Python: >=3.
|
|
9
|
+
Requires-Python: >=3.8
|
|
10
10
|
Description-Content-Type: text/markdown
|
|
11
11
|
Requires-Dist: parver>=0.2.1
|
|
12
|
-
Requires-Dist: pulumi<4.0.0,>=3.
|
|
12
|
+
Requires-Dist: pulumi<4.0.0,>=3.0.0
|
|
13
13
|
Requires-Dist: semver>=2.8.1
|
|
14
|
-
Requires-Dist: typing-extensions>=4.11; python_version < "3.11"
|
|
15
14
|
|
|
16
15
|
[](https://github.com/pulumi/pulumi-external/actions)
|
|
17
16
|
[](https://www.npmjs.com/package/@pulumi/external)
|
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
import asyncio
|
|
7
|
-
import functools
|
|
8
7
|
import importlib.metadata
|
|
9
8
|
import importlib.util
|
|
10
9
|
import inspect
|
|
@@ -12,19 +11,14 @@ import json
|
|
|
12
11
|
import os
|
|
13
12
|
import sys
|
|
14
13
|
import typing
|
|
15
|
-
import warnings
|
|
16
|
-
import base64
|
|
17
14
|
|
|
18
15
|
import pulumi
|
|
19
16
|
import pulumi.runtime
|
|
20
17
|
from pulumi.runtime.sync_await import _sync_await
|
|
21
|
-
from pulumi.runtime.proto import resource_pb2
|
|
22
18
|
|
|
23
19
|
from semver import VersionInfo as SemverVersion
|
|
24
20
|
from parver import Version as PEP440Version
|
|
25
21
|
|
|
26
|
-
C = typing.TypeVar("C", bound=typing.Callable)
|
|
27
|
-
|
|
28
22
|
|
|
29
23
|
def get_env(*args):
|
|
30
24
|
for v in args:
|
|
@@ -102,6 +96,10 @@ def _get_semver_version():
|
|
|
102
96
|
_version = _get_semver_version()
|
|
103
97
|
_version_str = str(_version)
|
|
104
98
|
|
|
99
|
+
|
|
100
|
+
def get_version():
|
|
101
|
+
return _version_str
|
|
102
|
+
|
|
105
103
|
def get_resource_opts_defaults() -> pulumi.ResourceOptions:
|
|
106
104
|
return pulumi.ResourceOptions(
|
|
107
105
|
version=get_version(),
|
|
@@ -264,7 +262,7 @@ def call_plain(
|
|
|
264
262
|
output = pulumi.runtime.call(tok, props, res, typ)
|
|
265
263
|
|
|
266
264
|
# Ingoring deps silently. They are typically non-empty, r.f() calls include r as a dependency.
|
|
267
|
-
result, known, secret, _ = _sync_await(asyncio.
|
|
265
|
+
result, known, secret, _ = _sync_await(asyncio.ensure_future(_await_output(output)))
|
|
268
266
|
|
|
269
267
|
problem = None
|
|
270
268
|
if not known:
|
|
@@ -289,39 +287,5 @@ async def _await_output(o: pulumi.Output[typing.Any]) -> typing.Tuple[object, bo
|
|
|
289
287
|
await o._resources,
|
|
290
288
|
)
|
|
291
289
|
|
|
292
|
-
|
|
293
|
-
# This is included to provide an upgrade path for users who are using a version
|
|
294
|
-
# of the Pulumi SDK (<3.121.0) that does not include the `deprecated` decorator.
|
|
295
|
-
def deprecated(message: str) -> typing.Callable[[C], C]:
|
|
296
|
-
"""
|
|
297
|
-
Decorator to indicate a function is deprecated.
|
|
298
|
-
|
|
299
|
-
As well as inserting appropriate statements to indicate that the function is
|
|
300
|
-
deprecated, this decorator also tags the function with a special attribute
|
|
301
|
-
so that Pulumi code can detect that it is deprecated and react appropriately
|
|
302
|
-
in certain situations.
|
|
303
|
-
|
|
304
|
-
message is the deprecation message that should be printed if the function is called.
|
|
305
|
-
"""
|
|
306
|
-
|
|
307
|
-
def decorator(fn: C) -> C:
|
|
308
|
-
if not callable(fn):
|
|
309
|
-
raise TypeError("Expected fn to be callable")
|
|
310
|
-
|
|
311
|
-
@functools.wraps(fn)
|
|
312
|
-
def deprecated_fn(*args, **kwargs):
|
|
313
|
-
warnings.warn(message)
|
|
314
|
-
pulumi.warn(f"{fn.__name__} is deprecated: {message}")
|
|
315
|
-
|
|
316
|
-
return fn(*args, **kwargs)
|
|
317
|
-
|
|
318
|
-
deprecated_fn.__dict__["_pulumi_deprecated_callable"] = fn
|
|
319
|
-
return typing.cast(C, deprecated_fn)
|
|
320
|
-
|
|
321
|
-
return decorator
|
|
322
|
-
|
|
323
290
|
def get_plugin_download_url():
|
|
324
291
|
return None
|
|
325
|
-
|
|
326
|
-
def get_version():
|
|
327
|
-
return _version_str
|
|
@@ -4,14 +4,9 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
-
import sys
|
|
8
7
|
import pulumi
|
|
9
8
|
import pulumi.runtime
|
|
10
9
|
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
10
|
from . import _utilities
|
|
16
11
|
|
|
17
12
|
__all__ = [
|
|
@@ -117,25 +112,17 @@ def get_external(programs: Optional[Sequence[str]] = None,
|
|
|
117
112
|
query=pulumi.get(__ret__, 'query'),
|
|
118
113
|
result=pulumi.get(__ret__, 'result'),
|
|
119
114
|
working_dir=pulumi.get(__ret__, 'working_dir'))
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
@_utilities.lift_output_func(get_external)
|
|
120
118
|
def get_external_output(programs: Optional[pulumi.Input[Sequence[str]]] = None,
|
|
121
119
|
query: Optional[pulumi.Input[Optional[Mapping[str, str]]]] = None,
|
|
122
120
|
working_dir: Optional[pulumi.Input[Optional[str]]] = None,
|
|
123
|
-
opts: Optional[
|
|
121
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetExternalResult]:
|
|
124
122
|
"""
|
|
125
123
|
Use this data source to access information about an existing resource.
|
|
126
124
|
|
|
127
125
|
:param Mapping[str, str] query: A map of string values to pass to the external program as the query arguments. If not supplied, the program will receive an empty object as its input.
|
|
128
126
|
:param str working_dir: Working directory of the program. If not supplied, the program will run in the current directory.
|
|
129
127
|
"""
|
|
130
|
-
|
|
131
|
-
__args__['programs'] = programs
|
|
132
|
-
__args__['query'] = query
|
|
133
|
-
__args__['workingDir'] = working_dir
|
|
134
|
-
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
135
|
-
__ret__ = pulumi.runtime.invoke_output('external:index/getExternal:getExternal', __args__, opts=opts, typ=GetExternalResult)
|
|
136
|
-
return __ret__.apply(lambda __response__: GetExternalResult(
|
|
137
|
-
id=pulumi.get(__response__, 'id'),
|
|
138
|
-
programs=pulumi.get(__response__, 'programs'),
|
|
139
|
-
query=pulumi.get(__response__, 'query'),
|
|
140
|
-
result=pulumi.get(__response__, 'result'),
|
|
141
|
-
working_dir=pulumi.get(__response__, 'working_dir')))
|
|
128
|
+
...
|
|
@@ -4,14 +4,9 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
-
import sys
|
|
8
7
|
import pulumi
|
|
9
8
|
import pulumi.runtime
|
|
10
9
|
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
10
|
from . import _utilities
|
|
16
11
|
|
|
17
12
|
__all__ = ['ProviderArgs', 'Provider']
|
{pulumi_external-0.0.11 → pulumi_external-0.1.0a1714455167}/pulumi_external.egg-info/PKG-INFO
RENAMED
|
@@ -1,17 +1,16 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pulumi_external
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.1.0a1714455167
|
|
4
4
|
Summary: A Pulumi package for creating and managing External cloud resources.
|
|
5
5
|
License: Apache-2.0
|
|
6
6
|
Project-URL: Homepage, https://www.pulumi.com/
|
|
7
7
|
Project-URL: Repository, https://github.com/pulumi/pulumi-external
|
|
8
8
|
Keywords: pulumi,category/cloud
|
|
9
|
-
Requires-Python: >=3.
|
|
9
|
+
Requires-Python: >=3.8
|
|
10
10
|
Description-Content-Type: text/markdown
|
|
11
11
|
Requires-Dist: parver>=0.2.1
|
|
12
|
-
Requires-Dist: pulumi<4.0.0,>=3.
|
|
12
|
+
Requires-Dist: pulumi<4.0.0,>=3.0.0
|
|
13
13
|
Requires-Dist: semver>=2.8.1
|
|
14
|
-
Requires-Dist: typing-extensions>=4.11; python_version < "3.11"
|
|
15
14
|
|
|
16
15
|
[](https://github.com/pulumi/pulumi-external/actions)
|
|
17
16
|
[](https://www.npmjs.com/package/@pulumi/external)
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "pulumi_external"
|
|
3
3
|
description = "A Pulumi package for creating and managing External cloud resources."
|
|
4
|
-
dependencies = ["parver>=0.2.1", "pulumi>=3.
|
|
4
|
+
dependencies = ["parver>=0.2.1", "pulumi>=3.0.0,<4.0.0", "semver>=2.8.1"]
|
|
5
5
|
keywords = ["pulumi", "category/cloud"]
|
|
6
6
|
readme = "README.md"
|
|
7
|
-
requires-python = ">=3.
|
|
8
|
-
version = "0.
|
|
7
|
+
requires-python = ">=3.8"
|
|
8
|
+
version = "0.1.0a1714455167"
|
|
9
9
|
[project.license]
|
|
10
10
|
text = "Apache-2.0"
|
|
11
11
|
[project.urls]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pulumi_external-0.0.11 → pulumi_external-0.1.0a1714455167}/pulumi_external.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{pulumi_external-0.0.11 → pulumi_external-0.1.0a1714455167}/pulumi_external.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|