pulumi-xyz 1.2.0a1742625742__tar.gz → 1.2.0a1744183455__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.0a1742625742 → pulumi_xyz-1.2.0a1744183455}/PKG-INFO +1 -1
- {pulumi_xyz-1.2.0a1742625742 → pulumi_xyz-1.2.0a1744183455}/pulumi_xyz/__init__.py +1 -0
- {pulumi_xyz-1.2.0a1742625742 → pulumi_xyz-1.2.0a1744183455}/pulumi_xyz/config/__init__.py +1 -0
- {pulumi_xyz-1.2.0a1742625742 → pulumi_xyz-1.2.0a1744183455}/pulumi_xyz/config/__init__.pyi +1 -0
- {pulumi_xyz-1.2.0a1742625742 → pulumi_xyz-1.2.0a1744183455}/pulumi_xyz/config/vars.py +1 -0
- {pulumi_xyz-1.2.0a1742625742 → pulumi_xyz-1.2.0a1744183455}/pulumi_xyz/data_source.py +5 -4
- {pulumi_xyz-1.2.0a1742625742 → pulumi_xyz-1.2.0a1744183455}/pulumi_xyz/provider.py +1 -0
- {pulumi_xyz-1.2.0a1742625742 → pulumi_xyz-1.2.0a1744183455}/pulumi_xyz/pulumi-plugin.json +1 -1
- {pulumi_xyz-1.2.0a1742625742 → pulumi_xyz-1.2.0a1744183455}/pulumi_xyz/region/__init__.py +1 -0
- {pulumi_xyz-1.2.0a1742625742 → pulumi_xyz-1.2.0a1744183455}/pulumi_xyz/region/_enums.py +3 -1
- {pulumi_xyz-1.2.0a1742625742 → pulumi_xyz-1.2.0a1744183455}/pulumi_xyz/resource.py +15 -14
- {pulumi_xyz-1.2.0a1742625742 → pulumi_xyz-1.2.0a1744183455}/pulumi_xyz.egg-info/PKG-INFO +1 -1
- {pulumi_xyz-1.2.0a1742625742 → pulumi_xyz-1.2.0a1744183455}/pyproject.toml +1 -1
- {pulumi_xyz-1.2.0a1742625742 → pulumi_xyz-1.2.0a1744183455}/README.md +0 -0
- {pulumi_xyz-1.2.0a1742625742 → pulumi_xyz-1.2.0a1744183455}/pulumi_xyz/_utilities.py +0 -0
- {pulumi_xyz-1.2.0a1742625742 → pulumi_xyz-1.2.0a1744183455}/pulumi_xyz/py.typed +0 -0
- {pulumi_xyz-1.2.0a1742625742 → pulumi_xyz-1.2.0a1744183455}/pulumi_xyz.egg-info/SOURCES.txt +0 -0
- {pulumi_xyz-1.2.0a1742625742 → pulumi_xyz-1.2.0a1744183455}/pulumi_xyz.egg-info/dependency_links.txt +0 -0
- {pulumi_xyz-1.2.0a1742625742 → pulumi_xyz-1.2.0a1744183455}/pulumi_xyz.egg-info/requires.txt +0 -0
- {pulumi_xyz-1.2.0a1742625742 → pulumi_xyz-1.2.0a1744183455}/pulumi_xyz.egg-info/top_level.txt +0 -0
- {pulumi_xyz-1.2.0a1742625742 → pulumi_xyz-1.2.0a1744183455}/setup.cfg +0 -0
|
@@ -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
|
|
@@ -36,7 +37,7 @@ class DataSourceResult:
|
|
|
36
37
|
|
|
37
38
|
@property
|
|
38
39
|
@pulumi.getter
|
|
39
|
-
def id(self) -> str:
|
|
40
|
+
def id(self) -> builtins.str:
|
|
40
41
|
"""
|
|
41
42
|
The provider-assigned unique ID for this managed resource.
|
|
42
43
|
"""
|
|
@@ -44,7 +45,7 @@ class DataSourceResult:
|
|
|
44
45
|
|
|
45
46
|
@property
|
|
46
47
|
@pulumi.getter(name="sampleAttribute")
|
|
47
|
-
def sample_attribute(self) -> str:
|
|
48
|
+
def sample_attribute(self) -> builtins.str:
|
|
48
49
|
return pulumi.get(self, "sample_attribute")
|
|
49
50
|
|
|
50
51
|
|
|
@@ -58,7 +59,7 @@ class AwaitableDataSourceResult(DataSourceResult):
|
|
|
58
59
|
sample_attribute=self.sample_attribute)
|
|
59
60
|
|
|
60
61
|
|
|
61
|
-
def data_source(sample_attribute: Optional[str] = None,
|
|
62
|
+
def data_source(sample_attribute: Optional[builtins.str] = None,
|
|
62
63
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableDataSourceResult:
|
|
63
64
|
"""
|
|
64
65
|
Use this data source to access information about an existing resource.
|
|
@@ -71,7 +72,7 @@ def data_source(sample_attribute: Optional[str] = None,
|
|
|
71
72
|
return AwaitableDataSourceResult(
|
|
72
73
|
id=pulumi.get(__ret__, 'id'),
|
|
73
74
|
sample_attribute=pulumi.get(__ret__, 'sample_attribute'))
|
|
74
|
-
def data_source_output(sample_attribute: Optional[pulumi.Input[str]] = None,
|
|
75
|
+
def data_source_output(sample_attribute: Optional[pulumi.Input[builtins.str]] = None,
|
|
75
76
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[DataSourceResult]:
|
|
76
77
|
"""
|
|
77
78
|
Use this data source to access information about an existing resource.
|
|
@@ -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,8 @@
|
|
|
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
|
|
6
|
+
import builtins
|
|
5
7
|
from enum import Enum
|
|
6
8
|
|
|
7
9
|
__all__ = [
|
|
@@ -9,6 +11,6 @@ __all__ = [
|
|
|
9
11
|
]
|
|
10
12
|
|
|
11
13
|
|
|
12
|
-
class Region(str, Enum):
|
|
14
|
+
class Region(builtins.str, Enum):
|
|
13
15
|
HERE = "HERE"
|
|
14
16
|
OVER_THERE = "OVER_THERE"
|
|
@@ -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
|
-
sample_attribute: Optional[pulumi.Input[str]] = None):
|
|
23
|
+
sample_attribute: Optional[pulumi.Input[builtins.str]] = None):
|
|
23
24
|
"""
|
|
24
25
|
The set of arguments for constructing a Resource resource.
|
|
25
|
-
:param pulumi.Input[str] sample_attribute: Sample attribute.
|
|
26
|
+
:param pulumi.Input[builtins.str] sample_attribute: Sample attribute.
|
|
26
27
|
"""
|
|
27
28
|
if sample_attribute is not None:
|
|
28
29
|
pulumi.set(__self__, "sample_attribute", sample_attribute)
|
|
29
30
|
|
|
30
31
|
@property
|
|
31
32
|
@pulumi.getter(name="sampleAttribute")
|
|
32
|
-
def sample_attribute(self) -> Optional[pulumi.Input[str]]:
|
|
33
|
+
def sample_attribute(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
33
34
|
"""
|
|
34
35
|
Sample attribute.
|
|
35
36
|
"""
|
|
36
37
|
return pulumi.get(self, "sample_attribute")
|
|
37
38
|
|
|
38
39
|
@sample_attribute.setter
|
|
39
|
-
def sample_attribute(self, value: Optional[pulumi.Input[str]]):
|
|
40
|
+
def sample_attribute(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
40
41
|
pulumi.set(self, "sample_attribute", value)
|
|
41
42
|
|
|
42
43
|
|
|
43
44
|
@pulumi.input_type
|
|
44
45
|
class _ResourceState:
|
|
45
46
|
def __init__(__self__, *,
|
|
46
|
-
sample_attribute: Optional[pulumi.Input[str]] = None):
|
|
47
|
+
sample_attribute: Optional[pulumi.Input[builtins.str]] = None):
|
|
47
48
|
"""
|
|
48
49
|
Input properties used for looking up and filtering Resource resources.
|
|
49
|
-
:param pulumi.Input[str] sample_attribute: Sample attribute.
|
|
50
|
+
:param pulumi.Input[builtins.str] sample_attribute: Sample attribute.
|
|
50
51
|
"""
|
|
51
52
|
if sample_attribute is not None:
|
|
52
53
|
pulumi.set(__self__, "sample_attribute", sample_attribute)
|
|
53
54
|
|
|
54
55
|
@property
|
|
55
56
|
@pulumi.getter(name="sampleAttribute")
|
|
56
|
-
def sample_attribute(self) -> Optional[pulumi.Input[str]]:
|
|
57
|
+
def sample_attribute(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
57
58
|
"""
|
|
58
59
|
Sample attribute.
|
|
59
60
|
"""
|
|
60
61
|
return pulumi.get(self, "sample_attribute")
|
|
61
62
|
|
|
62
63
|
@sample_attribute.setter
|
|
63
|
-
def sample_attribute(self, value: Optional[pulumi.Input[str]]):
|
|
64
|
+
def sample_attribute(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
64
65
|
pulumi.set(self, "sample_attribute", value)
|
|
65
66
|
|
|
66
67
|
|
|
@@ -69,13 +70,13 @@ class Resource(pulumi.CustomResource):
|
|
|
69
70
|
def __init__(__self__,
|
|
70
71
|
resource_name: str,
|
|
71
72
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
72
|
-
sample_attribute: Optional[pulumi.Input[str]] = None,
|
|
73
|
+
sample_attribute: Optional[pulumi.Input[builtins.str]] = None,
|
|
73
74
|
__props__=None):
|
|
74
75
|
"""
|
|
75
76
|
Create a Resource resource with the given unique name, props, and options.
|
|
76
77
|
:param str resource_name: The name of the resource.
|
|
77
78
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
78
|
-
:param pulumi.Input[str] sample_attribute: Sample attribute.
|
|
79
|
+
:param pulumi.Input[builtins.str] sample_attribute: Sample attribute.
|
|
79
80
|
"""
|
|
80
81
|
...
|
|
81
82
|
@overload
|
|
@@ -100,7 +101,7 @@ class Resource(pulumi.CustomResource):
|
|
|
100
101
|
def _internal_init(__self__,
|
|
101
102
|
resource_name: str,
|
|
102
103
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
103
|
-
sample_attribute: Optional[pulumi.Input[str]] = None,
|
|
104
|
+
sample_attribute: Optional[pulumi.Input[builtins.str]] = None,
|
|
104
105
|
__props__=None):
|
|
105
106
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
106
107
|
if not isinstance(opts, pulumi.ResourceOptions):
|
|
@@ -121,7 +122,7 @@ class Resource(pulumi.CustomResource):
|
|
|
121
122
|
def get(resource_name: str,
|
|
122
123
|
id: pulumi.Input[str],
|
|
123
124
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
124
|
-
sample_attribute: Optional[pulumi.Input[str]] = None) -> 'Resource':
|
|
125
|
+
sample_attribute: Optional[pulumi.Input[builtins.str]] = None) -> 'Resource':
|
|
125
126
|
"""
|
|
126
127
|
Get an existing Resource resource's state with the given name, id, and optional extra
|
|
127
128
|
properties used to qualify the lookup.
|
|
@@ -129,7 +130,7 @@ class Resource(pulumi.CustomResource):
|
|
|
129
130
|
:param str resource_name: The unique name of the resulting resource.
|
|
130
131
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
131
132
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
132
|
-
:param pulumi.Input[str] sample_attribute: Sample attribute.
|
|
133
|
+
:param pulumi.Input[builtins.str] sample_attribute: Sample attribute.
|
|
133
134
|
"""
|
|
134
135
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
135
136
|
|
|
@@ -140,7 +141,7 @@ class Resource(pulumi.CustomResource):
|
|
|
140
141
|
|
|
141
142
|
@property
|
|
142
143
|
@pulumi.getter(name="sampleAttribute")
|
|
143
|
-
def sample_attribute(self) -> pulumi.Output[Optional[str]]:
|
|
144
|
+
def sample_attribute(self) -> pulumi.Output[Optional[builtins.str]]:
|
|
144
145
|
"""
|
|
145
146
|
Sample attribute.
|
|
146
147
|
"""
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pulumi_xyz-1.2.0a1742625742 → pulumi_xyz-1.2.0a1744183455}/pulumi_xyz.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{pulumi_xyz-1.2.0a1742625742 → pulumi_xyz-1.2.0a1744183455}/pulumi_xyz.egg-info/requires.txt
RENAMED
|
File without changes
|
{pulumi_xyz-1.2.0a1742625742 → pulumi_xyz-1.2.0a1744183455}/pulumi_xyz.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|