aws-cdk.cx-api 2.176.0__py3-none-any.whl → 2.177.0__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 aws-cdk.cx-api might be problematic. Click here for more details.
- aws_cdk/cx_api/__init__.py +47 -8
- aws_cdk/cx_api/_jsii/__init__.py +1 -1
- aws_cdk/cx_api/_jsii/cx-api@2.177.0.jsii.tgz +0 -0
- {aws_cdk.cx_api-2.176.0.dist-info → aws_cdk.cx_api-2.177.0.dist-info}/METADATA +21 -3
- aws_cdk.cx_api-2.177.0.dist-info/RECORD +10 -0
- aws_cdk/cx_api/_jsii/cx-api@2.176.0.jsii.tgz +0 -0
- aws_cdk.cx_api-2.176.0.dist-info/RECORD +0 -10
- {aws_cdk.cx_api-2.176.0.dist-info → aws_cdk.cx_api-2.177.0.dist-info}/LICENSE +0 -0
- {aws_cdk.cx_api-2.176.0.dist-info → aws_cdk.cx_api-2.177.0.dist-info}/NOTICE +0 -0
- {aws_cdk.cx_api-2.176.0.dist-info → aws_cdk.cx_api-2.177.0.dist-info}/WHEEL +0 -0
- {aws_cdk.cx_api-2.176.0.dist-info → aws_cdk.cx_api-2.177.0.dist-info}/top_level.txt +0 -0
aws_cdk/cx_api/__init__.py
CHANGED
|
@@ -577,6 +577,24 @@ If the flag is set to false then the default security group rules will only allo
|
|
|
577
577
|
}
|
|
578
578
|
}
|
|
579
579
|
```
|
|
580
|
+
|
|
581
|
+
* `@aws-cdk/aws-iam:oidcRejectUnauthorizedConnections`
|
|
582
|
+
|
|
583
|
+
When this feature flag is enabled, the default behaviour of OIDC Provider's custom resource handler will
|
|
584
|
+
default to reject unauthorized connections when downloading CA Certificates.
|
|
585
|
+
|
|
586
|
+
When this feature flag is disabled, the behaviour will be the same as current and will allow downloading
|
|
587
|
+
thumbprints from unsecure connnections.
|
|
588
|
+
|
|
589
|
+
*cdk.json*
|
|
590
|
+
|
|
591
|
+
```json
|
|
592
|
+
{
|
|
593
|
+
"context": {
|
|
594
|
+
"@aws-cdk/aws-iam:oidcRejectUnauthorizedConnections": true
|
|
595
|
+
}
|
|
596
|
+
}
|
|
597
|
+
```
|
|
580
598
|
'''
|
|
581
599
|
from pkgutil import extend_path
|
|
582
600
|
__path__ = extend_path(__path__, __name__)
|
|
@@ -986,6 +1004,7 @@ class CloudArtifact(metaclass=jsii.JSIIMeta, jsii_type="@aws-cdk/cx-api.CloudArt
|
|
|
986
1004
|
return typing.cast(typing.List["SynthesisMessage"], jsii.get(self, "messages"))
|
|
987
1005
|
|
|
988
1006
|
|
|
1007
|
+
@jsii.implements(_aws_cdk_cloud_assembly_schema_cae1d136.ICloudAssembly)
|
|
989
1008
|
class CloudAssembly(metaclass=jsii.JSIIMeta, jsii_type="@aws-cdk/cx-api.CloudAssembly"):
|
|
990
1009
|
'''Represents a deployable cloud application.
|
|
991
1010
|
|
|
@@ -1030,6 +1049,20 @@ class CloudAssembly(metaclass=jsii.JSIIMeta, jsii_type="@aws-cdk/cx-api.CloudAss
|
|
|
1030
1049
|
|
|
1031
1050
|
jsii.create(self.__class__, self, [directory, load_options])
|
|
1032
1051
|
|
|
1052
|
+
@jsii.member(jsii_name="isCloudAssembly")
|
|
1053
|
+
@builtins.classmethod
|
|
1054
|
+
def is_cloud_assembly(cls, x: typing.Any) -> builtins.bool:
|
|
1055
|
+
'''Return whether the given object is a CloudAssembly.
|
|
1056
|
+
|
|
1057
|
+
We do attribute detection since we can't reliably use 'instanceof'.
|
|
1058
|
+
|
|
1059
|
+
:param x: -
|
|
1060
|
+
'''
|
|
1061
|
+
if __debug__:
|
|
1062
|
+
type_hints = typing.get_type_hints(_typecheckingstub__896de0ab238f2d25a3c91a759c5498ef6b66f487ca63a69dddf3c7c53b6e77b3)
|
|
1063
|
+
check_type(argname="argument x", value=x, expected_type=type_hints["x"])
|
|
1064
|
+
return typing.cast(builtins.bool, jsii.sinvoke(cls, "isCloudAssembly", [x]))
|
|
1065
|
+
|
|
1033
1066
|
@jsii.member(jsii_name="getNestedAssembly")
|
|
1034
1067
|
def get_nested_assembly(self, artifact_id: builtins.str) -> "CloudAssembly":
|
|
1035
1068
|
'''Returns a nested assembly.
|
|
@@ -2426,7 +2459,7 @@ class MetadataEntry(_aws_cdk_cloud_assembly_schema_cae1d136.MetadataEntry):
|
|
|
2426
2459
|
self,
|
|
2427
2460
|
*,
|
|
2428
2461
|
type: builtins.str,
|
|
2429
|
-
data: typing.Optional[typing.Union[builtins.str, typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.FileAssetMetadataEntry, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.ContainerImageAssetMetadataEntry, typing.Dict[builtins.str, typing.Any]], typing.Sequence[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.Tag, typing.Dict[builtins.str, typing.Any]]]]] = None,
|
|
2462
|
+
data: typing.Optional[typing.Union[builtins.str, jsii.Number, builtins.bool, typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.FileAssetMetadataEntry, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.ContainerImageAssetMetadataEntry, typing.Dict[builtins.str, typing.Any]], typing.Sequence[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.Tag, typing.Dict[builtins.str, typing.Any]]]]] = None,
|
|
2430
2463
|
trace: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
2431
2464
|
) -> None:
|
|
2432
2465
|
'''(deprecated) Backwards compatibility for when ``MetadataEntry`` was defined here.
|
|
@@ -2481,13 +2514,13 @@ class MetadataEntry(_aws_cdk_cloud_assembly_schema_cae1d136.MetadataEntry):
|
|
|
2481
2514
|
@builtins.property
|
|
2482
2515
|
def data(
|
|
2483
2516
|
self,
|
|
2484
|
-
) -> typing.Optional[typing.Union[builtins.str, _aws_cdk_cloud_assembly_schema_cae1d136.FileAssetMetadataEntry, _aws_cdk_cloud_assembly_schema_cae1d136.ContainerImageAssetMetadataEntry, typing.List[_aws_cdk_cloud_assembly_schema_cae1d136.Tag]]]:
|
|
2517
|
+
) -> typing.Optional[typing.Union[builtins.str, jsii.Number, builtins.bool, _aws_cdk_cloud_assembly_schema_cae1d136.FileAssetMetadataEntry, _aws_cdk_cloud_assembly_schema_cae1d136.ContainerImageAssetMetadataEntry, typing.List[_aws_cdk_cloud_assembly_schema_cae1d136.Tag]]]:
|
|
2485
2518
|
'''The data.
|
|
2486
2519
|
|
|
2487
2520
|
:default: - no data.
|
|
2488
2521
|
'''
|
|
2489
2522
|
result = self._values.get("data")
|
|
2490
|
-
return typing.cast(typing.Optional[typing.Union[builtins.str, _aws_cdk_cloud_assembly_schema_cae1d136.FileAssetMetadataEntry, _aws_cdk_cloud_assembly_schema_cae1d136.ContainerImageAssetMetadataEntry, typing.List[_aws_cdk_cloud_assembly_schema_cae1d136.Tag]]], result)
|
|
2523
|
+
return typing.cast(typing.Optional[typing.Union[builtins.str, jsii.Number, builtins.bool, _aws_cdk_cloud_assembly_schema_cae1d136.FileAssetMetadataEntry, _aws_cdk_cloud_assembly_schema_cae1d136.ContainerImageAssetMetadataEntry, typing.List[_aws_cdk_cloud_assembly_schema_cae1d136.Tag]]], result)
|
|
2491
2524
|
|
|
2492
2525
|
@builtins.property
|
|
2493
2526
|
def trace(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
@@ -2520,7 +2553,7 @@ class MetadataEntryResult(_aws_cdk_cloud_assembly_schema_cae1d136.MetadataEntry)
|
|
|
2520
2553
|
self,
|
|
2521
2554
|
*,
|
|
2522
2555
|
type: builtins.str,
|
|
2523
|
-
data: typing.Optional[typing.Union[builtins.str, typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.FileAssetMetadataEntry, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.ContainerImageAssetMetadataEntry, typing.Dict[builtins.str, typing.Any]], typing.Sequence[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.Tag, typing.Dict[builtins.str, typing.Any]]]]] = None,
|
|
2556
|
+
data: typing.Optional[typing.Union[builtins.str, jsii.Number, builtins.bool, typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.FileAssetMetadataEntry, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.ContainerImageAssetMetadataEntry, typing.Dict[builtins.str, typing.Any]], typing.Sequence[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.Tag, typing.Dict[builtins.str, typing.Any]]]]] = None,
|
|
2524
2557
|
trace: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
2525
2558
|
path: builtins.str,
|
|
2526
2559
|
) -> None:
|
|
@@ -2572,13 +2605,13 @@ class MetadataEntryResult(_aws_cdk_cloud_assembly_schema_cae1d136.MetadataEntry)
|
|
|
2572
2605
|
@builtins.property
|
|
2573
2606
|
def data(
|
|
2574
2607
|
self,
|
|
2575
|
-
) -> typing.Optional[typing.Union[builtins.str, _aws_cdk_cloud_assembly_schema_cae1d136.FileAssetMetadataEntry, _aws_cdk_cloud_assembly_schema_cae1d136.ContainerImageAssetMetadataEntry, typing.List[_aws_cdk_cloud_assembly_schema_cae1d136.Tag]]]:
|
|
2608
|
+
) -> typing.Optional[typing.Union[builtins.str, jsii.Number, builtins.bool, _aws_cdk_cloud_assembly_schema_cae1d136.FileAssetMetadataEntry, _aws_cdk_cloud_assembly_schema_cae1d136.ContainerImageAssetMetadataEntry, typing.List[_aws_cdk_cloud_assembly_schema_cae1d136.Tag]]]:
|
|
2576
2609
|
'''The data.
|
|
2577
2610
|
|
|
2578
2611
|
:default: - no data.
|
|
2579
2612
|
'''
|
|
2580
2613
|
result = self._values.get("data")
|
|
2581
|
-
return typing.cast(typing.Optional[typing.Union[builtins.str, _aws_cdk_cloud_assembly_schema_cae1d136.FileAssetMetadataEntry, _aws_cdk_cloud_assembly_schema_cae1d136.ContainerImageAssetMetadataEntry, typing.List[_aws_cdk_cloud_assembly_schema_cae1d136.Tag]]], result)
|
|
2614
|
+
return typing.cast(typing.Optional[typing.Union[builtins.str, jsii.Number, builtins.bool, _aws_cdk_cloud_assembly_schema_cae1d136.FileAssetMetadataEntry, _aws_cdk_cloud_assembly_schema_cae1d136.ContainerImageAssetMetadataEntry, typing.List[_aws_cdk_cloud_assembly_schema_cae1d136.Tag]]], result)
|
|
2582
2615
|
|
|
2583
2616
|
@builtins.property
|
|
2584
2617
|
def trace(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
@@ -4015,6 +4048,12 @@ def _typecheckingstub__f166d3cdd543050e1f6916d3f8b21148d9dce169d0973ba379565d8cc
|
|
|
4015
4048
|
"""Type checking stubs"""
|
|
4016
4049
|
pass
|
|
4017
4050
|
|
|
4051
|
+
def _typecheckingstub__896de0ab238f2d25a3c91a759c5498ef6b66f487ca63a69dddf3c7c53b6e77b3(
|
|
4052
|
+
x: typing.Any,
|
|
4053
|
+
) -> None:
|
|
4054
|
+
"""Type checking stubs"""
|
|
4055
|
+
pass
|
|
4056
|
+
|
|
4018
4057
|
def _typecheckingstub__5b18409e446ee0849b8e8bd80b844cb7b7741d0e1ffbece4d0bba5e5384aae08(
|
|
4019
4058
|
artifact_id: builtins.str,
|
|
4020
4059
|
) -> None:
|
|
@@ -4203,7 +4242,7 @@ def _typecheckingstub__b54b307c2b08922d6c877b21587304c7faf7770ba07126997e90cdeb3
|
|
|
4203
4242
|
def _typecheckingstub__555559c755818fb0c68e54d294338ddd2443772e16a9484abbd3cdbd79b25a32(
|
|
4204
4243
|
*,
|
|
4205
4244
|
type: builtins.str,
|
|
4206
|
-
data: typing.Optional[typing.Union[builtins.str, typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.FileAssetMetadataEntry, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.ContainerImageAssetMetadataEntry, typing.Dict[builtins.str, typing.Any]], typing.Sequence[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.Tag, typing.Dict[builtins.str, typing.Any]]]]] = None,
|
|
4245
|
+
data: typing.Optional[typing.Union[builtins.str, jsii.Number, builtins.bool, typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.FileAssetMetadataEntry, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.ContainerImageAssetMetadataEntry, typing.Dict[builtins.str, typing.Any]], typing.Sequence[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.Tag, typing.Dict[builtins.str, typing.Any]]]]] = None,
|
|
4207
4246
|
trace: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
4208
4247
|
) -> None:
|
|
4209
4248
|
"""Type checking stubs"""
|
|
@@ -4212,7 +4251,7 @@ def _typecheckingstub__555559c755818fb0c68e54d294338ddd2443772e16a9484abbd3cdbd7
|
|
|
4212
4251
|
def _typecheckingstub__de77435a8388b388a3788abe2a0f532fff7b7f8c48d501d071411098e021c1e2(
|
|
4213
4252
|
*,
|
|
4214
4253
|
type: builtins.str,
|
|
4215
|
-
data: typing.Optional[typing.Union[builtins.str, typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.FileAssetMetadataEntry, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.ContainerImageAssetMetadataEntry, typing.Dict[builtins.str, typing.Any]], typing.Sequence[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.Tag, typing.Dict[builtins.str, typing.Any]]]]] = None,
|
|
4254
|
+
data: typing.Optional[typing.Union[builtins.str, jsii.Number, builtins.bool, typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.FileAssetMetadataEntry, typing.Dict[builtins.str, typing.Any]], typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.ContainerImageAssetMetadataEntry, typing.Dict[builtins.str, typing.Any]], typing.Sequence[typing.Union[_aws_cdk_cloud_assembly_schema_cae1d136.Tag, typing.Dict[builtins.str, typing.Any]]]]] = None,
|
|
4216
4255
|
trace: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
4217
4256
|
path: builtins.str,
|
|
4218
4257
|
) -> None:
|
aws_cdk/cx_api/_jsii/__init__.py
CHANGED
|
@@ -31,7 +31,7 @@ def check_type(argname: str, value: object, expected_type: typing.Any) -> typing
|
|
|
31
31
|
import aws_cdk.cloud_assembly_schema._jsii
|
|
32
32
|
|
|
33
33
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
|
34
|
-
"@aws-cdk/cx-api", "2.
|
|
34
|
+
"@aws-cdk/cx-api", "2.177.0", __name__[0:-6], "cx-api@2.177.0.jsii.tgz"
|
|
35
35
|
)
|
|
36
36
|
|
|
37
37
|
__all__ = [
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: aws-cdk.cx-api
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.177.0
|
|
4
4
|
Summary: Cloud executable protocol
|
|
5
5
|
Home-page: https://github.com/aws/aws-cdk
|
|
6
6
|
Author: Amazon Web Services
|
|
@@ -23,8 +23,8 @@ Requires-Python: ~=3.8
|
|
|
23
23
|
Description-Content-Type: text/markdown
|
|
24
24
|
License-File: LICENSE
|
|
25
25
|
License-File: NOTICE
|
|
26
|
-
Requires-Dist: aws-cdk.cloud-assembly-schema<40.0.0,>=39.
|
|
27
|
-
Requires-Dist: jsii<2.0.0,>=1.
|
|
26
|
+
Requires-Dist: aws-cdk.cloud-assembly-schema<40.0.0,>=39.2.0
|
|
27
|
+
Requires-Dist: jsii<2.0.0,>=1.106.0
|
|
28
28
|
Requires-Dist: publication>=0.0.3
|
|
29
29
|
Requires-Dist: typeguard<4.3.0,>=2.13.3
|
|
30
30
|
|
|
@@ -606,3 +606,21 @@ If the flag is set to false then the default security group rules will only allo
|
|
|
606
606
|
}
|
|
607
607
|
}
|
|
608
608
|
```
|
|
609
|
+
|
|
610
|
+
* `@aws-cdk/aws-iam:oidcRejectUnauthorizedConnections`
|
|
611
|
+
|
|
612
|
+
When this feature flag is enabled, the default behaviour of OIDC Provider's custom resource handler will
|
|
613
|
+
default to reject unauthorized connections when downloading CA Certificates.
|
|
614
|
+
|
|
615
|
+
When this feature flag is disabled, the behaviour will be the same as current and will allow downloading
|
|
616
|
+
thumbprints from unsecure connnections.
|
|
617
|
+
|
|
618
|
+
*cdk.json*
|
|
619
|
+
|
|
620
|
+
```json
|
|
621
|
+
{
|
|
622
|
+
"context": {
|
|
623
|
+
"@aws-cdk/aws-iam:oidcRejectUnauthorizedConnections": true
|
|
624
|
+
}
|
|
625
|
+
}
|
|
626
|
+
```
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
aws_cdk/cx_api/__init__.py,sha256=lwbnMp0AzCwDJG-vOvk9IOjjzx7ejky9GOOjmCPu1SQ,193086
|
|
2
|
+
aws_cdk/cx_api/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
3
|
+
aws_cdk/cx_api/_jsii/__init__.py,sha256=xkXrpbIxNAIDJmOy__Ld1bwonQ2hYKWL5NFAQt0iUKk,1434
|
|
4
|
+
aws_cdk/cx_api/_jsii/cx-api@2.177.0.jsii.tgz,sha256=HM_haA4JIUMoKlGArSORUwObM8Ui7NBBu5typoRVAzU,235025
|
|
5
|
+
aws_cdk.cx_api-2.177.0.dist-info/LICENSE,sha256=y47tc38H0C4DpGljYUZDl8XxidQjNxxGLq-K4jwv6Xc,11391
|
|
6
|
+
aws_cdk.cx_api-2.177.0.dist-info/METADATA,sha256=-ea8_yrxGMCsKrBFFUgh3Kqa6FbpFh1Hzg7JV6X4kLM,21345
|
|
7
|
+
aws_cdk.cx_api-2.177.0.dist-info/NOTICE,sha256=ADLo99tv5kq5gQDGp9ApDXyR8I8l6SQRbLl_UT8kHuY,1078
|
|
8
|
+
aws_cdk.cx_api-2.177.0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
9
|
+
aws_cdk.cx_api-2.177.0.dist-info/top_level.txt,sha256=1TALAKbuUGsMSrfKWEf268lySCmcqSEO6cDYe_XlLHM,8
|
|
10
|
+
aws_cdk.cx_api-2.177.0.dist-info/RECORD,,
|
|
Binary file
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
aws_cdk/cx_api/__init__.py,sha256=OOocvgj-jGKcgNz0hB2wpT7hLxW-hoC86Q7gU_VBDHw,191500
|
|
2
|
-
aws_cdk/cx_api/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
3
|
-
aws_cdk/cx_api/_jsii/__init__.py,sha256=t48vw_cdf4bFcKBOV7bOSSxwls064LSVpAw8J4S6uWQ,1434
|
|
4
|
-
aws_cdk/cx_api/_jsii/cx-api@2.176.0.jsii.tgz,sha256=2yg84nP76ERFg3tb5hZV_wFvaXyW8IJPIX3_q8XmlYU,233288
|
|
5
|
-
aws_cdk.cx_api-2.176.0.dist-info/LICENSE,sha256=y47tc38H0C4DpGljYUZDl8XxidQjNxxGLq-K4jwv6Xc,11391
|
|
6
|
-
aws_cdk.cx_api-2.176.0.dist-info/METADATA,sha256=vlmo40qYqIintyNaju9GQ__JvpUfqITNa976x6UilYU,20849
|
|
7
|
-
aws_cdk.cx_api-2.176.0.dist-info/NOTICE,sha256=ADLo99tv5kq5gQDGp9ApDXyR8I8l6SQRbLl_UT8kHuY,1078
|
|
8
|
-
aws_cdk.cx_api-2.176.0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
9
|
-
aws_cdk.cx_api-2.176.0.dist-info/top_level.txt,sha256=1TALAKbuUGsMSrfKWEf268lySCmcqSEO6cDYe_XlLHM,8
|
|
10
|
-
aws_cdk.cx_api-2.176.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|