aws-cdk.app-staging-synthesizer-alpha 2.184.1a0__tar.gz → 2.234.0a0__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.
- {aws_cdk_app_staging_synthesizer_alpha-2.184.1a0 → aws_cdk_app_staging_synthesizer_alpha-2.234.0a0}/LICENSE +1 -1
- aws_cdk_app_staging_synthesizer_alpha-2.234.0a0/NOTICE +2 -0
- {aws_cdk_app_staging_synthesizer_alpha-2.184.1a0/src/aws_cdk.app_staging_synthesizer_alpha.egg-info → aws_cdk_app_staging_synthesizer_alpha-2.234.0a0}/PKG-INFO +12 -9
- {aws_cdk_app_staging_synthesizer_alpha-2.184.1a0 → aws_cdk_app_staging_synthesizer_alpha-2.234.0a0}/README.md +8 -5
- {aws_cdk_app_staging_synthesizer_alpha-2.184.1a0 → aws_cdk_app_staging_synthesizer_alpha-2.234.0a0}/pyproject.toml +1 -1
- {aws_cdk_app_staging_synthesizer_alpha-2.184.1a0 → aws_cdk_app_staging_synthesizer_alpha-2.234.0a0}/setup.py +5 -5
- {aws_cdk_app_staging_synthesizer_alpha-2.184.1a0 → aws_cdk_app_staging_synthesizer_alpha-2.234.0a0}/src/aws_cdk/app_staging_synthesizer_alpha/__init__.py +213 -148
- {aws_cdk_app_staging_synthesizer_alpha-2.184.1a0 → aws_cdk_app_staging_synthesizer_alpha-2.234.0a0}/src/aws_cdk/app_staging_synthesizer_alpha/_jsii/__init__.py +2 -2
- aws_cdk_app_staging_synthesizer_alpha-2.234.0a0/src/aws_cdk/app_staging_synthesizer_alpha/_jsii/app-staging-synthesizer-alpha@2.234.0-alpha.0.jsii.tgz +0 -0
- {aws_cdk_app_staging_synthesizer_alpha-2.184.1a0 → aws_cdk_app_staging_synthesizer_alpha-2.234.0a0/src/aws_cdk.app_staging_synthesizer_alpha.egg-info}/PKG-INFO +12 -9
- {aws_cdk_app_staging_synthesizer_alpha-2.184.1a0 → aws_cdk_app_staging_synthesizer_alpha-2.234.0a0}/src/aws_cdk.app_staging_synthesizer_alpha.egg-info/SOURCES.txt +1 -1
- aws_cdk_app_staging_synthesizer_alpha-2.234.0a0/src/aws_cdk.app_staging_synthesizer_alpha.egg-info/requires.txt +5 -0
- aws_cdk_app_staging_synthesizer_alpha-2.184.1a0/NOTICE +0 -2
- aws_cdk_app_staging_synthesizer_alpha-2.184.1a0/src/aws_cdk/app_staging_synthesizer_alpha/_jsii/app-staging-synthesizer-alpha@2.184.1-alpha.0.jsii.tgz +0 -0
- aws_cdk_app_staging_synthesizer_alpha-2.184.1a0/src/aws_cdk.app_staging_synthesizer_alpha.egg-info/requires.txt +0 -5
- {aws_cdk_app_staging_synthesizer_alpha-2.184.1a0 → aws_cdk_app_staging_synthesizer_alpha-2.234.0a0}/MANIFEST.in +0 -0
- {aws_cdk_app_staging_synthesizer_alpha-2.184.1a0 → aws_cdk_app_staging_synthesizer_alpha-2.234.0a0}/setup.cfg +0 -0
- {aws_cdk_app_staging_synthesizer_alpha-2.184.1a0 → aws_cdk_app_staging_synthesizer_alpha-2.234.0a0}/src/aws_cdk/app_staging_synthesizer_alpha/py.typed +0 -0
- {aws_cdk_app_staging_synthesizer_alpha-2.184.1a0 → aws_cdk_app_staging_synthesizer_alpha-2.234.0a0}/src/aws_cdk.app_staging_synthesizer_alpha.egg-info/dependency_links.txt +0 -0
- {aws_cdk_app_staging_synthesizer_alpha-2.184.1a0 → aws_cdk_app_staging_synthesizer_alpha-2.234.0a0}/src/aws_cdk.app_staging_synthesizer_alpha.egg-info/top_level.txt +0 -0
|
@@ -186,7 +186,7 @@
|
|
|
186
186
|
same "printed page" as the copyright notice for easier
|
|
187
187
|
identification within third-party archives.
|
|
188
188
|
|
|
189
|
-
Copyright 2018-
|
|
189
|
+
Copyright 2018-2026 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
190
190
|
|
|
191
191
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
192
|
you may not use this file except in compliance with the License.
|
|
@@ -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.234.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
|
|
@@ -22,11 +22,11 @@ Requires-Python: ~=3.9
|
|
|
22
22
|
Description-Content-Type: text/markdown
|
|
23
23
|
License-File: LICENSE
|
|
24
24
|
License-File: NOTICE
|
|
25
|
-
Requires-Dist: aws-cdk-lib<3.0.0,>=2.
|
|
25
|
+
Requires-Dist: aws-cdk-lib<3.0.0,>=2.234.0
|
|
26
26
|
Requires-Dist: constructs<11.0.0,>=10.0.0
|
|
27
|
-
Requires-Dist: jsii<2.0.0,>=1.
|
|
27
|
+
Requires-Dist: jsii<2.0.0,>=1.125.0
|
|
28
28
|
Requires-Dist: publication>=0.0.3
|
|
29
|
-
Requires-Dist: typeguard
|
|
29
|
+
Requires-Dist: typeguard==2.13.3
|
|
30
30
|
|
|
31
31
|
# App Staging Synthesizer
|
|
32
32
|
|
|
@@ -202,7 +202,7 @@ These credentials must have the ability to perform CloudFormation calls,
|
|
|
202
202
|
lookup resources in your account, and perform CloudFormation deployment.
|
|
203
203
|
For a full list of what is necessary, see `LookupRole`, `DeploymentActionRole`,
|
|
204
204
|
and `CloudFormationExecutionRole` in the
|
|
205
|
-
[bootstrap template](https://github.com/aws/aws-cdk/blob/main/packages/aws-cdk/lib/api/bootstrap/bootstrap-template.yaml).
|
|
205
|
+
[bootstrap template](https://github.com/aws/aws-cdk-cli/blob/main/packages/aws-cdk/lib/api/bootstrap/bootstrap-template.yaml).
|
|
206
206
|
|
|
207
207
|
```python
|
|
208
208
|
from aws_cdk.aws_s3 import BucketEncryption
|
|
@@ -365,19 +365,22 @@ class CustomStagingStack(DefaultStagingStack):
|
|
|
365
365
|
Or you can roll your own staging resources from scratch, as long as it implements `IStagingResources`.
|
|
366
366
|
|
|
367
367
|
```python
|
|
368
|
+
from aws_cdk.app_staging_synthesizer_alpha import FileStagingLocation, ImageStagingLocation
|
|
369
|
+
|
|
370
|
+
|
|
368
371
|
@jsii.implements(IStagingResources)
|
|
369
372
|
class CustomStagingStack(Stack):
|
|
370
|
-
def __init__(self, scope, id, *, description=None, env=None, stackName=None, tags=None, notificationArns=None, synthesizer=None, terminationProtection=None, analyticsReporting=None, crossRegionReferences=None, permissionsBoundary=None, suppressTemplateIndentation=None):
|
|
371
|
-
super().__init__(scope, id, description=description, env=env, stackName=stackName, tags=tags, notificationArns=notificationArns, synthesizer=synthesizer, terminationProtection=terminationProtection, analyticsReporting=analyticsReporting, crossRegionReferences=crossRegionReferences, permissionsBoundary=permissionsBoundary, suppressTemplateIndentation=suppressTemplateIndentation)
|
|
373
|
+
def __init__(self, scope, id, *, description=None, env=None, stackName=None, tags=None, notificationArns=None, synthesizer=None, terminationProtection=None, analyticsReporting=None, crossRegionReferences=None, permissionsBoundary=None, suppressTemplateIndentation=None, propertyInjectors=None):
|
|
374
|
+
super().__init__(scope, id, description=description, env=env, stackName=stackName, tags=tags, notificationArns=notificationArns, synthesizer=synthesizer, terminationProtection=terminationProtection, analyticsReporting=analyticsReporting, crossRegionReferences=crossRegionReferences, permissionsBoundary=permissionsBoundary, suppressTemplateIndentation=suppressTemplateIndentation, propertyInjectors=propertyInjectors)
|
|
372
375
|
|
|
373
|
-
def add_file(self, *, sourceHash, executable=None, fileName=None, packaging=None, deployTime=None):
|
|
376
|
+
def add_file(self, *, sourceHash, executable=None, fileName=None, packaging=None, deployTime=None, displayName=None):
|
|
374
377
|
return FileStagingLocation(
|
|
375
378
|
bucket_name="amzn-s3-demo-bucket",
|
|
376
379
|
assume_role_arn="myArn",
|
|
377
380
|
dependency_stack=self
|
|
378
381
|
)
|
|
379
382
|
|
|
380
|
-
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):
|
|
383
|
+
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, displayName=None):
|
|
381
384
|
return ImageStagingLocation(
|
|
382
385
|
repo_name="myRepo",
|
|
383
386
|
assume_role_arn="myArn",
|
|
@@ -172,7 +172,7 @@ These credentials must have the ability to perform CloudFormation calls,
|
|
|
172
172
|
lookup resources in your account, and perform CloudFormation deployment.
|
|
173
173
|
For a full list of what is necessary, see `LookupRole`, `DeploymentActionRole`,
|
|
174
174
|
and `CloudFormationExecutionRole` in the
|
|
175
|
-
[bootstrap template](https://github.com/aws/aws-cdk/blob/main/packages/aws-cdk/lib/api/bootstrap/bootstrap-template.yaml).
|
|
175
|
+
[bootstrap template](https://github.com/aws/aws-cdk-cli/blob/main/packages/aws-cdk/lib/api/bootstrap/bootstrap-template.yaml).
|
|
176
176
|
|
|
177
177
|
```python
|
|
178
178
|
from aws_cdk.aws_s3 import BucketEncryption
|
|
@@ -335,19 +335,22 @@ class CustomStagingStack(DefaultStagingStack):
|
|
|
335
335
|
Or you can roll your own staging resources from scratch, as long as it implements `IStagingResources`.
|
|
336
336
|
|
|
337
337
|
```python
|
|
338
|
+
from aws_cdk.app_staging_synthesizer_alpha import FileStagingLocation, ImageStagingLocation
|
|
339
|
+
|
|
340
|
+
|
|
338
341
|
@jsii.implements(IStagingResources)
|
|
339
342
|
class CustomStagingStack(Stack):
|
|
340
|
-
def __init__(self, scope, id, *, description=None, env=None, stackName=None, tags=None, notificationArns=None, synthesizer=None, terminationProtection=None, analyticsReporting=None, crossRegionReferences=None, permissionsBoundary=None, suppressTemplateIndentation=None):
|
|
341
|
-
super().__init__(scope, id, description=description, env=env, stackName=stackName, tags=tags, notificationArns=notificationArns, synthesizer=synthesizer, terminationProtection=terminationProtection, analyticsReporting=analyticsReporting, crossRegionReferences=crossRegionReferences, permissionsBoundary=permissionsBoundary, suppressTemplateIndentation=suppressTemplateIndentation)
|
|
343
|
+
def __init__(self, scope, id, *, description=None, env=None, stackName=None, tags=None, notificationArns=None, synthesizer=None, terminationProtection=None, analyticsReporting=None, crossRegionReferences=None, permissionsBoundary=None, suppressTemplateIndentation=None, propertyInjectors=None):
|
|
344
|
+
super().__init__(scope, id, description=description, env=env, stackName=stackName, tags=tags, notificationArns=notificationArns, synthesizer=synthesizer, terminationProtection=terminationProtection, analyticsReporting=analyticsReporting, crossRegionReferences=crossRegionReferences, permissionsBoundary=permissionsBoundary, suppressTemplateIndentation=suppressTemplateIndentation, propertyInjectors=propertyInjectors)
|
|
342
345
|
|
|
343
|
-
def add_file(self, *, sourceHash, executable=None, fileName=None, packaging=None, deployTime=None):
|
|
346
|
+
def add_file(self, *, sourceHash, executable=None, fileName=None, packaging=None, deployTime=None, displayName=None):
|
|
344
347
|
return FileStagingLocation(
|
|
345
348
|
bucket_name="amzn-s3-demo-bucket",
|
|
346
349
|
assume_role_arn="myArn",
|
|
347
350
|
dependency_stack=self
|
|
348
351
|
)
|
|
349
352
|
|
|
350
|
-
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):
|
|
353
|
+
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, displayName=None):
|
|
351
354
|
return ImageStagingLocation(
|
|
352
355
|
repo_name="myRepo",
|
|
353
356
|
assume_role_arn="myArn",
|
|
@@ -5,7 +5,7 @@ kwargs = json.loads(
|
|
|
5
5
|
"""
|
|
6
6
|
{
|
|
7
7
|
"name": "aws-cdk.app-staging-synthesizer-alpha",
|
|
8
|
-
"version": "2.
|
|
8
|
+
"version": "2.234.0.a0",
|
|
9
9
|
"description": "Cdk synthesizer for with app-scoped staging stack",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"url": "https://github.com/aws/aws-cdk",
|
|
@@ -26,7 +26,7 @@ kwargs = json.loads(
|
|
|
26
26
|
],
|
|
27
27
|
"package_data": {
|
|
28
28
|
"aws_cdk.app_staging_synthesizer_alpha._jsii": [
|
|
29
|
-
"app-staging-synthesizer-alpha@2.
|
|
29
|
+
"app-staging-synthesizer-alpha@2.234.0-alpha.0.jsii.tgz"
|
|
30
30
|
],
|
|
31
31
|
"aws_cdk.app_staging_synthesizer_alpha": [
|
|
32
32
|
"py.typed"
|
|
@@ -34,11 +34,11 @@ kwargs = json.loads(
|
|
|
34
34
|
},
|
|
35
35
|
"python_requires": "~=3.9",
|
|
36
36
|
"install_requires": [
|
|
37
|
-
"aws-cdk-lib>=2.
|
|
37
|
+
"aws-cdk-lib>=2.234.0, <3.0.0",
|
|
38
38
|
"constructs>=10.0.0, <11.0.0",
|
|
39
|
-
"jsii>=1.
|
|
39
|
+
"jsii>=1.125.0, <2.0.0",
|
|
40
40
|
"publication>=0.0.3",
|
|
41
|
-
"typeguard
|
|
41
|
+
"typeguard==2.13.3"
|
|
42
42
|
],
|
|
43
43
|
"classifiers": [
|
|
44
44
|
"Intended Audience :: Developers",
|