cdktn 0.23.0.dev0__tar.gz → 0.23.0.dev4__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.
- {cdktn-0.23.0.dev0/src/cdktn.egg-info → cdktn-0.23.0.dev4}/PKG-INFO +1 -1
- {cdktn-0.23.0.dev0 → cdktn-0.23.0.dev4}/setup.py +2 -2
- {cdktn-0.23.0.dev0 → cdktn-0.23.0.dev4}/src/cdktn/__init__.py +4 -4
- {cdktn-0.23.0.dev0 → cdktn-0.23.0.dev4}/src/cdktn/_jsii/__init__.py +1 -1
- cdktn-0.23.0.dev4/src/cdktn/_jsii/cdktn@0.23.0-pre.4.jsii.tgz +0 -0
- {cdktn-0.23.0.dev0 → cdktn-0.23.0.dev4/src/cdktn.egg-info}/PKG-INFO +1 -1
- {cdktn-0.23.0.dev0 → cdktn-0.23.0.dev4}/src/cdktn.egg-info/SOURCES.txt +1 -1
- cdktn-0.23.0.dev0/src/cdktn/_jsii/cdktn@0.23.0-pre.0.jsii.tgz +0 -0
- {cdktn-0.23.0.dev0 → cdktn-0.23.0.dev4}/LICENSE +0 -0
- {cdktn-0.23.0.dev0 → cdktn-0.23.0.dev4}/MANIFEST.in +0 -0
- {cdktn-0.23.0.dev0 → cdktn-0.23.0.dev4}/README.md +0 -0
- {cdktn-0.23.0.dev0 → cdktn-0.23.0.dev4}/pyproject.toml +0 -0
- {cdktn-0.23.0.dev0 → cdktn-0.23.0.dev4}/setup.cfg +0 -0
- {cdktn-0.23.0.dev0 → cdktn-0.23.0.dev4}/src/cdktn/py.typed +0 -0
- {cdktn-0.23.0.dev0 → cdktn-0.23.0.dev4}/src/cdktn/testing_matchers/__init__.py +0 -0
- {cdktn-0.23.0.dev0 → cdktn-0.23.0.dev4}/src/cdktn.egg-info/dependency_links.txt +0 -0
- {cdktn-0.23.0.dev0 → cdktn-0.23.0.dev4}/src/cdktn.egg-info/requires.txt +0 -0
- {cdktn-0.23.0.dev0 → cdktn-0.23.0.dev4}/src/cdktn.egg-info/top_level.txt +0 -0
|
@@ -5,7 +5,7 @@ kwargs = json.loads(
|
|
|
5
5
|
"""
|
|
6
6
|
{
|
|
7
7
|
"name": "cdktn",
|
|
8
|
-
"version": "0.23.0.
|
|
8
|
+
"version": "0.23.0.dev4",
|
|
9
9
|
"description": "Cloud Development Kit for Terraform",
|
|
10
10
|
"license": "MPL-2.0",
|
|
11
11
|
"url": "https://github.com/open-constructs/cdk-terrain",
|
|
@@ -27,7 +27,7 @@ kwargs = json.loads(
|
|
|
27
27
|
],
|
|
28
28
|
"package_data": {
|
|
29
29
|
"cdktn._jsii": [
|
|
30
|
-
"cdktn@0.23.0-pre.
|
|
30
|
+
"cdktn@0.23.0-pre.4.jsii.tgz"
|
|
31
31
|
],
|
|
32
32
|
"cdktn": [
|
|
33
33
|
"py.typed"
|
|
@@ -11871,7 +11871,7 @@ class TerraformIterator(
|
|
|
11871
11871
|
The list will be converted into a map with the mapKeyAttributeName as the key.
|
|
11872
11872
|
|
|
11873
11873
|
:param list: the list to iterate over.
|
|
11874
|
-
:param map_key_attribute_name: the name of the attribute that should be used as the key in the map. Visit https://
|
|
11874
|
+
:param map_key_attribute_name: the name of the attribute that should be used as the key in the map. Visit https://cdktn.io/docs/concepts/iterators#using-iterators-on-complex-lists for more information.
|
|
11875
11875
|
|
|
11876
11876
|
:stability: experimental
|
|
11877
11877
|
|
|
@@ -11980,7 +11980,7 @@ class TerraformIterator(
|
|
|
11980
11980
|
|
|
11981
11981
|
As this returns an IResolvable you might need to wrap the output in
|
|
11982
11982
|
a Token, e.g. ``Token.asString``.
|
|
11983
|
-
See https://
|
|
11983
|
+
See https://cdktn.io/docs/concepts/iterators#using-iterators-for-list-attributes
|
|
11984
11984
|
|
|
11985
11985
|
:param attributes: -
|
|
11986
11986
|
|
|
@@ -23001,7 +23001,7 @@ class ListTerraformIterator(
|
|
|
23001
23001
|
|
|
23002
23002
|
For lists this is the same as ``iterator.value``. If you need the index,
|
|
23003
23003
|
use count via ``TerraformCount``:
|
|
23004
|
-
https://
|
|
23004
|
+
https://cdktn.io/docs/concepts/iterators#using-count
|
|
23005
23005
|
|
|
23006
23006
|
:stability: experimental
|
|
23007
23007
|
'''
|
|
@@ -23352,7 +23352,7 @@ class ResourceTerraformIterator(
|
|
|
23352
23352
|
|
|
23353
23353
|
For lists this is the same as ``iterator.value``. If you need the index,
|
|
23354
23354
|
use count via ``TerraformCount``:
|
|
23355
|
-
https://
|
|
23355
|
+
https://cdktn.io/docs/concepts/iterators#using-count
|
|
23356
23356
|
|
|
23357
23357
|
:stability: experimental
|
|
23358
23358
|
'''
|
|
@@ -31,7 +31,7 @@ def check_type(argname: str, value: object, expected_type: typing.Any) -> typing
|
|
|
31
31
|
import constructs._jsii
|
|
32
32
|
|
|
33
33
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
|
34
|
-
"cdktn", "0.23.0-pre.
|
|
34
|
+
"cdktn", "0.23.0-pre.4", __name__[0:-6], "cdktn@0.23.0-pre.4.jsii.tgz"
|
|
35
35
|
)
|
|
36
36
|
|
|
37
37
|
__all__ = [
|
|
Binary file
|
|
@@ -11,5 +11,5 @@ src/cdktn.egg-info/dependency_links.txt
|
|
|
11
11
|
src/cdktn.egg-info/requires.txt
|
|
12
12
|
src/cdktn.egg-info/top_level.txt
|
|
13
13
|
src/cdktn/_jsii/__init__.py
|
|
14
|
-
src/cdktn/_jsii/cdktn@0.23.0-pre.
|
|
14
|
+
src/cdktn/_jsii/cdktn@0.23.0-pre.4.jsii.tgz
|
|
15
15
|
src/cdktn/testing_matchers/__init__.py
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|