cdk-comprehend-s3olap 2.0.107 → 2.0.109
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.
- package/.jsii +4 -4
- package/lib/cdk-comprehend-s3olap.js +2 -2
- package/lib/comprehend-lambdas.js +2 -2
- package/lib/iam-roles.js +4 -4
- package/node_modules/aws-sdk/CHANGELOG.md +12 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/ce-2017-10-25.min.json +10 -8
- package/node_modules/aws-sdk/apis/iotfleetwise-2021-06-17.examples.json +5 -0
- package/node_modules/aws-sdk/apis/iotfleetwise-2021-06-17.min.json +1961 -0
- package/node_modules/aws-sdk/apis/iotfleetwise-2021-06-17.paginators.json +82 -0
- package/node_modules/aws-sdk/apis/iotfleetwise-2021-06-17.waiters2.json +5 -0
- package/node_modules/aws-sdk/apis/location-2020-11-19.min.json +64 -17
- package/node_modules/aws-sdk/apis/metadata.json +3 -0
- package/node_modules/aws-sdk/apis/ssm-2014-11-06.min.json +396 -287
- package/node_modules/aws-sdk/clients/all.d.ts +1 -0
- package/node_modules/aws-sdk/clients/all.js +2 -1
- package/node_modules/aws-sdk/clients/costexplorer.d.ts +15 -7
- package/node_modules/aws-sdk/clients/cur.d.ts +1 -1
- package/node_modules/aws-sdk/clients/iotfleetwise.d.ts +2549 -0
- package/node_modules/aws-sdk/clients/iotfleetwise.js +19 -0
- package/node_modules/aws-sdk/clients/kendra.d.ts +36 -36
- package/node_modules/aws-sdk/clients/location.d.ts +54 -4
- package/node_modules/aws-sdk/clients/ssm.d.ts +112 -1
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +31 -11
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +93 -23
- package/node_modules/aws-sdk/dist/aws-sdk.js +492 -317
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +42 -41
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/event_listeners.js +1 -0
- package/node_modules/aws-sdk/lib/protocol/rest_json.js +15 -2
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +7 -7
@@ -316,6 +316,7 @@ export abstract class ConfigurationServicePlaceholders {
|
|
316
316
|
privatenetworks?: AWS.PrivateNetworks.Types.ClientConfiguration;
|
317
317
|
supportapp?: AWS.SupportApp.Types.ClientConfiguration;
|
318
318
|
controltower?: AWS.ControlTower.Types.ClientConfiguration;
|
319
|
+
iotfleetwise?: AWS.IoTFleetWise.Types.ClientConfiguration;
|
319
320
|
}
|
320
321
|
export interface ConfigurationServiceApiVersions {
|
321
322
|
acm?: AWS.ACM.Types.apiVersion;
|
@@ -634,4 +635,5 @@ export interface ConfigurationServiceApiVersions {
|
|
634
635
|
privatenetworks?: AWS.PrivateNetworks.Types.apiVersion;
|
635
636
|
supportapp?: AWS.SupportApp.Types.apiVersion;
|
636
637
|
controltower?: AWS.ControlTower.Types.apiVersion;
|
638
|
+
iotfleetwise?: AWS.IoTFleetWise.Types.apiVersion;
|
637
639
|
}
|
@@ -678,6 +678,7 @@ AWS.EventListeners = {
|
|
678
678
|
add('BUILD', 'build', svc.buildRequest);
|
679
679
|
add('EXTRACT_DATA', 'extractData', svc.extractData);
|
680
680
|
add('EXTRACT_ERROR', 'extractError', svc.extractError);
|
681
|
+
add('UNSET_CONTENT_LENGTH', 'afterBuild', svc.unsetContentLength);
|
681
682
|
}),
|
682
683
|
|
683
684
|
RestXml: new SequentialExecutor().addNamedListeners(function(add) {
|
@@ -4,6 +4,18 @@ var Json = require('./json');
|
|
4
4
|
var JsonBuilder = require('../json/builder');
|
5
5
|
var JsonParser = require('../json/parser');
|
6
6
|
|
7
|
+
var METHODS_WITHOUT_BODY = ['GET', 'HEAD', 'DELETE'];
|
8
|
+
|
9
|
+
function unsetContentLength(req) {
|
10
|
+
var payloadMember = util.getRequestPayloadShape(req);
|
11
|
+
if (
|
12
|
+
payloadMember === undefined &&
|
13
|
+
METHODS_WITHOUT_BODY.indexOf(req.httpRequest.method) >= 0
|
14
|
+
) {
|
15
|
+
delete req.httpRequest.headers['Content-Length'];
|
16
|
+
}
|
17
|
+
}
|
18
|
+
|
7
19
|
function populateBody(req) {
|
8
20
|
var builder = new JsonBuilder();
|
9
21
|
var input = req.service.api.operations[req.operation].input;
|
@@ -40,7 +52,7 @@ function buildRequest(req) {
|
|
40
52
|
Rest.buildRequest(req);
|
41
53
|
|
42
54
|
// never send body payload on GET/HEAD/DELETE
|
43
|
-
if (
|
55
|
+
if (METHODS_WITHOUT_BODY.indexOf(req.httpRequest.method) < 0) {
|
44
56
|
populateBody(req);
|
45
57
|
}
|
46
58
|
}
|
@@ -89,5 +101,6 @@ function extractData(resp) {
|
|
89
101
|
module.exports = {
|
90
102
|
buildRequest: buildRequest,
|
91
103
|
extractError: extractError,
|
92
|
-
extractData: extractData
|
104
|
+
extractData: extractData,
|
105
|
+
unsetContentLength: unsetContentLength
|
93
106
|
};
|
package/package.json
CHANGED
@@ -53,16 +53,16 @@
|
|
53
53
|
"eslint-plugin-import": "^2.26.0",
|
54
54
|
"jest": "^27",
|
55
55
|
"jest-junit": "^13",
|
56
|
-
"jsii": "^1.
|
57
|
-
"jsii-diff": "^1.
|
56
|
+
"jsii": "^1.69.0",
|
57
|
+
"jsii-diff": "^1.69.0",
|
58
58
|
"jsii-docgen": "^1.8.110",
|
59
|
-
"jsii-pacmak": "^1.
|
59
|
+
"jsii-pacmak": "^1.69.0",
|
60
60
|
"json-schema": "^0.4.0",
|
61
61
|
"npm-check-updates": "^15",
|
62
|
-
"projen": "^0.62.
|
62
|
+
"projen": "^0.62.23",
|
63
63
|
"standard-version": "^9",
|
64
64
|
"ts-jest": "^27",
|
65
|
-
"typescript": "^4.8.
|
65
|
+
"typescript": "^4.8.4"
|
66
66
|
},
|
67
67
|
"peerDependencies": {
|
68
68
|
"aws-cdk-lib": "^2.27.0",
|
@@ -70,7 +70,7 @@
|
|
70
70
|
},
|
71
71
|
"dependencies": {
|
72
72
|
"aws-cdk-lib": "^2.43.1",
|
73
|
-
"aws-sdk": "^2.
|
73
|
+
"aws-sdk": "^2.1225.0",
|
74
74
|
"constructs": "^10.0.5",
|
75
75
|
"esbuild": "^0.15.9"
|
76
76
|
},
|
@@ -92,7 +92,7 @@
|
|
92
92
|
],
|
93
93
|
"main": "lib/index.js",
|
94
94
|
"license": "Apache-2.0",
|
95
|
-
"version": "2.0.
|
95
|
+
"version": "2.0.109",
|
96
96
|
"jest": {
|
97
97
|
"testMatch": [
|
98
98
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|