pulumi-xyz 1.2.0a1727780332__tar.gz → 1.2.0a1728591899__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.
- {pulumi_xyz-1.2.0a1727780332 → pulumi_xyz-1.2.0a1728591899}/PKG-INFO +3 -2
- {pulumi_xyz-1.2.0a1727780332 → pulumi_xyz-1.2.0a1728591899}/pulumi_xyz/_utilities.py +1 -1
- {pulumi_xyz-1.2.0a1727780332 → pulumi_xyz-1.2.0a1728591899}/pulumi_xyz/config/__init__.pyi +5 -0
- {pulumi_xyz-1.2.0a1727780332 → pulumi_xyz-1.2.0a1728591899}/pulumi_xyz/config/vars.py +5 -0
- {pulumi_xyz-1.2.0a1727780332 → pulumi_xyz-1.2.0a1728591899}/pulumi_xyz/data_source.py +12 -4
- {pulumi_xyz-1.2.0a1727780332 → pulumi_xyz-1.2.0a1728591899}/pulumi_xyz/provider.py +5 -0
- {pulumi_xyz-1.2.0a1727780332 → pulumi_xyz-1.2.0a1728591899}/pulumi_xyz/pulumi-plugin.json +1 -1
- {pulumi_xyz-1.2.0a1727780332 → pulumi_xyz-1.2.0a1728591899}/pulumi_xyz/resource.py +5 -0
- {pulumi_xyz-1.2.0a1727780332 → pulumi_xyz-1.2.0a1728591899}/pulumi_xyz.egg-info/PKG-INFO +3 -2
- pulumi_xyz-1.2.0a1728591899/pulumi_xyz.egg-info/requires.txt +6 -0
- {pulumi_xyz-1.2.0a1727780332 → pulumi_xyz-1.2.0a1728591899}/pyproject.toml +2 -2
- pulumi_xyz-1.2.0a1727780332/pulumi_xyz.egg-info/requires.txt +0 -3
- {pulumi_xyz-1.2.0a1727780332 → pulumi_xyz-1.2.0a1728591899}/README.md +0 -0
- {pulumi_xyz-1.2.0a1727780332 → pulumi_xyz-1.2.0a1728591899}/pulumi_xyz/__init__.py +0 -0
- {pulumi_xyz-1.2.0a1727780332 → pulumi_xyz-1.2.0a1728591899}/pulumi_xyz/config/__init__.py +0 -0
- {pulumi_xyz-1.2.0a1727780332 → pulumi_xyz-1.2.0a1728591899}/pulumi_xyz/py.typed +0 -0
- {pulumi_xyz-1.2.0a1727780332 → pulumi_xyz-1.2.0a1728591899}/pulumi_xyz/region/__init__.py +0 -0
- {pulumi_xyz-1.2.0a1727780332 → pulumi_xyz-1.2.0a1728591899}/pulumi_xyz/region/_enums.py +0 -0
- {pulumi_xyz-1.2.0a1727780332 → pulumi_xyz-1.2.0a1728591899}/pulumi_xyz.egg-info/SOURCES.txt +0 -0
- {pulumi_xyz-1.2.0a1727780332 → pulumi_xyz-1.2.0a1728591899}/pulumi_xyz.egg-info/dependency_links.txt +0 -0
- {pulumi_xyz-1.2.0a1727780332 → pulumi_xyz-1.2.0a1728591899}/pulumi_xyz.egg-info/top_level.txt +0 -0
- {pulumi_xyz-1.2.0a1727780332 → pulumi_xyz-1.2.0a1728591899}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pulumi_xyz
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.0a1728591899
|
|
4
4
|
Summary: A Pulumi package for creating and managing xyz cloud resources.
|
|
5
5
|
License: Apache-2.0
|
|
6
6
|
Project-URL: Homepage, https://www.pulumi.com
|
|
@@ -9,8 +9,9 @@ Keywords: pulumi,xyz,category/cloud
|
|
|
9
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.136.0
|
|
13
13
|
Requires-Dist: semver>=2.8.1
|
|
14
|
+
Requires-Dist: typing-extensions>=4.11; python_version < "3.11"
|
|
14
15
|
|
|
15
16
|
# XYZ Resource Provider
|
|
16
17
|
|
|
@@ -264,7 +264,7 @@ def call_plain(
|
|
|
264
264
|
output = pulumi.runtime.call(tok, props, res, typ)
|
|
265
265
|
|
|
266
266
|
# Ingoring deps silently. They are typically non-empty, r.f() calls include r as a dependency.
|
|
267
|
-
result, known, secret, _ = _sync_await(asyncio.
|
|
267
|
+
result, known, secret, _ = _sync_await(asyncio.create_task(_await_output(output)))
|
|
268
268
|
|
|
269
269
|
problem = None
|
|
270
270
|
if not known:
|
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
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
|
from .. import region
|
|
12
17
|
|
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
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
|
from .. import region
|
|
12
17
|
|
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
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__ = [
|
|
@@ -66,12 +71,15 @@ def data_source(sample_attribute: Optional[str] = None,
|
|
|
66
71
|
return AwaitableDataSourceResult(
|
|
67
72
|
id=pulumi.get(__ret__, 'id'),
|
|
68
73
|
sample_attribute=pulumi.get(__ret__, 'sample_attribute'))
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
@_utilities.lift_output_func(data_source)
|
|
72
74
|
def data_source_output(sample_attribute: Optional[pulumi.Input[str]] = None,
|
|
73
75
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[DataSourceResult]:
|
|
74
76
|
"""
|
|
75
77
|
Use this data source to access information about an existing resource.
|
|
76
78
|
"""
|
|
77
|
-
|
|
79
|
+
__args__ = dict()
|
|
80
|
+
__args__['sampleAttribute'] = sample_attribute
|
|
81
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
82
|
+
__ret__ = pulumi.runtime.invoke_output('xyz:index/dataSource:DataSource', __args__, opts=opts, typ=DataSourceResult)
|
|
83
|
+
return __ret__.apply(lambda __response__: DataSourceResult(
|
|
84
|
+
id=pulumi.get(__response__, 'id'),
|
|
85
|
+
sample_attribute=pulumi.get(__response__, 'sample_attribute')))
|
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
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
|
from . import region
|
|
12
17
|
|
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
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']
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pulumi_xyz
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.0a1728591899
|
|
4
4
|
Summary: A Pulumi package for creating and managing xyz cloud resources.
|
|
5
5
|
License: Apache-2.0
|
|
6
6
|
Project-URL: Homepage, https://www.pulumi.com
|
|
@@ -9,8 +9,9 @@ Keywords: pulumi,xyz,category/cloud
|
|
|
9
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.136.0
|
|
13
13
|
Requires-Dist: semver>=2.8.1
|
|
14
|
+
Requires-Dist: typing-extensions>=4.11; python_version < "3.11"
|
|
14
15
|
|
|
15
16
|
# XYZ Resource Provider
|
|
16
17
|
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "pulumi_xyz"
|
|
3
3
|
description = "A Pulumi package for creating and managing xyz cloud resources."
|
|
4
|
-
dependencies = ["parver>=0.2.1", "pulumi>=3.
|
|
4
|
+
dependencies = ["parver>=0.2.1", "pulumi>=3.136.0,<4.0.0", "semver>=2.8.1", "typing-extensions>=4.11; python_version < \"3.11\""]
|
|
5
5
|
keywords = ["pulumi", "xyz", "category/cloud"]
|
|
6
6
|
readme = "README.md"
|
|
7
7
|
requires-python = ">=3.8"
|
|
8
|
-
version = "1.2.
|
|
8
|
+
version = "1.2.0a1728591899"
|
|
9
9
|
[project.license]
|
|
10
10
|
text = "Apache-2.0"
|
|
11
11
|
[project.urls]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pulumi_xyz-1.2.0a1727780332 → pulumi_xyz-1.2.0a1728591899}/pulumi_xyz.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{pulumi_xyz-1.2.0a1727780332 → pulumi_xyz-1.2.0a1728591899}/pulumi_xyz.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|