gammarers.aws-resource-naming 0.4.0__py3-none-any.whl → 0.5.1__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 gammarers.aws-resource-naming might be problematic. Click here for more details.
- gammarers/aws_resource_naming/_jsii/__init__.py +2 -2
- gammarers/aws_resource_naming/_jsii/aws-resource-naming@0.5.1.jsii.tgz +0 -0
- gammarers/aws_resource_naming/resource_naming/__init__.py +0 -105
- {gammarers.aws_resource_naming-0.4.0.dist-info → gammarers.aws_resource_naming-0.5.1.dist-info}/METADATA +1 -1
- gammarers.aws_resource_naming-0.5.1.dist-info/RECORD +10 -0
- {gammarers.aws_resource_naming-0.4.0.dist-info → gammarers.aws_resource_naming-0.5.1.dist-info}/WHEEL +1 -1
- gammarers/aws_resource_naming/_jsii/aws-resource-naming@0.4.0.jsii.tgz +0 -0
- gammarers.aws_resource_naming-0.4.0.dist-info/RECORD +0 -10
- {gammarers.aws_resource_naming-0.4.0.dist-info → gammarers.aws_resource_naming-0.5.1.dist-info}/LICENSE +0 -0
- {gammarers.aws_resource_naming-0.4.0.dist-info → gammarers.aws_resource_naming-0.5.1.dist-info}/top_level.txt +0 -0
|
@@ -30,9 +30,9 @@ def check_type(argname: str, value: object, expected_type: typing.Any) -> typing
|
|
|
30
30
|
|
|
31
31
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
|
32
32
|
"@gammarers/aws-resource-naming",
|
|
33
|
-
"0.
|
|
33
|
+
"0.5.1",
|
|
34
34
|
__name__[0:-6],
|
|
35
|
-
"aws-resource-naming@0.
|
|
35
|
+
"aws-resource-naming@0.5.1.jsii.tgz",
|
|
36
36
|
)
|
|
37
37
|
|
|
38
38
|
__all__ = [
|
|
Binary file
|
|
@@ -31,55 +31,6 @@ def check_type(argname: str, value: object, expected_type: typing.Any) -> typing
|
|
|
31
31
|
from .._jsii import *
|
|
32
32
|
|
|
33
33
|
|
|
34
|
-
@jsii.data_type(
|
|
35
|
-
jsii_type="@gammarers/aws-resource-naming.ResourceNaming.CustomNaming",
|
|
36
|
-
jsii_struct_bases=[],
|
|
37
|
-
name_mapping={"names": "names", "type": "type"},
|
|
38
|
-
)
|
|
39
|
-
class CustomNaming:
|
|
40
|
-
def __init__(
|
|
41
|
-
self,
|
|
42
|
-
*,
|
|
43
|
-
names: typing.Mapping[builtins.str, builtins.str],
|
|
44
|
-
type: "NamingType",
|
|
45
|
-
) -> None:
|
|
46
|
-
'''
|
|
47
|
-
:param names:
|
|
48
|
-
:param type:
|
|
49
|
-
'''
|
|
50
|
-
if __debug__:
|
|
51
|
-
type_hints = typing.get_type_hints(_typecheckingstub__8fff27b6dcebd6700d9f8d6f36ba20baab0f1e3a292e374831d37da1388dee34)
|
|
52
|
-
check_type(argname="argument names", value=names, expected_type=type_hints["names"])
|
|
53
|
-
check_type(argname="argument type", value=type, expected_type=type_hints["type"])
|
|
54
|
-
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
55
|
-
"names": names,
|
|
56
|
-
"type": type,
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
@builtins.property
|
|
60
|
-
def names(self) -> typing.Mapping[builtins.str, builtins.str]:
|
|
61
|
-
result = self._values.get("names")
|
|
62
|
-
assert result is not None, "Required property 'names' is missing"
|
|
63
|
-
return typing.cast(typing.Mapping[builtins.str, builtins.str], result)
|
|
64
|
-
|
|
65
|
-
@builtins.property
|
|
66
|
-
def type(self) -> "NamingType":
|
|
67
|
-
result = self._values.get("type")
|
|
68
|
-
assert result is not None, "Required property 'type' is missing"
|
|
69
|
-
return typing.cast("NamingType", result)
|
|
70
|
-
|
|
71
|
-
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
72
|
-
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
73
|
-
|
|
74
|
-
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
75
|
-
return not (rhs == self)
|
|
76
|
-
|
|
77
|
-
def __repr__(self) -> str:
|
|
78
|
-
return "CustomNaming(%s)" % ", ".join(
|
|
79
|
-
k + "=" + repr(v) for k, v in self._values.items()
|
|
80
|
-
)
|
|
81
|
-
|
|
82
|
-
|
|
83
34
|
@jsii.data_type(
|
|
84
35
|
jsii_type="@gammarers/aws-resource-naming.ResourceNaming.DefaultNaming",
|
|
85
36
|
jsii_struct_bases=[],
|
|
@@ -115,45 +66,6 @@ class DefaultNaming:
|
|
|
115
66
|
)
|
|
116
67
|
|
|
117
68
|
|
|
118
|
-
@jsii.data_type(
|
|
119
|
-
jsii_type="@gammarers/aws-resource-naming.ResourceNaming.NamingOptions",
|
|
120
|
-
jsii_struct_bases=[],
|
|
121
|
-
name_mapping={"naming": "naming"},
|
|
122
|
-
)
|
|
123
|
-
class NamingOptions:
|
|
124
|
-
def __init__(
|
|
125
|
-
self,
|
|
126
|
-
*,
|
|
127
|
-
naming: typing.Union[typing.Union["NoNaming", typing.Dict[builtins.str, typing.Any]], typing.Union[DefaultNaming, typing.Dict[builtins.str, typing.Any]], typing.Union[CustomNaming, typing.Dict[builtins.str, typing.Any]]],
|
|
128
|
-
) -> None:
|
|
129
|
-
'''
|
|
130
|
-
:param naming:
|
|
131
|
-
'''
|
|
132
|
-
if __debug__:
|
|
133
|
-
type_hints = typing.get_type_hints(_typecheckingstub__74a21456f1875723092b0702d4fd53b02fa06b53aff36a896a2909135d5c42f6)
|
|
134
|
-
check_type(argname="argument naming", value=naming, expected_type=type_hints["naming"])
|
|
135
|
-
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
136
|
-
"naming": naming,
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
@builtins.property
|
|
140
|
-
def naming(self) -> typing.Union["NoNaming", DefaultNaming, CustomNaming]:
|
|
141
|
-
result = self._values.get("naming")
|
|
142
|
-
assert result is not None, "Required property 'naming' is missing"
|
|
143
|
-
return typing.cast(typing.Union["NoNaming", DefaultNaming, CustomNaming], result)
|
|
144
|
-
|
|
145
|
-
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
146
|
-
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
147
|
-
|
|
148
|
-
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
149
|
-
return not (rhs == self)
|
|
150
|
-
|
|
151
|
-
def __repr__(self) -> str:
|
|
152
|
-
return "NamingOptions(%s)" % ", ".join(
|
|
153
|
-
k + "=" + repr(v) for k, v in self._values.items()
|
|
154
|
-
)
|
|
155
|
-
|
|
156
|
-
|
|
157
69
|
@jsii.enum(jsii_type="@gammarers/aws-resource-naming.ResourceNaming.NamingType")
|
|
158
70
|
class NamingType(enum.Enum):
|
|
159
71
|
NO = "NO"
|
|
@@ -197,23 +109,13 @@ class NoNaming:
|
|
|
197
109
|
|
|
198
110
|
|
|
199
111
|
__all__ = [
|
|
200
|
-
"CustomNaming",
|
|
201
112
|
"DefaultNaming",
|
|
202
|
-
"NamingOptions",
|
|
203
113
|
"NamingType",
|
|
204
114
|
"NoNaming",
|
|
205
115
|
]
|
|
206
116
|
|
|
207
117
|
publication.publish()
|
|
208
118
|
|
|
209
|
-
def _typecheckingstub__8fff27b6dcebd6700d9f8d6f36ba20baab0f1e3a292e374831d37da1388dee34(
|
|
210
|
-
*,
|
|
211
|
-
names: typing.Mapping[builtins.str, builtins.str],
|
|
212
|
-
type: NamingType,
|
|
213
|
-
) -> None:
|
|
214
|
-
"""Type checking stubs"""
|
|
215
|
-
pass
|
|
216
|
-
|
|
217
119
|
def _typecheckingstub__a6fe688f7026700ff451ff908b5358d3e7292c007575b3de8dfbdfcbadcb332f(
|
|
218
120
|
*,
|
|
219
121
|
type: NamingType,
|
|
@@ -221,13 +123,6 @@ def _typecheckingstub__a6fe688f7026700ff451ff908b5358d3e7292c007575b3de8dfbdfcba
|
|
|
221
123
|
"""Type checking stubs"""
|
|
222
124
|
pass
|
|
223
125
|
|
|
224
|
-
def _typecheckingstub__74a21456f1875723092b0702d4fd53b02fa06b53aff36a896a2909135d5c42f6(
|
|
225
|
-
*,
|
|
226
|
-
naming: typing.Union[typing.Union[NoNaming, typing.Dict[builtins.str, typing.Any]], typing.Union[DefaultNaming, typing.Dict[builtins.str, typing.Any]], typing.Union[CustomNaming, typing.Dict[builtins.str, typing.Any]]],
|
|
227
|
-
) -> None:
|
|
228
|
-
"""Type checking stubs"""
|
|
229
|
-
pass
|
|
230
|
-
|
|
231
126
|
def _typecheckingstub__24cd6ae03c739c87909e65c512e87d9dfda9d588964f28553f04daaae884fb51(
|
|
232
127
|
*,
|
|
233
128
|
type: NamingType,
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
gammarers/aws_resource_naming/__init__.py,sha256=OKd0Xeh-5m5Ca20HN7uSspIKXtsUanPIEJgDs9SkVH4,1434
|
|
2
|
+
gammarers/aws_resource_naming/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
3
|
+
gammarers/aws_resource_naming/_jsii/__init__.py,sha256=5deDcceUQqYh9ND7KMWwD64KiPo1WGyW8LCUg_EtG88,1427
|
|
4
|
+
gammarers/aws_resource_naming/_jsii/aws-resource-naming@0.5.1.jsii.tgz,sha256=cfNgkW1DuTCbVGej-PAsVyUhRF2dJOfKTOK1QfvZIBQ,10311
|
|
5
|
+
gammarers/aws_resource_naming/resource_naming/__init__.py,sha256=le2RaJpzHvRNFhw_5KBrgjUofR_QPCR9d1v9BLcDgrA,4274
|
|
6
|
+
gammarers.aws_resource_naming-0.5.1.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
|
7
|
+
gammarers.aws_resource_naming-0.5.1.dist-info/METADATA,sha256=5MzU0kJ_opbG5y8jlwEBP_-ArHSyGAwqSCElEo9WgmM,1049
|
|
8
|
+
gammarers.aws_resource_naming-0.5.1.dist-info/WHEEL,sha256=bFJAMchF8aTQGUgMZzHJyDDMPTO3ToJ7x23SLJa1SVo,92
|
|
9
|
+
gammarers.aws_resource_naming-0.5.1.dist-info/top_level.txt,sha256=aYHffMrt-8dtQoLeNk0M8OeqbA0a5gMcnNm5hL7OMHk,10
|
|
10
|
+
gammarers.aws_resource_naming-0.5.1.dist-info/RECORD,,
|
|
Binary file
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
gammarers/aws_resource_naming/__init__.py,sha256=OKd0Xeh-5m5Ca20HN7uSspIKXtsUanPIEJgDs9SkVH4,1434
|
|
2
|
-
gammarers/aws_resource_naming/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
3
|
-
gammarers/aws_resource_naming/_jsii/__init__.py,sha256=FnoBht2VdYmnm6wcZnE1WB61cuwaPYElsUdM69aYWtg,1427
|
|
4
|
-
gammarers/aws_resource_naming/_jsii/aws-resource-naming@0.4.0.jsii.tgz,sha256=h5XTexuY8nQwQnpcQwzsszuDl2YmWlJ1nlldLdQvqhA,10599
|
|
5
|
-
gammarers/aws_resource_naming/resource_naming/__init__.py,sha256=TT4jTvCwgoZJM8998LHbVC37uT_Po0f9wvMwyqM08xk,8251
|
|
6
|
-
gammarers.aws_resource_naming-0.4.0.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
|
7
|
-
gammarers.aws_resource_naming-0.4.0.dist-info/METADATA,sha256=9ZfvbW_zyYOKjxCR2YitPFLZRdPDLjUfTYaieIhIzOI,1049
|
|
8
|
-
gammarers.aws_resource_naming-0.4.0.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
|
|
9
|
-
gammarers.aws_resource_naming-0.4.0.dist-info/top_level.txt,sha256=aYHffMrt-8dtQoLeNk0M8OeqbA0a5gMcnNm5hL7OMHk,10
|
|
10
|
-
gammarers.aws_resource_naming-0.4.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|