pulumi-null 0.1.0a1743574250__py3-none-any.whl → 0.1.0a1744265482__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-null might be problematic. Click here for more details.
- pulumi_null/__init__.py +1 -0
- pulumi_null/get_data_source.py +14 -13
- pulumi_null/provider.py +1 -0
- pulumi_null/pulumi-plugin.json +1 -1
- pulumi_null/resource.py +15 -14
- {pulumi_null-0.1.0a1743574250.dist-info → pulumi_null-0.1.0a1744265482.dist-info}/METADATA +1 -1
- pulumi_null-0.1.0a1744265482.dist-info/RECORD +11 -0
- pulumi_null-0.1.0a1743574250.dist-info/RECORD +0 -11
- {pulumi_null-0.1.0a1743574250.dist-info → pulumi_null-0.1.0a1744265482.dist-info}/WHEEL +0 -0
- {pulumi_null-0.1.0a1743574250.dist-info → pulumi_null-0.1.0a1744265482.dist-info}/top_level.txt +0 -0
pulumi_null/__init__.py
CHANGED
|
@@ -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:
|
pulumi_null/get_data_source.py
CHANGED
|
@@ -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 GetDataSourceResult:
|
|
|
45
46
|
|
|
46
47
|
@property
|
|
47
48
|
@pulumi.getter(name="hasComputedDefault")
|
|
48
|
-
def has_computed_default(self) -> str:
|
|
49
|
+
def has_computed_default(self) -> builtins.str:
|
|
49
50
|
"""
|
|
50
51
|
If set, its literal value will be stored and returned. If not, its value defaults to `"default"`. This argument exists primarily for testing and has little practical use.
|
|
51
52
|
"""
|
|
@@ -54,7 +55,7 @@ class GetDataSourceResult:
|
|
|
54
55
|
@property
|
|
55
56
|
@pulumi.getter
|
|
56
57
|
@_utilities.deprecated("""This attribute is only present for some legacy compatibility issues and should not be used. It will be removed in a future version.""")
|
|
57
|
-
def id(self) -> str:
|
|
58
|
+
def id(self) -> builtins.str:
|
|
58
59
|
"""
|
|
59
60
|
This attribute is only present for some legacy compatibility issues and should not be used. It will be removed in a future version.
|
|
60
61
|
"""
|
|
@@ -62,7 +63,7 @@ class GetDataSourceResult:
|
|
|
62
63
|
|
|
63
64
|
@property
|
|
64
65
|
@pulumi.getter
|
|
65
|
-
def inputs(self) -> Optional[Mapping[str, str]]:
|
|
66
|
+
def inputs(self) -> Optional[Mapping[str, builtins.str]]:
|
|
66
67
|
"""
|
|
67
68
|
A map of arbitrary strings that is copied into the `outputs` attribute, and accessible directly for interpolation.
|
|
68
69
|
"""
|
|
@@ -70,7 +71,7 @@ class GetDataSourceResult:
|
|
|
70
71
|
|
|
71
72
|
@property
|
|
72
73
|
@pulumi.getter
|
|
73
|
-
def outputs(self) -> Mapping[str, str]:
|
|
74
|
+
def outputs(self) -> Mapping[str, builtins.str]:
|
|
74
75
|
"""
|
|
75
76
|
After the data source is "read", a copy of the `inputs` map.
|
|
76
77
|
"""
|
|
@@ -78,7 +79,7 @@ class GetDataSourceResult:
|
|
|
78
79
|
|
|
79
80
|
@property
|
|
80
81
|
@pulumi.getter
|
|
81
|
-
def random(self) -> str:
|
|
82
|
+
def random(self) -> builtins.str:
|
|
82
83
|
return pulumi.get(self, "random")
|
|
83
84
|
|
|
84
85
|
|
|
@@ -95,15 +96,15 @@ class AwaitableGetDataSourceResult(GetDataSourceResult):
|
|
|
95
96
|
random=self.random)
|
|
96
97
|
|
|
97
98
|
|
|
98
|
-
def get_data_source(has_computed_default: Optional[str] = None,
|
|
99
|
-
inputs: Optional[Mapping[str, str]] = None,
|
|
99
|
+
def get_data_source(has_computed_default: Optional[builtins.str] = None,
|
|
100
|
+
inputs: Optional[Mapping[str, builtins.str]] = None,
|
|
100
101
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDataSourceResult:
|
|
101
102
|
"""
|
|
102
103
|
## Example Usage
|
|
103
104
|
|
|
104
105
|
|
|
105
|
-
:param str has_computed_default: If set, its literal value will be stored and returned. If not, its value defaults to `"default"`. This argument exists primarily for testing and has little practical use.
|
|
106
|
-
:param Mapping[str, str] inputs: A map of arbitrary strings that is copied into the `outputs` attribute, and accessible directly for interpolation.
|
|
106
|
+
:param builtins.str has_computed_default: If set, its literal value will be stored and returned. If not, its value defaults to `"default"`. This argument exists primarily for testing and has little practical use.
|
|
107
|
+
:param Mapping[str, builtins.str] inputs: A map of arbitrary strings that is copied into the `outputs` attribute, and accessible directly for interpolation.
|
|
107
108
|
"""
|
|
108
109
|
__args__ = dict()
|
|
109
110
|
__args__['hasComputedDefault'] = has_computed_default
|
|
@@ -117,15 +118,15 @@ def get_data_source(has_computed_default: Optional[str] = None,
|
|
|
117
118
|
inputs=pulumi.get(__ret__, 'inputs'),
|
|
118
119
|
outputs=pulumi.get(__ret__, 'outputs'),
|
|
119
120
|
random=pulumi.get(__ret__, 'random'))
|
|
120
|
-
def get_data_source_output(has_computed_default: Optional[pulumi.Input[Optional[str]]] = None,
|
|
121
|
-
inputs: Optional[pulumi.Input[Optional[Mapping[str, str]]]] = None,
|
|
121
|
+
def get_data_source_output(has_computed_default: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
|
122
|
+
inputs: Optional[pulumi.Input[Optional[Mapping[str, builtins.str]]]] = None,
|
|
122
123
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetDataSourceResult]:
|
|
123
124
|
"""
|
|
124
125
|
## Example Usage
|
|
125
126
|
|
|
126
127
|
|
|
127
|
-
:param str has_computed_default: If set, its literal value will be stored and returned. If not, its value defaults to `"default"`. This argument exists primarily for testing and has little practical use.
|
|
128
|
-
:param Mapping[str, str] inputs: A map of arbitrary strings that is copied into the `outputs` attribute, and accessible directly for interpolation.
|
|
128
|
+
:param builtins.str has_computed_default: If set, its literal value will be stored and returned. If not, its value defaults to `"default"`. This argument exists primarily for testing and has little practical use.
|
|
129
|
+
:param Mapping[str, builtins.str] inputs: A map of arbitrary strings that is copied into the `outputs` attribute, and accessible directly for interpolation.
|
|
129
130
|
"""
|
|
130
131
|
__args__ = dict()
|
|
131
132
|
__args__['hasComputedDefault'] = has_computed_default
|
pulumi_null/provider.py
CHANGED
pulumi_null/pulumi-plugin.json
CHANGED
pulumi_null/resource.py
CHANGED
|
@@ -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
|
|
@@ -19,48 +20,48 @@ __all__ = ['ResourceArgs', 'Resource']
|
|
|
19
20
|
@pulumi.input_type
|
|
20
21
|
class ResourceArgs:
|
|
21
22
|
def __init__(__self__, *,
|
|
22
|
-
triggers: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
|
|
23
|
+
triggers: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None):
|
|
23
24
|
"""
|
|
24
25
|
The set of arguments for constructing a Resource resource.
|
|
25
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] triggers: A map of arbitrary strings that, when changed, will force the null resource to be replaced, re-running any associated provisioners.
|
|
26
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] triggers: A map of arbitrary strings that, when changed, will force the null resource to be replaced, re-running any associated provisioners.
|
|
26
27
|
"""
|
|
27
28
|
if triggers is not None:
|
|
28
29
|
pulumi.set(__self__, "triggers", triggers)
|
|
29
30
|
|
|
30
31
|
@property
|
|
31
32
|
@pulumi.getter
|
|
32
|
-
def triggers(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
33
|
+
def triggers(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
|
33
34
|
"""
|
|
34
35
|
A map of arbitrary strings that, when changed, will force the null resource to be replaced, re-running any associated provisioners.
|
|
35
36
|
"""
|
|
36
37
|
return pulumi.get(self, "triggers")
|
|
37
38
|
|
|
38
39
|
@triggers.setter
|
|
39
|
-
def triggers(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
|
40
|
+
def triggers(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
|
40
41
|
pulumi.set(self, "triggers", value)
|
|
41
42
|
|
|
42
43
|
|
|
43
44
|
@pulumi.input_type
|
|
44
45
|
class _ResourceState:
|
|
45
46
|
def __init__(__self__, *,
|
|
46
|
-
triggers: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
|
|
47
|
+
triggers: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None):
|
|
47
48
|
"""
|
|
48
49
|
Input properties used for looking up and filtering Resource resources.
|
|
49
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] triggers: A map of arbitrary strings that, when changed, will force the null resource to be replaced, re-running any associated provisioners.
|
|
50
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] triggers: A map of arbitrary strings that, when changed, will force the null resource to be replaced, re-running any associated provisioners.
|
|
50
51
|
"""
|
|
51
52
|
if triggers is not None:
|
|
52
53
|
pulumi.set(__self__, "triggers", triggers)
|
|
53
54
|
|
|
54
55
|
@property
|
|
55
56
|
@pulumi.getter
|
|
56
|
-
def triggers(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
57
|
+
def triggers(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
|
57
58
|
"""
|
|
58
59
|
A map of arbitrary strings that, when changed, will force the null resource to be replaced, re-running any associated provisioners.
|
|
59
60
|
"""
|
|
60
61
|
return pulumi.get(self, "triggers")
|
|
61
62
|
|
|
62
63
|
@triggers.setter
|
|
63
|
-
def triggers(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
|
64
|
+
def triggers(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
|
64
65
|
pulumi.set(self, "triggers", value)
|
|
65
66
|
|
|
66
67
|
|
|
@@ -69,7 +70,7 @@ class Resource(pulumi.CustomResource):
|
|
|
69
70
|
def __init__(__self__,
|
|
70
71
|
resource_name: str,
|
|
71
72
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
72
|
-
triggers: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
73
|
+
triggers: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
|
73
74
|
__props__=None):
|
|
74
75
|
"""
|
|
75
76
|
## Example Usage
|
|
@@ -101,7 +102,7 @@ class Resource(pulumi.CustomResource):
|
|
|
101
102
|
|
|
102
103
|
:param str resource_name: The name of the resource.
|
|
103
104
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
104
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] triggers: A map of arbitrary strings that, when changed, will force the null resource to be replaced, re-running any associated provisioners.
|
|
105
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] triggers: A map of arbitrary strings that, when changed, will force the null resource to be replaced, re-running any associated provisioners.
|
|
105
106
|
"""
|
|
106
107
|
...
|
|
107
108
|
@overload
|
|
@@ -152,7 +153,7 @@ class Resource(pulumi.CustomResource):
|
|
|
152
153
|
def _internal_init(__self__,
|
|
153
154
|
resource_name: str,
|
|
154
155
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
155
|
-
triggers: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
156
|
+
triggers: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
|
156
157
|
__props__=None):
|
|
157
158
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
158
159
|
if not isinstance(opts, pulumi.ResourceOptions):
|
|
@@ -173,7 +174,7 @@ class Resource(pulumi.CustomResource):
|
|
|
173
174
|
def get(resource_name: str,
|
|
174
175
|
id: pulumi.Input[str],
|
|
175
176
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
176
|
-
triggers: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None) -> 'Resource':
|
|
177
|
+
triggers: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None) -> 'Resource':
|
|
177
178
|
"""
|
|
178
179
|
Get an existing Resource resource's state with the given name, id, and optional extra
|
|
179
180
|
properties used to qualify the lookup.
|
|
@@ -181,7 +182,7 @@ class Resource(pulumi.CustomResource):
|
|
|
181
182
|
:param str resource_name: The unique name of the resulting resource.
|
|
182
183
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
183
184
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
184
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] triggers: A map of arbitrary strings that, when changed, will force the null resource to be replaced, re-running any associated provisioners.
|
|
185
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] triggers: A map of arbitrary strings that, when changed, will force the null resource to be replaced, re-running any associated provisioners.
|
|
185
186
|
"""
|
|
186
187
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
187
188
|
|
|
@@ -192,7 +193,7 @@ class Resource(pulumi.CustomResource):
|
|
|
192
193
|
|
|
193
194
|
@property
|
|
194
195
|
@pulumi.getter
|
|
195
|
-
def triggers(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
|
196
|
+
def triggers(self) -> pulumi.Output[Optional[Mapping[str, builtins.str]]]:
|
|
196
197
|
"""
|
|
197
198
|
A map of arbitrary strings that, when changed, will force the null resource to be replaced, re-running any associated provisioners.
|
|
198
199
|
"""
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
pulumi_null/__init__.py,sha256=4eNWeCA8WQCE6_BVW7U8wgd-U7kGQ2RDrGcBRgj671s,698
|
|
2
|
+
pulumi_null/_utilities.py,sha256=yyuODPikZ9pto3JWJRfMJo98dWmQ5_y45-TVcZG_K8Y,10807
|
|
3
|
+
pulumi_null/get_data_source.py,sha256=Zq7bf-8Ox4FPbSaN7GhNrwdGq3Q1WEqPxZ7iHy4LhXg,6330
|
|
4
|
+
pulumi_null/provider.py,sha256=6fP7CwZcztltT6_3ai1KzS1Uly3ihq_pq4tvgzoZ4po,3604
|
|
5
|
+
pulumi_null/pulumi-plugin.json,sha256=VXSdoJ3epYWyNvbSJIRYV6C442F3kXNI8QRdMjokfEY,80
|
|
6
|
+
pulumi_null/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
+
pulumi_null/resource.py,sha256=8RI0WGgdLGeQQC0S9ZTgkvB8GJGbOQ3e9OZRiQJ9_S4,8956
|
|
8
|
+
pulumi_null-0.1.0a1744265482.dist-info/METADATA,sha256=1Cvgwi83pltmZBV_WmP_eL8Hn2Lod1Bz_g3R7ER06kw,2837
|
|
9
|
+
pulumi_null-0.1.0a1744265482.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
10
|
+
pulumi_null-0.1.0a1744265482.dist-info/top_level.txt,sha256=Ru9dJEzD8mCrozV4N2VCSavoQqMS9aa8gq-PLsirmtc,12
|
|
11
|
+
pulumi_null-0.1.0a1744265482.dist-info/RECORD,,
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
pulumi_null/__init__.py,sha256=vfO-Nyln5Y_KQyhBViIfR85yyF-7e_dM8AWDOgBltxk,682
|
|
2
|
-
pulumi_null/_utilities.py,sha256=yyuODPikZ9pto3JWJRfMJo98dWmQ5_y45-TVcZG_K8Y,10807
|
|
3
|
-
pulumi_null/get_data_source.py,sha256=Kyd2Eu_V4_XfDTcdo4Soc2J55nw98KeSl2TRSJ_cDN8,6197
|
|
4
|
-
pulumi_null/provider.py,sha256=bRzJyITr55OsI8snfxIkj2r0yuNVW3oNBEP1PW1G07g,3588
|
|
5
|
-
pulumi_null/pulumi-plugin.json,sha256=wQ3-VF5uT_heVANSNteUqA3bprlUVx-q2EjicOOc96Q,80
|
|
6
|
-
pulumi_null/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
-
pulumi_null/resource.py,sha256=EgimXWe6PLGuQsotPj-hRos7diBWPUwEap25ChTVjIM,8814
|
|
8
|
-
pulumi_null-0.1.0a1743574250.dist-info/METADATA,sha256=TfP1RnB2rO_SkihvCsMiSxEqNHpDP9N2u-6946VxwRA,2837
|
|
9
|
-
pulumi_null-0.1.0a1743574250.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
10
|
-
pulumi_null-0.1.0a1743574250.dist-info/top_level.txt,sha256=Ru9dJEzD8mCrozV4N2VCSavoQqMS9aa8gq-PLsirmtc,12
|
|
11
|
-
pulumi_null-0.1.0a1743574250.dist-info/RECORD,,
|
|
File without changes
|
{pulumi_null-0.1.0a1743574250.dist-info → pulumi_null-0.1.0a1744265482.dist-info}/top_level.txt
RENAMED
|
File without changes
|