@aws-sdk/client-controltower 3.261.0 → 3.262.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.
|
@@ -390,9 +390,9 @@ const deserializeAws_restJson1ValidationExceptionResponse = async (parsedOutput,
|
|
|
390
390
|
};
|
|
391
391
|
const deserializeAws_restJson1ControlOperation = (output, context) => {
|
|
392
392
|
return {
|
|
393
|
-
endTime: output.endTime != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.
|
|
393
|
+
endTime: output.endTime != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(output.endTime)) : undefined,
|
|
394
394
|
operationType: (0, smithy_client_1.expectString)(output.operationType),
|
|
395
|
-
startTime: output.startTime != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.
|
|
395
|
+
startTime: output.startTime != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(output.startTime)) : undefined,
|
|
396
396
|
status: (0, smithy_client_1.expectString)(output.status),
|
|
397
397
|
statusMessage: (0, smithy_client_1.expectString)(output.statusMessage),
|
|
398
398
|
};
|
|
@@ -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, map as __map,
|
|
2
|
+
import { decorateServiceException as __decorateServiceException, expectNonNull as __expectNonNull, expectObject as __expectObject, expectString as __expectString, map as __map, parseRfc3339DateTimeWithOffset as __parseRfc3339DateTimeWithOffset, strictParseInt32 as __strictParseInt32, throwDefaultError, } from "@aws-sdk/smithy-client";
|
|
3
3
|
import { ControlTowerServiceException as __BaseException } from "../models/ControlTowerServiceException";
|
|
4
4
|
import { AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, } from "../models/models_0";
|
|
5
5
|
export const serializeAws_restJson1DisableControlCommand = async (input, context) => {
|
|
@@ -379,9 +379,9 @@ const deserializeAws_restJson1ValidationExceptionResponse = async (parsedOutput,
|
|
|
379
379
|
};
|
|
380
380
|
const deserializeAws_restJson1ControlOperation = (output, context) => {
|
|
381
381
|
return {
|
|
382
|
-
endTime: output.endTime != null ? __expectNonNull(
|
|
382
|
+
endTime: output.endTime != null ? __expectNonNull(__parseRfc3339DateTimeWithOffset(output.endTime)) : undefined,
|
|
383
383
|
operationType: __expectString(output.operationType),
|
|
384
|
-
startTime: output.startTime != null ? __expectNonNull(
|
|
384
|
+
startTime: output.startTime != null ? __expectNonNull(__parseRfc3339DateTimeWithOffset(output.startTime)) : undefined,
|
|
385
385
|
status: __expectString(output.status),
|
|
386
386
|
statusMessage: __expectString(output.statusMessage),
|
|
387
387
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-controltower",
|
|
3
3
|
"description": "AWS SDK for JavaScript Controltower Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.262.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,7 +20,7 @@
|
|
|
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.262.0",
|
|
24
24
|
"@aws-sdk/config-resolver": "3.259.0",
|
|
25
25
|
"@aws-sdk/credential-provider-node": "3.261.0",
|
|
26
26
|
"@aws-sdk/fetch-http-handler": "3.257.0",
|