constructs 10.4.3__tar.gz → 10.4.4__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: constructs
3
- Version: 10.4.3
3
+ Version: 10.4.4
4
4
  Summary: A programming model for software-defined state
5
5
  Home-page: https://github.com/aws/constructs
6
6
  Author: Amazon Web Services<aws-cdk-dev@amazon.com>
@@ -20,9 +20,9 @@ Requires-Python: ~=3.9
20
20
  Description-Content-Type: text/markdown
21
21
  License-File: LICENSE
22
22
  License-File: NOTICE
23
- Requires-Dist: jsii<2.0.0,>=1.118.0
23
+ Requires-Dist: jsii<2.0.0,>=1.121.0
24
24
  Requires-Dist: publication>=0.0.3
25
- Requires-Dist: typeguard<4.3.0,>=2.13.3
25
+ Requires-Dist: typeguard==2.13.3
26
26
 
27
27
  # Constructs
28
28
 
@@ -5,7 +5,7 @@ kwargs = json.loads(
5
5
  """
6
6
  {
7
7
  "name": "constructs",
8
- "version": "10.4.3",
8
+ "version": "10.4.4",
9
9
  "description": "A programming model for software-defined state",
10
10
  "license": "Apache-2.0",
11
11
  "url": "https://github.com/aws/constructs",
@@ -26,7 +26,7 @@ kwargs = json.loads(
26
26
  ],
27
27
  "package_data": {
28
28
  "constructs._jsii": [
29
- "constructs@10.4.3.jsii.tgz"
29
+ "constructs@10.4.4.jsii.tgz"
30
30
  ],
31
31
  "constructs": [
32
32
  "py.typed"
@@ -34,9 +34,9 @@ kwargs = json.loads(
34
34
  },
35
35
  "python_requires": "~=3.9",
36
36
  "install_requires": [
37
- "jsii>=1.118.0, <2.0.0",
37
+ "jsii>=1.121.0, <2.0.0",
38
38
  "publication>=0.0.3",
39
- "typeguard>=2.13.3,<4.3.0"
39
+ "typeguard==2.13.3"
40
40
  ],
41
41
  "classifiers": [
42
42
  "Intended Audience :: Developers",
@@ -406,7 +406,7 @@ class Node(metaclass=jsii.JSIIMeta, jsii_type="constructs.Node"):
406
406
  return typing.cast("Node", jsii.sinvoke(cls, "of", [construct]))
407
407
 
408
408
  @jsii.member(jsii_name="addDependency")
409
- def add_dependency(self, *deps: IDependable) -> None:
409
+ def add_dependency(self, *deps: "IDependable") -> None:
410
410
  '''Add an ordering dependency on another construct.
411
411
 
412
412
  An ``IDependable``
@@ -451,7 +451,7 @@ class Node(metaclass=jsii.JSIIMeta, jsii_type="constructs.Node"):
451
451
  return typing.cast(None, jsii.invoke(self, "addMetadata", [type, data, options]))
452
452
 
453
453
  @jsii.member(jsii_name="addValidation")
454
- def add_validation(self, validation: IValidation) -> None:
454
+ def add_validation(self, validation: "IValidation") -> None:
455
455
  '''Adds a validation to this construct.
456
456
 
457
457
  When ``node.validate()`` is called, the ``validate()`` method will be called on
@@ -467,7 +467,7 @@ class Node(metaclass=jsii.JSIIMeta, jsii_type="constructs.Node"):
467
467
  @jsii.member(jsii_name="findAll")
468
468
  def find_all(
469
469
  self,
470
- order: typing.Optional[ConstructOrder] = None,
470
+ order: typing.Optional["ConstructOrder"] = None,
471
471
  ) -> typing.List["IConstruct"]:
472
472
  '''Return this construct and all of its children in the given order.
473
473
 
@@ -662,12 +662,12 @@ class Node(metaclass=jsii.JSIIMeta, jsii_type="constructs.Node"):
662
662
 
663
663
  @builtins.property
664
664
  @jsii.member(jsii_name="metadata")
665
- def metadata(self) -> typing.List[MetadataEntry]:
665
+ def metadata(self) -> typing.List["MetadataEntry"]:
666
666
  '''An immutable array of metadata objects associated with this construct.
667
667
 
668
668
  This can be used, for example, to implement support for deprecation notices, source mapping, etc.
669
669
  '''
670
- return typing.cast(typing.List[MetadataEntry], jsii.get(self, "metadata"))
670
+ return typing.cast(typing.List["MetadataEntry"], jsii.get(self, "metadata"))
671
671
 
672
672
  @builtins.property
673
673
  @jsii.member(jsii_name="path")
@@ -747,7 +747,7 @@ class DependencyGroup(metaclass=jsii.JSIIMeta, jsii_type="constructs.DependencyG
747
747
  construct tree needs to be combined to be used as a single dependable.
748
748
  '''
749
749
 
750
- def __init__(self, *deps: IDependable) -> None:
750
+ def __init__(self, *deps: "IDependable") -> None:
751
751
  '''
752
752
  :param deps: -
753
753
  '''
@@ -757,7 +757,7 @@ class DependencyGroup(metaclass=jsii.JSIIMeta, jsii_type="constructs.DependencyG
757
757
  jsii.create(self.__class__, self, [*deps])
758
758
 
759
759
  @jsii.member(jsii_name="add")
760
- def add(self, *scopes: IDependable) -> None:
760
+ def add(self, *scopes: "IDependable") -> None:
761
761
  '''Add a construct to the dependency roots.
762
762
 
763
763
  :param scopes: -
@@ -774,7 +774,7 @@ class IConstruct(IDependable, typing_extensions.Protocol):
774
774
 
775
775
  @builtins.property
776
776
  @jsii.member(jsii_name="node")
777
- def node(self) -> Node:
777
+ def node(self) -> "Node":
778
778
  '''The tree node.'''
779
779
  ...
780
780
 
@@ -788,9 +788,9 @@ class _IConstructProxy(
788
788
 
789
789
  @builtins.property
790
790
  @jsii.member(jsii_name="node")
791
- def node(self) -> Node:
791
+ def node(self) -> "Node":
792
792
  '''The tree node.'''
793
- return typing.cast(Node, jsii.get(self, "node"))
793
+ return typing.cast("Node", jsii.get(self, "node"))
794
794
 
795
795
  # Adding a "__jsii_proxy_class__(): typing.Type" function to the interface
796
796
  typing.cast(typing.Any, IConstruct).__jsii_proxy_class__ = lambda : _IConstructProxy
@@ -851,9 +851,9 @@ class Construct(metaclass=jsii.JSIIMeta, jsii_type="constructs.Construct"):
851
851
 
852
852
  @builtins.property
853
853
  @jsii.member(jsii_name="node")
854
- def node(self) -> Node:
854
+ def node(self) -> "Node":
855
855
  '''The tree node.'''
856
- return typing.cast(Node, jsii.get(self, "node"))
856
+ return typing.cast("Node", jsii.get(self, "node"))
857
857
 
858
858
 
859
859
  class RootConstruct(
@@ -29,7 +29,7 @@ def check_type(argname: str, value: object, expected_type: typing.Any) -> typing
29
29
  typeguard.check_type(value=value, expected_type=expected_type, collection_check_strategy=typeguard.CollectionCheckStrategy.ALL_ITEMS) # type:ignore
30
30
 
31
31
  __jsii_assembly__ = jsii.JSIIAssembly.load(
32
- "constructs", "10.4.3", __name__[0:-6], "constructs@10.4.3.jsii.tgz"
32
+ "constructs", "10.4.4", __name__[0:-6], "constructs@10.4.4.jsii.tgz"
33
33
  )
34
34
 
35
35
  __all__ = [
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: constructs
3
- Version: 10.4.3
3
+ Version: 10.4.4
4
4
  Summary: A programming model for software-defined state
5
5
  Home-page: https://github.com/aws/constructs
6
6
  Author: Amazon Web Services<aws-cdk-dev@amazon.com>
@@ -20,9 +20,9 @@ Requires-Python: ~=3.9
20
20
  Description-Content-Type: text/markdown
21
21
  License-File: LICENSE
22
22
  License-File: NOTICE
23
- Requires-Dist: jsii<2.0.0,>=1.118.0
23
+ Requires-Dist: jsii<2.0.0,>=1.121.0
24
24
  Requires-Dist: publication>=0.0.3
25
- Requires-Dist: typeguard<4.3.0,>=2.13.3
25
+ Requires-Dist: typeguard==2.13.3
26
26
 
27
27
  # Constructs
28
28
 
@@ -12,4 +12,4 @@ src/constructs.egg-info/dependency_links.txt
12
12
  src/constructs.egg-info/requires.txt
13
13
  src/constructs.egg-info/top_level.txt
14
14
  src/constructs/_jsii/__init__.py
15
- src/constructs/_jsii/constructs@10.4.3.jsii.tgz
15
+ src/constructs/_jsii/constructs@10.4.4.jsii.tgz
@@ -0,0 +1,3 @@
1
+ jsii<2.0.0,>=1.121.0
2
+ publication>=0.0.3
3
+ typeguard==2.13.3
@@ -1,3 +0,0 @@
1
- jsii<2.0.0,>=1.118.0
2
- publication>=0.0.3
3
- typeguard<4.3.0,>=2.13.3
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes