aws-cdk.cx-api 2.67.0__tar.gz → 2.68.0__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.
Potentially problematic release.
This version of aws-cdk.cx-api might be problematic. Click here for more details.
- {aws-cdk.cx-api-2.67.0/src/aws_cdk.cx_api.egg-info → aws-cdk.cx-api-2.68.0}/PKG-INFO +18 -1
- {aws-cdk.cx-api-2.67.0 → aws-cdk.cx-api-2.68.0}/README.md +16 -0
- {aws-cdk.cx-api-2.67.0 → aws-cdk.cx-api-2.68.0}/setup.py +5 -4
- {aws-cdk.cx-api-2.67.0 → aws-cdk.cx-api-2.68.0}/src/aws_cdk/cx_api/__init__.py +16 -0
- {aws-cdk.cx-api-2.67.0 → aws-cdk.cx-api-2.68.0}/src/aws_cdk/cx_api/_jsii/__init__.py +1 -1
- aws-cdk.cx-api-2.68.0/src/aws_cdk/cx_api/_jsii/cx-api@2.68.0.jsii.tgz +0 -0
- {aws-cdk.cx-api-2.67.0 → aws-cdk.cx-api-2.68.0/src/aws_cdk.cx_api.egg-info}/PKG-INFO +18 -1
- {aws-cdk.cx-api-2.67.0 → aws-cdk.cx-api-2.68.0}/src/aws_cdk.cx_api.egg-info/SOURCES.txt +1 -1
- aws-cdk.cx-api-2.68.0/src/aws_cdk.cx_api.egg-info/requires.txt +4 -0
- aws-cdk.cx-api-2.67.0/src/aws_cdk/cx_api/_jsii/cx-api@2.67.0.jsii.tgz +0 -0
- aws-cdk.cx-api-2.67.0/src/aws_cdk.cx_api.egg-info/requires.txt +0 -4
- {aws-cdk.cx-api-2.67.0 → aws-cdk.cx-api-2.68.0}/LICENSE +0 -0
- {aws-cdk.cx-api-2.67.0 → aws-cdk.cx-api-2.68.0}/MANIFEST.in +0 -0
- {aws-cdk.cx-api-2.67.0 → aws-cdk.cx-api-2.68.0}/NOTICE +0 -0
- {aws-cdk.cx-api-2.67.0 → aws-cdk.cx-api-2.68.0}/pyproject.toml +0 -0
- {aws-cdk.cx-api-2.67.0 → aws-cdk.cx-api-2.68.0}/setup.cfg +0 -0
- {aws-cdk.cx-api-2.67.0 → aws-cdk.cx-api-2.68.0}/src/aws_cdk/cx_api/py.typed +0 -0
- {aws-cdk.cx-api-2.67.0 → aws-cdk.cx-api-2.68.0}/src/aws_cdk.cx_api.egg-info/dependency_links.txt +0 -0
- {aws-cdk.cx-api-2.67.0 → aws-cdk.cx-api-2.68.0}/src/aws_cdk.cx_api.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: aws-cdk.cx-api
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.68.0
|
|
4
4
|
Summary: Cloud executable protocol
|
|
5
5
|
Home-page: https://github.com/aws/aws-cdk
|
|
6
6
|
Author: Amazon Web Services
|
|
@@ -14,6 +14,7 @@ Classifier: Programming Language :: Python :: 3.7
|
|
|
14
14
|
Classifier: Programming Language :: Python :: 3.8
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.9
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.10
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
17
18
|
Classifier: Typing :: Typed
|
|
18
19
|
Classifier: Development Status :: 5 - Production/Stable
|
|
19
20
|
Classifier: License :: OSI Approved
|
|
@@ -181,3 +182,19 @@ This is a feature flag as the old behavior was technically incorrect, but users
|
|
|
181
182
|
}
|
|
182
183
|
}
|
|
183
184
|
```
|
|
185
|
+
|
|
186
|
+
* `@aws-cdk/aws-redshift:columnId`
|
|
187
|
+
|
|
188
|
+
Enable this feature flag to allow the CDK to track changes in Redshift columns through their `id` attribute. This is a breaking change, as the `name` attribute was currently being used to track changes to Redshift columns.
|
|
189
|
+
|
|
190
|
+
Enabling this feature flag comes at a risk for existing Redshift columns, as the `name` attribute of a redshift column was currently being used. Therefore, to change a Redshift columns' `name` will essentially create a new column and delete the old one. This will cause data loss. If you choose to enable this flag, ensure that upon intial deployment (the first deployment after setting this feature flag), the `name` attribute of every column is not changed. After the intial deployment, you can freely change the `name` attribute of a column.
|
|
191
|
+
|
|
192
|
+
*cdk.json*
|
|
193
|
+
|
|
194
|
+
```json
|
|
195
|
+
{
|
|
196
|
+
"context": {
|
|
197
|
+
"@aws-cdk/aws-redshift:columnId": true
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
```
|
|
@@ -155,3 +155,19 @@ This is a feature flag as the old behavior was technically incorrect, but users
|
|
|
155
155
|
}
|
|
156
156
|
}
|
|
157
157
|
```
|
|
158
|
+
|
|
159
|
+
* `@aws-cdk/aws-redshift:columnId`
|
|
160
|
+
|
|
161
|
+
Enable this feature flag to allow the CDK to track changes in Redshift columns through their `id` attribute. This is a breaking change, as the `name` attribute was currently being used to track changes to Redshift columns.
|
|
162
|
+
|
|
163
|
+
Enabling this feature flag comes at a risk for existing Redshift columns, as the `name` attribute of a redshift column was currently being used. Therefore, to change a Redshift columns' `name` will essentially create a new column and delete the old one. This will cause data loss. If you choose to enable this flag, ensure that upon intial deployment (the first deployment after setting this feature flag), the `name` attribute of every column is not changed. After the intial deployment, you can freely change the `name` attribute of a column.
|
|
164
|
+
|
|
165
|
+
*cdk.json*
|
|
166
|
+
|
|
167
|
+
```json
|
|
168
|
+
{
|
|
169
|
+
"context": {
|
|
170
|
+
"@aws-cdk/aws-redshift:columnId": true
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
```
|
|
@@ -5,7 +5,7 @@ kwargs = json.loads(
|
|
|
5
5
|
"""
|
|
6
6
|
{
|
|
7
7
|
"name": "aws-cdk.cx-api",
|
|
8
|
-
"version": "2.
|
|
8
|
+
"version": "2.68.0",
|
|
9
9
|
"description": "Cloud executable protocol",
|
|
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.cx_api._jsii": [
|
|
29
|
-
"cx-api@2.
|
|
29
|
+
"cx-api@2.68.0.jsii.tgz"
|
|
30
30
|
],
|
|
31
31
|
"aws_cdk.cx_api": [
|
|
32
32
|
"py.typed"
|
|
@@ -34,8 +34,8 @@ kwargs = json.loads(
|
|
|
34
34
|
},
|
|
35
35
|
"python_requires": "~=3.7",
|
|
36
36
|
"install_requires": [
|
|
37
|
-
"aws-cdk.cloud-assembly-schema==2.
|
|
38
|
-
"jsii>=1.
|
|
37
|
+
"aws-cdk.cloud-assembly-schema==2.68.0",
|
|
38
|
+
"jsii>=1.77.0, <2.0.0",
|
|
39
39
|
"publication>=0.0.3",
|
|
40
40
|
"typeguard~=2.13.3"
|
|
41
41
|
],
|
|
@@ -48,6 +48,7 @@ kwargs = json.loads(
|
|
|
48
48
|
"Programming Language :: Python :: 3.8",
|
|
49
49
|
"Programming Language :: Python :: 3.9",
|
|
50
50
|
"Programming Language :: Python :: 3.10",
|
|
51
|
+
"Programming Language :: Python :: 3.11",
|
|
51
52
|
"Typing :: Typed",
|
|
52
53
|
"Development Status :: 5 - Production/Stable",
|
|
53
54
|
"License :: OSI Approved",
|
|
@@ -156,6 +156,22 @@ This is a feature flag as the old behavior was technically incorrect, but users
|
|
|
156
156
|
}
|
|
157
157
|
}
|
|
158
158
|
```
|
|
159
|
+
|
|
160
|
+
* `@aws-cdk/aws-redshift:columnId`
|
|
161
|
+
|
|
162
|
+
Enable this feature flag to allow the CDK to track changes in Redshift columns through their `id` attribute. This is a breaking change, as the `name` attribute was currently being used to track changes to Redshift columns.
|
|
163
|
+
|
|
164
|
+
Enabling this feature flag comes at a risk for existing Redshift columns, as the `name` attribute of a redshift column was currently being used. Therefore, to change a Redshift columns' `name` will essentially create a new column and delete the old one. This will cause data loss. If you choose to enable this flag, ensure that upon intial deployment (the first deployment after setting this feature flag), the `name` attribute of every column is not changed. After the intial deployment, you can freely change the `name` attribute of a column.
|
|
165
|
+
|
|
166
|
+
*cdk.json*
|
|
167
|
+
|
|
168
|
+
```json
|
|
169
|
+
{
|
|
170
|
+
"context": {
|
|
171
|
+
"@aws-cdk/aws-redshift:columnId": true
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
```
|
|
159
175
|
'''
|
|
160
176
|
import abc
|
|
161
177
|
import builtins
|
|
@@ -13,7 +13,7 @@ from typeguard import check_type
|
|
|
13
13
|
import aws_cdk.cloud_assembly_schema._jsii
|
|
14
14
|
|
|
15
15
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
|
16
|
-
"@aws-cdk/cx-api", "2.
|
|
16
|
+
"@aws-cdk/cx-api", "2.68.0", __name__[0:-6], "cx-api@2.68.0.jsii.tgz"
|
|
17
17
|
)
|
|
18
18
|
|
|
19
19
|
__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.68.0
|
|
4
4
|
Summary: Cloud executable protocol
|
|
5
5
|
Home-page: https://github.com/aws/aws-cdk
|
|
6
6
|
Author: Amazon Web Services
|
|
@@ -14,6 +14,7 @@ Classifier: Programming Language :: Python :: 3.7
|
|
|
14
14
|
Classifier: Programming Language :: Python :: 3.8
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.9
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.10
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
17
18
|
Classifier: Typing :: Typed
|
|
18
19
|
Classifier: Development Status :: 5 - Production/Stable
|
|
19
20
|
Classifier: License :: OSI Approved
|
|
@@ -181,3 +182,19 @@ This is a feature flag as the old behavior was technically incorrect, but users
|
|
|
181
182
|
}
|
|
182
183
|
}
|
|
183
184
|
```
|
|
185
|
+
|
|
186
|
+
* `@aws-cdk/aws-redshift:columnId`
|
|
187
|
+
|
|
188
|
+
Enable this feature flag to allow the CDK to track changes in Redshift columns through their `id` attribute. This is a breaking change, as the `name` attribute was currently being used to track changes to Redshift columns.
|
|
189
|
+
|
|
190
|
+
Enabling this feature flag comes at a risk for existing Redshift columns, as the `name` attribute of a redshift column was currently being used. Therefore, to change a Redshift columns' `name` will essentially create a new column and delete the old one. This will cause data loss. If you choose to enable this flag, ensure that upon intial deployment (the first deployment after setting this feature flag), the `name` attribute of every column is not changed. After the intial deployment, you can freely change the `name` attribute of a column.
|
|
191
|
+
|
|
192
|
+
*cdk.json*
|
|
193
|
+
|
|
194
|
+
```json
|
|
195
|
+
{
|
|
196
|
+
"context": {
|
|
197
|
+
"@aws-cdk/aws-redshift:columnId": true
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
```
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{aws-cdk.cx-api-2.67.0 → aws-cdk.cx-api-2.68.0}/src/aws_cdk.cx_api.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|