@aws-sdk/client-chime-sdk-media-pipelines 3.259.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.
|
@@ -1515,7 +1515,9 @@ const deserializeAws_restJson1MediaCapturePipeline = (output, context) => {
|
|
|
1515
1515
|
ChimeSdkMeetingConfiguration: output.ChimeSdkMeetingConfiguration != null
|
|
1516
1516
|
? deserializeAws_restJson1ChimeSdkMeetingConfiguration(output.ChimeSdkMeetingConfiguration, context)
|
|
1517
1517
|
: undefined,
|
|
1518
|
-
CreatedTimestamp: output.CreatedTimestamp != null
|
|
1518
|
+
CreatedTimestamp: output.CreatedTimestamp != null
|
|
1519
|
+
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(output.CreatedTimestamp))
|
|
1520
|
+
: undefined,
|
|
1519
1521
|
MediaPipelineArn: (0, smithy_client_1.expectString)(output.MediaPipelineArn),
|
|
1520
1522
|
MediaPipelineId: (0, smithy_client_1.expectString)(output.MediaPipelineId),
|
|
1521
1523
|
SinkArn: (0, smithy_client_1.expectString)(output.SinkArn),
|
|
@@ -1523,7 +1525,9 @@ const deserializeAws_restJson1MediaCapturePipeline = (output, context) => {
|
|
|
1523
1525
|
SourceArn: (0, smithy_client_1.expectString)(output.SourceArn),
|
|
1524
1526
|
SourceType: (0, smithy_client_1.expectString)(output.SourceType),
|
|
1525
1527
|
Status: (0, smithy_client_1.expectString)(output.Status),
|
|
1526
|
-
UpdatedTimestamp: output.UpdatedTimestamp != null
|
|
1528
|
+
UpdatedTimestamp: output.UpdatedTimestamp != null
|
|
1529
|
+
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(output.UpdatedTimestamp))
|
|
1530
|
+
: undefined,
|
|
1527
1531
|
};
|
|
1528
1532
|
};
|
|
1529
1533
|
const deserializeAws_restJson1MediaCapturePipelineSourceConfiguration = (output, context) => {
|
|
@@ -1553,24 +1557,32 @@ const deserializeAws_restJson1MediaCapturePipelineSummaryList = (output, context
|
|
|
1553
1557
|
};
|
|
1554
1558
|
const deserializeAws_restJson1MediaConcatenationPipeline = (output, context) => {
|
|
1555
1559
|
return {
|
|
1556
|
-
CreatedTimestamp: output.CreatedTimestamp != null
|
|
1560
|
+
CreatedTimestamp: output.CreatedTimestamp != null
|
|
1561
|
+
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(output.CreatedTimestamp))
|
|
1562
|
+
: undefined,
|
|
1557
1563
|
MediaPipelineArn: (0, smithy_client_1.expectString)(output.MediaPipelineArn),
|
|
1558
1564
|
MediaPipelineId: (0, smithy_client_1.expectString)(output.MediaPipelineId),
|
|
1559
1565
|
Sinks: output.Sinks != null ? deserializeAws_restJson1ConcatenationSinkList(output.Sinks, context) : undefined,
|
|
1560
1566
|
Sources: output.Sources != null ? deserializeAws_restJson1ConcatenationSourceList(output.Sources, context) : undefined,
|
|
1561
1567
|
Status: (0, smithy_client_1.expectString)(output.Status),
|
|
1562
|
-
UpdatedTimestamp: output.UpdatedTimestamp != null
|
|
1568
|
+
UpdatedTimestamp: output.UpdatedTimestamp != null
|
|
1569
|
+
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(output.UpdatedTimestamp))
|
|
1570
|
+
: undefined,
|
|
1563
1571
|
};
|
|
1564
1572
|
};
|
|
1565
1573
|
const deserializeAws_restJson1MediaLiveConnectorPipeline = (output, context) => {
|
|
1566
1574
|
return {
|
|
1567
|
-
CreatedTimestamp: output.CreatedTimestamp != null
|
|
1575
|
+
CreatedTimestamp: output.CreatedTimestamp != null
|
|
1576
|
+
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(output.CreatedTimestamp))
|
|
1577
|
+
: undefined,
|
|
1568
1578
|
MediaPipelineArn: (0, smithy_client_1.expectString)(output.MediaPipelineArn),
|
|
1569
1579
|
MediaPipelineId: (0, smithy_client_1.expectString)(output.MediaPipelineId),
|
|
1570
1580
|
Sinks: output.Sinks != null ? deserializeAws_restJson1LiveConnectorSinkList(output.Sinks, context) : undefined,
|
|
1571
1581
|
Sources: output.Sources != null ? deserializeAws_restJson1LiveConnectorSourceList(output.Sources, context) : undefined,
|
|
1572
1582
|
Status: (0, smithy_client_1.expectString)(output.Status),
|
|
1573
|
-
UpdatedTimestamp: output.UpdatedTimestamp != null
|
|
1583
|
+
UpdatedTimestamp: output.UpdatedTimestamp != null
|
|
1584
|
+
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(output.UpdatedTimestamp))
|
|
1585
|
+
: undefined,
|
|
1574
1586
|
};
|
|
1575
1587
|
};
|
|
1576
1588
|
const deserializeAws_restJson1MediaPipeline = (output, context) => {
|
|
@@ -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, resolvedPath as __resolvedPath, throwDefaultError, } from "@aws-sdk/smithy-client";
|
|
3
3
|
import { v4 as generateIdempotencyToken } from "uuid";
|
|
4
4
|
import { ChimeSDKMediaPipelinesServiceException as __BaseException } from "../models/ChimeSDKMediaPipelinesServiceException";
|
|
5
5
|
import { BadRequestException, ForbiddenException, NotFoundException, ResourceLimitExceededException, ServiceFailureException, ServiceUnavailableException, ThrottledClientException, UnauthorizedClientException, } from "../models/models_0";
|
|
@@ -1488,7 +1488,9 @@ const deserializeAws_restJson1MediaCapturePipeline = (output, context) => {
|
|
|
1488
1488
|
ChimeSdkMeetingConfiguration: output.ChimeSdkMeetingConfiguration != null
|
|
1489
1489
|
? deserializeAws_restJson1ChimeSdkMeetingConfiguration(output.ChimeSdkMeetingConfiguration, context)
|
|
1490
1490
|
: undefined,
|
|
1491
|
-
CreatedTimestamp: output.CreatedTimestamp != null
|
|
1491
|
+
CreatedTimestamp: output.CreatedTimestamp != null
|
|
1492
|
+
? __expectNonNull(__parseRfc3339DateTimeWithOffset(output.CreatedTimestamp))
|
|
1493
|
+
: undefined,
|
|
1492
1494
|
MediaPipelineArn: __expectString(output.MediaPipelineArn),
|
|
1493
1495
|
MediaPipelineId: __expectString(output.MediaPipelineId),
|
|
1494
1496
|
SinkArn: __expectString(output.SinkArn),
|
|
@@ -1496,7 +1498,9 @@ const deserializeAws_restJson1MediaCapturePipeline = (output, context) => {
|
|
|
1496
1498
|
SourceArn: __expectString(output.SourceArn),
|
|
1497
1499
|
SourceType: __expectString(output.SourceType),
|
|
1498
1500
|
Status: __expectString(output.Status),
|
|
1499
|
-
UpdatedTimestamp: output.UpdatedTimestamp != null
|
|
1501
|
+
UpdatedTimestamp: output.UpdatedTimestamp != null
|
|
1502
|
+
? __expectNonNull(__parseRfc3339DateTimeWithOffset(output.UpdatedTimestamp))
|
|
1503
|
+
: undefined,
|
|
1500
1504
|
};
|
|
1501
1505
|
};
|
|
1502
1506
|
const deserializeAws_restJson1MediaCapturePipelineSourceConfiguration = (output, context) => {
|
|
@@ -1526,24 +1530,32 @@ const deserializeAws_restJson1MediaCapturePipelineSummaryList = (output, context
|
|
|
1526
1530
|
};
|
|
1527
1531
|
const deserializeAws_restJson1MediaConcatenationPipeline = (output, context) => {
|
|
1528
1532
|
return {
|
|
1529
|
-
CreatedTimestamp: output.CreatedTimestamp != null
|
|
1533
|
+
CreatedTimestamp: output.CreatedTimestamp != null
|
|
1534
|
+
? __expectNonNull(__parseRfc3339DateTimeWithOffset(output.CreatedTimestamp))
|
|
1535
|
+
: undefined,
|
|
1530
1536
|
MediaPipelineArn: __expectString(output.MediaPipelineArn),
|
|
1531
1537
|
MediaPipelineId: __expectString(output.MediaPipelineId),
|
|
1532
1538
|
Sinks: output.Sinks != null ? deserializeAws_restJson1ConcatenationSinkList(output.Sinks, context) : undefined,
|
|
1533
1539
|
Sources: output.Sources != null ? deserializeAws_restJson1ConcatenationSourceList(output.Sources, context) : undefined,
|
|
1534
1540
|
Status: __expectString(output.Status),
|
|
1535
|
-
UpdatedTimestamp: output.UpdatedTimestamp != null
|
|
1541
|
+
UpdatedTimestamp: output.UpdatedTimestamp != null
|
|
1542
|
+
? __expectNonNull(__parseRfc3339DateTimeWithOffset(output.UpdatedTimestamp))
|
|
1543
|
+
: undefined,
|
|
1536
1544
|
};
|
|
1537
1545
|
};
|
|
1538
1546
|
const deserializeAws_restJson1MediaLiveConnectorPipeline = (output, context) => {
|
|
1539
1547
|
return {
|
|
1540
|
-
CreatedTimestamp: output.CreatedTimestamp != null
|
|
1548
|
+
CreatedTimestamp: output.CreatedTimestamp != null
|
|
1549
|
+
? __expectNonNull(__parseRfc3339DateTimeWithOffset(output.CreatedTimestamp))
|
|
1550
|
+
: undefined,
|
|
1541
1551
|
MediaPipelineArn: __expectString(output.MediaPipelineArn),
|
|
1542
1552
|
MediaPipelineId: __expectString(output.MediaPipelineId),
|
|
1543
1553
|
Sinks: output.Sinks != null ? deserializeAws_restJson1LiveConnectorSinkList(output.Sinks, context) : undefined,
|
|
1544
1554
|
Sources: output.Sources != null ? deserializeAws_restJson1LiveConnectorSourceList(output.Sources, context) : undefined,
|
|
1545
1555
|
Status: __expectString(output.Status),
|
|
1546
|
-
UpdatedTimestamp: output.UpdatedTimestamp != null
|
|
1556
|
+
UpdatedTimestamp: output.UpdatedTimestamp != null
|
|
1557
|
+
? __expectNonNull(__parseRfc3339DateTimeWithOffset(output.UpdatedTimestamp))
|
|
1558
|
+
: undefined,
|
|
1547
1559
|
};
|
|
1548
1560
|
};
|
|
1549
1561
|
const deserializeAws_restJson1MediaPipeline = (output, context) => {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-chime-sdk-media-pipelines",
|
|
3
3
|
"description": "AWS SDK for JavaScript Chime Sdk Media Pipelines 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,9 +20,9 @@
|
|
|
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
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.261.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",
|
|
@@ -39,14 +39,14 @@
|
|
|
39
39
|
"@aws-sdk/node-config-provider": "3.259.0",
|
|
40
40
|
"@aws-sdk/node-http-handler": "3.257.0",
|
|
41
41
|
"@aws-sdk/protocol-http": "3.257.0",
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
42
|
+
"@aws-sdk/smithy-client": "3.261.0",
|
|
43
43
|
"@aws-sdk/types": "3.257.0",
|
|
44
44
|
"@aws-sdk/url-parser": "3.257.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.208.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.261.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.261.0",
|
|
50
50
|
"@aws-sdk/util-endpoints": "3.257.0",
|
|
51
51
|
"@aws-sdk/util-retry": "3.257.0",
|
|
52
52
|
"@aws-sdk/util-user-agent-browser": "3.257.0",
|