ajithapackage1 0.0.7__py3-none-any.whl → 0.0.8__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.
- ajithapackage1/__init__.py +82 -4
- ajithapackage1/_jsii/__init__.py +1 -1
- ajithapackage1/_jsii/ajithapackage1@0.0.8.jsii.tgz +0 -0
- {ajithapackage1-0.0.7.dist-info → ajithapackage1-0.0.8.dist-info}/METADATA +1 -1
- ajithapackage1-0.0.8.dist-info/RECORD +9 -0
- ajithapackage1/_jsii/ajithapackage1@0.0.7.jsii.tgz +0 -0
- ajithapackage1-0.0.7.dist-info/RECORD +0 -9
- {ajithapackage1-0.0.7.dist-info → ajithapackage1-0.0.8.dist-info}/LICENSE +0 -0
- {ajithapackage1-0.0.7.dist-info → ajithapackage1-0.0.8.dist-info}/WHEEL +0 -0
- {ajithapackage1-0.0.7.dist-info → ajithapackage1-0.0.8.dist-info}/top_level.txt +0 -0
ajithapackage1/__init__.py
CHANGED
@@ -34,17 +34,95 @@ def check_type(argname: str, value: object, expected_type: typing.Any) -> typing
|
|
34
34
|
from ._jsii import *
|
35
35
|
|
36
36
|
|
37
|
-
class
|
38
|
-
def __init__(self) -> None:
|
39
|
-
|
37
|
+
class HelloWorld(metaclass=jsii.JSIIMeta, jsii_type="ajithapackage1.HelloWorld"):
|
38
|
+
def __init__(self, options: "IHelloOptions") -> None:
|
39
|
+
'''
|
40
|
+
:param options: -
|
41
|
+
'''
|
42
|
+
if __debug__:
|
43
|
+
type_hints = typing.get_type_hints(_typecheckingstub__212fa063b66ca519b8e31185e36384e4fa2fa5ede3e4cca962a73b0e9cefbeac)
|
44
|
+
check_type(argname="argument options", value=options, expected_type=type_hints["options"])
|
45
|
+
jsii.create(self.__class__, self, [options])
|
46
|
+
|
47
|
+
@jsii.member(jsii_name="generateInfo")
|
48
|
+
def generate_info(self) -> "IHelloInfo":
|
49
|
+
return typing.cast("IHelloInfo", jsii.invoke(self, "generateInfo", []))
|
40
50
|
|
41
51
|
@jsii.member(jsii_name="sayHello")
|
42
52
|
def say_hello(self) -> builtins.str:
|
43
53
|
return typing.cast(builtins.str, jsii.invoke(self, "sayHello", []))
|
44
54
|
|
45
55
|
|
56
|
+
@jsii.interface(jsii_type="ajithapackage1.IHelloInfo")
|
57
|
+
class IHelloInfo(typing_extensions.Protocol):
|
58
|
+
@builtins.property
|
59
|
+
@jsii.member(jsii_name="message")
|
60
|
+
def message(self) -> builtins.str:
|
61
|
+
...
|
62
|
+
|
63
|
+
@builtins.property
|
64
|
+
@jsii.member(jsii_name="timestamp")
|
65
|
+
def timestamp(self) -> builtins.str:
|
66
|
+
...
|
67
|
+
|
68
|
+
|
69
|
+
class _IHelloInfoProxy:
|
70
|
+
__jsii_type__: typing.ClassVar[str] = "ajithapackage1.IHelloInfo"
|
71
|
+
|
72
|
+
@builtins.property
|
73
|
+
@jsii.member(jsii_name="message")
|
74
|
+
def message(self) -> builtins.str:
|
75
|
+
return typing.cast(builtins.str, jsii.get(self, "message"))
|
76
|
+
|
77
|
+
@builtins.property
|
78
|
+
@jsii.member(jsii_name="timestamp")
|
79
|
+
def timestamp(self) -> builtins.str:
|
80
|
+
return typing.cast(builtins.str, jsii.get(self, "timestamp"))
|
81
|
+
|
82
|
+
# Adding a "__jsii_proxy_class__(): typing.Type" function to the interface
|
83
|
+
typing.cast(typing.Any, IHelloInfo).__jsii_proxy_class__ = lambda : _IHelloInfoProxy
|
84
|
+
|
85
|
+
|
86
|
+
@jsii.interface(jsii_type="ajithapackage1.IHelloOptions")
|
87
|
+
class IHelloOptions(typing_extensions.Protocol):
|
88
|
+
@builtins.property
|
89
|
+
@jsii.member(jsii_name="name")
|
90
|
+
def name(self) -> builtins.str:
|
91
|
+
...
|
92
|
+
|
93
|
+
@builtins.property
|
94
|
+
@jsii.member(jsii_name="greeting")
|
95
|
+
def greeting(self) -> typing.Optional[builtins.str]:
|
96
|
+
...
|
97
|
+
|
98
|
+
|
99
|
+
class _IHelloOptionsProxy:
|
100
|
+
__jsii_type__: typing.ClassVar[str] = "ajithapackage1.IHelloOptions"
|
101
|
+
|
102
|
+
@builtins.property
|
103
|
+
@jsii.member(jsii_name="name")
|
104
|
+
def name(self) -> builtins.str:
|
105
|
+
return typing.cast(builtins.str, jsii.get(self, "name"))
|
106
|
+
|
107
|
+
@builtins.property
|
108
|
+
@jsii.member(jsii_name="greeting")
|
109
|
+
def greeting(self) -> typing.Optional[builtins.str]:
|
110
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "greeting"))
|
111
|
+
|
112
|
+
# Adding a "__jsii_proxy_class__(): typing.Type" function to the interface
|
113
|
+
typing.cast(typing.Any, IHelloOptions).__jsii_proxy_class__ = lambda : _IHelloOptionsProxy
|
114
|
+
|
115
|
+
|
46
116
|
__all__ = [
|
47
|
-
"
|
117
|
+
"HelloWorld",
|
118
|
+
"IHelloInfo",
|
119
|
+
"IHelloOptions",
|
48
120
|
]
|
49
121
|
|
50
122
|
publication.publish()
|
123
|
+
|
124
|
+
def _typecheckingstub__212fa063b66ca519b8e31185e36384e4fa2fa5ede3e4cca962a73b0e9cefbeac(
|
125
|
+
options: IHelloOptions,
|
126
|
+
) -> None:
|
127
|
+
"""Type checking stubs"""
|
128
|
+
pass
|
ajithapackage1/_jsii/__init__.py
CHANGED
@@ -32,7 +32,7 @@ import aws_cdk._jsii
|
|
32
32
|
import constructs._jsii
|
33
33
|
|
34
34
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
35
|
-
"ajithapackage1", "0.0.
|
35
|
+
"ajithapackage1", "0.0.8", __name__[0:-6], "ajithapackage1@0.0.8.jsii.tgz"
|
36
36
|
)
|
37
37
|
|
38
38
|
__all__ = [
|
Binary file
|
@@ -0,0 +1,9 @@
|
|
1
|
+
ajithapackage1/__init__.py,sha256=2QFaZImxPoCU1Rvk9KNIoinwkD2bnTuJgrluyZQkfZg,4257
|
2
|
+
ajithapackage1/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
3
|
+
ajithapackage1/_jsii/__init__.py,sha256=VFrZ-48ocP1Ok1IuEB_UGB8DVFVaaqCRoKcFFgTfpKY,1439
|
4
|
+
ajithapackage1/_jsii/ajithapackage1@0.0.8.jsii.tgz,sha256=rBrrOMoJ9paxab1mPbD_S4ADLB3ga7lNrTKdMdORMs0,12899
|
5
|
+
ajithapackage1-0.0.8.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
6
|
+
ajithapackage1-0.0.8.dist-info/METADATA,sha256=aknQPX1Z2ad2WLYbAxHuNTCnd6GCdHp9mQaLXUZAuVU,1080
|
7
|
+
ajithapackage1-0.0.8.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
8
|
+
ajithapackage1-0.0.8.dist-info/top_level.txt,sha256=0J_WE4G6O--Sqlctzr6PMCC5vVDuTk9E_3iD0rRTUZs,15
|
9
|
+
ajithapackage1-0.0.8.dist-info/RECORD,,
|
Binary file
|
@@ -1,9 +0,0 @@
|
|
1
|
-
ajithapackage1/__init__.py,sha256=ObpuDS736_VvOuM37iPKnAJZi8YsQEKD0BQd2l3OfoM,1611
|
2
|
-
ajithapackage1/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
3
|
-
ajithapackage1/_jsii/__init__.py,sha256=XA4-njd9_1TkiXRuCNBlkNPDKP6wg4cSiBsh4H3W7H0,1439
|
4
|
-
ajithapackage1/_jsii/ajithapackage1@0.0.7.jsii.tgz,sha256=Htbj9j_o2x2xREz-cJPQNCZOQC5hD2Ixxe5IYSeuLxE,11864
|
5
|
-
ajithapackage1-0.0.7.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
6
|
-
ajithapackage1-0.0.7.dist-info/METADATA,sha256=iRVSxLx5ljo7kjODjZ1YeLpquNREWHDK26Enitbqros,1080
|
7
|
-
ajithapackage1-0.0.7.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
8
|
-
ajithapackage1-0.0.7.dist-info/top_level.txt,sha256=0J_WE4G6O--Sqlctzr6PMCC5vVDuTk9E_3iD0rRTUZs,15
|
9
|
-
ajithapackage1-0.0.7.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|