pulumi-null 0.1.0a1730526378__tar.gz → 0.1.0a1764915536__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-null might be problematic. Click here for more details.
- {pulumi_null-0.1.0a1730526378 → pulumi_null-0.1.0a1764915536}/PKG-INFO +5 -5
- {pulumi_null-0.1.0a1730526378 → pulumi_null-0.1.0a1764915536}/pulumi_null/__init__.py +2 -1
- {pulumi_null-0.1.0a1730526378 → pulumi_null-0.1.0a1764915536}/pulumi_null/_utilities.py +9 -5
- {pulumi_null-0.1.0a1730526378 → pulumi_null-0.1.0a1764915536}/pulumi_null/get_data_source.py +22 -22
- {pulumi_null-0.1.0a1730526378 → pulumi_null-0.1.0a1764915536}/pulumi_null/provider.py +23 -2
- {pulumi_null-0.1.0a1730526378 → pulumi_null-0.1.0a1764915536}/pulumi_null/pulumi-plugin.json +1 -1
- {pulumi_null-0.1.0a1730526378 → pulumi_null-0.1.0a1764915536}/pulumi_null/resource.py +20 -19
- {pulumi_null-0.1.0a1730526378 → pulumi_null-0.1.0a1764915536}/pulumi_null.egg-info/PKG-INFO +5 -5
- {pulumi_null-0.1.0a1730526378 → pulumi_null-0.1.0a1764915536}/pulumi_null.egg-info/requires.txt +2 -2
- {pulumi_null-0.1.0a1730526378 → pulumi_null-0.1.0a1764915536}/pyproject.toml +3 -3
- {pulumi_null-0.1.0a1730526378 → pulumi_null-0.1.0a1764915536}/README.md +0 -0
- {pulumi_null-0.1.0a1730526378 → pulumi_null-0.1.0a1764915536}/pulumi_null/py.typed +0 -0
- {pulumi_null-0.1.0a1730526378 → pulumi_null-0.1.0a1764915536}/pulumi_null.egg-info/SOURCES.txt +0 -0
- {pulumi_null-0.1.0a1730526378 → pulumi_null-0.1.0a1764915536}/pulumi_null.egg-info/dependency_links.txt +0 -0
- {pulumi_null-0.1.0a1730526378 → pulumi_null-0.1.0a1764915536}/pulumi_null.egg-info/top_level.txt +0 -0
- {pulumi_null-0.1.0a1730526378 → pulumi_null-0.1.0a1764915536}/setup.cfg +0 -0
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: pulumi_null
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.0a1764915536
|
|
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
11
|
Requires-Dist: parver>=0.2.1
|
|
12
|
-
Requires-Dist: pulumi<4.0.0,>=3.
|
|
12
|
+
Requires-Dist: pulumi<4.0.0,>=3.165.0
|
|
13
13
|
Requires-Dist: semver>=2.8.1
|
|
14
|
-
Requires-Dist: typing-extensions
|
|
14
|
+
Requires-Dist: typing-extensions<5,>=4.11; python_version < "3.11"
|
|
15
15
|
|
|
16
16
|
[](https://github.com/pulumi/pulumi-null/actions)
|
|
17
17
|
[](https://www.npmjs.com/package/@pulumi/null)
|
|
@@ -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:
|
|
@@ -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
|
|
{pulumi_null-0.1.0a1730526378 → pulumi_null-0.1.0a1764915536}/pulumi_null/get_data_source.py
RENAMED
|
@@ -1,8 +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
|
|
5
|
+
import builtins as _builtins
|
|
6
6
|
import warnings
|
|
7
7
|
import sys
|
|
8
8
|
import pulumi
|
|
@@ -43,42 +43,42 @@ class GetDataSourceResult:
|
|
|
43
43
|
raise TypeError("Expected argument 'random' to be a str")
|
|
44
44
|
pulumi.set(__self__, "random", random)
|
|
45
45
|
|
|
46
|
-
@property
|
|
46
|
+
@_builtins.property
|
|
47
47
|
@pulumi.getter(name="hasComputedDefault")
|
|
48
|
-
def has_computed_default(self) -> str:
|
|
48
|
+
def has_computed_default(self) -> _builtins.str:
|
|
49
49
|
"""
|
|
50
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.
|
|
51
51
|
"""
|
|
52
52
|
return pulumi.get(self, "has_computed_default")
|
|
53
53
|
|
|
54
|
-
@property
|
|
54
|
+
@_builtins.property
|
|
55
55
|
@pulumi.getter
|
|
56
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.""")
|
|
57
|
-
def id(self) -> str:
|
|
57
|
+
def id(self) -> _builtins.str:
|
|
58
58
|
"""
|
|
59
59
|
This attribute is only present for some legacy compatibility issues and should not be used. It will be removed in a future version.
|
|
60
60
|
"""
|
|
61
61
|
return pulumi.get(self, "id")
|
|
62
62
|
|
|
63
|
-
@property
|
|
63
|
+
@_builtins.property
|
|
64
64
|
@pulumi.getter
|
|
65
|
-
def inputs(self) -> Optional[Mapping[str, str]]:
|
|
65
|
+
def inputs(self) -> Optional[Mapping[str, _builtins.str]]:
|
|
66
66
|
"""
|
|
67
67
|
A map of arbitrary strings that is copied into the `outputs` attribute, and accessible directly for interpolation.
|
|
68
68
|
"""
|
|
69
69
|
return pulumi.get(self, "inputs")
|
|
70
70
|
|
|
71
|
-
@property
|
|
71
|
+
@_builtins.property
|
|
72
72
|
@pulumi.getter
|
|
73
|
-
def outputs(self) -> Mapping[str, str]:
|
|
73
|
+
def outputs(self) -> Mapping[str, _builtins.str]:
|
|
74
74
|
"""
|
|
75
75
|
After the data source is "read", a copy of the `inputs` map.
|
|
76
76
|
"""
|
|
77
77
|
return pulumi.get(self, "outputs")
|
|
78
78
|
|
|
79
|
-
@property
|
|
79
|
+
@_builtins.property
|
|
80
80
|
@pulumi.getter
|
|
81
|
-
def random(self) -> str:
|
|
81
|
+
def random(self) -> _builtins.str:
|
|
82
82
|
return pulumi.get(self, "random")
|
|
83
83
|
|
|
84
84
|
|
|
@@ -95,15 +95,15 @@ class AwaitableGetDataSourceResult(GetDataSourceResult):
|
|
|
95
95
|
random=self.random)
|
|
96
96
|
|
|
97
97
|
|
|
98
|
-
def get_data_source(has_computed_default: Optional[str] = None,
|
|
99
|
-
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,
|
|
100
100
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDataSourceResult:
|
|
101
101
|
"""
|
|
102
102
|
## Example Usage
|
|
103
103
|
|
|
104
104
|
|
|
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.
|
|
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.
|
|
107
107
|
"""
|
|
108
108
|
__args__ = dict()
|
|
109
109
|
__args__['hasComputedDefault'] = has_computed_default
|
|
@@ -117,20 +117,20 @@ def get_data_source(has_computed_default: Optional[str] = None,
|
|
|
117
117
|
inputs=pulumi.get(__ret__, 'inputs'),
|
|
118
118
|
outputs=pulumi.get(__ret__, 'outputs'),
|
|
119
119
|
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,
|
|
122
|
-
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]:
|
|
123
123
|
"""
|
|
124
124
|
## Example Usage
|
|
125
125
|
|
|
126
126
|
|
|
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.
|
|
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.
|
|
129
129
|
"""
|
|
130
130
|
__args__ = dict()
|
|
131
131
|
__args__['hasComputedDefault'] = has_computed_default
|
|
132
132
|
__args__['inputs'] = inputs
|
|
133
|
-
opts = pulumi.
|
|
133
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
134
134
|
__ret__ = pulumi.runtime.invoke_output('null:index/getDataSource:getDataSource', __args__, opts=opts, typ=GetDataSourceResult)
|
|
135
135
|
return __ret__.apply(lambda __response__: GetDataSourceResult(
|
|
136
136
|
has_computed_default=pulumi.get(__response__, 'has_computed_default'),
|
|
@@ -1,8 +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
|
|
5
|
+
import builtins as _builtins
|
|
6
6
|
import warnings
|
|
7
7
|
import sys
|
|
8
8
|
import pulumi
|
|
@@ -25,6 +25,7 @@ class ProviderArgs:
|
|
|
25
25
|
pass
|
|
26
26
|
|
|
27
27
|
|
|
28
|
+
@pulumi.type_token("pulumi:providers:null")
|
|
28
29
|
class Provider(pulumi.ProviderResource):
|
|
29
30
|
@overload
|
|
30
31
|
def __init__(__self__,
|
|
@@ -82,3 +83,23 @@ class Provider(pulumi.ProviderResource):
|
|
|
82
83
|
__props__,
|
|
83
84
|
opts)
|
|
84
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
|
+
|
|
@@ -1,8 +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
|
|
5
|
+
import builtins as _builtins
|
|
6
6
|
import warnings
|
|
7
7
|
import sys
|
|
8
8
|
import pulumi
|
|
@@ -19,57 +19,58 @@ __all__ = ['ResourceArgs', 'Resource']
|
|
|
19
19
|
@pulumi.input_type
|
|
20
20
|
class ResourceArgs:
|
|
21
21
|
def __init__(__self__, *,
|
|
22
|
-
triggers: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
|
|
22
|
+
triggers: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None):
|
|
23
23
|
"""
|
|
24
24
|
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.
|
|
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.
|
|
26
26
|
"""
|
|
27
27
|
if triggers is not None:
|
|
28
28
|
pulumi.set(__self__, "triggers", triggers)
|
|
29
29
|
|
|
30
|
-
@property
|
|
30
|
+
@_builtins.property
|
|
31
31
|
@pulumi.getter
|
|
32
|
-
def triggers(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
32
|
+
def triggers(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
|
33
33
|
"""
|
|
34
34
|
A map of arbitrary strings that, when changed, will force the null resource to be replaced, re-running any associated provisioners.
|
|
35
35
|
"""
|
|
36
36
|
return pulumi.get(self, "triggers")
|
|
37
37
|
|
|
38
38
|
@triggers.setter
|
|
39
|
-
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]]]]):
|
|
40
40
|
pulumi.set(self, "triggers", value)
|
|
41
41
|
|
|
42
42
|
|
|
43
43
|
@pulumi.input_type
|
|
44
44
|
class _ResourceState:
|
|
45
45
|
def __init__(__self__, *,
|
|
46
|
-
triggers: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
|
|
46
|
+
triggers: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None):
|
|
47
47
|
"""
|
|
48
48
|
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.
|
|
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.
|
|
50
50
|
"""
|
|
51
51
|
if triggers is not None:
|
|
52
52
|
pulumi.set(__self__, "triggers", triggers)
|
|
53
53
|
|
|
54
|
-
@property
|
|
54
|
+
@_builtins.property
|
|
55
55
|
@pulumi.getter
|
|
56
|
-
def triggers(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
56
|
+
def triggers(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
|
57
57
|
"""
|
|
58
58
|
A map of arbitrary strings that, when changed, will force the null resource to be replaced, re-running any associated provisioners.
|
|
59
59
|
"""
|
|
60
60
|
return pulumi.get(self, "triggers")
|
|
61
61
|
|
|
62
62
|
@triggers.setter
|
|
63
|
-
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]]]]):
|
|
64
64
|
pulumi.set(self, "triggers", value)
|
|
65
65
|
|
|
66
66
|
|
|
67
|
+
@pulumi.type_token("null:index/resource:Resource")
|
|
67
68
|
class Resource(pulumi.CustomResource):
|
|
68
69
|
@overload
|
|
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
|
|
|
@@ -190,9 +191,9 @@ class Resource(pulumi.CustomResource):
|
|
|
190
191
|
__props__.__dict__["triggers"] = triggers
|
|
191
192
|
return Resource(resource_name, opts=opts, __props__=__props__)
|
|
192
193
|
|
|
193
|
-
@property
|
|
194
|
+
@_builtins.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
|
"""
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: pulumi_null
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.0a1764915536
|
|
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
11
|
Requires-Dist: parver>=0.2.1
|
|
12
|
-
Requires-Dist: pulumi<4.0.0,>=3.
|
|
12
|
+
Requires-Dist: pulumi<4.0.0,>=3.165.0
|
|
13
13
|
Requires-Dist: semver>=2.8.1
|
|
14
|
-
Requires-Dist: typing-extensions
|
|
14
|
+
Requires-Dist: typing-extensions<5,>=4.11; python_version < "3.11"
|
|
15
15
|
|
|
16
16
|
[](https://github.com/pulumi/pulumi-null/actions)
|
|
17
17
|
[](https://www.npmjs.com/package/@pulumi/null)
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "pulumi_null"
|
|
3
3
|
description = "A Pulumi package for creating and managing Null cloud resources."
|
|
4
|
-
dependencies = ["parver>=0.2.1", "pulumi>=3.
|
|
4
|
+
dependencies = ["parver>=0.2.1", "pulumi>=3.165.0,<4.0.0", "semver>=2.8.1", "typing-extensions>=4.11,<5; python_version < \"3.11\""]
|
|
5
5
|
keywords = ["pulumi", "category/cloud"]
|
|
6
6
|
readme = "README.md"
|
|
7
|
-
requires-python = ">=3.
|
|
8
|
-
version = "0.1.
|
|
7
|
+
requires-python = ">=3.9"
|
|
8
|
+
version = "0.1.0a1764915536"
|
|
9
9
|
[project.license]
|
|
10
10
|
text = "Apache-2.0"
|
|
11
11
|
[project.urls]
|
|
File without changes
|
|
File without changes
|
{pulumi_null-0.1.0a1730526378 → pulumi_null-0.1.0a1764915536}/pulumi_null.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{pulumi_null-0.1.0a1730526378 → pulumi_null-0.1.0a1764915536}/pulumi_null.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|