@aws-sdk/client-medialive 3.913.0 → 3.915.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/README.md +24 -0
- package/dist-cjs/endpoint/ruleset.js +1 -1
- package/dist-cjs/index.js +260 -32
- package/dist-es/MediaLive.js +6 -0
- package/dist-es/commands/ListAlertsCommand.js +22 -0
- package/dist-es/commands/ListClusterAlertsCommand.js +22 -0
- package/dist-es/commands/ListMultiplexAlertsCommand.js +22 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/endpoint/ruleset.js +1 -1
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +12 -24
- package/dist-es/models/models_1.js +24 -4
- package/dist-es/models/models_2.js +4 -0
- package/dist-es/models/models_3.js +1 -0
- package/dist-es/pagination/ListAlertsPaginator.js +4 -0
- package/dist-es/pagination/ListClusterAlertsPaginator.js +4 -0
- package/dist-es/pagination/ListMultiplexAlertsPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/protocols/Aws_restJson1.js +151 -4
- package/dist-types/MediaLive.d.ts +21 -0
- package/dist-types/MediaLiveClient.d.ts +5 -2
- package/dist-types/commands/BatchDeleteCommand.d.ts +1 -1
- package/dist-types/commands/ListAlertsCommand.d.ts +109 -0
- package/dist-types/commands/ListClusterAlertsCommand.d.ts +110 -0
- package/dist-types/commands/ListMultiplexAlertsCommand.d.ts +109 -0
- package/dist-types/commands/UpdateReservationCommand.d.ts +2 -1
- package/dist-types/commands/UpdateSdiSourceCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +164 -72
- package/dist-types/models/models_1.d.ts +73 -116
- package/dist-types/models/models_2.d.ts +243 -50
- package/dist-types/models/models_3.d.ts +50 -0
- package/dist-types/pagination/ListAlertsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListClusterAlertsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListMultiplexAlertsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
- package/dist-types/ts3.4/MediaLive.d.ts +51 -0
- package/dist-types/ts3.4/MediaLiveClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/BatchDeleteCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAlertsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListClusterAlertsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListMultiplexAlertsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateReservationCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/UpdateSdiSourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +46 -35
- package/dist-types/ts3.4/models/models_1.d.ts +35 -38
- package/dist-types/ts3.4/models/models_2.d.ts +67 -13
- package/dist-types/ts3.4/models/models_3.d.ts +14 -0
- package/dist-types/ts3.4/pagination/ListAlertsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListClusterAlertsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListMultiplexAlertsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
- package/package.json +35 -35
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_ListAlertsCommand, se_ListAlertsCommand } from "../protocols/Aws_restJson1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class ListAlertsCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("MediaLive", "ListAlerts", {})
|
|
17
|
+
.n("MediaLiveClient", "ListAlertsCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_ListAlertsCommand)
|
|
20
|
+
.de(de_ListAlertsCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_ListClusterAlertsCommand, se_ListClusterAlertsCommand } from "../protocols/Aws_restJson1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class ListClusterAlertsCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("MediaLive", "ListClusterAlerts", {})
|
|
17
|
+
.n("MediaLiveClient", "ListClusterAlertsCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_ListClusterAlertsCommand)
|
|
20
|
+
.de(de_ListClusterAlertsCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_ListMultiplexAlertsCommand, se_ListMultiplexAlertsCommand } from "../protocols/Aws_restJson1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class ListMultiplexAlertsCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("MediaLive", "ListMultiplexAlerts", {})
|
|
17
|
+
.n("MediaLiveClient", "ListMultiplexAlertsCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_ListMultiplexAlertsCommand)
|
|
20
|
+
.de(de_ListMultiplexAlertsCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -63,10 +63,12 @@ export * from "./GetCloudWatchAlarmTemplateGroupCommand";
|
|
|
63
63
|
export * from "./GetEventBridgeRuleTemplateCommand";
|
|
64
64
|
export * from "./GetEventBridgeRuleTemplateGroupCommand";
|
|
65
65
|
export * from "./GetSignalMapCommand";
|
|
66
|
+
export * from "./ListAlertsCommand";
|
|
66
67
|
export * from "./ListChannelPlacementGroupsCommand";
|
|
67
68
|
export * from "./ListChannelsCommand";
|
|
68
69
|
export * from "./ListCloudWatchAlarmTemplateGroupsCommand";
|
|
69
70
|
export * from "./ListCloudWatchAlarmTemplatesCommand";
|
|
71
|
+
export * from "./ListClusterAlertsCommand";
|
|
70
72
|
export * from "./ListClustersCommand";
|
|
71
73
|
export * from "./ListEventBridgeRuleTemplateGroupsCommand";
|
|
72
74
|
export * from "./ListEventBridgeRuleTemplatesCommand";
|
|
@@ -74,6 +76,7 @@ export * from "./ListInputDeviceTransfersCommand";
|
|
|
74
76
|
export * from "./ListInputDevicesCommand";
|
|
75
77
|
export * from "./ListInputSecurityGroupsCommand";
|
|
76
78
|
export * from "./ListInputsCommand";
|
|
79
|
+
export * from "./ListMultiplexAlertsCommand";
|
|
77
80
|
export * from "./ListMultiplexProgramsCommand";
|
|
78
81
|
export * from "./ListMultiplexesCommand";
|
|
79
82
|
export * from "./ListNetworksCommand";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
const s = "required", t = "fn", u = "argv", v = "ref";
|
|
2
|
-
const a = true, b = "isSet", c = "booleanEquals", d = "error", e = "endpoint", f = "tree", g = "PartitionResult", h = { [s]: false, "type": "
|
|
2
|
+
const a = true, b = "isSet", c = "booleanEquals", d = "error", e = "endpoint", f = "tree", g = "PartitionResult", h = { [s]: false, "type": "string" }, i = { [s]: true, "default": false, "type": "boolean" }, j = { [v]: "Endpoint" }, k = { [t]: c, [u]: [{ [v]: "UseFIPS" }, true] }, l = { [t]: c, [u]: [{ [v]: "UseDualStack" }, true] }, m = {}, n = { [t]: "getAttr", [u]: [{ [v]: g }, "supportsFIPS"] }, o = { [t]: c, [u]: [true, { [t]: "getAttr", [u]: [{ [v]: g }, "supportsDualStack"] }] }, p = [k], q = [l], r = [{ [v]: "Region" }];
|
|
3
3
|
const _data = { version: "1.0", parameters: { Region: h, UseDualStack: i, UseFIPS: i, Endpoint: h }, rules: [{ conditions: [{ [t]: b, [u]: [j] }], rules: [{ conditions: p, error: "Invalid Configuration: FIPS and custom endpoint are not supported", type: d }, { conditions: q, error: "Invalid Configuration: Dualstack and custom endpoint are not supported", type: d }, { endpoint: { url: j, properties: m, headers: m }, type: e }], type: f }, { conditions: [{ [t]: b, [u]: r }], rules: [{ conditions: [{ [t]: "aws.partition", [u]: r, assign: g }], rules: [{ conditions: [k, l], rules: [{ conditions: [{ [t]: c, [u]: [a, n] }, o], rules: [{ endpoint: { url: "https://medialive-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: m, headers: m }, type: e }], type: f }, { error: "FIPS and DualStack are enabled, but this partition does not support one or both", type: d }], type: f }, { conditions: p, rules: [{ conditions: [{ [t]: c, [u]: [n, a] }], rules: [{ endpoint: { url: "https://medialive-fips.{Region}.{PartitionResult#dnsSuffix}", properties: m, headers: m }, type: e }], type: f }, { error: "FIPS is enabled but this partition does not support FIPS", type: d }], type: f }, { conditions: q, rules: [{ conditions: [o], rules: [{ endpoint: { url: "https://medialive.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: m, headers: m }, type: e }], type: f }, { error: "DualStack is enabled but this partition does not support DualStack", type: d }], type: f }, { endpoint: { url: "https://medialive.{Region}.{PartitionResult#dnsSuffix}", properties: m, headers: m }, type: e }], type: f }], type: f }, { error: "Invalid Configuration: Missing Region", type: d }] };
|
|
4
4
|
export const ruleSet = _data;
|
package/dist-es/models/index.js
CHANGED
|
@@ -386,6 +386,10 @@ export const Scte27OcrLanguage = {
|
|
|
386
386
|
POR: "POR",
|
|
387
387
|
SPA: "SPA",
|
|
388
388
|
};
|
|
389
|
+
export const ChannelAlertState = {
|
|
390
|
+
CLEARED: "CLEARED",
|
|
391
|
+
SET: "SET",
|
|
392
|
+
};
|
|
389
393
|
export const ChannelPipelineIdToRestart = {
|
|
390
394
|
PIPELINE_0: "PIPELINE_0",
|
|
391
395
|
PIPELINE_1: "PIPELINE_1",
|
|
@@ -518,6 +522,10 @@ export const CloudWatchAlarmTemplateTreatMissingData = {
|
|
|
518
522
|
missing: "missing",
|
|
519
523
|
notBreaching: "notBreaching",
|
|
520
524
|
};
|
|
525
|
+
export const ClusterAlertState = {
|
|
526
|
+
CLEARED: "CLEARED",
|
|
527
|
+
SET: "SET",
|
|
528
|
+
};
|
|
521
529
|
export const ColorSpace = {
|
|
522
530
|
HDR10: "HDR10",
|
|
523
531
|
HLG_2020: "HLG_2020",
|
|
@@ -714,6 +722,10 @@ export const InputSecurityGroupState = {
|
|
|
714
722
|
IN_USE: "IN_USE",
|
|
715
723
|
UPDATING: "UPDATING",
|
|
716
724
|
};
|
|
725
|
+
export const MultiplexAlertState = {
|
|
726
|
+
CLEARED: "CLEARED",
|
|
727
|
+
SET: "SET",
|
|
728
|
+
};
|
|
717
729
|
export const MultiplexState = {
|
|
718
730
|
CREATE_FAILED: "CREATE_FAILED",
|
|
719
731
|
CREATING: "CREATING",
|
|
@@ -805,27 +817,3 @@ export const DvbSdtOutputSdt = {
|
|
|
805
817
|
SDT_MANUAL: "SDT_MANUAL",
|
|
806
818
|
SDT_NONE: "SDT_NONE",
|
|
807
819
|
};
|
|
808
|
-
export const M2tsEbifControl = {
|
|
809
|
-
NONE: "NONE",
|
|
810
|
-
PASSTHROUGH: "PASSTHROUGH",
|
|
811
|
-
};
|
|
812
|
-
export const M2tsAudioInterval = {
|
|
813
|
-
VIDEO_AND_FIXED_INTERVALS: "VIDEO_AND_FIXED_INTERVALS",
|
|
814
|
-
VIDEO_INTERVAL: "VIDEO_INTERVAL",
|
|
815
|
-
};
|
|
816
|
-
export const M2tsEbpPlacement = {
|
|
817
|
-
VIDEO_AND_AUDIO_PIDS: "VIDEO_AND_AUDIO_PIDS",
|
|
818
|
-
VIDEO_PID: "VIDEO_PID",
|
|
819
|
-
};
|
|
820
|
-
export const M2tsEsRateInPes = {
|
|
821
|
-
EXCLUDE: "EXCLUDE",
|
|
822
|
-
INCLUDE: "INCLUDE",
|
|
823
|
-
};
|
|
824
|
-
export const M2tsKlv = {
|
|
825
|
-
NONE: "NONE",
|
|
826
|
-
PASSTHROUGH: "PASSTHROUGH",
|
|
827
|
-
};
|
|
828
|
-
export const M2tsNielsenId3Behavior = {
|
|
829
|
-
NO_PASSTHROUGH: "NO_PASSTHROUGH",
|
|
830
|
-
PASSTHROUGH: "PASSTHROUGH",
|
|
831
|
-
};
|
|
@@ -1,4 +1,28 @@
|
|
|
1
1
|
import { MediaLiveServiceException as __BaseException } from "./MediaLiveServiceException";
|
|
2
|
+
export const M2tsEbifControl = {
|
|
3
|
+
NONE: "NONE",
|
|
4
|
+
PASSTHROUGH: "PASSTHROUGH",
|
|
5
|
+
};
|
|
6
|
+
export const M2tsAudioInterval = {
|
|
7
|
+
VIDEO_AND_FIXED_INTERVALS: "VIDEO_AND_FIXED_INTERVALS",
|
|
8
|
+
VIDEO_INTERVAL: "VIDEO_INTERVAL",
|
|
9
|
+
};
|
|
10
|
+
export const M2tsEbpPlacement = {
|
|
11
|
+
VIDEO_AND_AUDIO_PIDS: "VIDEO_AND_AUDIO_PIDS",
|
|
12
|
+
VIDEO_PID: "VIDEO_PID",
|
|
13
|
+
};
|
|
14
|
+
export const M2tsEsRateInPes = {
|
|
15
|
+
EXCLUDE: "EXCLUDE",
|
|
16
|
+
INCLUDE: "INCLUDE",
|
|
17
|
+
};
|
|
18
|
+
export const M2tsKlv = {
|
|
19
|
+
NONE: "NONE",
|
|
20
|
+
PASSTHROUGH: "PASSTHROUGH",
|
|
21
|
+
};
|
|
22
|
+
export const M2tsNielsenId3Behavior = {
|
|
23
|
+
NO_PASSTHROUGH: "NO_PASSTHROUGH",
|
|
24
|
+
PASSTHROUGH: "PASSTHROUGH",
|
|
25
|
+
};
|
|
2
26
|
export const M2tsPcrControl = {
|
|
3
27
|
CONFIGURED_PCR_PERIOD: "CONFIGURED_PCR_PERIOD",
|
|
4
28
|
PCR_EVERY_PES_PACKET: "PCR_EVERY_PES_PACKET",
|
|
@@ -922,7 +946,3 @@ export const Scte35AposWebDeliveryAllowedBehavior = {
|
|
|
922
946
|
FOLLOW: "FOLLOW",
|
|
923
947
|
IGNORE: "IGNORE",
|
|
924
948
|
};
|
|
925
|
-
export const Scte35SegmentationScope = {
|
|
926
|
-
ALL_OUTPUT_GROUPS: "ALL_OUTPUT_GROUPS",
|
|
927
|
-
SCTE35_ENABLED_OUTPUT_GROUPS: "SCTE35_ENABLED_OUTPUT_GROUPS",
|
|
928
|
-
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListAlertsCommand } from "../commands/ListAlertsCommand";
|
|
3
|
+
import { MediaLiveClient } from "../MediaLiveClient";
|
|
4
|
+
export const paginateListAlerts = createPaginator(MediaLiveClient, ListAlertsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListClusterAlertsCommand, } from "../commands/ListClusterAlertsCommand";
|
|
3
|
+
import { MediaLiveClient } from "../MediaLiveClient";
|
|
4
|
+
export const paginateListClusterAlerts = createPaginator(MediaLiveClient, ListClusterAlertsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListMultiplexAlertsCommand, } from "../commands/ListMultiplexAlertsCommand";
|
|
3
|
+
import { MediaLiveClient } from "../MediaLiveClient";
|
|
4
|
+
export const paginateListMultiplexAlerts = createPaginator(MediaLiveClient, ListMultiplexAlertsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
export * from "./DescribeSchedulePaginator";
|
|
2
2
|
export * from "./Interfaces";
|
|
3
|
+
export * from "./ListAlertsPaginator";
|
|
3
4
|
export * from "./ListChannelPlacementGroupsPaginator";
|
|
4
5
|
export * from "./ListChannelsPaginator";
|
|
5
6
|
export * from "./ListCloudWatchAlarmTemplateGroupsPaginator";
|
|
6
7
|
export * from "./ListCloudWatchAlarmTemplatesPaginator";
|
|
8
|
+
export * from "./ListClusterAlertsPaginator";
|
|
7
9
|
export * from "./ListClustersPaginator";
|
|
8
10
|
export * from "./ListEventBridgeRuleTemplateGroupsPaginator";
|
|
9
11
|
export * from "./ListEventBridgeRuleTemplatesPaginator";
|
|
@@ -11,6 +13,7 @@ export * from "./ListInputDeviceTransfersPaginator";
|
|
|
11
13
|
export * from "./ListInputDevicesPaginator";
|
|
12
14
|
export * from "./ListInputSecurityGroupsPaginator";
|
|
13
15
|
export * from "./ListInputsPaginator";
|
|
16
|
+
export * from "./ListMultiplexAlertsPaginator";
|
|
14
17
|
export * from "./ListMultiplexProgramsPaginator";
|
|
15
18
|
export * from "./ListMultiplexesPaginator";
|
|
16
19
|
export * from "./ListNetworksPaginator";
|
|
@@ -814,6 +814,20 @@ export const se_GetSignalMapCommand = async (input, context) => {
|
|
|
814
814
|
b.m("GET").h(headers).b(body);
|
|
815
815
|
return b.build();
|
|
816
816
|
};
|
|
817
|
+
export const se_ListAlertsCommand = async (input, context) => {
|
|
818
|
+
const b = rb(input, context);
|
|
819
|
+
const headers = {};
|
|
820
|
+
b.bp("/prod/channels/{ChannelId}/alerts");
|
|
821
|
+
b.p("ChannelId", () => input.ChannelId, "{ChannelId}", false);
|
|
822
|
+
const query = map({
|
|
823
|
+
[_mR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
|
|
824
|
+
[_nT]: [, input[_NT]],
|
|
825
|
+
[_sF]: [, input[_SF]],
|
|
826
|
+
});
|
|
827
|
+
let body;
|
|
828
|
+
b.m("GET").h(headers).q(query).b(body);
|
|
829
|
+
return b.build();
|
|
830
|
+
};
|
|
817
831
|
export const se_ListChannelPlacementGroupsCommand = async (input, context) => {
|
|
818
832
|
const b = rb(input, context);
|
|
819
833
|
const headers = {};
|
|
@@ -868,6 +882,20 @@ export const se_ListCloudWatchAlarmTemplatesCommand = async (input, context) =>
|
|
|
868
882
|
b.m("GET").h(headers).q(query).b(body);
|
|
869
883
|
return b.build();
|
|
870
884
|
};
|
|
885
|
+
export const se_ListClusterAlertsCommand = async (input, context) => {
|
|
886
|
+
const b = rb(input, context);
|
|
887
|
+
const headers = {};
|
|
888
|
+
b.bp("/prod/clusters/{ClusterId}/alerts");
|
|
889
|
+
b.p("ClusterId", () => input.ClusterId, "{ClusterId}", false);
|
|
890
|
+
const query = map({
|
|
891
|
+
[_mR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
|
|
892
|
+
[_nT]: [, input[_NT]],
|
|
893
|
+
[_sF]: [, input[_SF]],
|
|
894
|
+
});
|
|
895
|
+
let body;
|
|
896
|
+
b.m("GET").h(headers).q(query).b(body);
|
|
897
|
+
return b.build();
|
|
898
|
+
};
|
|
871
899
|
export const se_ListClustersCommand = async (input, context) => {
|
|
872
900
|
const b = rb(input, context);
|
|
873
901
|
const headers = {};
|
|
@@ -956,6 +984,20 @@ export const se_ListInputSecurityGroupsCommand = async (input, context) => {
|
|
|
956
984
|
b.m("GET").h(headers).q(query).b(body);
|
|
957
985
|
return b.build();
|
|
958
986
|
};
|
|
987
|
+
export const se_ListMultiplexAlertsCommand = async (input, context) => {
|
|
988
|
+
const b = rb(input, context);
|
|
989
|
+
const headers = {};
|
|
990
|
+
b.bp("/prod/multiplexes/{MultiplexId}/alerts");
|
|
991
|
+
b.p("MultiplexId", () => input.MultiplexId, "{MultiplexId}", false);
|
|
992
|
+
const query = map({
|
|
993
|
+
[_mR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
|
|
994
|
+
[_nT]: [, input[_NT]],
|
|
995
|
+
[_sF]: [, input[_SF]],
|
|
996
|
+
});
|
|
997
|
+
let body;
|
|
998
|
+
b.m("GET").h(headers).q(query).b(body);
|
|
999
|
+
return b.build();
|
|
1000
|
+
};
|
|
959
1001
|
export const se_ListMultiplexesCommand = async (input, context) => {
|
|
960
1002
|
const b = rb(input, context);
|
|
961
1003
|
const headers = {};
|
|
@@ -1021,7 +1063,7 @@ export const se_ListOfferingsCommand = async (input, context) => {
|
|
|
1021
1063
|
[_nT]: [, input[_NT]],
|
|
1022
1064
|
[_r]: [, input[_R]],
|
|
1023
1065
|
[_rT]: [, input[_RT]],
|
|
1024
|
-
[
|
|
1066
|
+
[_sFp]: [, input[_SFp]],
|
|
1025
1067
|
[_vQ]: [, input[_VQ]],
|
|
1026
1068
|
});
|
|
1027
1069
|
let body;
|
|
@@ -1041,7 +1083,7 @@ export const se_ListReservationsCommand = async (input, context) => {
|
|
|
1041
1083
|
[_nT]: [, input[_NT]],
|
|
1042
1084
|
[_r]: [, input[_R]],
|
|
1043
1085
|
[_rT]: [, input[_RT]],
|
|
1044
|
-
[
|
|
1086
|
+
[_sFp]: [, input[_SFp]],
|
|
1045
1087
|
[_vQ]: [, input[_VQ]],
|
|
1046
1088
|
});
|
|
1047
1089
|
let body;
|
|
@@ -2815,6 +2857,21 @@ export const de_GetSignalMapCommand = async (output, context) => {
|
|
|
2815
2857
|
Object.assign(contents, doc);
|
|
2816
2858
|
return contents;
|
|
2817
2859
|
};
|
|
2860
|
+
export const de_ListAlertsCommand = async (output, context) => {
|
|
2861
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2862
|
+
return de_CommandError(output, context);
|
|
2863
|
+
}
|
|
2864
|
+
const contents = map({
|
|
2865
|
+
$metadata: deserializeMetadata(output),
|
|
2866
|
+
});
|
|
2867
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
2868
|
+
const doc = take(data, {
|
|
2869
|
+
Alerts: [, (_) => de___listOfChannelAlert(_, context), `alerts`],
|
|
2870
|
+
NextToken: [, __expectString, `nextToken`],
|
|
2871
|
+
});
|
|
2872
|
+
Object.assign(contents, doc);
|
|
2873
|
+
return contents;
|
|
2874
|
+
};
|
|
2818
2875
|
export const de_ListChannelPlacementGroupsCommand = async (output, context) => {
|
|
2819
2876
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2820
2877
|
return de_CommandError(output, context);
|
|
@@ -2887,6 +2944,21 @@ export const de_ListCloudWatchAlarmTemplatesCommand = async (output, context) =>
|
|
|
2887
2944
|
Object.assign(contents, doc);
|
|
2888
2945
|
return contents;
|
|
2889
2946
|
};
|
|
2947
|
+
export const de_ListClusterAlertsCommand = async (output, context) => {
|
|
2948
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2949
|
+
return de_CommandError(output, context);
|
|
2950
|
+
}
|
|
2951
|
+
const contents = map({
|
|
2952
|
+
$metadata: deserializeMetadata(output),
|
|
2953
|
+
});
|
|
2954
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
2955
|
+
const doc = take(data, {
|
|
2956
|
+
Alerts: [, (_) => de___listOfClusterAlert(_, context), `alerts`],
|
|
2957
|
+
NextToken: [, __expectString, `nextToken`],
|
|
2958
|
+
});
|
|
2959
|
+
Object.assign(contents, doc);
|
|
2960
|
+
return contents;
|
|
2961
|
+
};
|
|
2890
2962
|
export const de_ListClustersCommand = async (output, context) => {
|
|
2891
2963
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2892
2964
|
return de_CommandError(output, context);
|
|
@@ -3000,6 +3072,21 @@ export const de_ListInputSecurityGroupsCommand = async (output, context) => {
|
|
|
3000
3072
|
Object.assign(contents, doc);
|
|
3001
3073
|
return contents;
|
|
3002
3074
|
};
|
|
3075
|
+
export const de_ListMultiplexAlertsCommand = async (output, context) => {
|
|
3076
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
3077
|
+
return de_CommandError(output, context);
|
|
3078
|
+
}
|
|
3079
|
+
const contents = map({
|
|
3080
|
+
$metadata: deserializeMetadata(output),
|
|
3081
|
+
});
|
|
3082
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
3083
|
+
const doc = take(data, {
|
|
3084
|
+
Alerts: [, (_) => de___listOfMultiplexAlert(_, context), `alerts`],
|
|
3085
|
+
NextToken: [, __expectString, `nextToken`],
|
|
3086
|
+
});
|
|
3087
|
+
Object.assign(contents, doc);
|
|
3088
|
+
return contents;
|
|
3089
|
+
};
|
|
3003
3090
|
export const de_ListMultiplexesCommand = async (output, context) => {
|
|
3004
3091
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
3005
3092
|
return de_CommandError(output, context);
|
|
@@ -6460,6 +6547,14 @@ const de___listOfCaptionSelector = (output, context) => {
|
|
|
6460
6547
|
});
|
|
6461
6548
|
return retVal;
|
|
6462
6549
|
};
|
|
6550
|
+
const de___listOfChannelAlert = (output, context) => {
|
|
6551
|
+
const retVal = (output || [])
|
|
6552
|
+
.filter((e) => e != null)
|
|
6553
|
+
.map((entry) => {
|
|
6554
|
+
return de_ChannelAlert(entry, context);
|
|
6555
|
+
});
|
|
6556
|
+
return retVal;
|
|
6557
|
+
};
|
|
6463
6558
|
const de___listOfChannelEgressEndpoint = (output, context) => {
|
|
6464
6559
|
const retVal = (output || [])
|
|
6465
6560
|
.filter((e) => e != null)
|
|
@@ -6500,6 +6595,14 @@ const de___listOfCloudWatchAlarmTemplateSummary = (output, context) => {
|
|
|
6500
6595
|
});
|
|
6501
6596
|
return retVal;
|
|
6502
6597
|
};
|
|
6598
|
+
const de___listOfClusterAlert = (output, context) => {
|
|
6599
|
+
const retVal = (output || [])
|
|
6600
|
+
.filter((e) => e != null)
|
|
6601
|
+
.map((entry) => {
|
|
6602
|
+
return de_ClusterAlert(entry, context);
|
|
6603
|
+
});
|
|
6604
|
+
return retVal;
|
|
6605
|
+
};
|
|
6503
6606
|
const de___listOfCmafIngestCaptionLanguageMapping = (output, context) => {
|
|
6504
6607
|
const retVal = (output || [])
|
|
6505
6608
|
.filter((e) => e != null)
|
|
@@ -6724,6 +6827,14 @@ const de___listOfMulticastSource = (output, context) => {
|
|
|
6724
6827
|
});
|
|
6725
6828
|
return retVal;
|
|
6726
6829
|
};
|
|
6830
|
+
const de___listOfMultiplexAlert = (output, context) => {
|
|
6831
|
+
const retVal = (output || [])
|
|
6832
|
+
.filter((e) => e != null)
|
|
6833
|
+
.map((entry) => {
|
|
6834
|
+
return de_MultiplexAlert(entry, context);
|
|
6835
|
+
});
|
|
6836
|
+
return retVal;
|
|
6837
|
+
};
|
|
6727
6838
|
const de___listOfMultiplexOutputDestination = (output, context) => {
|
|
6728
6839
|
const retVal = (output || [])
|
|
6729
6840
|
.filter((e) => e != null)
|
|
@@ -7321,6 +7432,17 @@ const de_Channel = (output, context) => {
|
|
|
7321
7432
|
Vpc: [, (_) => de_VpcOutputSettingsDescription(_, context), `vpc`],
|
|
7322
7433
|
});
|
|
7323
7434
|
};
|
|
7435
|
+
const de_ChannelAlert = (output, context) => {
|
|
7436
|
+
return take(output, {
|
|
7437
|
+
AlertType: [, __expectString, `alertType`],
|
|
7438
|
+
ClearedTimestamp: [, (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)), `clearedTimestamp`],
|
|
7439
|
+
Id: [, __expectString, `id`],
|
|
7440
|
+
Message: [, __expectString, `message`],
|
|
7441
|
+
PipelineId: [, __expectString, `pipelineId`],
|
|
7442
|
+
SetTimestamp: [, (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)), `setTimestamp`],
|
|
7443
|
+
State: [, __expectString, `state`],
|
|
7444
|
+
});
|
|
7445
|
+
};
|
|
7324
7446
|
const de_ChannelEgressEndpoint = (output, context) => {
|
|
7325
7447
|
return take(output, {
|
|
7326
7448
|
SourceIp: [, __expectString, `sourceIp`],
|
|
@@ -7392,6 +7514,18 @@ const de_CloudWatchAlarmTemplateSummary = (output, context) => {
|
|
|
7392
7514
|
TreatMissingData: [, __expectString, `treatMissingData`],
|
|
7393
7515
|
});
|
|
7394
7516
|
};
|
|
7517
|
+
const de_ClusterAlert = (output, context) => {
|
|
7518
|
+
return take(output, {
|
|
7519
|
+
AlertType: [, __expectString, `alertType`],
|
|
7520
|
+
ChannelId: [, __expectString, `channelId`],
|
|
7521
|
+
ClearedTimestamp: [, (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)), `clearedTimestamp`],
|
|
7522
|
+
Id: [, __expectString, `id`],
|
|
7523
|
+
Message: [, __expectString, `message`],
|
|
7524
|
+
NodeId: [, __expectString, `nodeId`],
|
|
7525
|
+
SetTimestamp: [, (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)), `setTimestamp`],
|
|
7526
|
+
State: [, __expectString, `state`],
|
|
7527
|
+
});
|
|
7528
|
+
};
|
|
7395
7529
|
const de_ClusterNetworkSettings = (output, context) => {
|
|
7396
7530
|
return take(output, {
|
|
7397
7531
|
DefaultRoute: [, __expectString, `defaultRoute`],
|
|
@@ -8571,6 +8705,17 @@ const de_Multiplex = (output, context) => {
|
|
|
8571
8705
|
Tags: [, _json, `tags`],
|
|
8572
8706
|
});
|
|
8573
8707
|
};
|
|
8708
|
+
const de_MultiplexAlert = (output, context) => {
|
|
8709
|
+
return take(output, {
|
|
8710
|
+
AlertType: [, __expectString, `alertType`],
|
|
8711
|
+
ClearedTimestamp: [, (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)), `clearedTimestamp`],
|
|
8712
|
+
Id: [, __expectString, `id`],
|
|
8713
|
+
Message: [, __expectString, `message`],
|
|
8714
|
+
PipelineId: [, __expectString, `pipelineId`],
|
|
8715
|
+
SetTimestamp: [, (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)), `setTimestamp`],
|
|
8716
|
+
State: [, __expectString, `state`],
|
|
8717
|
+
});
|
|
8718
|
+
};
|
|
8574
8719
|
const de_MultiplexContainerSettings = (output, context) => {
|
|
8575
8720
|
return take(output, {
|
|
8576
8721
|
MultiplexM2tsSettings: [, (_) => de_MultiplexM2tsSettings(_, context), `multiplexM2tsSettings`],
|
|
@@ -9487,7 +9632,8 @@ const _PI = "PipelineId";
|
|
|
9487
9632
|
const _R = "Resolution";
|
|
9488
9633
|
const _RT = "ResourceType";
|
|
9489
9634
|
const _S = "Scope";
|
|
9490
|
-
const _SF = "
|
|
9635
|
+
const _SF = "StateFilter";
|
|
9636
|
+
const _SFp = "SpecialFeature";
|
|
9491
9637
|
const _SMI = "SignalMapIdentifier";
|
|
9492
9638
|
const _TK = "TagKeys";
|
|
9493
9639
|
const _TT = "ThumbnailType";
|
|
@@ -9513,7 +9659,8 @@ const _pI = "pipelineId";
|
|
|
9513
9659
|
const _r = "resolution";
|
|
9514
9660
|
const _rT = "resourceType";
|
|
9515
9661
|
const _s = "scope";
|
|
9516
|
-
const _sF = "
|
|
9662
|
+
const _sF = "stateFilter";
|
|
9663
|
+
const _sFp = "specialFeature";
|
|
9517
9664
|
const _sMI = "signalMapIdentifier";
|
|
9518
9665
|
const _tK = "tagKeys";
|
|
9519
9666
|
const _tT = "thumbnailType";
|
|
@@ -64,10 +64,12 @@ import { GetCloudWatchAlarmTemplateGroupCommandInput, GetCloudWatchAlarmTemplate
|
|
|
64
64
|
import { GetEventBridgeRuleTemplateCommandInput, GetEventBridgeRuleTemplateCommandOutput } from "./commands/GetEventBridgeRuleTemplateCommand";
|
|
65
65
|
import { GetEventBridgeRuleTemplateGroupCommandInput, GetEventBridgeRuleTemplateGroupCommandOutput } from "./commands/GetEventBridgeRuleTemplateGroupCommand";
|
|
66
66
|
import { GetSignalMapCommandInput, GetSignalMapCommandOutput } from "./commands/GetSignalMapCommand";
|
|
67
|
+
import { ListAlertsCommandInput, ListAlertsCommandOutput } from "./commands/ListAlertsCommand";
|
|
67
68
|
import { ListChannelPlacementGroupsCommandInput, ListChannelPlacementGroupsCommandOutput } from "./commands/ListChannelPlacementGroupsCommand";
|
|
68
69
|
import { ListChannelsCommandInput, ListChannelsCommandOutput } from "./commands/ListChannelsCommand";
|
|
69
70
|
import { ListCloudWatchAlarmTemplateGroupsCommandInput, ListCloudWatchAlarmTemplateGroupsCommandOutput } from "./commands/ListCloudWatchAlarmTemplateGroupsCommand";
|
|
70
71
|
import { ListCloudWatchAlarmTemplatesCommandInput, ListCloudWatchAlarmTemplatesCommandOutput } from "./commands/ListCloudWatchAlarmTemplatesCommand";
|
|
72
|
+
import { ListClusterAlertsCommandInput, ListClusterAlertsCommandOutput } from "./commands/ListClusterAlertsCommand";
|
|
71
73
|
import { ListClustersCommandInput, ListClustersCommandOutput } from "./commands/ListClustersCommand";
|
|
72
74
|
import { ListEventBridgeRuleTemplateGroupsCommandInput, ListEventBridgeRuleTemplateGroupsCommandOutput } from "./commands/ListEventBridgeRuleTemplateGroupsCommand";
|
|
73
75
|
import { ListEventBridgeRuleTemplatesCommandInput, ListEventBridgeRuleTemplatesCommandOutput } from "./commands/ListEventBridgeRuleTemplatesCommand";
|
|
@@ -75,6 +77,7 @@ import { ListInputDevicesCommandInput, ListInputDevicesCommandOutput } from "./c
|
|
|
75
77
|
import { ListInputDeviceTransfersCommandInput, ListInputDeviceTransfersCommandOutput } from "./commands/ListInputDeviceTransfersCommand";
|
|
76
78
|
import { ListInputsCommandInput, ListInputsCommandOutput } from "./commands/ListInputsCommand";
|
|
77
79
|
import { ListInputSecurityGroupsCommandInput, ListInputSecurityGroupsCommandOutput } from "./commands/ListInputSecurityGroupsCommand";
|
|
80
|
+
import { ListMultiplexAlertsCommandInput, ListMultiplexAlertsCommandOutput } from "./commands/ListMultiplexAlertsCommand";
|
|
78
81
|
import { ListMultiplexesCommandInput, ListMultiplexesCommandOutput } from "./commands/ListMultiplexesCommand";
|
|
79
82
|
import { ListMultiplexProgramsCommandInput, ListMultiplexProgramsCommandOutput } from "./commands/ListMultiplexProgramsCommand";
|
|
80
83
|
import { ListNetworksCommandInput, ListNetworksCommandOutput } from "./commands/ListNetworksCommand";
|
|
@@ -522,6 +525,12 @@ export interface MediaLive {
|
|
|
522
525
|
getSignalMap(args: GetSignalMapCommandInput, options?: __HttpHandlerOptions): Promise<GetSignalMapCommandOutput>;
|
|
523
526
|
getSignalMap(args: GetSignalMapCommandInput, cb: (err: any, data?: GetSignalMapCommandOutput) => void): void;
|
|
524
527
|
getSignalMap(args: GetSignalMapCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSignalMapCommandOutput) => void): void;
|
|
528
|
+
/**
|
|
529
|
+
* @see {@link ListAlertsCommand}
|
|
530
|
+
*/
|
|
531
|
+
listAlerts(args: ListAlertsCommandInput, options?: __HttpHandlerOptions): Promise<ListAlertsCommandOutput>;
|
|
532
|
+
listAlerts(args: ListAlertsCommandInput, cb: (err: any, data?: ListAlertsCommandOutput) => void): void;
|
|
533
|
+
listAlerts(args: ListAlertsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAlertsCommandOutput) => void): void;
|
|
525
534
|
/**
|
|
526
535
|
* @see {@link ListChannelPlacementGroupsCommand}
|
|
527
536
|
*/
|
|
@@ -549,6 +558,12 @@ export interface MediaLive {
|
|
|
549
558
|
listCloudWatchAlarmTemplates(args: ListCloudWatchAlarmTemplatesCommandInput, options?: __HttpHandlerOptions): Promise<ListCloudWatchAlarmTemplatesCommandOutput>;
|
|
550
559
|
listCloudWatchAlarmTemplates(args: ListCloudWatchAlarmTemplatesCommandInput, cb: (err: any, data?: ListCloudWatchAlarmTemplatesCommandOutput) => void): void;
|
|
551
560
|
listCloudWatchAlarmTemplates(args: ListCloudWatchAlarmTemplatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCloudWatchAlarmTemplatesCommandOutput) => void): void;
|
|
561
|
+
/**
|
|
562
|
+
* @see {@link ListClusterAlertsCommand}
|
|
563
|
+
*/
|
|
564
|
+
listClusterAlerts(args: ListClusterAlertsCommandInput, options?: __HttpHandlerOptions): Promise<ListClusterAlertsCommandOutput>;
|
|
565
|
+
listClusterAlerts(args: ListClusterAlertsCommandInput, cb: (err: any, data?: ListClusterAlertsCommandOutput) => void): void;
|
|
566
|
+
listClusterAlerts(args: ListClusterAlertsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListClusterAlertsCommandOutput) => void): void;
|
|
552
567
|
/**
|
|
553
568
|
* @see {@link ListClustersCommand}
|
|
554
569
|
*/
|
|
@@ -597,6 +612,12 @@ export interface MediaLive {
|
|
|
597
612
|
listInputSecurityGroups(args: ListInputSecurityGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListInputSecurityGroupsCommandOutput>;
|
|
598
613
|
listInputSecurityGroups(args: ListInputSecurityGroupsCommandInput, cb: (err: any, data?: ListInputSecurityGroupsCommandOutput) => void): void;
|
|
599
614
|
listInputSecurityGroups(args: ListInputSecurityGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListInputSecurityGroupsCommandOutput) => void): void;
|
|
615
|
+
/**
|
|
616
|
+
* @see {@link ListMultiplexAlertsCommand}
|
|
617
|
+
*/
|
|
618
|
+
listMultiplexAlerts(args: ListMultiplexAlertsCommandInput, options?: __HttpHandlerOptions): Promise<ListMultiplexAlertsCommandOutput>;
|
|
619
|
+
listMultiplexAlerts(args: ListMultiplexAlertsCommandInput, cb: (err: any, data?: ListMultiplexAlertsCommandOutput) => void): void;
|
|
620
|
+
listMultiplexAlerts(args: ListMultiplexAlertsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListMultiplexAlertsCommandOutput) => void): void;
|
|
600
621
|
/**
|
|
601
622
|
* @see {@link ListMultiplexesCommand}
|
|
602
623
|
*/
|
|
@@ -72,10 +72,12 @@ import { GetCloudWatchAlarmTemplateGroupCommandInput, GetCloudWatchAlarmTemplate
|
|
|
72
72
|
import { GetEventBridgeRuleTemplateCommandInput, GetEventBridgeRuleTemplateCommandOutput } from "./commands/GetEventBridgeRuleTemplateCommand";
|
|
73
73
|
import { GetEventBridgeRuleTemplateGroupCommandInput, GetEventBridgeRuleTemplateGroupCommandOutput } from "./commands/GetEventBridgeRuleTemplateGroupCommand";
|
|
74
74
|
import { GetSignalMapCommandInput, GetSignalMapCommandOutput } from "./commands/GetSignalMapCommand";
|
|
75
|
+
import { ListAlertsCommandInput, ListAlertsCommandOutput } from "./commands/ListAlertsCommand";
|
|
75
76
|
import { ListChannelPlacementGroupsCommandInput, ListChannelPlacementGroupsCommandOutput } from "./commands/ListChannelPlacementGroupsCommand";
|
|
76
77
|
import { ListChannelsCommandInput, ListChannelsCommandOutput } from "./commands/ListChannelsCommand";
|
|
77
78
|
import { ListCloudWatchAlarmTemplateGroupsCommandInput, ListCloudWatchAlarmTemplateGroupsCommandOutput } from "./commands/ListCloudWatchAlarmTemplateGroupsCommand";
|
|
78
79
|
import { ListCloudWatchAlarmTemplatesCommandInput, ListCloudWatchAlarmTemplatesCommandOutput } from "./commands/ListCloudWatchAlarmTemplatesCommand";
|
|
80
|
+
import { ListClusterAlertsCommandInput, ListClusterAlertsCommandOutput } from "./commands/ListClusterAlertsCommand";
|
|
79
81
|
import { ListClustersCommandInput, ListClustersCommandOutput } from "./commands/ListClustersCommand";
|
|
80
82
|
import { ListEventBridgeRuleTemplateGroupsCommandInput, ListEventBridgeRuleTemplateGroupsCommandOutput } from "./commands/ListEventBridgeRuleTemplateGroupsCommand";
|
|
81
83
|
import { ListEventBridgeRuleTemplatesCommandInput, ListEventBridgeRuleTemplatesCommandOutput } from "./commands/ListEventBridgeRuleTemplatesCommand";
|
|
@@ -83,6 +85,7 @@ import { ListInputDevicesCommandInput, ListInputDevicesCommandOutput } from "./c
|
|
|
83
85
|
import { ListInputDeviceTransfersCommandInput, ListInputDeviceTransfersCommandOutput } from "./commands/ListInputDeviceTransfersCommand";
|
|
84
86
|
import { ListInputsCommandInput, ListInputsCommandOutput } from "./commands/ListInputsCommand";
|
|
85
87
|
import { ListInputSecurityGroupsCommandInput, ListInputSecurityGroupsCommandOutput } from "./commands/ListInputSecurityGroupsCommand";
|
|
88
|
+
import { ListMultiplexAlertsCommandInput, ListMultiplexAlertsCommandOutput } from "./commands/ListMultiplexAlertsCommand";
|
|
86
89
|
import { ListMultiplexesCommandInput, ListMultiplexesCommandOutput } from "./commands/ListMultiplexesCommand";
|
|
87
90
|
import { ListMultiplexProgramsCommandInput, ListMultiplexProgramsCommandOutput } from "./commands/ListMultiplexProgramsCommand";
|
|
88
91
|
import { ListNetworksCommandInput, ListNetworksCommandOutput } from "./commands/ListNetworksCommand";
|
|
@@ -133,11 +136,11 @@ export { __Client };
|
|
|
133
136
|
/**
|
|
134
137
|
* @public
|
|
135
138
|
*/
|
|
136
|
-
export type ServiceInputTypes = AcceptInputDeviceTransferCommandInput | BatchDeleteCommandInput | BatchStartCommandInput | BatchStopCommandInput | BatchUpdateScheduleCommandInput | CancelInputDeviceTransferCommandInput | ClaimDeviceCommandInput | CreateChannelCommandInput | CreateChannelPlacementGroupCommandInput | CreateCloudWatchAlarmTemplateCommandInput | CreateCloudWatchAlarmTemplateGroupCommandInput | CreateClusterCommandInput | CreateEventBridgeRuleTemplateCommandInput | CreateEventBridgeRuleTemplateGroupCommandInput | CreateInputCommandInput | CreateInputSecurityGroupCommandInput | CreateMultiplexCommandInput | CreateMultiplexProgramCommandInput | CreateNetworkCommandInput | CreateNodeCommandInput | CreateNodeRegistrationScriptCommandInput | CreatePartnerInputCommandInput | CreateSdiSourceCommandInput | CreateSignalMapCommandInput | CreateTagsCommandInput | DeleteChannelCommandInput | DeleteChannelPlacementGroupCommandInput | DeleteCloudWatchAlarmTemplateCommandInput | DeleteCloudWatchAlarmTemplateGroupCommandInput | DeleteClusterCommandInput | DeleteEventBridgeRuleTemplateCommandInput | DeleteEventBridgeRuleTemplateGroupCommandInput | DeleteInputCommandInput | DeleteInputSecurityGroupCommandInput | DeleteMultiplexCommandInput | DeleteMultiplexProgramCommandInput | DeleteNetworkCommandInput | DeleteNodeCommandInput | DeleteReservationCommandInput | DeleteScheduleCommandInput | DeleteSdiSourceCommandInput | DeleteSignalMapCommandInput | DeleteTagsCommandInput | DescribeAccountConfigurationCommandInput | DescribeChannelCommandInput | DescribeChannelPlacementGroupCommandInput | DescribeClusterCommandInput | DescribeInputCommandInput | DescribeInputDeviceCommandInput | DescribeInputDeviceThumbnailCommandInput | DescribeInputSecurityGroupCommandInput | DescribeMultiplexCommandInput | DescribeMultiplexProgramCommandInput | DescribeNetworkCommandInput | DescribeNodeCommandInput | DescribeOfferingCommandInput | DescribeReservationCommandInput | DescribeScheduleCommandInput | DescribeSdiSourceCommandInput | DescribeThumbnailsCommandInput | GetCloudWatchAlarmTemplateCommandInput | GetCloudWatchAlarmTemplateGroupCommandInput | GetEventBridgeRuleTemplateCommandInput | GetEventBridgeRuleTemplateGroupCommandInput | GetSignalMapCommandInput | ListChannelPlacementGroupsCommandInput | ListChannelsCommandInput | ListCloudWatchAlarmTemplateGroupsCommandInput | ListCloudWatchAlarmTemplatesCommandInput | ListClustersCommandInput | ListEventBridgeRuleTemplateGroupsCommandInput | ListEventBridgeRuleTemplatesCommandInput | ListInputDeviceTransfersCommandInput | ListInputDevicesCommandInput | ListInputSecurityGroupsCommandInput | ListInputsCommandInput | ListMultiplexProgramsCommandInput | ListMultiplexesCommandInput | ListNetworksCommandInput | ListNodesCommandInput | ListOfferingsCommandInput | ListReservationsCommandInput | ListSdiSourcesCommandInput | ListSignalMapsCommandInput | ListTagsForResourceCommandInput | ListVersionsCommandInput | PurchaseOfferingCommandInput | RebootInputDeviceCommandInput | RejectInputDeviceTransferCommandInput | RestartChannelPipelinesCommandInput | StartChannelCommandInput | StartDeleteMonitorDeploymentCommandInput | StartInputDeviceCommandInput | StartInputDeviceMaintenanceWindowCommandInput | StartMonitorDeploymentCommandInput | StartMultiplexCommandInput | StartUpdateSignalMapCommandInput | StopChannelCommandInput | StopInputDeviceCommandInput | StopMultiplexCommandInput | TransferInputDeviceCommandInput | UpdateAccountConfigurationCommandInput | UpdateChannelClassCommandInput | UpdateChannelCommandInput | UpdateChannelPlacementGroupCommandInput | UpdateCloudWatchAlarmTemplateCommandInput | UpdateCloudWatchAlarmTemplateGroupCommandInput | UpdateClusterCommandInput | UpdateEventBridgeRuleTemplateCommandInput | UpdateEventBridgeRuleTemplateGroupCommandInput | UpdateInputCommandInput | UpdateInputDeviceCommandInput | UpdateInputSecurityGroupCommandInput | UpdateMultiplexCommandInput | UpdateMultiplexProgramCommandInput | UpdateNetworkCommandInput | UpdateNodeCommandInput | UpdateNodeStateCommandInput | UpdateReservationCommandInput | UpdateSdiSourceCommandInput;
|
|
139
|
+
export type ServiceInputTypes = AcceptInputDeviceTransferCommandInput | BatchDeleteCommandInput | BatchStartCommandInput | BatchStopCommandInput | BatchUpdateScheduleCommandInput | CancelInputDeviceTransferCommandInput | ClaimDeviceCommandInput | CreateChannelCommandInput | CreateChannelPlacementGroupCommandInput | CreateCloudWatchAlarmTemplateCommandInput | CreateCloudWatchAlarmTemplateGroupCommandInput | CreateClusterCommandInput | CreateEventBridgeRuleTemplateCommandInput | CreateEventBridgeRuleTemplateGroupCommandInput | CreateInputCommandInput | CreateInputSecurityGroupCommandInput | CreateMultiplexCommandInput | CreateMultiplexProgramCommandInput | CreateNetworkCommandInput | CreateNodeCommandInput | CreateNodeRegistrationScriptCommandInput | CreatePartnerInputCommandInput | CreateSdiSourceCommandInput | CreateSignalMapCommandInput | CreateTagsCommandInput | DeleteChannelCommandInput | DeleteChannelPlacementGroupCommandInput | DeleteCloudWatchAlarmTemplateCommandInput | DeleteCloudWatchAlarmTemplateGroupCommandInput | DeleteClusterCommandInput | DeleteEventBridgeRuleTemplateCommandInput | DeleteEventBridgeRuleTemplateGroupCommandInput | DeleteInputCommandInput | DeleteInputSecurityGroupCommandInput | DeleteMultiplexCommandInput | DeleteMultiplexProgramCommandInput | DeleteNetworkCommandInput | DeleteNodeCommandInput | DeleteReservationCommandInput | DeleteScheduleCommandInput | DeleteSdiSourceCommandInput | DeleteSignalMapCommandInput | DeleteTagsCommandInput | DescribeAccountConfigurationCommandInput | DescribeChannelCommandInput | DescribeChannelPlacementGroupCommandInput | DescribeClusterCommandInput | DescribeInputCommandInput | DescribeInputDeviceCommandInput | DescribeInputDeviceThumbnailCommandInput | DescribeInputSecurityGroupCommandInput | DescribeMultiplexCommandInput | DescribeMultiplexProgramCommandInput | DescribeNetworkCommandInput | DescribeNodeCommandInput | DescribeOfferingCommandInput | DescribeReservationCommandInput | DescribeScheduleCommandInput | DescribeSdiSourceCommandInput | DescribeThumbnailsCommandInput | GetCloudWatchAlarmTemplateCommandInput | GetCloudWatchAlarmTemplateGroupCommandInput | GetEventBridgeRuleTemplateCommandInput | GetEventBridgeRuleTemplateGroupCommandInput | GetSignalMapCommandInput | ListAlertsCommandInput | ListChannelPlacementGroupsCommandInput | ListChannelsCommandInput | ListCloudWatchAlarmTemplateGroupsCommandInput | ListCloudWatchAlarmTemplatesCommandInput | ListClusterAlertsCommandInput | ListClustersCommandInput | ListEventBridgeRuleTemplateGroupsCommandInput | ListEventBridgeRuleTemplatesCommandInput | ListInputDeviceTransfersCommandInput | ListInputDevicesCommandInput | ListInputSecurityGroupsCommandInput | ListInputsCommandInput | ListMultiplexAlertsCommandInput | ListMultiplexProgramsCommandInput | ListMultiplexesCommandInput | ListNetworksCommandInput | ListNodesCommandInput | ListOfferingsCommandInput | ListReservationsCommandInput | ListSdiSourcesCommandInput | ListSignalMapsCommandInput | ListTagsForResourceCommandInput | ListVersionsCommandInput | PurchaseOfferingCommandInput | RebootInputDeviceCommandInput | RejectInputDeviceTransferCommandInput | RestartChannelPipelinesCommandInput | StartChannelCommandInput | StartDeleteMonitorDeploymentCommandInput | StartInputDeviceCommandInput | StartInputDeviceMaintenanceWindowCommandInput | StartMonitorDeploymentCommandInput | StartMultiplexCommandInput | StartUpdateSignalMapCommandInput | StopChannelCommandInput | StopInputDeviceCommandInput | StopMultiplexCommandInput | TransferInputDeviceCommandInput | UpdateAccountConfigurationCommandInput | UpdateChannelClassCommandInput | UpdateChannelCommandInput | UpdateChannelPlacementGroupCommandInput | UpdateCloudWatchAlarmTemplateCommandInput | UpdateCloudWatchAlarmTemplateGroupCommandInput | UpdateClusterCommandInput | UpdateEventBridgeRuleTemplateCommandInput | UpdateEventBridgeRuleTemplateGroupCommandInput | UpdateInputCommandInput | UpdateInputDeviceCommandInput | UpdateInputSecurityGroupCommandInput | UpdateMultiplexCommandInput | UpdateMultiplexProgramCommandInput | UpdateNetworkCommandInput | UpdateNodeCommandInput | UpdateNodeStateCommandInput | UpdateReservationCommandInput | UpdateSdiSourceCommandInput;
|
|
137
140
|
/**
|
|
138
141
|
* @public
|
|
139
142
|
*/
|
|
140
|
-
export type ServiceOutputTypes = AcceptInputDeviceTransferCommandOutput | BatchDeleteCommandOutput | BatchStartCommandOutput | BatchStopCommandOutput | BatchUpdateScheduleCommandOutput | CancelInputDeviceTransferCommandOutput | ClaimDeviceCommandOutput | CreateChannelCommandOutput | CreateChannelPlacementGroupCommandOutput | CreateCloudWatchAlarmTemplateCommandOutput | CreateCloudWatchAlarmTemplateGroupCommandOutput | CreateClusterCommandOutput | CreateEventBridgeRuleTemplateCommandOutput | CreateEventBridgeRuleTemplateGroupCommandOutput | CreateInputCommandOutput | CreateInputSecurityGroupCommandOutput | CreateMultiplexCommandOutput | CreateMultiplexProgramCommandOutput | CreateNetworkCommandOutput | CreateNodeCommandOutput | CreateNodeRegistrationScriptCommandOutput | CreatePartnerInputCommandOutput | CreateSdiSourceCommandOutput | CreateSignalMapCommandOutput | CreateTagsCommandOutput | DeleteChannelCommandOutput | DeleteChannelPlacementGroupCommandOutput | DeleteCloudWatchAlarmTemplateCommandOutput | DeleteCloudWatchAlarmTemplateGroupCommandOutput | DeleteClusterCommandOutput | DeleteEventBridgeRuleTemplateCommandOutput | DeleteEventBridgeRuleTemplateGroupCommandOutput | DeleteInputCommandOutput | DeleteInputSecurityGroupCommandOutput | DeleteMultiplexCommandOutput | DeleteMultiplexProgramCommandOutput | DeleteNetworkCommandOutput | DeleteNodeCommandOutput | DeleteReservationCommandOutput | DeleteScheduleCommandOutput | DeleteSdiSourceCommandOutput | DeleteSignalMapCommandOutput | DeleteTagsCommandOutput | DescribeAccountConfigurationCommandOutput | DescribeChannelCommandOutput | DescribeChannelPlacementGroupCommandOutput | DescribeClusterCommandOutput | DescribeInputCommandOutput | DescribeInputDeviceCommandOutput | DescribeInputDeviceThumbnailCommandOutput | DescribeInputSecurityGroupCommandOutput | DescribeMultiplexCommandOutput | DescribeMultiplexProgramCommandOutput | DescribeNetworkCommandOutput | DescribeNodeCommandOutput | DescribeOfferingCommandOutput | DescribeReservationCommandOutput | DescribeScheduleCommandOutput | DescribeSdiSourceCommandOutput | DescribeThumbnailsCommandOutput | GetCloudWatchAlarmTemplateCommandOutput | GetCloudWatchAlarmTemplateGroupCommandOutput | GetEventBridgeRuleTemplateCommandOutput | GetEventBridgeRuleTemplateGroupCommandOutput | GetSignalMapCommandOutput | ListChannelPlacementGroupsCommandOutput | ListChannelsCommandOutput | ListCloudWatchAlarmTemplateGroupsCommandOutput | ListCloudWatchAlarmTemplatesCommandOutput | ListClustersCommandOutput | ListEventBridgeRuleTemplateGroupsCommandOutput | ListEventBridgeRuleTemplatesCommandOutput | ListInputDeviceTransfersCommandOutput | ListInputDevicesCommandOutput | ListInputSecurityGroupsCommandOutput | ListInputsCommandOutput | ListMultiplexProgramsCommandOutput | ListMultiplexesCommandOutput | ListNetworksCommandOutput | ListNodesCommandOutput | ListOfferingsCommandOutput | ListReservationsCommandOutput | ListSdiSourcesCommandOutput | ListSignalMapsCommandOutput | ListTagsForResourceCommandOutput | ListVersionsCommandOutput | PurchaseOfferingCommandOutput | RebootInputDeviceCommandOutput | RejectInputDeviceTransferCommandOutput | RestartChannelPipelinesCommandOutput | StartChannelCommandOutput | StartDeleteMonitorDeploymentCommandOutput | StartInputDeviceCommandOutput | StartInputDeviceMaintenanceWindowCommandOutput | StartMonitorDeploymentCommandOutput | StartMultiplexCommandOutput | StartUpdateSignalMapCommandOutput | StopChannelCommandOutput | StopInputDeviceCommandOutput | StopMultiplexCommandOutput | TransferInputDeviceCommandOutput | UpdateAccountConfigurationCommandOutput | UpdateChannelClassCommandOutput | UpdateChannelCommandOutput | UpdateChannelPlacementGroupCommandOutput | UpdateCloudWatchAlarmTemplateCommandOutput | UpdateCloudWatchAlarmTemplateGroupCommandOutput | UpdateClusterCommandOutput | UpdateEventBridgeRuleTemplateCommandOutput | UpdateEventBridgeRuleTemplateGroupCommandOutput | UpdateInputCommandOutput | UpdateInputDeviceCommandOutput | UpdateInputSecurityGroupCommandOutput | UpdateMultiplexCommandOutput | UpdateMultiplexProgramCommandOutput | UpdateNetworkCommandOutput | UpdateNodeCommandOutput | UpdateNodeStateCommandOutput | UpdateReservationCommandOutput | UpdateSdiSourceCommandOutput;
|
|
143
|
+
export type ServiceOutputTypes = AcceptInputDeviceTransferCommandOutput | BatchDeleteCommandOutput | BatchStartCommandOutput | BatchStopCommandOutput | BatchUpdateScheduleCommandOutput | CancelInputDeviceTransferCommandOutput | ClaimDeviceCommandOutput | CreateChannelCommandOutput | CreateChannelPlacementGroupCommandOutput | CreateCloudWatchAlarmTemplateCommandOutput | CreateCloudWatchAlarmTemplateGroupCommandOutput | CreateClusterCommandOutput | CreateEventBridgeRuleTemplateCommandOutput | CreateEventBridgeRuleTemplateGroupCommandOutput | CreateInputCommandOutput | CreateInputSecurityGroupCommandOutput | CreateMultiplexCommandOutput | CreateMultiplexProgramCommandOutput | CreateNetworkCommandOutput | CreateNodeCommandOutput | CreateNodeRegistrationScriptCommandOutput | CreatePartnerInputCommandOutput | CreateSdiSourceCommandOutput | CreateSignalMapCommandOutput | CreateTagsCommandOutput | DeleteChannelCommandOutput | DeleteChannelPlacementGroupCommandOutput | DeleteCloudWatchAlarmTemplateCommandOutput | DeleteCloudWatchAlarmTemplateGroupCommandOutput | DeleteClusterCommandOutput | DeleteEventBridgeRuleTemplateCommandOutput | DeleteEventBridgeRuleTemplateGroupCommandOutput | DeleteInputCommandOutput | DeleteInputSecurityGroupCommandOutput | DeleteMultiplexCommandOutput | DeleteMultiplexProgramCommandOutput | DeleteNetworkCommandOutput | DeleteNodeCommandOutput | DeleteReservationCommandOutput | DeleteScheduleCommandOutput | DeleteSdiSourceCommandOutput | DeleteSignalMapCommandOutput | DeleteTagsCommandOutput | DescribeAccountConfigurationCommandOutput | DescribeChannelCommandOutput | DescribeChannelPlacementGroupCommandOutput | DescribeClusterCommandOutput | DescribeInputCommandOutput | DescribeInputDeviceCommandOutput | DescribeInputDeviceThumbnailCommandOutput | DescribeInputSecurityGroupCommandOutput | DescribeMultiplexCommandOutput | DescribeMultiplexProgramCommandOutput | DescribeNetworkCommandOutput | DescribeNodeCommandOutput | DescribeOfferingCommandOutput | DescribeReservationCommandOutput | DescribeScheduleCommandOutput | DescribeSdiSourceCommandOutput | DescribeThumbnailsCommandOutput | GetCloudWatchAlarmTemplateCommandOutput | GetCloudWatchAlarmTemplateGroupCommandOutput | GetEventBridgeRuleTemplateCommandOutput | GetEventBridgeRuleTemplateGroupCommandOutput | GetSignalMapCommandOutput | ListAlertsCommandOutput | ListChannelPlacementGroupsCommandOutput | ListChannelsCommandOutput | ListCloudWatchAlarmTemplateGroupsCommandOutput | ListCloudWatchAlarmTemplatesCommandOutput | ListClusterAlertsCommandOutput | ListClustersCommandOutput | ListEventBridgeRuleTemplateGroupsCommandOutput | ListEventBridgeRuleTemplatesCommandOutput | ListInputDeviceTransfersCommandOutput | ListInputDevicesCommandOutput | ListInputSecurityGroupsCommandOutput | ListInputsCommandOutput | ListMultiplexAlertsCommandOutput | ListMultiplexProgramsCommandOutput | ListMultiplexesCommandOutput | ListNetworksCommandOutput | ListNodesCommandOutput | ListOfferingsCommandOutput | ListReservationsCommandOutput | ListSdiSourcesCommandOutput | ListSignalMapsCommandOutput | ListTagsForResourceCommandOutput | ListVersionsCommandOutput | PurchaseOfferingCommandOutput | RebootInputDeviceCommandOutput | RejectInputDeviceTransferCommandOutput | RestartChannelPipelinesCommandOutput | StartChannelCommandOutput | StartDeleteMonitorDeploymentCommandOutput | StartInputDeviceCommandOutput | StartInputDeviceMaintenanceWindowCommandOutput | StartMonitorDeploymentCommandOutput | StartMultiplexCommandOutput | StartUpdateSignalMapCommandOutput | StopChannelCommandOutput | StopInputDeviceCommandOutput | StopMultiplexCommandOutput | TransferInputDeviceCommandOutput | UpdateAccountConfigurationCommandOutput | UpdateChannelClassCommandOutput | UpdateChannelCommandOutput | UpdateChannelPlacementGroupCommandOutput | UpdateCloudWatchAlarmTemplateCommandOutput | UpdateCloudWatchAlarmTemplateGroupCommandOutput | UpdateClusterCommandOutput | UpdateEventBridgeRuleTemplateCommandOutput | UpdateEventBridgeRuleTemplateGroupCommandOutput | UpdateInputCommandOutput | UpdateInputDeviceCommandOutput | UpdateInputSecurityGroupCommandOutput | UpdateMultiplexCommandOutput | UpdateMultiplexProgramCommandOutput | UpdateNetworkCommandOutput | UpdateNodeCommandOutput | UpdateNodeStateCommandOutput | UpdateReservationCommandOutput | UpdateSdiSourceCommandOutput;
|
|
141
144
|
/**
|
|
142
145
|
* @public
|
|
143
146
|
*/
|