pulumi-null 0.1.0a1725947531__py3-none-any.whl → 0.1.0a1764888286__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 +2 -1
- pulumi_null/_utilities.py +10 -6
- pulumi_null/get_data_source.py +37 -25
- pulumi_null/provider.py +28 -2
- pulumi_null/pulumi-plugin.json +1 -1
- pulumi_null/resource.py +25 -19
- {pulumi_null-0.1.0a1725947531.dist-info → pulumi_null-0.1.0a1764888286.dist-info}/METADATA +7 -6
- pulumi_null-0.1.0a1764888286.dist-info/RECORD +11 -0
- {pulumi_null-0.1.0a1725947531.dist-info → pulumi_null-0.1.0a1764888286.dist-info}/WHEEL +1 -1
- pulumi_null-0.1.0a1725947531.dist-info/RECORD +0 -11
- {pulumi_null-0.1.0a1725947531.dist-info → pulumi_null-0.1.0a1764888286.dist-info}/top_level.txt +0 -0
pulumi_null/__init__.py
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
# coding=utf-8
|
|
2
|
-
# *** WARNING: this file was generated by
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
+
import builtins as _builtins
|
|
5
6
|
from . import _utilities
|
|
6
7
|
import typing
|
|
7
8
|
# Export this package's modules as members:
|
pulumi_null/_utilities.py
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# coding=utf-8
|
|
2
|
-
# *** WARNING: this file was generated by
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
5
|
|
|
@@ -89,12 +89,16 @@ def _get_semver_version():
|
|
|
89
89
|
elif pep440_version.pre_tag == 'rc':
|
|
90
90
|
prerelease = f"rc.{pep440_version.pre}"
|
|
91
91
|
elif pep440_version.dev is not None:
|
|
92
|
+
# PEP440 has explicit support for dev builds, while semver encodes them as "prerelease" versions. To bridge
|
|
93
|
+
# between the two, we convert our dev build version into a prerelease tag. This matches what all of our other
|
|
94
|
+
# packages do when constructing their own semver string.
|
|
92
95
|
prerelease = f"dev.{pep440_version.dev}"
|
|
96
|
+
elif pep440_version.local is not None:
|
|
97
|
+
# PEP440 only allows a small set of prerelease tags, so when converting an arbitrary prerelease,
|
|
98
|
+
# PypiVersion in /pkg/codegen/python/utilities.go converts it to a local version. Therefore, we need to
|
|
99
|
+
# do the reverse conversion here and set the local version as the prerelease tag.
|
|
100
|
+
prerelease = pep440_version.local
|
|
93
101
|
|
|
94
|
-
# The only significant difference between PEP440 and semver as it pertains to us is that PEP440 has explicit support
|
|
95
|
-
# for dev builds, while semver encodes them as "prerelease" versions. In order to bridge between the two, we convert
|
|
96
|
-
# our dev build version into a prerelease tag. This matches what all of our other packages do when constructing
|
|
97
|
-
# their own semver string.
|
|
98
102
|
return SemverVersion(major=major, minor=minor, patch=patch, prerelease=prerelease)
|
|
99
103
|
|
|
100
104
|
|
|
@@ -264,7 +268,7 @@ def call_plain(
|
|
|
264
268
|
output = pulumi.runtime.call(tok, props, res, typ)
|
|
265
269
|
|
|
266
270
|
# Ingoring deps silently. They are typically non-empty, r.f() calls include r as a dependency.
|
|
267
|
-
result, known, secret, _ = _sync_await(asyncio.
|
|
271
|
+
result, known, secret, _ = _sync_await(asyncio.create_task(_await_output(output)))
|
|
268
272
|
|
|
269
273
|
problem = None
|
|
270
274
|
if not known:
|
pulumi_null/get_data_source.py
CHANGED
|
@@ -1,12 +1,17 @@
|
|
|
1
1
|
# coding=utf-8
|
|
2
|
-
# *** WARNING: this file was generated by
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import
|
|
5
|
+
import builtins as _builtins
|
|
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__ = [
|
|
@@ -38,42 +43,42 @@ class GetDataSourceResult:
|
|
|
38
43
|
raise TypeError("Expected argument 'random' to be a str")
|
|
39
44
|
pulumi.set(__self__, "random", random)
|
|
40
45
|
|
|
41
|
-
@property
|
|
46
|
+
@_builtins.property
|
|
42
47
|
@pulumi.getter(name="hasComputedDefault")
|
|
43
|
-
def has_computed_default(self) -> str:
|
|
48
|
+
def has_computed_default(self) -> _builtins.str:
|
|
44
49
|
"""
|
|
45
50
|
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.
|
|
46
51
|
"""
|
|
47
52
|
return pulumi.get(self, "has_computed_default")
|
|
48
53
|
|
|
49
|
-
@property
|
|
54
|
+
@_builtins.property
|
|
50
55
|
@pulumi.getter
|
|
51
56
|
@_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.""")
|
|
52
|
-
def id(self) -> str:
|
|
57
|
+
def id(self) -> _builtins.str:
|
|
53
58
|
"""
|
|
54
59
|
This attribute is only present for some legacy compatibility issues and should not be used. It will be removed in a future version.
|
|
55
60
|
"""
|
|
56
61
|
return pulumi.get(self, "id")
|
|
57
62
|
|
|
58
|
-
@property
|
|
63
|
+
@_builtins.property
|
|
59
64
|
@pulumi.getter
|
|
60
|
-
def inputs(self) -> Optional[Mapping[str, str]]:
|
|
65
|
+
def inputs(self) -> Optional[Mapping[str, _builtins.str]]:
|
|
61
66
|
"""
|
|
62
67
|
A map of arbitrary strings that is copied into the `outputs` attribute, and accessible directly for interpolation.
|
|
63
68
|
"""
|
|
64
69
|
return pulumi.get(self, "inputs")
|
|
65
70
|
|
|
66
|
-
@property
|
|
71
|
+
@_builtins.property
|
|
67
72
|
@pulumi.getter
|
|
68
|
-
def outputs(self) -> Mapping[str, str]:
|
|
73
|
+
def outputs(self) -> Mapping[str, _builtins.str]:
|
|
69
74
|
"""
|
|
70
75
|
After the data source is "read", a copy of the `inputs` map.
|
|
71
76
|
"""
|
|
72
77
|
return pulumi.get(self, "outputs")
|
|
73
78
|
|
|
74
|
-
@property
|
|
79
|
+
@_builtins.property
|
|
75
80
|
@pulumi.getter
|
|
76
|
-
def random(self) -> str:
|
|
81
|
+
def random(self) -> _builtins.str:
|
|
77
82
|
return pulumi.get(self, "random")
|
|
78
83
|
|
|
79
84
|
|
|
@@ -90,15 +95,15 @@ class AwaitableGetDataSourceResult(GetDataSourceResult):
|
|
|
90
95
|
random=self.random)
|
|
91
96
|
|
|
92
97
|
|
|
93
|
-
def get_data_source(has_computed_default: Optional[str] = None,
|
|
94
|
-
inputs: Optional[Mapping[str, str]] = None,
|
|
98
|
+
def get_data_source(has_computed_default: Optional[_builtins.str] = None,
|
|
99
|
+
inputs: Optional[Mapping[str, _builtins.str]] = None,
|
|
95
100
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDataSourceResult:
|
|
96
101
|
"""
|
|
97
102
|
## Example Usage
|
|
98
103
|
|
|
99
104
|
|
|
100
|
-
: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.
|
|
101
|
-
:param Mapping[str, str] inputs: A map of arbitrary strings that is copied into the `outputs` attribute, and accessible directly for interpolation.
|
|
105
|
+
: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.
|
|
106
|
+
:param Mapping[str, _builtins.str] inputs: A map of arbitrary strings that is copied into the `outputs` attribute, and accessible directly for interpolation.
|
|
102
107
|
"""
|
|
103
108
|
__args__ = dict()
|
|
104
109
|
__args__['hasComputedDefault'] = has_computed_default
|
|
@@ -112,17 +117,24 @@ def get_data_source(has_computed_default: Optional[str] = None,
|
|
|
112
117
|
inputs=pulumi.get(__ret__, 'inputs'),
|
|
113
118
|
outputs=pulumi.get(__ret__, 'outputs'),
|
|
114
119
|
random=pulumi.get(__ret__, 'random'))
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
def get_data_source_output(has_computed_default: Optional[pulumi.Input[Optional[str]]] = None,
|
|
119
|
-
inputs: Optional[pulumi.Input[Optional[Mapping[str, str]]]] = None,
|
|
120
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetDataSourceResult]:
|
|
120
|
+
def get_data_source_output(has_computed_default: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
121
|
+
inputs: Optional[pulumi.Input[Optional[Mapping[str, _builtins.str]]]] = None,
|
|
122
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetDataSourceResult]:
|
|
121
123
|
"""
|
|
122
124
|
## Example Usage
|
|
123
125
|
|
|
124
126
|
|
|
125
|
-
: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.
|
|
126
|
-
:param Mapping[str, str] inputs: A map of arbitrary strings that is copied into the `outputs` attribute, and accessible directly for interpolation.
|
|
127
|
+
: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.
|
|
128
|
+
:param Mapping[str, _builtins.str] inputs: A map of arbitrary strings that is copied into the `outputs` attribute, and accessible directly for interpolation.
|
|
127
129
|
"""
|
|
128
|
-
|
|
130
|
+
__args__ = dict()
|
|
131
|
+
__args__['hasComputedDefault'] = has_computed_default
|
|
132
|
+
__args__['inputs'] = inputs
|
|
133
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
134
|
+
__ret__ = pulumi.runtime.invoke_output('null:index/getDataSource:getDataSource', __args__, opts=opts, typ=GetDataSourceResult)
|
|
135
|
+
return __ret__.apply(lambda __response__: GetDataSourceResult(
|
|
136
|
+
has_computed_default=pulumi.get(__response__, 'has_computed_default'),
|
|
137
|
+
id=pulumi.get(__response__, 'id'),
|
|
138
|
+
inputs=pulumi.get(__response__, 'inputs'),
|
|
139
|
+
outputs=pulumi.get(__response__, 'outputs'),
|
|
140
|
+
random=pulumi.get(__response__, 'random')))
|
pulumi_null/provider.py
CHANGED
|
@@ -1,12 +1,17 @@
|
|
|
1
1
|
# coding=utf-8
|
|
2
|
-
# *** WARNING: this file was generated by
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import
|
|
5
|
+
import builtins as _builtins
|
|
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']
|
|
@@ -20,6 +25,7 @@ class ProviderArgs:
|
|
|
20
25
|
pass
|
|
21
26
|
|
|
22
27
|
|
|
28
|
+
@pulumi.type_token("pulumi:providers:null")
|
|
23
29
|
class Provider(pulumi.ProviderResource):
|
|
24
30
|
@overload
|
|
25
31
|
def __init__(__self__,
|
|
@@ -77,3 +83,23 @@ class Provider(pulumi.ProviderResource):
|
|
|
77
83
|
__props__,
|
|
78
84
|
opts)
|
|
79
85
|
|
|
86
|
+
@pulumi.output_type
|
|
87
|
+
class TerraformConfigResult:
|
|
88
|
+
def __init__(__self__, result=None):
|
|
89
|
+
if result and not isinstance(result, dict):
|
|
90
|
+
raise TypeError("Expected argument 'result' to be a dict")
|
|
91
|
+
pulumi.set(__self__, "result", result)
|
|
92
|
+
|
|
93
|
+
@_builtins.property
|
|
94
|
+
@pulumi.getter
|
|
95
|
+
def result(self) -> Mapping[str, Any]:
|
|
96
|
+
return pulumi.get(self, "result")
|
|
97
|
+
|
|
98
|
+
def terraform_config(__self__) -> pulumi.Output['Provider.TerraformConfigResult']:
|
|
99
|
+
"""
|
|
100
|
+
This function returns a Terraform config object with terraform-namecased keys,to be used with the Terraform Module Provider.
|
|
101
|
+
"""
|
|
102
|
+
__args__ = dict()
|
|
103
|
+
__args__['__self__'] = __self__
|
|
104
|
+
return pulumi.runtime.call('pulumi:providers:null/terraformConfig', __args__, res=__self__, typ=Provider.TerraformConfigResult)
|
|
105
|
+
|
pulumi_null/pulumi-plugin.json
CHANGED
pulumi_null/resource.py
CHANGED
|
@@ -1,12 +1,17 @@
|
|
|
1
1
|
# coding=utf-8
|
|
2
|
-
# *** WARNING: this file was generated by
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import
|
|
5
|
+
import builtins as _builtins
|
|
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__ = ['ResourceArgs', 'Resource']
|
|
@@ -14,57 +19,58 @@ __all__ = ['ResourceArgs', 'Resource']
|
|
|
14
19
|
@pulumi.input_type
|
|
15
20
|
class ResourceArgs:
|
|
16
21
|
def __init__(__self__, *,
|
|
17
|
-
triggers: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
|
|
22
|
+
triggers: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None):
|
|
18
23
|
"""
|
|
19
24
|
The set of arguments for constructing a Resource resource.
|
|
20
|
-
: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.
|
|
25
|
+
: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.
|
|
21
26
|
"""
|
|
22
27
|
if triggers is not None:
|
|
23
28
|
pulumi.set(__self__, "triggers", triggers)
|
|
24
29
|
|
|
25
|
-
@property
|
|
30
|
+
@_builtins.property
|
|
26
31
|
@pulumi.getter
|
|
27
|
-
def triggers(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
32
|
+
def triggers(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
|
28
33
|
"""
|
|
29
34
|
A map of arbitrary strings that, when changed, will force the null resource to be replaced, re-running any associated provisioners.
|
|
30
35
|
"""
|
|
31
36
|
return pulumi.get(self, "triggers")
|
|
32
37
|
|
|
33
38
|
@triggers.setter
|
|
34
|
-
def triggers(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
|
39
|
+
def triggers(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
35
40
|
pulumi.set(self, "triggers", value)
|
|
36
41
|
|
|
37
42
|
|
|
38
43
|
@pulumi.input_type
|
|
39
44
|
class _ResourceState:
|
|
40
45
|
def __init__(__self__, *,
|
|
41
|
-
triggers: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
|
|
46
|
+
triggers: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None):
|
|
42
47
|
"""
|
|
43
48
|
Input properties used for looking up and filtering Resource resources.
|
|
44
|
-
: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.
|
|
49
|
+
: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.
|
|
45
50
|
"""
|
|
46
51
|
if triggers is not None:
|
|
47
52
|
pulumi.set(__self__, "triggers", triggers)
|
|
48
53
|
|
|
49
|
-
@property
|
|
54
|
+
@_builtins.property
|
|
50
55
|
@pulumi.getter
|
|
51
|
-
def triggers(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
56
|
+
def triggers(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
|
52
57
|
"""
|
|
53
58
|
A map of arbitrary strings that, when changed, will force the null resource to be replaced, re-running any associated provisioners.
|
|
54
59
|
"""
|
|
55
60
|
return pulumi.get(self, "triggers")
|
|
56
61
|
|
|
57
62
|
@triggers.setter
|
|
58
|
-
def triggers(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
|
63
|
+
def triggers(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
59
64
|
pulumi.set(self, "triggers", value)
|
|
60
65
|
|
|
61
66
|
|
|
67
|
+
@pulumi.type_token("null:index/resource:Resource")
|
|
62
68
|
class Resource(pulumi.CustomResource):
|
|
63
69
|
@overload
|
|
64
70
|
def __init__(__self__,
|
|
65
71
|
resource_name: str,
|
|
66
72
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
67
|
-
triggers: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
73
|
+
triggers: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
68
74
|
__props__=None):
|
|
69
75
|
"""
|
|
70
76
|
## Example Usage
|
|
@@ -96,7 +102,7 @@ class Resource(pulumi.CustomResource):
|
|
|
96
102
|
|
|
97
103
|
:param str resource_name: The name of the resource.
|
|
98
104
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
99
|
-
: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.
|
|
100
106
|
"""
|
|
101
107
|
...
|
|
102
108
|
@overload
|
|
@@ -147,7 +153,7 @@ class Resource(pulumi.CustomResource):
|
|
|
147
153
|
def _internal_init(__self__,
|
|
148
154
|
resource_name: str,
|
|
149
155
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
150
|
-
triggers: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
156
|
+
triggers: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
151
157
|
__props__=None):
|
|
152
158
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
153
159
|
if not isinstance(opts, pulumi.ResourceOptions):
|
|
@@ -168,7 +174,7 @@ class Resource(pulumi.CustomResource):
|
|
|
168
174
|
def get(resource_name: str,
|
|
169
175
|
id: pulumi.Input[str],
|
|
170
176
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
171
|
-
triggers: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None) -> 'Resource':
|
|
177
|
+
triggers: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None) -> 'Resource':
|
|
172
178
|
"""
|
|
173
179
|
Get an existing Resource resource's state with the given name, id, and optional extra
|
|
174
180
|
properties used to qualify the lookup.
|
|
@@ -176,7 +182,7 @@ class Resource(pulumi.CustomResource):
|
|
|
176
182
|
:param str resource_name: The unique name of the resulting resource.
|
|
177
183
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
178
184
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
179
|
-
: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.
|
|
180
186
|
"""
|
|
181
187
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
182
188
|
|
|
@@ -185,9 +191,9 @@ class Resource(pulumi.CustomResource):
|
|
|
185
191
|
__props__.__dict__["triggers"] = triggers
|
|
186
192
|
return Resource(resource_name, opts=opts, __props__=__props__)
|
|
187
193
|
|
|
188
|
-
@property
|
|
194
|
+
@_builtins.property
|
|
189
195
|
@pulumi.getter
|
|
190
|
-
def triggers(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
|
196
|
+
def triggers(self) -> pulumi.Output[Optional[Mapping[str, _builtins.str]]]:
|
|
191
197
|
"""
|
|
192
198
|
A map of arbitrary strings that, when changed, will force the null resource to be replaced, re-running any associated provisioners.
|
|
193
199
|
"""
|
|
@@ -1,16 +1,17 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: pulumi_null
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.0a1764888286
|
|
4
4
|
Summary: A Pulumi package for creating and managing Null 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-null
|
|
8
8
|
Keywords: pulumi,category/cloud
|
|
9
|
-
Requires-Python: >=3.
|
|
9
|
+
Requires-Python: >=3.9
|
|
10
10
|
Description-Content-Type: text/markdown
|
|
11
|
-
Requires-Dist: parver
|
|
12
|
-
Requires-Dist: pulumi
|
|
13
|
-
Requires-Dist: semver
|
|
11
|
+
Requires-Dist: parver>=0.2.1
|
|
12
|
+
Requires-Dist: pulumi<4.0.0,>=3.165.0
|
|
13
|
+
Requires-Dist: semver>=2.8.1
|
|
14
|
+
Requires-Dist: typing-extensions<5,>=4.11; python_version < "3.11"
|
|
14
15
|
|
|
15
16
|
[](https://github.com/pulumi/pulumi-null/actions)
|
|
16
17
|
[](https://www.npmjs.com/package/@pulumi/null)
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
pulumi_null/__init__.py,sha256=HYNelOMnfTSGbICYcmSO1lcoOz8qAjNBmc_xsQ10SNA,693
|
|
2
|
+
pulumi_null/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
|
|
3
|
+
pulumi_null/get_data_source.py,sha256=8Pn0V4K64SfeOvFbz6NtRua2SZ_F2dwTtO4RkgCNklM,6376
|
|
4
|
+
pulumi_null/provider.py,sha256=WlyqTT91PNblT8Ggy-ZdCMzX1Pvp6gz4cP-gKr0JDAk,4508
|
|
5
|
+
pulumi_null/pulumi-plugin.json,sha256=VMkgPyk30TczQv7KkfoijSfQ2BYWCaZsPD__PiXadZ0,80
|
|
6
|
+
pulumi_null/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
+
pulumi_null/resource.py,sha256=xcM0mCy6-fI_wzjWJ6-pYYo5vMWhGuzISBIjBH12aRE,9034
|
|
8
|
+
pulumi_null-0.1.0a1764888286.dist-info/METADATA,sha256=c-mSkcC3GGdegU_L_FFlyp_0iMq-4w1nBQwrcbA06RI,2840
|
|
9
|
+
pulumi_null-0.1.0a1764888286.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
10
|
+
pulumi_null-0.1.0a1764888286.dist-info/top_level.txt,sha256=Ru9dJEzD8mCrozV4N2VCSavoQqMS9aa8gq-PLsirmtc,12
|
|
11
|
+
pulumi_null-0.1.0a1764888286.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=aNnnaO6zRha3FhNHonuabR4fJLWGXANtK5dlh1Mz95k,10506
|
|
3
|
-
pulumi_null/get_data_source.py,sha256=PQG7dHECRrsjkqYTxODBtEdBTcV6GlvA9XWy9CikCHI,5367
|
|
4
|
-
pulumi_null/provider.py,sha256=SLc7l69q4BwAiTTj6UutzTFplKhivhcTH8x06xaqsuM,3414
|
|
5
|
-
pulumi_null/pulumi-plugin.json,sha256=rZwsZ5VNiTFLlrsLqJepgySUbK8gtzR0R_fJFDgP3wA,80
|
|
6
|
-
pulumi_null/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
-
pulumi_null/resource.py,sha256=ozZbh7enU3dEorIF4ztQH4hc6P2v4EWdKCjbPVqK4p0,8640
|
|
8
|
-
pulumi_null-0.1.0a1725947531.dist-info/METADATA,sha256=-pcIx2O3Sp-cezG6PrTFpRvMHuAlXQNKb_Z8wH26B3w,2774
|
|
9
|
-
pulumi_null-0.1.0a1725947531.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
|
|
10
|
-
pulumi_null-0.1.0a1725947531.dist-info/top_level.txt,sha256=Ru9dJEzD8mCrozV4N2VCSavoQqMS9aa8gq-PLsirmtc,12
|
|
11
|
-
pulumi_null-0.1.0a1725947531.dist-info/RECORD,,
|
{pulumi_null-0.1.0a1725947531.dist-info → pulumi_null-0.1.0a1764888286.dist-info}/top_level.txt
RENAMED
|
File without changes
|