@aws-sdk/client-route-53 3.261.0 → 3.264.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.
|
@@ -6212,7 +6212,7 @@ const deserializeAws_restXmlChangeInfo = (output, context) => {
|
|
|
6212
6212
|
contents.Status = (0, smithy_client_1.expectString)(output["Status"]);
|
|
6213
6213
|
}
|
|
6214
6214
|
if (output["SubmittedAt"] !== undefined) {
|
|
6215
|
-
contents.SubmittedAt = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.
|
|
6215
|
+
contents.SubmittedAt = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(output["SubmittedAt"]));
|
|
6216
6216
|
}
|
|
6217
6217
|
if (output["Comment"] !== undefined) {
|
|
6218
6218
|
contents.Comment = (0, smithy_client_1.expectString)(output["Comment"]);
|
|
@@ -6794,10 +6794,10 @@ const deserializeAws_restXmlKeySigningKey = (output, context) => {
|
|
|
6794
6794
|
contents.StatusMessage = (0, smithy_client_1.expectString)(output["StatusMessage"]);
|
|
6795
6795
|
}
|
|
6796
6796
|
if (output["CreatedDate"] !== undefined) {
|
|
6797
|
-
contents.CreatedDate = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.
|
|
6797
|
+
contents.CreatedDate = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(output["CreatedDate"]));
|
|
6798
6798
|
}
|
|
6799
6799
|
if (output["LastModifiedDate"] !== undefined) {
|
|
6800
|
-
contents.LastModifiedDate = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.
|
|
6800
|
+
contents.LastModifiedDate = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(output["LastModifiedDate"]));
|
|
6801
6801
|
}
|
|
6802
6802
|
return contents;
|
|
6803
6803
|
};
|
|
@@ -7004,7 +7004,7 @@ const deserializeAws_restXmlStatusReport = (output, context) => {
|
|
|
7004
7004
|
contents.Status = (0, smithy_client_1.expectString)(output["Status"]);
|
|
7005
7005
|
}
|
|
7006
7006
|
if (output["CheckedTime"] !== undefined) {
|
|
7007
|
-
contents.CheckedTime = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.
|
|
7007
|
+
contents.CheckedTime = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(output["CheckedTime"]));
|
|
7008
7008
|
}
|
|
7009
7009
|
return contents;
|
|
7010
7010
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { HttpRequest as __HttpRequest } from "@aws-sdk/protocol-http";
|
|
2
|
-
import { decorateServiceException as __decorateServiceException, expectNonNull as __expectNonNull, expectObject as __expectObject, expectString as __expectString, getArrayIfSingleItem as __getArrayIfSingleItem, getValueFromTextNode as __getValueFromTextNode, map as __map, parseBoolean as __parseBoolean,
|
|
2
|
+
import { decorateServiceException as __decorateServiceException, expectNonNull as __expectNonNull, expectObject as __expectObject, expectString as __expectString, getArrayIfSingleItem as __getArrayIfSingleItem, getValueFromTextNode as __getValueFromTextNode, map as __map, parseBoolean as __parseBoolean, parseRfc3339DateTimeWithOffset as __parseRfc3339DateTimeWithOffset, resolvedPath as __resolvedPath, strictParseFloat as __strictParseFloat, strictParseInt32 as __strictParseInt32, strictParseLong as __strictParseLong, throwDefaultError, } from "@aws-sdk/smithy-client";
|
|
3
3
|
import { XmlNode as __XmlNode } from "@aws-sdk/xml-builder";
|
|
4
4
|
import { XMLParser } from "fast-xml-parser";
|
|
5
5
|
import { CidrBlockInUseException, CidrCollectionAlreadyExistsException, CidrCollectionInUseException, CidrCollectionVersionMismatchException, ConcurrentModification, ConflictingDomainExists, ConflictingTypes, DelegationSetAlreadyCreated, DelegationSetAlreadyReusable, DelegationSetInUse, DelegationSetNotAvailable, DelegationSetNotReusable, DNSSECNotFound, HealthCheckAlreadyExists, HealthCheckInUse, HealthCheckVersionMismatch, HostedZoneAlreadyExists, HostedZoneNotEmpty, HostedZoneNotFound, HostedZoneNotPrivate, HostedZonePartiallyDelegated, IncompatibleVersion, InsufficientCloudWatchLogsResourcePolicy, InvalidArgument, InvalidChangeBatch, InvalidDomainName, InvalidInput, InvalidKeySigningKeyName, InvalidKeySigningKeyStatus, InvalidKMSArn, InvalidPaginationToken, InvalidSigningStatus, InvalidTrafficPolicyDocument, InvalidVPCId, KeySigningKeyAlreadyExists, KeySigningKeyInParentDSRecord, KeySigningKeyInUse, KeySigningKeyWithActiveStatusNotFound, LastVPCAssociation, LimitsExceeded, NoSuchChange, NoSuchCidrCollectionException, NoSuchCidrLocationException, NoSuchCloudWatchLogsLogGroup, NoSuchDelegationSet, NoSuchGeoLocation, NoSuchHealthCheck, NoSuchHostedZone, NoSuchKeySigningKey, NoSuchQueryLoggingConfig, NoSuchTrafficPolicy, NoSuchTrafficPolicyInstance, NotAuthorizedException, PriorRequestNotComplete, PublicZoneVPCAssociation, QueryLoggingConfigAlreadyExists, ThrottlingException, TooManyHealthChecks, TooManyHostedZones, TooManyKeySigningKeys, TooManyTrafficPolicies, TooManyTrafficPolicyInstances, TooManyTrafficPolicyVersionsForCurrentPolicy, TooManyVPCAssociationAuthorizations, TrafficPolicyAlreadyExists, TrafficPolicyInstanceAlreadyExists, TrafficPolicyInUse, VPCAssociationAuthorizationNotFound, VPCAssociationNotFound, } from "../models/models_0";
|
|
@@ -6067,7 +6067,7 @@ const deserializeAws_restXmlChangeInfo = (output, context) => {
|
|
|
6067
6067
|
contents.Status = __expectString(output["Status"]);
|
|
6068
6068
|
}
|
|
6069
6069
|
if (output["SubmittedAt"] !== undefined) {
|
|
6070
|
-
contents.SubmittedAt = __expectNonNull(
|
|
6070
|
+
contents.SubmittedAt = __expectNonNull(__parseRfc3339DateTimeWithOffset(output["SubmittedAt"]));
|
|
6071
6071
|
}
|
|
6072
6072
|
if (output["Comment"] !== undefined) {
|
|
6073
6073
|
contents.Comment = __expectString(output["Comment"]);
|
|
@@ -6649,10 +6649,10 @@ const deserializeAws_restXmlKeySigningKey = (output, context) => {
|
|
|
6649
6649
|
contents.StatusMessage = __expectString(output["StatusMessage"]);
|
|
6650
6650
|
}
|
|
6651
6651
|
if (output["CreatedDate"] !== undefined) {
|
|
6652
|
-
contents.CreatedDate = __expectNonNull(
|
|
6652
|
+
contents.CreatedDate = __expectNonNull(__parseRfc3339DateTimeWithOffset(output["CreatedDate"]));
|
|
6653
6653
|
}
|
|
6654
6654
|
if (output["LastModifiedDate"] !== undefined) {
|
|
6655
|
-
contents.LastModifiedDate = __expectNonNull(
|
|
6655
|
+
contents.LastModifiedDate = __expectNonNull(__parseRfc3339DateTimeWithOffset(output["LastModifiedDate"]));
|
|
6656
6656
|
}
|
|
6657
6657
|
return contents;
|
|
6658
6658
|
};
|
|
@@ -6859,7 +6859,7 @@ const deserializeAws_restXmlStatusReport = (output, context) => {
|
|
|
6859
6859
|
contents.Status = __expectString(output["Status"]);
|
|
6860
6860
|
}
|
|
6861
6861
|
if (output["CheckedTime"] !== undefined) {
|
|
6862
|
-
contents.CheckedTime = __expectNonNull(
|
|
6862
|
+
contents.CheckedTime = __expectNonNull(__parseRfc3339DateTimeWithOffset(output["CheckedTime"]));
|
|
6863
6863
|
}
|
|
6864
6864
|
return contents;
|
|
6865
6865
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-route-53",
|
|
3
3
|
"description": "AWS SDK for JavaScript Route 53 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.264.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,14 +20,14 @@
|
|
|
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-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.264.0",
|
|
24
24
|
"@aws-sdk/config-resolver": "3.259.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.264.0",
|
|
26
26
|
"@aws-sdk/fetch-http-handler": "3.257.0",
|
|
27
27
|
"@aws-sdk/hash-node": "3.257.0",
|
|
28
28
|
"@aws-sdk/invalid-dependency": "3.257.0",
|
|
29
29
|
"@aws-sdk/middleware-content-length": "3.257.0",
|
|
30
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.264.0",
|
|
31
31
|
"@aws-sdk/middleware-host-header": "3.257.0",
|
|
32
32
|
"@aws-sdk/middleware-logger": "3.257.0",
|
|
33
33
|
"@aws-sdk/middleware-recursion-detection": "3.257.0",
|