@aws-sdk/client-docdb 3.583.0 → 3.588.0
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 +3 -3
- package/dist-es/protocols/Aws_query.js +4 -4
- package/package.json +19 -19
package/dist-cjs/index.js
CHANGED
|
@@ -4024,10 +4024,10 @@ var se_DescribeEventsMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
4024
4024
|
entries[_STo] = input[_STo];
|
|
4025
4025
|
}
|
|
4026
4026
|
if (input[_STt] != null) {
|
|
4027
|
-
entries[_STt] = input[_STt]
|
|
4027
|
+
entries[_STt] = (0, import_smithy_client.serializeDateTime)(input[_STt]);
|
|
4028
4028
|
}
|
|
4029
4029
|
if (input[_ET] != null) {
|
|
4030
|
-
entries[_ET] = input[_ET]
|
|
4030
|
+
entries[_ET] = (0, import_smithy_client.serializeDateTime)(input[_ET]);
|
|
4031
4031
|
}
|
|
4032
4032
|
if (input[_Du] != null) {
|
|
4033
4033
|
entries[_Du] = input[_Du];
|
|
@@ -4694,7 +4694,7 @@ var se_RestoreDBClusterToPointInTimeMessage = /* @__PURE__ */ __name((input, con
|
|
|
4694
4694
|
entries[_SDBCI] = input[_SDBCI];
|
|
4695
4695
|
}
|
|
4696
4696
|
if (input[_RTT] != null) {
|
|
4697
|
-
entries[_RTT] = input[_RTT]
|
|
4697
|
+
entries[_RTT] = (0, import_smithy_client.serializeDateTime)(input[_RTT]);
|
|
4698
4698
|
}
|
|
4699
4699
|
if (input[_ULRT] != null) {
|
|
4700
4700
|
entries[_ULRT] = input[_ULRT];
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { parseXmlBody as parseBody, parseXmlErrorBody as parseErrorBody } from "@aws-sdk/core";
|
|
2
2
|
import { HttpRequest as __HttpRequest } from "@smithy/protocol-http";
|
|
3
|
-
import { collectBody, decorateServiceException as __decorateServiceException, expectNonNull as __expectNonNull, expectString as __expectString, extendedEncodeURIComponent as __extendedEncodeURIComponent, getArrayIfSingleItem as __getArrayIfSingleItem, parseBoolean as __parseBoolean, parseRfc3339DateTimeWithOffset as __parseRfc3339DateTimeWithOffset, strictParseInt32 as __strictParseInt32, withBaseException, } from "@smithy/smithy-client";
|
|
3
|
+
import { collectBody, decorateServiceException as __decorateServiceException, expectNonNull as __expectNonNull, expectString as __expectString, extendedEncodeURIComponent as __extendedEncodeURIComponent, getArrayIfSingleItem as __getArrayIfSingleItem, parseBoolean as __parseBoolean, parseRfc3339DateTimeWithOffset as __parseRfc3339DateTimeWithOffset, serializeDateTime as __serializeDateTime, strictParseInt32 as __strictParseInt32, withBaseException, } from "@smithy/smithy-client";
|
|
4
4
|
import { DocDBServiceException as __BaseException } from "../models/DocDBServiceException";
|
|
5
5
|
import { AuthorizationNotFoundFault, CertificateNotFoundFault, DBClusterAlreadyExistsFault, DBClusterNotFoundFault, DBClusterParameterGroupNotFoundFault, DBClusterQuotaExceededFault, DBClusterSnapshotAlreadyExistsFault, DBClusterSnapshotNotFoundFault, DBInstanceAlreadyExistsFault, DBInstanceNotFoundFault, DBParameterGroupAlreadyExistsFault, DBParameterGroupNotFoundFault, DBParameterGroupQuotaExceededFault, DBSecurityGroupNotFoundFault, DBSnapshotAlreadyExistsFault, DBSnapshotNotFoundFault, DBSubnetGroupAlreadyExistsFault, DBSubnetGroupDoesNotCoverEnoughAZs, DBSubnetGroupNotFoundFault, DBSubnetGroupQuotaExceededFault, DBSubnetQuotaExceededFault, DBUpgradeDependencyFailureFault, EventSubscriptionQuotaExceededFault, GlobalClusterAlreadyExistsFault, GlobalClusterNotFoundFault, GlobalClusterQuotaExceededFault, InstanceQuotaExceededFault, InsufficientDBClusterCapacityFault, InsufficientDBInstanceCapacityFault, InsufficientStorageClusterCapacityFault, InvalidDBClusterSnapshotStateFault, InvalidDBClusterStateFault, InvalidDBInstanceStateFault, InvalidDBParameterGroupStateFault, InvalidDBSecurityGroupStateFault, InvalidDBSnapshotStateFault, InvalidDBSubnetGroupStateFault, InvalidDBSubnetStateFault, InvalidEventSubscriptionStateFault, InvalidGlobalClusterStateFault, InvalidRestoreFault, InvalidSubnet, InvalidVPCNetworkStateFault, KMSKeyNotAccessibleFault, ResourceNotFoundFault, SharedSnapshotQuotaExceededFault, SnapshotQuotaExceededFault, SNSInvalidTopicFault, SNSNoAuthorizationFault, SNSTopicArnNotFoundFault, SourceNotFoundFault, StorageQuotaExceededFault, StorageTypeNotSupportedFault, SubnetAlreadyInUse, SubscriptionAlreadyExistFault, SubscriptionCategoryNotFoundFault, SubscriptionNotFoundFault, } from "../models/models_0";
|
|
6
6
|
export const se_AddSourceIdentifierToSubscriptionCommand = async (input, context) => {
|
|
@@ -2687,10 +2687,10 @@ const se_DescribeEventsMessage = (input, context) => {
|
|
|
2687
2687
|
entries[_STo] = input[_STo];
|
|
2688
2688
|
}
|
|
2689
2689
|
if (input[_STt] != null) {
|
|
2690
|
-
entries[_STt] = input[_STt]
|
|
2690
|
+
entries[_STt] = __serializeDateTime(input[_STt]);
|
|
2691
2691
|
}
|
|
2692
2692
|
if (input[_ET] != null) {
|
|
2693
|
-
entries[_ET] = input[_ET]
|
|
2693
|
+
entries[_ET] = __serializeDateTime(input[_ET]);
|
|
2694
2694
|
}
|
|
2695
2695
|
if (input[_Du] != null) {
|
|
2696
2696
|
entries[_Du] = input[_Du];
|
|
@@ -3342,7 +3342,7 @@ const se_RestoreDBClusterToPointInTimeMessage = (input, context) => {
|
|
|
3342
3342
|
entries[_SDBCI] = input[_SDBCI];
|
|
3343
3343
|
}
|
|
3344
3344
|
if (input[_RTT] != null) {
|
|
3345
|
-
entries[_RTT] = input[_RTT]
|
|
3345
|
+
entries[_RTT] = __serializeDateTime(input[_RTT]);
|
|
3346
3346
|
}
|
|
3347
3347
|
if (input[_ULRT] != null) {
|
|
3348
3348
|
entries[_ULRT] = input[_ULRT];
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-docdb",
|
|
3
3
|
"description": "AWS SDK for JavaScript Docdb Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.588.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-docdb",
|
|
@@ -20,42 +20,42 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.588.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.588.0",
|
|
25
|
+
"@aws-sdk/core": "3.588.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.588.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.577.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.577.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.577.0",
|
|
30
|
-
"@aws-sdk/middleware-sdk-rds": "3.
|
|
31
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
32
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
+
"@aws-sdk/middleware-sdk-rds": "3.587.0",
|
|
31
|
+
"@aws-sdk/middleware-user-agent": "3.587.0",
|
|
32
|
+
"@aws-sdk/region-config-resolver": "3.587.0",
|
|
33
33
|
"@aws-sdk/types": "3.577.0",
|
|
34
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
+
"@aws-sdk/util-endpoints": "3.587.0",
|
|
35
35
|
"@aws-sdk/util-user-agent-browser": "3.577.0",
|
|
36
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
37
|
-
"@smithy/config-resolver": "^3.0.
|
|
38
|
-
"@smithy/core": "^2.
|
|
36
|
+
"@aws-sdk/util-user-agent-node": "3.587.0",
|
|
37
|
+
"@smithy/config-resolver": "^3.0.1",
|
|
38
|
+
"@smithy/core": "^2.1.1",
|
|
39
39
|
"@smithy/fetch-http-handler": "^3.0.1",
|
|
40
40
|
"@smithy/hash-node": "^3.0.0",
|
|
41
41
|
"@smithy/invalid-dependency": "^3.0.0",
|
|
42
42
|
"@smithy/middleware-content-length": "^3.0.0",
|
|
43
|
-
"@smithy/middleware-endpoint": "^3.0.
|
|
44
|
-
"@smithy/middleware-retry": "^3.0.
|
|
43
|
+
"@smithy/middleware-endpoint": "^3.0.1",
|
|
44
|
+
"@smithy/middleware-retry": "^3.0.3",
|
|
45
45
|
"@smithy/middleware-serde": "^3.0.0",
|
|
46
46
|
"@smithy/middleware-stack": "^3.0.0",
|
|
47
|
-
"@smithy/node-config-provider": "^3.
|
|
47
|
+
"@smithy/node-config-provider": "^3.1.0",
|
|
48
48
|
"@smithy/node-http-handler": "^3.0.0",
|
|
49
49
|
"@smithy/protocol-http": "^4.0.0",
|
|
50
|
-
"@smithy/smithy-client": "^3.
|
|
50
|
+
"@smithy/smithy-client": "^3.1.1",
|
|
51
51
|
"@smithy/types": "^3.0.0",
|
|
52
52
|
"@smithy/url-parser": "^3.0.0",
|
|
53
53
|
"@smithy/util-base64": "^3.0.0",
|
|
54
54
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
55
55
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
56
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
57
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
58
|
-
"@smithy/util-endpoints": "^2.0.
|
|
56
|
+
"@smithy/util-defaults-mode-browser": "^3.0.3",
|
|
57
|
+
"@smithy/util-defaults-mode-node": "^3.0.3",
|
|
58
|
+
"@smithy/util-endpoints": "^2.0.1",
|
|
59
59
|
"@smithy/util-middleware": "^3.0.0",
|
|
60
60
|
"@smithy/util-retry": "^3.0.0",
|
|
61
61
|
"@smithy/util-utf8": "^3.0.0",
|