aws-cdk.app-staging-synthesizer-alpha 2.116.0a0__py3-none-any.whl → 2.117.0a0__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.app-staging-synthesizer-alpha might be problematic. Click here for more details.
- aws_cdk/app_staging_synthesizer_alpha/__init__.py +12 -1
- aws_cdk/app_staging_synthesizer_alpha/_jsii/__init__.py +2 -2
- aws_cdk/app_staging_synthesizer_alpha/_jsii/app-staging-synthesizer-alpha@2.117.0-alpha.0.jsii.tgz +0 -0
- {aws_cdk.app_staging_synthesizer_alpha-2.116.0a0.dist-info → aws_cdk.app_staging_synthesizer_alpha-2.117.0a0.dist-info}/METADATA +3 -3
- aws_cdk.app_staging_synthesizer_alpha-2.117.0a0.dist-info/RECORD +10 -0
- aws_cdk/app_staging_synthesizer_alpha/_jsii/app-staging-synthesizer-alpha@2.116.0-alpha.0.jsii.tgz +0 -0
- aws_cdk.app_staging_synthesizer_alpha-2.116.0a0.dist-info/RECORD +0 -10
- {aws_cdk.app_staging_synthesizer_alpha-2.116.0a0.dist-info → aws_cdk.app_staging_synthesizer_alpha-2.117.0a0.dist-info}/LICENSE +0 -0
- {aws_cdk.app_staging_synthesizer_alpha-2.116.0a0.dist-info → aws_cdk.app_staging_synthesizer_alpha-2.117.0a0.dist-info}/NOTICE +0 -0
- {aws_cdk.app_staging_synthesizer_alpha-2.116.0a0.dist-info → aws_cdk.app_staging_synthesizer_alpha-2.117.0a0.dist-info}/WHEEL +0 -0
- {aws_cdk.app_staging_synthesizer_alpha-2.116.0a0.dist-info → aws_cdk.app_staging_synthesizer_alpha-2.117.0a0.dist-info}/top_level.txt +0 -0
|
@@ -293,7 +293,7 @@ class CustomStagingStack(Stack):
|
|
|
293
293
|
dependency_stack=self
|
|
294
294
|
)
|
|
295
295
|
|
|
296
|
-
def add_docker_image(self, *, sourceHash, executable=None, directoryName=None, dockerBuildArgs=None, dockerBuildSecrets=None, dockerBuildSsh=None, dockerBuildTarget=None, dockerFile=None, repositoryName=None, networkMode=None, platform=None, dockerOutputs=None, assetName=None, dockerCacheFrom=None, dockerCacheTo=None):
|
|
296
|
+
def add_docker_image(self, *, sourceHash, executable=None, directoryName=None, dockerBuildArgs=None, dockerBuildSecrets=None, dockerBuildSsh=None, dockerBuildTarget=None, dockerFile=None, repositoryName=None, networkMode=None, platform=None, dockerOutputs=None, assetName=None, dockerCacheFrom=None, dockerCacheTo=None, dockerCacheDisabled=None):
|
|
297
297
|
return ImageStagingLocation(
|
|
298
298
|
repo_name="myRepo",
|
|
299
299
|
assume_role_arn="myArn",
|
|
@@ -515,6 +515,7 @@ class AppStagingSynthesizer(
|
|
|
515
515
|
docker_build_secrets: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
516
516
|
docker_build_ssh: typing.Optional[builtins.str] = None,
|
|
517
517
|
docker_build_target: typing.Optional[builtins.str] = None,
|
|
518
|
+
docker_cache_disabled: typing.Optional[builtins.bool] = None,
|
|
518
519
|
docker_cache_from: typing.Optional[typing.Sequence[typing.Union[_aws_cdk_ceddda9d.DockerCacheOption, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
519
520
|
docker_cache_to: typing.Optional[typing.Union[_aws_cdk_ceddda9d.DockerCacheOption, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
520
521
|
docker_file: typing.Optional[builtins.str] = None,
|
|
@@ -534,6 +535,7 @@ class AppStagingSynthesizer(
|
|
|
534
535
|
:param docker_build_secrets: Build secrets to pass to the ``docker build`` command. Since Docker build secrets are resolved before deployment, keys and values cannot refer to unresolved tokens (such as ``lambda.functionArn`` or ``queue.queueUrl``). Only allowed when ``directoryName`` is specified. Default: - no build secrets are passed
|
|
535
536
|
:param docker_build_ssh: SSH agent socket or keys to pass to the ``docker buildx`` command. Default: - no ssh arg is passed
|
|
536
537
|
:param docker_build_target: Docker target to build to. Only allowed when ``directoryName`` is specified. Default: - no target
|
|
538
|
+
:param docker_cache_disabled: Disable the cache and pass ``--no-cache`` to the ``docker build`` command. Default: - cache is used
|
|
537
539
|
:param docker_cache_from: Cache from options to pass to the ``docker build`` command. Default: - no cache from args are passed
|
|
538
540
|
:param docker_cache_to: Cache to options to pass to the ``docker build`` command. Default: - no cache to args are passed
|
|
539
541
|
:param docker_file: Path to the Dockerfile (relative to the directory). Only allowed when ``directoryName`` is specified. Default: - no file
|
|
@@ -552,6 +554,7 @@ class AppStagingSynthesizer(
|
|
|
552
554
|
docker_build_secrets=docker_build_secrets,
|
|
553
555
|
docker_build_ssh=docker_build_ssh,
|
|
554
556
|
docker_build_target=docker_build_target,
|
|
557
|
+
docker_cache_disabled=docker_cache_disabled,
|
|
555
558
|
docker_cache_from=docker_cache_from,
|
|
556
559
|
docker_cache_to=docker_cache_to,
|
|
557
560
|
docker_file=docker_file,
|
|
@@ -2165,6 +2168,7 @@ class IStagingResources(_constructs_77d1e7e8.IConstruct, typing_extensions.Proto
|
|
|
2165
2168
|
docker_build_secrets: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
2166
2169
|
docker_build_ssh: typing.Optional[builtins.str] = None,
|
|
2167
2170
|
docker_build_target: typing.Optional[builtins.str] = None,
|
|
2171
|
+
docker_cache_disabled: typing.Optional[builtins.bool] = None,
|
|
2168
2172
|
docker_cache_from: typing.Optional[typing.Sequence[typing.Union[_aws_cdk_ceddda9d.DockerCacheOption, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2169
2173
|
docker_cache_to: typing.Optional[typing.Union[_aws_cdk_ceddda9d.DockerCacheOption, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
2170
2174
|
docker_file: typing.Optional[builtins.str] = None,
|
|
@@ -2182,6 +2186,7 @@ class IStagingResources(_constructs_77d1e7e8.IConstruct, typing_extensions.Proto
|
|
|
2182
2186
|
:param docker_build_secrets: Build secrets to pass to the ``docker build`` command. Since Docker build secrets are resolved before deployment, keys and values cannot refer to unresolved tokens (such as ``lambda.functionArn`` or ``queue.queueUrl``). Only allowed when ``directoryName`` is specified. Default: - no build secrets are passed
|
|
2183
2187
|
:param docker_build_ssh: SSH agent socket or keys to pass to the ``docker buildx`` command. Default: - no ssh arg is passed
|
|
2184
2188
|
:param docker_build_target: Docker target to build to. Only allowed when ``directoryName`` is specified. Default: - no target
|
|
2189
|
+
:param docker_cache_disabled: Disable the cache and pass ``--no-cache`` to the ``docker build`` command. Default: - cache is used
|
|
2185
2190
|
:param docker_cache_from: Cache from options to pass to the ``docker build`` command. Default: - no cache from args are passed
|
|
2186
2191
|
:param docker_cache_to: Cache to options to pass to the ``docker build`` command. Default: - no cache to args are passed
|
|
2187
2192
|
:param docker_file: Path to the Dockerfile (relative to the directory). Only allowed when ``directoryName`` is specified. Default: - no file
|
|
@@ -2238,6 +2243,7 @@ class _IStagingResourcesProxy(
|
|
|
2238
2243
|
docker_build_secrets: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
2239
2244
|
docker_build_ssh: typing.Optional[builtins.str] = None,
|
|
2240
2245
|
docker_build_target: typing.Optional[builtins.str] = None,
|
|
2246
|
+
docker_cache_disabled: typing.Optional[builtins.bool] = None,
|
|
2241
2247
|
docker_cache_from: typing.Optional[typing.Sequence[typing.Union[_aws_cdk_ceddda9d.DockerCacheOption, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2242
2248
|
docker_cache_to: typing.Optional[typing.Union[_aws_cdk_ceddda9d.DockerCacheOption, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
2243
2249
|
docker_file: typing.Optional[builtins.str] = None,
|
|
@@ -2255,6 +2261,7 @@ class _IStagingResourcesProxy(
|
|
|
2255
2261
|
:param docker_build_secrets: Build secrets to pass to the ``docker build`` command. Since Docker build secrets are resolved before deployment, keys and values cannot refer to unresolved tokens (such as ``lambda.functionArn`` or ``queue.queueUrl``). Only allowed when ``directoryName`` is specified. Default: - no build secrets are passed
|
|
2256
2262
|
:param docker_build_ssh: SSH agent socket or keys to pass to the ``docker buildx`` command. Default: - no ssh arg is passed
|
|
2257
2263
|
:param docker_build_target: Docker target to build to. Only allowed when ``directoryName`` is specified. Default: - no target
|
|
2264
|
+
:param docker_cache_disabled: Disable the cache and pass ``--no-cache`` to the ``docker build`` command. Default: - cache is used
|
|
2258
2265
|
:param docker_cache_from: Cache from options to pass to the ``docker build`` command. Default: - no cache from args are passed
|
|
2259
2266
|
:param docker_cache_to: Cache to options to pass to the ``docker build`` command. Default: - no cache to args are passed
|
|
2260
2267
|
:param docker_file: Path to the Dockerfile (relative to the directory). Only allowed when ``directoryName`` is specified. Default: - no file
|
|
@@ -2273,6 +2280,7 @@ class _IStagingResourcesProxy(
|
|
|
2273
2280
|
docker_build_secrets=docker_build_secrets,
|
|
2274
2281
|
docker_build_ssh=docker_build_ssh,
|
|
2275
2282
|
docker_build_target=docker_build_target,
|
|
2283
|
+
docker_cache_disabled=docker_cache_disabled,
|
|
2276
2284
|
docker_cache_from=docker_cache_from,
|
|
2277
2285
|
docker_cache_to=docker_cache_to,
|
|
2278
2286
|
docker_file=docker_file,
|
|
@@ -3122,6 +3130,7 @@ class DefaultStagingStack(
|
|
|
3122
3130
|
docker_build_secrets: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3123
3131
|
docker_build_ssh: typing.Optional[builtins.str] = None,
|
|
3124
3132
|
docker_build_target: typing.Optional[builtins.str] = None,
|
|
3133
|
+
docker_cache_disabled: typing.Optional[builtins.bool] = None,
|
|
3125
3134
|
docker_cache_from: typing.Optional[typing.Sequence[typing.Union[_aws_cdk_ceddda9d.DockerCacheOption, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3126
3135
|
docker_cache_to: typing.Optional[typing.Union[_aws_cdk_ceddda9d.DockerCacheOption, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
3127
3136
|
docker_file: typing.Optional[builtins.str] = None,
|
|
@@ -3139,6 +3148,7 @@ class DefaultStagingStack(
|
|
|
3139
3148
|
:param docker_build_secrets: Build secrets to pass to the ``docker build`` command. Since Docker build secrets are resolved before deployment, keys and values cannot refer to unresolved tokens (such as ``lambda.functionArn`` or ``queue.queueUrl``). Only allowed when ``directoryName`` is specified. Default: - no build secrets are passed
|
|
3140
3149
|
:param docker_build_ssh: SSH agent socket or keys to pass to the ``docker buildx`` command. Default: - no ssh arg is passed
|
|
3141
3150
|
:param docker_build_target: Docker target to build to. Only allowed when ``directoryName`` is specified. Default: - no target
|
|
3151
|
+
:param docker_cache_disabled: Disable the cache and pass ``--no-cache`` to the ``docker build`` command. Default: - cache is used
|
|
3142
3152
|
:param docker_cache_from: Cache from options to pass to the ``docker build`` command. Default: - no cache from args are passed
|
|
3143
3153
|
:param docker_cache_to: Cache to options to pass to the ``docker build`` command. Default: - no cache to args are passed
|
|
3144
3154
|
:param docker_file: Path to the Dockerfile (relative to the directory). Only allowed when ``directoryName`` is specified. Default: - no file
|
|
@@ -3157,6 +3167,7 @@ class DefaultStagingStack(
|
|
|
3157
3167
|
docker_build_secrets=docker_build_secrets,
|
|
3158
3168
|
docker_build_ssh=docker_build_ssh,
|
|
3159
3169
|
docker_build_target=docker_build_target,
|
|
3170
|
+
docker_cache_disabled=docker_cache_disabled,
|
|
3160
3171
|
docker_cache_from=docker_cache_from,
|
|
3161
3172
|
docker_cache_to=docker_cache_to,
|
|
3162
3173
|
docker_file=docker_file,
|
|
@@ -15,9 +15,9 @@ import constructs._jsii
|
|
|
15
15
|
|
|
16
16
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
|
17
17
|
"@aws-cdk/app-staging-synthesizer-alpha",
|
|
18
|
-
"2.
|
|
18
|
+
"2.117.0-alpha.0",
|
|
19
19
|
__name__[0:-6],
|
|
20
|
-
"app-staging-synthesizer-alpha@2.
|
|
20
|
+
"app-staging-synthesizer-alpha@2.117.0-alpha.0.jsii.tgz",
|
|
21
21
|
)
|
|
22
22
|
|
|
23
23
|
__all__ = [
|
aws_cdk/app_staging_synthesizer_alpha/_jsii/app-staging-synthesizer-alpha@2.117.0-alpha.0.jsii.tgz
ADDED
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: aws-cdk.app-staging-synthesizer-alpha
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.117.0a0
|
|
4
4
|
Summary: Cdk synthesizer for with app-scoped staging stack
|
|
5
5
|
Home-page: https://github.com/aws/aws-cdk
|
|
6
6
|
Author: Amazon Web Services
|
|
@@ -23,7 +23,7 @@ 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-lib <3.0.0,>=2.
|
|
26
|
+
Requires-Dist: aws-cdk-lib <3.0.0,>=2.117.0
|
|
27
27
|
Requires-Dist: constructs <11.0.0,>=10.0.0
|
|
28
28
|
Requires-Dist: jsii <2.0.0,>=1.93.0
|
|
29
29
|
Requires-Dist: publication >=0.0.3
|
|
@@ -323,7 +323,7 @@ class CustomStagingStack(Stack):
|
|
|
323
323
|
dependency_stack=self
|
|
324
324
|
)
|
|
325
325
|
|
|
326
|
-
def add_docker_image(self, *, sourceHash, executable=None, directoryName=None, dockerBuildArgs=None, dockerBuildSecrets=None, dockerBuildSsh=None, dockerBuildTarget=None, dockerFile=None, repositoryName=None, networkMode=None, platform=None, dockerOutputs=None, assetName=None, dockerCacheFrom=None, dockerCacheTo=None):
|
|
326
|
+
def add_docker_image(self, *, sourceHash, executable=None, directoryName=None, dockerBuildArgs=None, dockerBuildSecrets=None, dockerBuildSsh=None, dockerBuildTarget=None, dockerFile=None, repositoryName=None, networkMode=None, platform=None, dockerOutputs=None, assetName=None, dockerCacheFrom=None, dockerCacheTo=None, dockerCacheDisabled=None):
|
|
327
327
|
return ImageStagingLocation(
|
|
328
328
|
repo_name="myRepo",
|
|
329
329
|
assume_role_arn="myArn",
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
aws_cdk/app_staging_synthesizer_alpha/__init__.py,sha256=3WgINjNppJcW5Uwj3EJEF1OCQxDWb5aqnI67N3N8RqE,188472
|
|
2
|
+
aws_cdk/app_staging_synthesizer_alpha/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
3
|
+
aws_cdk/app_staging_synthesizer_alpha/_jsii/__init__.py,sha256=7jF1k3TTBb6mxPp7suP7iXhMtaAe55ngqiZZ7QPabbs,467
|
|
4
|
+
aws_cdk/app_staging_synthesizer_alpha/_jsii/app-staging-synthesizer-alpha@2.117.0-alpha.0.jsii.tgz,sha256=DWOyBPgUyHU2qHlV5BJClx0cx-YlcqLb27ZJxOncgEc,83269
|
|
5
|
+
aws_cdk.app_staging_synthesizer_alpha-2.117.0a0.dist-info/LICENSE,sha256=YA6CL2YE08NgoURWXRTrec3mNy-KAR-_UNdiMqgNVMI,11391
|
|
6
|
+
aws_cdk.app_staging_synthesizer_alpha-2.117.0a0.dist-info/METADATA,sha256=0hojXw6W_mafBHol5HdblrzgK775t2QFd3Sdbyiutrg,16126
|
|
7
|
+
aws_cdk.app_staging_synthesizer_alpha-2.117.0a0.dist-info/NOTICE,sha256=XtGET2JQh3C41orQUenLTefWItOqLmu2N-mGwW7t3Fo,113
|
|
8
|
+
aws_cdk.app_staging_synthesizer_alpha-2.117.0a0.dist-info/WHEEL,sha256=Xo9-1PvkuimrydujYJAjF7pCkriuXBpUPEjma1nZyJ0,92
|
|
9
|
+
aws_cdk.app_staging_synthesizer_alpha-2.117.0a0.dist-info/top_level.txt,sha256=1TALAKbuUGsMSrfKWEf268lySCmcqSEO6cDYe_XlLHM,8
|
|
10
|
+
aws_cdk.app_staging_synthesizer_alpha-2.117.0a0.dist-info/RECORD,,
|
aws_cdk/app_staging_synthesizer_alpha/_jsii/app-staging-synthesizer-alpha@2.116.0-alpha.0.jsii.tgz
DELETED
|
Binary file
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
aws_cdk/app_staging_synthesizer_alpha/__init__.py,sha256=EQ-TzZW9ZkLZ8fP9WCfNCw20IiD802ZOA7OoIutOGK4,187443
|
|
2
|
-
aws_cdk/app_staging_synthesizer_alpha/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
3
|
-
aws_cdk/app_staging_synthesizer_alpha/_jsii/__init__.py,sha256=CXWQ96oGkuLkDdTUyXWhvTVQg09F_pHE_SOQB4ZaM4A,467
|
|
4
|
-
aws_cdk/app_staging_synthesizer_alpha/_jsii/app-staging-synthesizer-alpha@2.116.0-alpha.0.jsii.tgz,sha256=ApD6HkDjyQQeZ-wGISEJ6Mdrg-Iev_K5y_UDbk9T3ds,83201
|
|
5
|
-
aws_cdk.app_staging_synthesizer_alpha-2.116.0a0.dist-info/LICENSE,sha256=YA6CL2YE08NgoURWXRTrec3mNy-KAR-_UNdiMqgNVMI,11391
|
|
6
|
-
aws_cdk.app_staging_synthesizer_alpha-2.116.0a0.dist-info/METADATA,sha256=-ZPHr_exRNY1jbLPkcsVSDSProHm89dOdiHwfHwIi9Q,16100
|
|
7
|
-
aws_cdk.app_staging_synthesizer_alpha-2.116.0a0.dist-info/NOTICE,sha256=XtGET2JQh3C41orQUenLTefWItOqLmu2N-mGwW7t3Fo,113
|
|
8
|
-
aws_cdk.app_staging_synthesizer_alpha-2.116.0a0.dist-info/WHEEL,sha256=Xo9-1PvkuimrydujYJAjF7pCkriuXBpUPEjma1nZyJ0,92
|
|
9
|
-
aws_cdk.app_staging_synthesizer_alpha-2.116.0a0.dist-info/top_level.txt,sha256=1TALAKbuUGsMSrfKWEf268lySCmcqSEO6cDYe_XlLHM,8
|
|
10
|
-
aws_cdk.app_staging_synthesizer_alpha-2.116.0a0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|