cdktn 0.23.0.dev27__tar.gz → 0.23.0.dev30__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: cdktn
3
- Version: 0.23.0.dev27
3
+ Version: 0.23.0.dev30
4
4
  Summary: Cloud Development Kit for Terraform
5
5
  Home-page: https://github.com/open-constructs/cdk-terrain
6
6
  Author: OpenConstructs
@@ -5,7 +5,7 @@ kwargs = json.loads(
5
5
  """
6
6
  {
7
7
  "name": "cdktn",
8
- "version": "0.23.0.dev27",
8
+ "version": "0.23.0.dev30",
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.27.jsii.tgz"
30
+ "cdktn@0.23.0-pre.30.jsii.tgz"
31
31
  ],
32
32
  "cdktn": [
33
33
  "py.typed"
@@ -10878,6 +10878,121 @@ class StringMapList(MapList, metaclass=jsii.JSIIMeta, jsii_type="cdktn.StringMap
10878
10878
  jsii.set(self, "wrapsSet", value) # pyright: ignore[reportArgumentType]
10879
10879
 
10880
10880
 
10881
+ @jsii.implements(ITerraformAddressable, IResolvable)
10882
+ class StringMapMap(metaclass=jsii.JSIIMeta, jsii_type="cdktn.StringMapMap"):
10883
+ '''
10884
+ :stability: experimental
10885
+ '''
10886
+
10887
+ def __init__(
10888
+ self,
10889
+ terraform_resource: IInterpolatingParent,
10890
+ terraform_attribute: builtins.str,
10891
+ ) -> None:
10892
+ '''
10893
+ :param terraform_resource: -
10894
+ :param terraform_attribute: -
10895
+
10896
+ :stability: experimental
10897
+ '''
10898
+ if __debug__:
10899
+ type_hints = typing.get_type_hints(_typecheckingstub__81dd977be6a470b9a42e07cd66a0ef4c2acac869920ab38744627098c6e14411)
10900
+ check_type(argname="argument terraform_resource", value=terraform_resource, expected_type=type_hints["terraform_resource"])
10901
+ check_type(argname="argument terraform_attribute", value=terraform_attribute, expected_type=type_hints["terraform_attribute"])
10902
+ jsii.create(self.__class__, self, [terraform_resource, terraform_attribute])
10903
+
10904
+ @jsii.member(jsii_name="computeFqn")
10905
+ def compute_fqn(self) -> builtins.str:
10906
+ '''
10907
+ :stability: experimental
10908
+ '''
10909
+ return typing.cast(builtins.str, jsii.invoke(self, "computeFqn", []))
10910
+
10911
+ @jsii.member(jsii_name="lookup")
10912
+ def lookup(self, key: builtins.str) -> StringMap:
10913
+ '''
10914
+ :param key: -
10915
+
10916
+ :stability: experimental
10917
+ '''
10918
+ if __debug__:
10919
+ type_hints = typing.get_type_hints(_typecheckingstub__26235d3f190e87ff6ff3b783f7748f41527421098027ade62c6e554e68f7b23d)
10920
+ check_type(argname="argument key", value=key, expected_type=type_hints["key"])
10921
+ return typing.cast(StringMap, jsii.invoke(self, "lookup", [key]))
10922
+
10923
+ @jsii.member(jsii_name="resolve")
10924
+ def resolve(self, _context: IResolveContext) -> typing.Any:
10925
+ '''(experimental) Produce the Token's value at resolution time.
10926
+
10927
+ :param _context: -
10928
+
10929
+ :stability: experimental
10930
+ '''
10931
+ if __debug__:
10932
+ type_hints = typing.get_type_hints(_typecheckingstub__0bbb991744608b56791216c63230e33f7c3178cb17179e4f6039617585fdba6c)
10933
+ check_type(argname="argument _context", value=_context, expected_type=type_hints["_context"])
10934
+ return typing.cast(typing.Any, jsii.invoke(self, "resolve", [_context]))
10935
+
10936
+ @jsii.member(jsii_name="toString")
10937
+ def to_string(self) -> builtins.str:
10938
+ '''(experimental) Return a string representation of this resolvable object.
10939
+
10940
+ Returns a reversible string representation.
10941
+
10942
+ :stability: experimental
10943
+ '''
10944
+ return typing.cast(builtins.str, jsii.invoke(self, "toString", []))
10945
+
10946
+ @builtins.property
10947
+ @jsii.member(jsii_name="creationStack")
10948
+ def creation_stack(self) -> typing.List[builtins.str]:
10949
+ '''(experimental) The creation stack of this resolvable which will be appended to errors thrown during resolution.
10950
+
10951
+ If this returns an empty array the stack will not be attached.
10952
+
10953
+ :stability: experimental
10954
+ '''
10955
+ return typing.cast(typing.List[builtins.str], jsii.get(self, "creationStack"))
10956
+
10957
+ @builtins.property
10958
+ @jsii.member(jsii_name="fqn")
10959
+ def fqn(self) -> builtins.str:
10960
+ '''
10961
+ :stability: experimental
10962
+ '''
10963
+ return typing.cast(builtins.str, jsii.get(self, "fqn"))
10964
+
10965
+ @builtins.property
10966
+ @jsii.member(jsii_name="terraformAttribute")
10967
+ def _terraform_attribute(self) -> builtins.str:
10968
+ '''
10969
+ :stability: experimental
10970
+ '''
10971
+ return typing.cast(builtins.str, jsii.get(self, "terraformAttribute"))
10972
+
10973
+ @_terraform_attribute.setter
10974
+ def _terraform_attribute(self, value: builtins.str) -> None:
10975
+ if __debug__:
10976
+ type_hints = typing.get_type_hints(_typecheckingstub__a8f849a329ec6f58d3ad70ba5c0394599270e0696873b53eadea56fbd63340da)
10977
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
10978
+ jsii.set(self, "terraformAttribute", value) # pyright: ignore[reportArgumentType]
10979
+
10980
+ @builtins.property
10981
+ @jsii.member(jsii_name="terraformResource")
10982
+ def _terraform_resource(self) -> IInterpolatingParent:
10983
+ '''
10984
+ :stability: experimental
10985
+ '''
10986
+ return typing.cast(IInterpolatingParent, jsii.get(self, "terraformResource"))
10987
+
10988
+ @_terraform_resource.setter
10989
+ def _terraform_resource(self, value: IInterpolatingParent) -> None:
10990
+ if __debug__:
10991
+ type_hints = typing.get_type_hints(_typecheckingstub__a8d2a711c4bfddbece9da62b488f060f058446cf63f1b0804a28eb62a8baf608)
10992
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
10993
+ jsii.set(self, "terraformResource", value) # pyright: ignore[reportArgumentType]
10994
+
10995
+
10881
10996
  @jsii.data_type(
10882
10997
  jsii_type="cdktn.SwiftBackendConfig",
10883
10998
  jsii_struct_bases=[],
@@ -26294,6 +26409,7 @@ __all__ = [
26294
26409
  "StringListMap",
26295
26410
  "StringMap",
26296
26411
  "StringMapList",
26412
+ "StringMapMap",
26297
26413
  "SwiftBackend",
26298
26414
  "SwiftBackendConfig",
26299
26415
  "TaggedCloudWorkspaces",
@@ -28155,6 +28271,37 @@ def _typecheckingstub__efc36b987fc1253fc3e3709a91fc90c941b80c8e66b25cefb0aa861ea
28155
28271
  """Type checking stubs"""
28156
28272
  pass
28157
28273
 
28274
+ def _typecheckingstub__81dd977be6a470b9a42e07cd66a0ef4c2acac869920ab38744627098c6e14411(
28275
+ terraform_resource: IInterpolatingParent,
28276
+ terraform_attribute: builtins.str,
28277
+ ) -> None:
28278
+ """Type checking stubs"""
28279
+ pass
28280
+
28281
+ def _typecheckingstub__26235d3f190e87ff6ff3b783f7748f41527421098027ade62c6e554e68f7b23d(
28282
+ key: builtins.str,
28283
+ ) -> None:
28284
+ """Type checking stubs"""
28285
+ pass
28286
+
28287
+ def _typecheckingstub__0bbb991744608b56791216c63230e33f7c3178cb17179e4f6039617585fdba6c(
28288
+ _context: IResolveContext,
28289
+ ) -> None:
28290
+ """Type checking stubs"""
28291
+ pass
28292
+
28293
+ def _typecheckingstub__a8f849a329ec6f58d3ad70ba5c0394599270e0696873b53eadea56fbd63340da(
28294
+ value: builtins.str,
28295
+ ) -> None:
28296
+ """Type checking stubs"""
28297
+ pass
28298
+
28299
+ def _typecheckingstub__a8d2a711c4bfddbece9da62b488f060f058446cf63f1b0804a28eb62a8baf608(
28300
+ value: IInterpolatingParent,
28301
+ ) -> None:
28302
+ """Type checking stubs"""
28303
+ pass
28304
+
28158
28305
  def _typecheckingstub__fc5f547e6fb2026d4300a32e9845e7ce68edf0a679b7416e8de31fc9b57c226b(
28159
28306
  *,
28160
28307
  container: builtins.str,
@@ -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.27", __name__[0:-6], "cdktn@0.23.0-pre.27.jsii.tgz"
34
+ "cdktn", "0.23.0-pre.30", __name__[0:-6], "cdktn@0.23.0-pre.30.jsii.tgz"
35
35
  )
36
36
 
37
37
  __all__ = [
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cdktn
3
- Version: 0.23.0.dev27
3
+ Version: 0.23.0.dev30
4
4
  Summary: Cloud Development Kit for Terraform
5
5
  Home-page: https://github.com/open-constructs/cdk-terrain
6
6
  Author: OpenConstructs
@@ -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.27.jsii.tgz
14
+ src/cdktn/_jsii/cdktn@0.23.0-pre.30.jsii.tgz
15
15
  src/cdktn/testing_matchers/__init__.py
File without changes
File without changes
File without changes
File without changes