pulumi-external 0.1.0a1743572473__tar.gz → 0.1.0a1744182967__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.1.0a1743572473 → pulumi_external-0.1.0a1744182967}/PKG-INFO +1 -1
- {pulumi_external-0.1.0a1743572473 → pulumi_external-0.1.0a1744182967}/pulumi_external/__init__.py +1 -0
- {pulumi_external-0.1.0a1743572473 → pulumi_external-0.1.0a1744182967}/pulumi_external/get_external.py +16 -15
- {pulumi_external-0.1.0a1743572473 → pulumi_external-0.1.0a1744182967}/pulumi_external/provider.py +1 -0
- {pulumi_external-0.1.0a1743572473 → pulumi_external-0.1.0a1744182967}/pulumi_external/pulumi-plugin.json +1 -1
- {pulumi_external-0.1.0a1743572473 → pulumi_external-0.1.0a1744182967}/pulumi_external.egg-info/PKG-INFO +1 -1
- {pulumi_external-0.1.0a1743572473 → pulumi_external-0.1.0a1744182967}/pyproject.toml +1 -1
- {pulumi_external-0.1.0a1743572473 → pulumi_external-0.1.0a1744182967}/README.md +0 -0
- {pulumi_external-0.1.0a1743572473 → pulumi_external-0.1.0a1744182967}/pulumi_external/_utilities.py +0 -0
- {pulumi_external-0.1.0a1743572473 → pulumi_external-0.1.0a1744182967}/pulumi_external/py.typed +0 -0
- {pulumi_external-0.1.0a1743572473 → pulumi_external-0.1.0a1744182967}/pulumi_external.egg-info/SOURCES.txt +0 -0
- {pulumi_external-0.1.0a1743572473 → pulumi_external-0.1.0a1744182967}/pulumi_external.egg-info/dependency_links.txt +0 -0
- {pulumi_external-0.1.0a1743572473 → pulumi_external-0.1.0a1744182967}/pulumi_external.egg-info/requires.txt +0 -0
- {pulumi_external-0.1.0a1743572473 → pulumi_external-0.1.0a1744182967}/pulumi_external.egg-info/top_level.txt +0 -0
- {pulumi_external-0.1.0a1743572473 → pulumi_external-0.1.0a1744182967}/setup.cfg +0 -0
{pulumi_external-0.1.0a1743572473 → pulumi_external-0.1.0a1744182967}/pulumi_external/__init__.py
RENAMED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
+
import builtins
|
|
5
6
|
from . import _utilities
|
|
6
7
|
import typing
|
|
7
8
|
# Export this package's modules as members:
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
+
import builtins
|
|
5
6
|
import copy
|
|
6
7
|
import warnings
|
|
7
8
|
import sys
|
|
@@ -45,7 +46,7 @@ class GetExternalResult:
|
|
|
45
46
|
|
|
46
47
|
@property
|
|
47
48
|
@pulumi.getter
|
|
48
|
-
def id(self) -> str:
|
|
49
|
+
def id(self) -> builtins.str:
|
|
49
50
|
"""
|
|
50
51
|
The id of the data source. This will always be set to `-`
|
|
51
52
|
"""
|
|
@@ -53,12 +54,12 @@ class GetExternalResult:
|
|
|
53
54
|
|
|
54
55
|
@property
|
|
55
56
|
@pulumi.getter
|
|
56
|
-
def programs(self) -> Sequence[str]:
|
|
57
|
+
def programs(self) -> Sequence[builtins.str]:
|
|
57
58
|
return pulumi.get(self, "programs")
|
|
58
59
|
|
|
59
60
|
@property
|
|
60
61
|
@pulumi.getter
|
|
61
|
-
def query(self) -> Optional[Mapping[str, str]]:
|
|
62
|
+
def query(self) -> Optional[Mapping[str, builtins.str]]:
|
|
62
63
|
"""
|
|
63
64
|
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.
|
|
64
65
|
"""
|
|
@@ -66,7 +67,7 @@ class GetExternalResult:
|
|
|
66
67
|
|
|
67
68
|
@property
|
|
68
69
|
@pulumi.getter
|
|
69
|
-
def result(self) -> Mapping[str, str]:
|
|
70
|
+
def result(self) -> Mapping[str, builtins.str]:
|
|
70
71
|
"""
|
|
71
72
|
A map of string values returned from the external program.
|
|
72
73
|
"""
|
|
@@ -74,7 +75,7 @@ class GetExternalResult:
|
|
|
74
75
|
|
|
75
76
|
@property
|
|
76
77
|
@pulumi.getter(name="workingDir")
|
|
77
|
-
def working_dir(self) -> Optional[str]:
|
|
78
|
+
def working_dir(self) -> Optional[builtins.str]:
|
|
78
79
|
"""
|
|
79
80
|
Working directory of the program. If not supplied, the program will run in the current directory.
|
|
80
81
|
"""
|
|
@@ -94,15 +95,15 @@ class AwaitableGetExternalResult(GetExternalResult):
|
|
|
94
95
|
working_dir=self.working_dir)
|
|
95
96
|
|
|
96
97
|
|
|
97
|
-
def get_external(programs: Optional[Sequence[str]] = None,
|
|
98
|
-
query: Optional[Mapping[str, str]] = None,
|
|
99
|
-
working_dir: Optional[str] = None,
|
|
98
|
+
def get_external(programs: Optional[Sequence[builtins.str]] = None,
|
|
99
|
+
query: Optional[Mapping[str, builtins.str]] = None,
|
|
100
|
+
working_dir: Optional[builtins.str] = None,
|
|
100
101
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetExternalResult:
|
|
101
102
|
"""
|
|
102
103
|
Use this data source to access information about an existing resource.
|
|
103
104
|
|
|
104
|
-
: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.
|
|
105
|
-
:param str working_dir: Working directory of the program. If not supplied, the program will run in the current directory.
|
|
105
|
+
:param Mapping[str, builtins.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.
|
|
106
|
+
:param builtins.str working_dir: Working directory of the program. If not supplied, the program will run in the current directory.
|
|
106
107
|
"""
|
|
107
108
|
__args__ = dict()
|
|
108
109
|
__args__['programs'] = programs
|
|
@@ -117,15 +118,15 @@ def get_external(programs: Optional[Sequence[str]] = None,
|
|
|
117
118
|
query=pulumi.get(__ret__, 'query'),
|
|
118
119
|
result=pulumi.get(__ret__, 'result'),
|
|
119
120
|
working_dir=pulumi.get(__ret__, 'working_dir'))
|
|
120
|
-
def get_external_output(programs: Optional[pulumi.Input[Sequence[str]]] = None,
|
|
121
|
-
query: Optional[pulumi.Input[Optional[Mapping[str, str]]]] = None,
|
|
122
|
-
working_dir: Optional[pulumi.Input[Optional[str]]] = None,
|
|
121
|
+
def get_external_output(programs: Optional[pulumi.Input[Sequence[builtins.str]]] = None,
|
|
122
|
+
query: Optional[pulumi.Input[Optional[Mapping[str, builtins.str]]]] = None,
|
|
123
|
+
working_dir: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
|
123
124
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetExternalResult]:
|
|
124
125
|
"""
|
|
125
126
|
Use this data source to access information about an existing resource.
|
|
126
127
|
|
|
127
|
-
: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
|
-
:param str working_dir: Working directory of the program. If not supplied, the program will run in the current directory.
|
|
128
|
+
:param Mapping[str, builtins.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.
|
|
129
|
+
:param builtins.str working_dir: Working directory of the program. If not supplied, the program will run in the current directory.
|
|
129
130
|
"""
|
|
130
131
|
__args__ = dict()
|
|
131
132
|
__args__['programs'] = programs
|
|
File without changes
|
{pulumi_external-0.1.0a1743572473 → pulumi_external-0.1.0a1744182967}/pulumi_external/_utilities.py
RENAMED
|
File without changes
|
{pulumi_external-0.1.0a1743572473 → pulumi_external-0.1.0a1744182967}/pulumi_external/py.typed
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|