@aws-sdk/core 3.973.17 → 3.973.19
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/dist-cjs/index.js +4 -0
- package/dist-cjs/submodules/protocols/index.js +4 -0
- package/dist-es/submodules/protocols/index.js +2 -0
- package/dist-es/submodules/protocols/query/AwsEc2QueryProtocol.js +3 -0
- package/dist-types/submodules/protocols/index.d.ts +2 -0
- package/dist-types/submodules/protocols/query/AwsEc2QueryProtocol.d.ts +4 -0
- package/dist-types/submodules/protocols/query/QuerySerializerSettings.d.ts +3 -0
- package/dist-types/ts3.4/submodules/protocols/index.d.ts +2 -0
- package/dist-types/ts3.4/submodules/protocols/query/AwsEc2QueryProtocol.d.ts +1 -0
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -1722,6 +1722,9 @@ class AwsEc2QueryProtocol extends AwsQueryProtocol {
|
|
|
1722
1722
|
};
|
|
1723
1723
|
Object.assign(this.serializer.settings, ec2Settings);
|
|
1724
1724
|
}
|
|
1725
|
+
getShapeId() {
|
|
1726
|
+
return "aws.protocols#ec2Query";
|
|
1727
|
+
}
|
|
1725
1728
|
useNestedResult() {
|
|
1726
1729
|
return false;
|
|
1727
1730
|
}
|
|
@@ -2183,6 +2186,7 @@ exports.JsonShapeDeserializer = JsonShapeDeserializer;
|
|
|
2183
2186
|
exports.JsonShapeSerializer = JsonShapeSerializer;
|
|
2184
2187
|
exports.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS = NODE_AUTH_SCHEME_PREFERENCE_OPTIONS;
|
|
2185
2188
|
exports.NODE_SIGV4A_CONFIG_OPTIONS = NODE_SIGV4A_CONFIG_OPTIONS;
|
|
2189
|
+
exports.QueryShapeSerializer = QueryShapeSerializer;
|
|
2186
2190
|
exports.XmlCodec = XmlCodec;
|
|
2187
2191
|
exports.XmlShapeDeserializer = XmlShapeDeserializer;
|
|
2188
2192
|
exports.XmlShapeSerializer = XmlShapeSerializer;
|
|
@@ -1384,6 +1384,9 @@ class AwsEc2QueryProtocol extends AwsQueryProtocol {
|
|
|
1384
1384
|
};
|
|
1385
1385
|
Object.assign(this.serializer.settings, ec2Settings);
|
|
1386
1386
|
}
|
|
1387
|
+
getShapeId() {
|
|
1388
|
+
return "aws.protocols#ec2Query";
|
|
1389
|
+
}
|
|
1387
1390
|
useNestedResult() {
|
|
1388
1391
|
return false;
|
|
1389
1392
|
}
|
|
@@ -1840,6 +1843,7 @@ exports.AwsSmithyRpcV2CborProtocol = AwsSmithyRpcV2CborProtocol;
|
|
|
1840
1843
|
exports.JsonCodec = JsonCodec;
|
|
1841
1844
|
exports.JsonShapeDeserializer = JsonShapeDeserializer;
|
|
1842
1845
|
exports.JsonShapeSerializer = JsonShapeSerializer;
|
|
1846
|
+
exports.QueryShapeSerializer = QueryShapeSerializer;
|
|
1843
1847
|
exports.XmlCodec = XmlCodec;
|
|
1844
1848
|
exports.XmlShapeDeserializer = XmlShapeDeserializer;
|
|
1845
1849
|
exports.XmlShapeSerializer = XmlShapeSerializer;
|
|
@@ -11,6 +11,8 @@ export * from "./json/awsExpectUnion";
|
|
|
11
11
|
export * from "./json/parseJsonBody";
|
|
12
12
|
export * from "./query/AwsEc2QueryProtocol";
|
|
13
13
|
export * from "./query/AwsQueryProtocol";
|
|
14
|
+
export * from "./query/QuerySerializerSettings";
|
|
15
|
+
export * from "./query/QueryShapeSerializer";
|
|
14
16
|
export * from "./xml/AwsRestXmlProtocol";
|
|
15
17
|
export * from "./xml/XmlCodec";
|
|
16
18
|
export * from "./xml/XmlShapeDeserializer";
|
|
@@ -11,6 +11,8 @@ export * from "./json/awsExpectUnion";
|
|
|
11
11
|
export * from "./json/parseJsonBody";
|
|
12
12
|
export * from "./query/AwsEc2QueryProtocol";
|
|
13
13
|
export * from "./query/AwsQueryProtocol";
|
|
14
|
+
export * from "./query/QuerySerializerSettings";
|
|
15
|
+
export * from "./query/QueryShapeSerializer";
|
|
14
16
|
export * from "./xml/AwsRestXmlProtocol";
|
|
15
17
|
export * from "./xml/XmlCodec";
|
|
16
18
|
export * from "./xml/XmlShapeDeserializer";
|
|
@@ -13,6 +13,10 @@ export declare class AwsEc2QueryProtocol extends AwsQueryProtocol {
|
|
|
13
13
|
xmlNamespace: string;
|
|
14
14
|
version: string;
|
|
15
15
|
});
|
|
16
|
+
/**
|
|
17
|
+
* @override
|
|
18
|
+
*/
|
|
19
|
+
getShapeId(): string;
|
|
16
20
|
/**
|
|
17
21
|
* EC2 Query reads XResponse.XResult instead of XResponse directly.
|
|
18
22
|
*/
|
|
@@ -11,6 +11,8 @@ export * from "./json/awsExpectUnion";
|
|
|
11
11
|
export * from "./json/parseJsonBody";
|
|
12
12
|
export * from "./query/AwsEc2QueryProtocol";
|
|
13
13
|
export * from "./query/AwsQueryProtocol";
|
|
14
|
+
export * from "./query/QuerySerializerSettings";
|
|
15
|
+
export * from "./query/QueryShapeSerializer";
|
|
14
16
|
export * from "./xml/AwsRestXmlProtocol";
|
|
15
17
|
export * from "./xml/XmlCodec";
|
|
16
18
|
export * from "./xml/XmlShapeDeserializer";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/core",
|
|
3
|
-
"version": "3.973.
|
|
3
|
+
"version": "3.973.19",
|
|
4
4
|
"description": "Core functions & classes shared by multiple AWS SDK clients.",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "yarn lint && concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
@@ -81,18 +81,18 @@
|
|
|
81
81
|
},
|
|
82
82
|
"license": "Apache-2.0",
|
|
83
83
|
"dependencies": {
|
|
84
|
-
"@aws-sdk/types": "^3.973.
|
|
85
|
-
"@aws-sdk/xml-builder": "^3.972.
|
|
86
|
-
"@smithy/core": "^3.23.
|
|
87
|
-
"@smithy/node-config-provider": "^4.3.
|
|
88
|
-
"@smithy/property-provider": "^4.2.
|
|
89
|
-
"@smithy/protocol-http": "^5.3.
|
|
90
|
-
"@smithy/signature-v4": "^5.3.
|
|
91
|
-
"@smithy/smithy-client": "^4.12.
|
|
84
|
+
"@aws-sdk/types": "^3.973.5",
|
|
85
|
+
"@aws-sdk/xml-builder": "^3.972.10",
|
|
86
|
+
"@smithy/core": "^3.23.9",
|
|
87
|
+
"@smithy/node-config-provider": "^4.3.11",
|
|
88
|
+
"@smithy/property-provider": "^4.2.11",
|
|
89
|
+
"@smithy/protocol-http": "^5.3.11",
|
|
90
|
+
"@smithy/signature-v4": "^5.3.11",
|
|
91
|
+
"@smithy/smithy-client": "^4.12.3",
|
|
92
92
|
"@smithy/types": "^4.13.0",
|
|
93
|
-
"@smithy/util-base64": "^4.3.
|
|
94
|
-
"@smithy/util-middleware": "^4.2.
|
|
95
|
-
"@smithy/util-utf8": "^4.2.
|
|
93
|
+
"@smithy/util-base64": "^4.3.2",
|
|
94
|
+
"@smithy/util-middleware": "^4.2.11",
|
|
95
|
+
"@smithy/util-utf8": "^4.2.2",
|
|
96
96
|
"tslib": "^2.6.2"
|
|
97
97
|
},
|
|
98
98
|
"devDependencies": {
|
|
@@ -106,7 +106,7 @@
|
|
|
106
106
|
"node": ">=20.0.0"
|
|
107
107
|
},
|
|
108
108
|
"typesVersions": {
|
|
109
|
-
"<4.
|
|
109
|
+
"<4.5": {
|
|
110
110
|
"dist-types/*": [
|
|
111
111
|
"dist-types/ts3.4/*"
|
|
112
112
|
]
|