@aws-sdk/client-emr-containers 3.121.0 → 3.124.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/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.124.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.123.0...v3.124.0) (2022-07-06)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **emr-containers:** set timestampeFormat for Date ([#3758](https://github.com/aws/aws-sdk-js-v3/issues/3758)) ([61df0f9](https://github.com/aws/aws-sdk-js-v3/commit/61df0f94b7f5924cbf63bc7fc75cb9d1d966f29d))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [3.121.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.120.0...v3.121.0) (2022-06-30)
|
|
7
18
|
|
|
8
19
|
|
|
@@ -1451,7 +1451,7 @@ const deserializeAws_restJson1Endpoint = (output, context) => {
|
|
|
1451
1451
|
? deserializeAws_restJson1ConfigurationOverrides(output.configurationOverrides, context)
|
|
1452
1452
|
: undefined,
|
|
1453
1453
|
createdAt: output.createdAt !== undefined && output.createdAt !== null
|
|
1454
|
-
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.
|
|
1454
|
+
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTime)(output.createdAt))
|
|
1455
1455
|
: undefined,
|
|
1456
1456
|
executionRoleArn: (0, smithy_client_1.expectString)(output.executionRoleArn),
|
|
1457
1457
|
failureReason: (0, smithy_client_1.expectString)(output.failureReason),
|
|
@@ -1509,13 +1509,13 @@ const deserializeAws_restJson1JobRun = (output, context) => {
|
|
|
1509
1509
|
? deserializeAws_restJson1ConfigurationOverrides(output.configurationOverrides, context)
|
|
1510
1510
|
: undefined,
|
|
1511
1511
|
createdAt: output.createdAt !== undefined && output.createdAt !== null
|
|
1512
|
-
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.
|
|
1512
|
+
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTime)(output.createdAt))
|
|
1513
1513
|
: undefined,
|
|
1514
1514
|
createdBy: (0, smithy_client_1.expectString)(output.createdBy),
|
|
1515
1515
|
executionRoleArn: (0, smithy_client_1.expectString)(output.executionRoleArn),
|
|
1516
1516
|
failureReason: (0, smithy_client_1.expectString)(output.failureReason),
|
|
1517
1517
|
finishedAt: output.finishedAt !== undefined && output.finishedAt !== null
|
|
1518
|
-
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.
|
|
1518
|
+
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTime)(output.finishedAt))
|
|
1519
1519
|
: undefined,
|
|
1520
1520
|
id: (0, smithy_client_1.expectString)(output.id),
|
|
1521
1521
|
jobDriver: output.jobDriver !== undefined && output.jobDriver !== null
|
|
@@ -1607,7 +1607,7 @@ const deserializeAws_restJson1VirtualCluster = (output, context) => {
|
|
|
1607
1607
|
? deserializeAws_restJson1ContainerProvider(output.containerProvider, context)
|
|
1608
1608
|
: undefined,
|
|
1609
1609
|
createdAt: output.createdAt !== undefined && output.createdAt !== null
|
|
1610
|
-
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.
|
|
1610
|
+
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTime)(output.createdAt))
|
|
1611
1611
|
: undefined,
|
|
1612
1612
|
id: (0, smithy_client_1.expectString)(output.id),
|
|
1613
1613
|
name: (0, smithy_client_1.expectString)(output.name),
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { __assign, __awaiter, __generator, __read } from "tslib";
|
|
2
2
|
import { HttpRequest as __HttpRequest } from "@aws-sdk/protocol-http";
|
|
3
|
-
import { decorateServiceException as __decorateServiceException, expectNonNull as __expectNonNull,
|
|
3
|
+
import { decorateServiceException as __decorateServiceException, expectNonNull as __expectNonNull, expectObject as __expectObject, expectString as __expectString, expectUnion as __expectUnion, extendedEncodeURIComponent as __extendedEncodeURIComponent, parseRfc3339DateTime as __parseRfc3339DateTime, } from "@aws-sdk/smithy-client";
|
|
4
4
|
import { v4 as generateIdempotencyToken } from "uuid";
|
|
5
5
|
import { EMRContainersServiceException as __BaseException } from "../models/EMRContainersServiceException";
|
|
6
6
|
import { ContainerInfo, InternalServerException, ResourceNotFoundException, ValidationException, } from "../models/models_0";
|
|
@@ -1751,7 +1751,7 @@ var deserializeAws_restJson1Endpoint = function (output, context) {
|
|
|
1751
1751
|
? deserializeAws_restJson1ConfigurationOverrides(output.configurationOverrides, context)
|
|
1752
1752
|
: undefined,
|
|
1753
1753
|
createdAt: output.createdAt !== undefined && output.createdAt !== null
|
|
1754
|
-
? __expectNonNull(
|
|
1754
|
+
? __expectNonNull(__parseRfc3339DateTime(output.createdAt))
|
|
1755
1755
|
: undefined,
|
|
1756
1756
|
executionRoleArn: __expectString(output.executionRoleArn),
|
|
1757
1757
|
failureReason: __expectString(output.failureReason),
|
|
@@ -1809,13 +1809,13 @@ var deserializeAws_restJson1JobRun = function (output, context) {
|
|
|
1809
1809
|
? deserializeAws_restJson1ConfigurationOverrides(output.configurationOverrides, context)
|
|
1810
1810
|
: undefined,
|
|
1811
1811
|
createdAt: output.createdAt !== undefined && output.createdAt !== null
|
|
1812
|
-
? __expectNonNull(
|
|
1812
|
+
? __expectNonNull(__parseRfc3339DateTime(output.createdAt))
|
|
1813
1813
|
: undefined,
|
|
1814
1814
|
createdBy: __expectString(output.createdBy),
|
|
1815
1815
|
executionRoleArn: __expectString(output.executionRoleArn),
|
|
1816
1816
|
failureReason: __expectString(output.failureReason),
|
|
1817
1817
|
finishedAt: output.finishedAt !== undefined && output.finishedAt !== null
|
|
1818
|
-
? __expectNonNull(
|
|
1818
|
+
? __expectNonNull(__parseRfc3339DateTime(output.finishedAt))
|
|
1819
1819
|
: undefined,
|
|
1820
1820
|
id: __expectString(output.id),
|
|
1821
1821
|
jobDriver: output.jobDriver !== undefined && output.jobDriver !== null
|
|
@@ -1905,7 +1905,7 @@ var deserializeAws_restJson1VirtualCluster = function (output, context) {
|
|
|
1905
1905
|
? deserializeAws_restJson1ContainerProvider(output.containerProvider, context)
|
|
1906
1906
|
: undefined,
|
|
1907
1907
|
createdAt: output.createdAt !== undefined && output.createdAt !== null
|
|
1908
|
-
? __expectNonNull(
|
|
1908
|
+
? __expectNonNull(__parseRfc3339DateTime(output.createdAt))
|
|
1909
1909
|
: undefined,
|
|
1910
1910
|
id: __expectString(output.id),
|
|
1911
1911
|
name: __expectString(output.name),
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-emr-containers",
|
|
3
3
|
"description": "AWS SDK for JavaScript Emr Containers Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.124.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",
|