@aws-sdk/client-medialive 3.714.0 → 3.716.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 +8 -0
- package/dist-cjs/index.js +73 -0
- package/dist-es/MediaLive.js +2 -0
- package/dist-es/commands/ListVersionsCommand.js +22 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +58 -0
- package/dist-types/MediaLive.d.ts +8 -0
- package/dist-types/MediaLiveClient.d.ts +3 -2
- package/dist-types/commands/CreateChannelCommand.d.ts +12 -0
- package/dist-types/commands/DeleteChannelCommand.d.ts +8 -0
- package/dist-types/commands/DescribeChannelCommand.d.ts +8 -0
- package/dist-types/commands/ListChannelsCommand.d.ts +10 -0
- package/dist-types/commands/ListVersionsCommand.d.ts +98 -0
- package/dist-types/commands/RestartChannelPipelinesCommand.d.ts +8 -0
- package/dist-types/commands/StartChannelCommand.d.ts +8 -0
- package/dist-types/commands/StopChannelCommand.d.ts +8 -0
- package/dist-types/commands/UpdateChannelClassCommand.d.ts +8 -0
- package/dist-types/commands/UpdateChannelCommand.d.ts +12 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +26 -11
- package/dist-types/models/models_1.d.ts +17 -17
- package/dist-types/models/models_2.d.ts +96 -2
- package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
- package/dist-types/ts3.4/MediaLive.d.ts +18 -0
- package/dist-types/ts3.4/MediaLiveClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/ListVersionsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +6 -3
- package/dist-types/ts3.4/models/models_1.d.ts +5 -5
- package/dist-types/ts3.4/models/models_2.d.ts +24 -1
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
- package/package.json +12 -12
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient";
|
|
4
|
+
import { ListVersionsRequest, ListVersionsResponse } from "../models/models_2";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListVersionsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListVersionsCommandInput extends ListVersionsRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListVersionsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListVersionsCommandOutput extends ListVersionsResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const ListVersionsCommand_base: {
|
|
25
|
+
new (input: ListVersionsCommandInput): import("@smithy/smithy-client").CommandImpl<ListVersionsCommandInput, ListVersionsCommandOutput, MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (...[input]: [] | [ListVersionsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListVersionsCommandInput, ListVersionsCommandOutput, MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* Retrieves an array of all the encoder engine versions that are available in this AWS account.
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { MediaLiveClient, ListVersionsCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
35
|
+
* // const { MediaLiveClient, ListVersionsCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
36
|
+
* const client = new MediaLiveClient(config);
|
|
37
|
+
* const input = {};
|
|
38
|
+
* const command = new ListVersionsCommand(input);
|
|
39
|
+
* const response = await client.send(command);
|
|
40
|
+
* // { // ListVersionsResponse
|
|
41
|
+
* // Versions: [ // __listOfChannelEngineVersionResponse
|
|
42
|
+
* // { // ChannelEngineVersionResponse
|
|
43
|
+
* // ExpirationDate: new Date("TIMESTAMP"),
|
|
44
|
+
* // Version: "STRING_VALUE",
|
|
45
|
+
* // },
|
|
46
|
+
* // ],
|
|
47
|
+
* // };
|
|
48
|
+
*
|
|
49
|
+
* ```
|
|
50
|
+
*
|
|
51
|
+
* @param ListVersionsCommandInput - {@link ListVersionsCommandInput}
|
|
52
|
+
* @returns {@link ListVersionsCommandOutput}
|
|
53
|
+
* @see {@link ListVersionsCommandInput} for command's `input` shape.
|
|
54
|
+
* @see {@link ListVersionsCommandOutput} for command's `response` shape.
|
|
55
|
+
* @see {@link MediaLiveClientResolvedConfig | config} for MediaLiveClient's `config` shape.
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link BadGatewayException} (server fault)
|
|
58
|
+
* Placeholder documentation for BadGatewayException
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link BadRequestException} (client fault)
|
|
61
|
+
* Placeholder documentation for BadRequestException
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link ConflictException} (client fault)
|
|
64
|
+
* Placeholder documentation for ConflictException
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
67
|
+
* Placeholder documentation for ForbiddenException
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link GatewayTimeoutException} (server fault)
|
|
70
|
+
* Placeholder documentation for GatewayTimeoutException
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link InternalServerErrorException} (server fault)
|
|
73
|
+
* Placeholder documentation for InternalServerErrorException
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link NotFoundException} (client fault)
|
|
76
|
+
* Placeholder documentation for NotFoundException
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
79
|
+
* Placeholder documentation for TooManyRequestsException
|
|
80
|
+
*
|
|
81
|
+
* @throws {@link MediaLiveServiceException}
|
|
82
|
+
* <p>Base exception class for all service exceptions from MediaLive service.</p>
|
|
83
|
+
*
|
|
84
|
+
* @public
|
|
85
|
+
*/
|
|
86
|
+
export declare class ListVersionsCommand extends ListVersionsCommand_base {
|
|
87
|
+
/** @internal type navigation helper, not in runtime. */
|
|
88
|
+
protected static __types: {
|
|
89
|
+
api: {
|
|
90
|
+
input: {};
|
|
91
|
+
output: ListVersionsResponse;
|
|
92
|
+
};
|
|
93
|
+
sdk: {
|
|
94
|
+
input: ListVersionsCommandInput;
|
|
95
|
+
output: ListVersionsCommandOutput;
|
|
96
|
+
};
|
|
97
|
+
};
|
|
98
|
+
}
|
|
@@ -1229,6 +1229,10 @@ declare const RestartChannelPipelinesCommand_base: {
|
|
|
1229
1229
|
* // ActiveMotionGraphicsActionName: "STRING_VALUE",
|
|
1230
1230
|
* // ActiveMotionGraphicsUri: "STRING_VALUE",
|
|
1231
1231
|
* // PipelineId: "STRING_VALUE",
|
|
1232
|
+
* // ChannelEngineVersion: { // ChannelEngineVersionResponse
|
|
1233
|
+
* // ExpirationDate: new Date("TIMESTAMP"),
|
|
1234
|
+
* // Version: "STRING_VALUE",
|
|
1235
|
+
* // },
|
|
1232
1236
|
* // },
|
|
1233
1237
|
* // ],
|
|
1234
1238
|
* // PipelinesRunningCount: Number("int"),
|
|
@@ -1247,6 +1251,10 @@ declare const RestartChannelPipelinesCommand_base: {
|
|
|
1247
1251
|
* // ChannelPlacementGroupId: "STRING_VALUE",
|
|
1248
1252
|
* // ClusterId: "STRING_VALUE",
|
|
1249
1253
|
* // },
|
|
1254
|
+
* // ChannelEngineVersion: {
|
|
1255
|
+
* // ExpirationDate: new Date("TIMESTAMP"),
|
|
1256
|
+
* // Version: "STRING_VALUE",
|
|
1257
|
+
* // },
|
|
1250
1258
|
* // };
|
|
1251
1259
|
*
|
|
1252
1260
|
* ```
|
|
@@ -1225,6 +1225,10 @@ declare const StartChannelCommand_base: {
|
|
|
1225
1225
|
* // ActiveMotionGraphicsActionName: "STRING_VALUE",
|
|
1226
1226
|
* // ActiveMotionGraphicsUri: "STRING_VALUE",
|
|
1227
1227
|
* // PipelineId: "STRING_VALUE",
|
|
1228
|
+
* // ChannelEngineVersion: { // ChannelEngineVersionResponse
|
|
1229
|
+
* // ExpirationDate: new Date("TIMESTAMP"),
|
|
1230
|
+
* // Version: "STRING_VALUE",
|
|
1231
|
+
* // },
|
|
1228
1232
|
* // },
|
|
1229
1233
|
* // ],
|
|
1230
1234
|
* // PipelinesRunningCount: Number("int"),
|
|
@@ -1243,6 +1247,10 @@ declare const StartChannelCommand_base: {
|
|
|
1243
1247
|
* // ChannelPlacementGroupId: "STRING_VALUE",
|
|
1244
1248
|
* // ClusterId: "STRING_VALUE",
|
|
1245
1249
|
* // },
|
|
1250
|
+
* // ChannelEngineVersion: {
|
|
1251
|
+
* // ExpirationDate: new Date("TIMESTAMP"),
|
|
1252
|
+
* // Version: "STRING_VALUE",
|
|
1253
|
+
* // },
|
|
1246
1254
|
* // };
|
|
1247
1255
|
*
|
|
1248
1256
|
* ```
|
|
@@ -1225,6 +1225,10 @@ declare const StopChannelCommand_base: {
|
|
|
1225
1225
|
* // ActiveMotionGraphicsActionName: "STRING_VALUE",
|
|
1226
1226
|
* // ActiveMotionGraphicsUri: "STRING_VALUE",
|
|
1227
1227
|
* // PipelineId: "STRING_VALUE",
|
|
1228
|
+
* // ChannelEngineVersion: { // ChannelEngineVersionResponse
|
|
1229
|
+
* // ExpirationDate: new Date("TIMESTAMP"),
|
|
1230
|
+
* // Version: "STRING_VALUE",
|
|
1231
|
+
* // },
|
|
1228
1232
|
* // },
|
|
1229
1233
|
* // ],
|
|
1230
1234
|
* // PipelinesRunningCount: Number("int"),
|
|
@@ -1243,6 +1247,10 @@ declare const StopChannelCommand_base: {
|
|
|
1243
1247
|
* // ChannelPlacementGroupId: "STRING_VALUE",
|
|
1244
1248
|
* // ClusterId: "STRING_VALUE",
|
|
1245
1249
|
* // },
|
|
1250
|
+
* // ChannelEngineVersion: {
|
|
1251
|
+
* // ExpirationDate: new Date("TIMESTAMP"),
|
|
1252
|
+
* // Version: "STRING_VALUE",
|
|
1253
|
+
* // },
|
|
1246
1254
|
* // };
|
|
1247
1255
|
*
|
|
1248
1256
|
* ```
|
|
@@ -1258,6 +1258,10 @@ declare const UpdateChannelClassCommand_base: {
|
|
|
1258
1258
|
* // ActiveMotionGraphicsActionName: "STRING_VALUE",
|
|
1259
1259
|
* // ActiveMotionGraphicsUri: "STRING_VALUE",
|
|
1260
1260
|
* // PipelineId: "STRING_VALUE",
|
|
1261
|
+
* // ChannelEngineVersion: { // ChannelEngineVersionResponse
|
|
1262
|
+
* // ExpirationDate: new Date("TIMESTAMP"),
|
|
1263
|
+
* // Version: "STRING_VALUE",
|
|
1264
|
+
* // },
|
|
1261
1265
|
* // },
|
|
1262
1266
|
* // ],
|
|
1263
1267
|
* // PipelinesRunningCount: Number("int"),
|
|
@@ -1276,6 +1280,10 @@ declare const UpdateChannelClassCommand_base: {
|
|
|
1276
1280
|
* // ChannelPlacementGroupId: "STRING_VALUE",
|
|
1277
1281
|
* // ClusterId: "STRING_VALUE",
|
|
1278
1282
|
* // },
|
|
1283
|
+
* // ChannelEngineVersion: {
|
|
1284
|
+
* // ExpirationDate: new Date("TIMESTAMP"),
|
|
1285
|
+
* // Version: "STRING_VALUE",
|
|
1286
|
+
* // },
|
|
1279
1287
|
* // },
|
|
1280
1288
|
* // };
|
|
1281
1289
|
*
|
|
@@ -1206,6 +1206,10 @@ declare const UpdateChannelCommand_base: {
|
|
|
1206
1206
|
* },
|
|
1207
1207
|
* Name: "STRING_VALUE",
|
|
1208
1208
|
* RoleArn: "STRING_VALUE",
|
|
1209
|
+
* ChannelEngineVersion: { // ChannelEngineVersionRequest
|
|
1210
|
+
* Version: "STRING_VALUE",
|
|
1211
|
+
* },
|
|
1212
|
+
* DryRun: true || false,
|
|
1209
1213
|
* };
|
|
1210
1214
|
* const command = new UpdateChannelCommand(input);
|
|
1211
1215
|
* const response = await client.send(command);
|
|
@@ -2396,6 +2400,10 @@ declare const UpdateChannelCommand_base: {
|
|
|
2396
2400
|
* // ActiveMotionGraphicsActionName: "STRING_VALUE",
|
|
2397
2401
|
* // ActiveMotionGraphicsUri: "STRING_VALUE",
|
|
2398
2402
|
* // PipelineId: "STRING_VALUE",
|
|
2403
|
+
* // ChannelEngineVersion: { // ChannelEngineVersionResponse
|
|
2404
|
+
* // ExpirationDate: new Date("TIMESTAMP"),
|
|
2405
|
+
* // Version: "STRING_VALUE",
|
|
2406
|
+
* // },
|
|
2399
2407
|
* // },
|
|
2400
2408
|
* // ],
|
|
2401
2409
|
* // PipelinesRunningCount: Number("int"),
|
|
@@ -2414,6 +2422,10 @@ declare const UpdateChannelCommand_base: {
|
|
|
2414
2422
|
* // ChannelPlacementGroupId: "STRING_VALUE",
|
|
2415
2423
|
* // ClusterId: "STRING_VALUE",
|
|
2416
2424
|
* // },
|
|
2425
|
+
* // ChannelEngineVersion: {
|
|
2426
|
+
* // ExpirationDate: new Date("TIMESTAMP"),
|
|
2427
|
+
* // Version: "STRING_VALUE",
|
|
2428
|
+
* // },
|
|
2417
2429
|
* // },
|
|
2418
2430
|
* // };
|
|
2419
2431
|
*
|
|
@@ -79,6 +79,7 @@ export * from "./ListOfferingsCommand";
|
|
|
79
79
|
export * from "./ListReservationsCommand";
|
|
80
80
|
export * from "./ListSignalMapsCommand";
|
|
81
81
|
export * from "./ListTagsForResourceCommand";
|
|
82
|
+
export * from "./ListVersionsCommand";
|
|
82
83
|
export * from "./PurchaseOfferingCommand";
|
|
83
84
|
export * from "./RebootInputDeviceCommand";
|
|
84
85
|
export * from "./RejectInputDeviceTransferCommand";
|
|
@@ -2312,6 +2312,22 @@ export interface ChannelEgressEndpoint {
|
|
|
2312
2312
|
*/
|
|
2313
2313
|
SourceIp?: string | undefined;
|
|
2314
2314
|
}
|
|
2315
|
+
/**
|
|
2316
|
+
* Placeholder documentation for ChannelEngineVersionResponse
|
|
2317
|
+
* @public
|
|
2318
|
+
*/
|
|
2319
|
+
export interface ChannelEngineVersionResponse {
|
|
2320
|
+
/**
|
|
2321
|
+
* The UTC time when the version expires.
|
|
2322
|
+
* @public
|
|
2323
|
+
*/
|
|
2324
|
+
ExpirationDate?: Date | undefined;
|
|
2325
|
+
/**
|
|
2326
|
+
* The build identifier for this version of the channel version.
|
|
2327
|
+
* @public
|
|
2328
|
+
*/
|
|
2329
|
+
Version?: string | undefined;
|
|
2330
|
+
}
|
|
2315
2331
|
/**
|
|
2316
2332
|
* @public
|
|
2317
2333
|
* @enum
|
|
@@ -3233,6 +3249,16 @@ export interface ChannelSummary {
|
|
|
3233
3249
|
* @public
|
|
3234
3250
|
*/
|
|
3235
3251
|
AnywhereSettings?: DescribeAnywhereSettings | undefined;
|
|
3252
|
+
/**
|
|
3253
|
+
* The engine version that you requested for this channel.
|
|
3254
|
+
* @public
|
|
3255
|
+
*/
|
|
3256
|
+
ChannelEngineVersion?: ChannelEngineVersionResponse | undefined;
|
|
3257
|
+
/**
|
|
3258
|
+
* The engine version that the running pipelines are using.
|
|
3259
|
+
* @public
|
|
3260
|
+
*/
|
|
3261
|
+
UsedChannelEngineVersions?: ChannelEngineVersionResponse[] | undefined;
|
|
3236
3262
|
}
|
|
3237
3263
|
/**
|
|
3238
3264
|
* Placeholder documentation for CloudWatchAlarmTemplateGroupSummary
|
|
@@ -6100,14 +6126,3 @@ export interface ArchiveOutputSettings {
|
|
|
6100
6126
|
*/
|
|
6101
6127
|
NameModifier?: string | undefined;
|
|
6102
6128
|
}
|
|
6103
|
-
/**
|
|
6104
|
-
* Cmaf Ingest Output Settings
|
|
6105
|
-
* @public
|
|
6106
|
-
*/
|
|
6107
|
-
export interface CmafIngestOutputSettings {
|
|
6108
|
-
/**
|
|
6109
|
-
* String concatenated to the end of the destination filename. Required for multiple outputs of the same type.
|
|
6110
|
-
* @public
|
|
6111
|
-
*/
|
|
6112
|
-
NameModifier?: string | undefined;
|
|
6113
|
-
}
|
|
@@ -1,6 +1,17 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { MediaLiveServiceException as __BaseException } from "./MediaLiveServiceException";
|
|
3
|
-
import { Algorithm, ArchiveOutputSettings, BatchFailedResultModel, BatchSuccessfulResultModel, CaptionLanguageMapping,
|
|
3
|
+
import { Algorithm, ArchiveOutputSettings, BatchFailedResultModel, BatchSuccessfulResultModel, CaptionLanguageMapping, ChannelEngineVersionResponse, ColorCorrection, Hdr10Settings, HlsAdMarkers, InputLocation, M2tsAbsentInputAudioBehavior, M2tsArib, M2tsAudioBufferModel, M2tsAudioStreamType, M2tsCcDescriptor, M2tsEbifControl, M2tsEsRateInPes, M2tsKlv, M2tsNielsenId3Behavior, M2tsPcrControl, M2tsScte35Control, M2tsSettings, OfferingDurationUnits, OfferingType, ReservationResourceSpecification } from "./models_0";
|
|
4
|
+
/**
|
|
5
|
+
* Cmaf Ingest Output Settings
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export interface CmafIngestOutputSettings {
|
|
9
|
+
/**
|
|
10
|
+
* String concatenated to the end of the destination filename. Required for multiple outputs of the same type.
|
|
11
|
+
* @public
|
|
12
|
+
*/
|
|
13
|
+
NameModifier?: string | undefined;
|
|
14
|
+
}
|
|
4
15
|
/**
|
|
5
16
|
* Frame Capture Output Settings
|
|
6
17
|
* @public
|
|
@@ -2253,6 +2264,11 @@ export interface PipelineDetail {
|
|
|
2253
2264
|
* @public
|
|
2254
2265
|
*/
|
|
2255
2266
|
PipelineId?: string | undefined;
|
|
2267
|
+
/**
|
|
2268
|
+
* Current engine version of the encoder for this pipeline.
|
|
2269
|
+
* @public
|
|
2270
|
+
*/
|
|
2271
|
+
ChannelEngineVersion?: ChannelEngineVersionResponse | undefined;
|
|
2256
2272
|
}
|
|
2257
2273
|
/**
|
|
2258
2274
|
* @public
|
|
@@ -6112,19 +6128,3 @@ export interface EpochLockingSettings {
|
|
|
6112
6128
|
*/
|
|
6113
6129
|
export interface PipelineLockingSettings {
|
|
6114
6130
|
}
|
|
6115
|
-
/**
|
|
6116
|
-
* Output Locking Settings
|
|
6117
|
-
* @public
|
|
6118
|
-
*/
|
|
6119
|
-
export interface OutputLockingSettings {
|
|
6120
|
-
/**
|
|
6121
|
-
* Epoch Locking Settings
|
|
6122
|
-
* @public
|
|
6123
|
-
*/
|
|
6124
|
-
EpochLockingSettings?: EpochLockingSettings | undefined;
|
|
6125
|
-
/**
|
|
6126
|
-
* Pipeline Locking Settings
|
|
6127
|
-
* @public
|
|
6128
|
-
*/
|
|
6129
|
-
PipelineLockingSettings?: PipelineLockingSettings | undefined;
|
|
6130
|
-
}
|
|
@@ -1,6 +1,22 @@
|
|
|
1
1
|
import { StreamingBlobTypes } from "@smithy/types";
|
|
2
|
-
import { AudioDescription, CaptionDescription, CdiInputSpecification, ChannelClass, ChannelEgressEndpoint, ChannelPipelineIdToRestart, ChannelPlacementGroupState, ChannelState, ChannelSummary, CloudWatchAlarmTemplateComparisonOperator, CloudWatchAlarmTemplateGroupSummary, CloudWatchAlarmTemplateStatistic, CloudWatchAlarmTemplateSummary, CloudWatchAlarmTemplateTargetResourceType, CloudWatchAlarmTemplateTreatMissingData, ClusterNetworkSettings, ClusterState, ClusterType, DescribeAnywhereSettings, DescribeChannelPlacementGroupSummary, DescribeClusterSummary, DescribeNetworkSummary, DescribeNodeSummary, DeviceSettingsSyncState, DeviceUpdateStatus, EventBridgeRuleTemplateEventType, EventBridgeRuleTemplateGroupSummary, EventBridgeRuleTemplateSummary, EventBridgeRuleTemplateTarget, Input, InputAttachment, InputClass, InputDestination, InputDestinationRequest, InputDeviceCodec, InputDeviceConfigurableAudioChannelPairConfig, InputDeviceConfiguredInput, InputDeviceConnectionState, InputDeviceHdSettings, InputDeviceNetworkSettings, InputDeviceOutputType, InputDeviceRequest, InputDeviceSettings, InputDeviceSummary, InputDeviceType, InputDeviceUhdSettings, InputNetworkLocation, InputSecurityGroup, InputSecurityGroupState, InputSource, InputSourceRequest, InputSourceType, InputSpecification, InputState, InputType, InputWhitelistRule, InputWhitelistRuleCidr, InterfaceMappingCreateRequest, InterfaceMappingUpdateRequest, IpPool, IpPoolCreateRequest, IpPoolUpdateRequest, LogLevel, MaintenanceDay, MaintenanceStatus, MediaConnectFlow, MediaConnectFlowRequest, MediaResourceNeighbor, MulticastSettings, MulticastSourceCreateRequest, MulticastSourceUpdateRequest, MultiplexOutputDestination, MultiplexProgramPipelineDetail, MultiplexProgramSummary, MultiplexState, MultiplexSummary, NetworkState, NodeConnectionState, NodeInterfaceMapping, NodeInterfaceMappingCreateRequest, NodeRole, NodeState, Offering, OfferingDurationUnits, OfferingType, OutputDestination, ReservationResourceSpecification, Route, SrtSettings, VpcOutputSettingsDescription } from "./models_0";
|
|
3
|
-
import { AcceptHeader, AccountConfiguration, AnywhereSettings, AvailBlanking, AvailConfiguration, BlackoutSlate, ColorCorrectionSettings, FeatureActivations, GlobalConfigurationInputEndAction, GlobalConfigurationOutputLockingMode, InputLossBehavior, OutputGroup,
|
|
2
|
+
import { AudioDescription, CaptionDescription, CdiInputSpecification, ChannelClass, ChannelEgressEndpoint, ChannelEngineVersionResponse, ChannelPipelineIdToRestart, ChannelPlacementGroupState, ChannelState, ChannelSummary, CloudWatchAlarmTemplateComparisonOperator, CloudWatchAlarmTemplateGroupSummary, CloudWatchAlarmTemplateStatistic, CloudWatchAlarmTemplateSummary, CloudWatchAlarmTemplateTargetResourceType, CloudWatchAlarmTemplateTreatMissingData, ClusterNetworkSettings, ClusterState, ClusterType, DescribeAnywhereSettings, DescribeChannelPlacementGroupSummary, DescribeClusterSummary, DescribeNetworkSummary, DescribeNodeSummary, DeviceSettingsSyncState, DeviceUpdateStatus, EventBridgeRuleTemplateEventType, EventBridgeRuleTemplateGroupSummary, EventBridgeRuleTemplateSummary, EventBridgeRuleTemplateTarget, Input, InputAttachment, InputClass, InputDestination, InputDestinationRequest, InputDeviceCodec, InputDeviceConfigurableAudioChannelPairConfig, InputDeviceConfiguredInput, InputDeviceConnectionState, InputDeviceHdSettings, InputDeviceNetworkSettings, InputDeviceOutputType, InputDeviceRequest, InputDeviceSettings, InputDeviceSummary, InputDeviceType, InputDeviceUhdSettings, InputNetworkLocation, InputSecurityGroup, InputSecurityGroupState, InputSource, InputSourceRequest, InputSourceType, InputSpecification, InputState, InputType, InputWhitelistRule, InputWhitelistRuleCidr, InterfaceMappingCreateRequest, InterfaceMappingUpdateRequest, IpPool, IpPoolCreateRequest, IpPoolUpdateRequest, LogLevel, MaintenanceDay, MaintenanceStatus, MediaConnectFlow, MediaConnectFlowRequest, MediaResourceNeighbor, MulticastSettings, MulticastSourceCreateRequest, MulticastSourceUpdateRequest, MultiplexOutputDestination, MultiplexProgramPipelineDetail, MultiplexProgramSummary, MultiplexState, MultiplexSummary, NetworkState, NodeConnectionState, NodeInterfaceMapping, NodeInterfaceMappingCreateRequest, NodeRole, NodeState, Offering, OfferingDurationUnits, OfferingType, OutputDestination, ReservationResourceSpecification, Route, SrtSettings, VpcOutputSettingsDescription } from "./models_0";
|
|
3
|
+
import { AcceptHeader, AccountConfiguration, AnywhereSettings, AvailBlanking, AvailConfiguration, BlackoutSlate, ColorCorrectionSettings, EpochLockingSettings, FeatureActivations, GlobalConfigurationInputEndAction, GlobalConfigurationOutputLockingMode, InputLossBehavior, OutputGroup, PipelineDetail, PipelineLockingSettings, RenewalSettings, Reservation, ReservationState, RouteCreateRequest, RouteUpdateRequest, ScheduleAction, SignalMapMonitorDeploymentStatus, SignalMapStatus, SignalMapSummary, SrtCallerSourceRequest, ThumbnailDetail, TransferringInputDeviceSummary, VideoDescription } from "./models_1";
|
|
4
|
+
/**
|
|
5
|
+
* Output Locking Settings
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export interface OutputLockingSettings {
|
|
9
|
+
/**
|
|
10
|
+
* Epoch Locking Settings
|
|
11
|
+
* @public
|
|
12
|
+
*/
|
|
13
|
+
EpochLockingSettings?: EpochLockingSettings | undefined;
|
|
14
|
+
/**
|
|
15
|
+
* Pipeline Locking Settings
|
|
16
|
+
* @public
|
|
17
|
+
*/
|
|
18
|
+
PipelineLockingSettings?: PipelineLockingSettings | undefined;
|
|
19
|
+
}
|
|
4
20
|
/**
|
|
5
21
|
* @public
|
|
6
22
|
* @enum
|
|
@@ -375,6 +391,22 @@ export interface Channel {
|
|
|
375
391
|
* @public
|
|
376
392
|
*/
|
|
377
393
|
AnywhereSettings?: DescribeAnywhereSettings | undefined;
|
|
394
|
+
/**
|
|
395
|
+
* Requested engine version for this channel.
|
|
396
|
+
* @public
|
|
397
|
+
*/
|
|
398
|
+
ChannelEngineVersion?: ChannelEngineVersionResponse | undefined;
|
|
399
|
+
}
|
|
400
|
+
/**
|
|
401
|
+
* Placeholder documentation for ChannelEngineVersionRequest
|
|
402
|
+
* @public
|
|
403
|
+
*/
|
|
404
|
+
export interface ChannelEngineVersionRequest {
|
|
405
|
+
/**
|
|
406
|
+
* The build identifier of the engine version to use for this channel. Specify 'DEFAULT' to reset to the default version.
|
|
407
|
+
* @public
|
|
408
|
+
*/
|
|
409
|
+
Version?: string | undefined;
|
|
378
410
|
}
|
|
379
411
|
/**
|
|
380
412
|
* A request to claim an AWS Elemental device that you have purchased from a third-party vendor.
|
|
@@ -560,6 +592,16 @@ export interface CreateChannelRequest {
|
|
|
560
592
|
* @public
|
|
561
593
|
*/
|
|
562
594
|
AnywhereSettings?: AnywhereSettings | undefined;
|
|
595
|
+
/**
|
|
596
|
+
* The desired engine version for this channel.
|
|
597
|
+
* @public
|
|
598
|
+
*/
|
|
599
|
+
ChannelEngineVersion?: ChannelEngineVersionRequest | undefined;
|
|
600
|
+
/**
|
|
601
|
+
* Placeholder documentation for __boolean
|
|
602
|
+
* @public
|
|
603
|
+
*/
|
|
604
|
+
DryRun?: boolean | undefined;
|
|
563
605
|
}
|
|
564
606
|
/**
|
|
565
607
|
* Placeholder documentation for CreateChannelResponse
|
|
@@ -2212,6 +2254,11 @@ export interface DeleteChannelResponse {
|
|
|
2212
2254
|
* @public
|
|
2213
2255
|
*/
|
|
2214
2256
|
AnywhereSettings?: DescribeAnywhereSettings | undefined;
|
|
2257
|
+
/**
|
|
2258
|
+
* Requested engine version for this channel.
|
|
2259
|
+
* @public
|
|
2260
|
+
*/
|
|
2261
|
+
ChannelEngineVersion?: ChannelEngineVersionResponse | undefined;
|
|
2215
2262
|
}
|
|
2216
2263
|
/**
|
|
2217
2264
|
* Placeholder documentation for DeleteChannelPlacementGroupRequest
|
|
@@ -2929,6 +2976,11 @@ export interface DescribeChannelResponse {
|
|
|
2929
2976
|
* @public
|
|
2930
2977
|
*/
|
|
2931
2978
|
AnywhereSettings?: DescribeAnywhereSettings | undefined;
|
|
2979
|
+
/**
|
|
2980
|
+
* Requested engine version for this channel.
|
|
2981
|
+
* @public
|
|
2982
|
+
*/
|
|
2983
|
+
ChannelEngineVersion?: ChannelEngineVersionResponse | undefined;
|
|
2932
2984
|
}
|
|
2933
2985
|
/**
|
|
2934
2986
|
* Placeholder documentation for DescribeChannelPlacementGroupRequest
|
|
@@ -5041,6 +5093,23 @@ export interface ListTagsForResourceResponse {
|
|
|
5041
5093
|
*/
|
|
5042
5094
|
Tags?: Record<string, string> | undefined;
|
|
5043
5095
|
}
|
|
5096
|
+
/**
|
|
5097
|
+
* Placeholder documentation for ListVersionsRequest
|
|
5098
|
+
* @public
|
|
5099
|
+
*/
|
|
5100
|
+
export interface ListVersionsRequest {
|
|
5101
|
+
}
|
|
5102
|
+
/**
|
|
5103
|
+
* Placeholder documentation for ListVersionsResponse
|
|
5104
|
+
* @public
|
|
5105
|
+
*/
|
|
5106
|
+
export interface ListVersionsResponse {
|
|
5107
|
+
/**
|
|
5108
|
+
* List of engine versions that are available for this AWS account.
|
|
5109
|
+
* @public
|
|
5110
|
+
*/
|
|
5111
|
+
Versions?: ChannelEngineVersionResponse[] | undefined;
|
|
5112
|
+
}
|
|
5044
5113
|
/**
|
|
5045
5114
|
* Placeholder documentation for MaintenanceUpdateSettings
|
|
5046
5115
|
* @public
|
|
@@ -5288,6 +5357,11 @@ export interface RestartChannelPipelinesResponse {
|
|
|
5288
5357
|
* @public
|
|
5289
5358
|
*/
|
|
5290
5359
|
AnywhereSettings?: DescribeAnywhereSettings | undefined;
|
|
5360
|
+
/**
|
|
5361
|
+
* Requested engine version for this channel.
|
|
5362
|
+
* @public
|
|
5363
|
+
*/
|
|
5364
|
+
ChannelEngineVersion?: ChannelEngineVersionResponse | undefined;
|
|
5291
5365
|
}
|
|
5292
5366
|
/**
|
|
5293
5367
|
* Placeholder documentation for StartChannelRequest
|
|
@@ -5402,6 +5476,11 @@ export interface StartChannelResponse {
|
|
|
5402
5476
|
* @public
|
|
5403
5477
|
*/
|
|
5404
5478
|
AnywhereSettings?: DescribeAnywhereSettings | undefined;
|
|
5479
|
+
/**
|
|
5480
|
+
* Requested engine version for this channel.
|
|
5481
|
+
* @public
|
|
5482
|
+
*/
|
|
5483
|
+
ChannelEngineVersion?: ChannelEngineVersionResponse | undefined;
|
|
5405
5484
|
}
|
|
5406
5485
|
/**
|
|
5407
5486
|
* Placeholder documentation for StartDeleteMonitorDeploymentRequest
|
|
@@ -5973,6 +6052,11 @@ export interface StopChannelResponse {
|
|
|
5973
6052
|
* @public
|
|
5974
6053
|
*/
|
|
5975
6054
|
AnywhereSettings?: DescribeAnywhereSettings | undefined;
|
|
6055
|
+
/**
|
|
6056
|
+
* Requested engine version for this channel.
|
|
6057
|
+
* @public
|
|
6058
|
+
*/
|
|
6059
|
+
ChannelEngineVersion?: ChannelEngineVersionResponse | undefined;
|
|
5976
6060
|
}
|
|
5977
6061
|
/**
|
|
5978
6062
|
* Placeholder documentation for StopInputDeviceRequest
|
|
@@ -6167,6 +6251,16 @@ export interface UpdateChannelRequest {
|
|
|
6167
6251
|
* @public
|
|
6168
6252
|
*/
|
|
6169
6253
|
RoleArn?: string | undefined;
|
|
6254
|
+
/**
|
|
6255
|
+
* Channel engine version for this channel
|
|
6256
|
+
* @public
|
|
6257
|
+
*/
|
|
6258
|
+
ChannelEngineVersion?: ChannelEngineVersionRequest | undefined;
|
|
6259
|
+
/**
|
|
6260
|
+
* Placeholder documentation for __boolean
|
|
6261
|
+
* @public
|
|
6262
|
+
*/
|
|
6263
|
+
DryRun?: boolean | undefined;
|
|
6170
6264
|
}
|
|
6171
6265
|
/**
|
|
6172
6266
|
* Placeholder documentation for UpdateChannelResponse
|
|
@@ -81,6 +81,7 @@ import { ListOfferingsCommandInput, ListOfferingsCommandOutput } from "../comman
|
|
|
81
81
|
import { ListReservationsCommandInput, ListReservationsCommandOutput } from "../commands/ListReservationsCommand";
|
|
82
82
|
import { ListSignalMapsCommandInput, ListSignalMapsCommandOutput } from "../commands/ListSignalMapsCommand";
|
|
83
83
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
84
|
+
import { ListVersionsCommandInput, ListVersionsCommandOutput } from "../commands/ListVersionsCommand";
|
|
84
85
|
import { PurchaseOfferingCommandInput, PurchaseOfferingCommandOutput } from "../commands/PurchaseOfferingCommand";
|
|
85
86
|
import { RebootInputDeviceCommandInput, RebootInputDeviceCommandOutput } from "../commands/RebootInputDeviceCommand";
|
|
86
87
|
import { RejectInputDeviceTransferCommandInput, RejectInputDeviceTransferCommandOutput } from "../commands/RejectInputDeviceTransferCommand";
|
|
@@ -438,6 +439,10 @@ export declare const se_ListSignalMapsCommand: (input: ListSignalMapsCommandInpu
|
|
|
438
439
|
* serializeAws_restJson1ListTagsForResourceCommand
|
|
439
440
|
*/
|
|
440
441
|
export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
442
|
+
/**
|
|
443
|
+
* serializeAws_restJson1ListVersionsCommand
|
|
444
|
+
*/
|
|
445
|
+
export declare const se_ListVersionsCommand: (input: ListVersionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
441
446
|
/**
|
|
442
447
|
* serializeAws_restJson1PurchaseOfferingCommand
|
|
443
448
|
*/
|
|
@@ -894,6 +899,10 @@ export declare const de_ListSignalMapsCommand: (output: __HttpResponse, context:
|
|
|
894
899
|
* deserializeAws_restJson1ListTagsForResourceCommand
|
|
895
900
|
*/
|
|
896
901
|
export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
902
|
+
/**
|
|
903
|
+
* deserializeAws_restJson1ListVersionsCommand
|
|
904
|
+
*/
|
|
905
|
+
export declare const de_ListVersionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListVersionsCommandOutput>;
|
|
897
906
|
/**
|
|
898
907
|
* deserializeAws_restJson1PurchaseOfferingCommand
|
|
899
908
|
*/
|
|
@@ -323,6 +323,10 @@ import {
|
|
|
323
323
|
ListTagsForResourceCommandInput,
|
|
324
324
|
ListTagsForResourceCommandOutput,
|
|
325
325
|
} from "./commands/ListTagsForResourceCommand";
|
|
326
|
+
import {
|
|
327
|
+
ListVersionsCommandInput,
|
|
328
|
+
ListVersionsCommandOutput,
|
|
329
|
+
} from "./commands/ListVersionsCommand";
|
|
326
330
|
import {
|
|
327
331
|
PurchaseOfferingCommandInput,
|
|
328
332
|
PurchaseOfferingCommandOutput,
|
|
@@ -1570,6 +1574,20 @@ export interface MediaLive {
|
|
|
1570
1574
|
options: __HttpHandlerOptions,
|
|
1571
1575
|
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
1572
1576
|
): void;
|
|
1577
|
+
listVersions(): Promise<ListVersionsCommandOutput>;
|
|
1578
|
+
listVersions(
|
|
1579
|
+
args: ListVersionsCommandInput,
|
|
1580
|
+
options?: __HttpHandlerOptions
|
|
1581
|
+
): Promise<ListVersionsCommandOutput>;
|
|
1582
|
+
listVersions(
|
|
1583
|
+
args: ListVersionsCommandInput,
|
|
1584
|
+
cb: (err: any, data?: ListVersionsCommandOutput) => void
|
|
1585
|
+
): void;
|
|
1586
|
+
listVersions(
|
|
1587
|
+
args: ListVersionsCommandInput,
|
|
1588
|
+
options: __HttpHandlerOptions,
|
|
1589
|
+
cb: (err: any, data?: ListVersionsCommandOutput) => void
|
|
1590
|
+
): void;
|
|
1573
1591
|
purchaseOffering(
|
|
1574
1592
|
args: PurchaseOfferingCommandInput,
|
|
1575
1593
|
options?: __HttpHandlerOptions
|
|
@@ -370,6 +370,10 @@ import {
|
|
|
370
370
|
ListTagsForResourceCommandInput,
|
|
371
371
|
ListTagsForResourceCommandOutput,
|
|
372
372
|
} from "./commands/ListTagsForResourceCommand";
|
|
373
|
+
import {
|
|
374
|
+
ListVersionsCommandInput,
|
|
375
|
+
ListVersionsCommandOutput,
|
|
376
|
+
} from "./commands/ListVersionsCommand";
|
|
373
377
|
import {
|
|
374
378
|
PurchaseOfferingCommandInput,
|
|
375
379
|
PurchaseOfferingCommandOutput,
|
|
@@ -591,6 +595,7 @@ export type ServiceInputTypes =
|
|
|
591
595
|
| ListReservationsCommandInput
|
|
592
596
|
| ListSignalMapsCommandInput
|
|
593
597
|
| ListTagsForResourceCommandInput
|
|
598
|
+
| ListVersionsCommandInput
|
|
594
599
|
| PurchaseOfferingCommandInput
|
|
595
600
|
| RebootInputDeviceCommandInput
|
|
596
601
|
| RejectInputDeviceTransferCommandInput
|
|
@@ -706,6 +711,7 @@ export type ServiceOutputTypes =
|
|
|
706
711
|
| ListReservationsCommandOutput
|
|
707
712
|
| ListSignalMapsCommandOutput
|
|
708
713
|
| ListTagsForResourceCommandOutput
|
|
714
|
+
| ListVersionsCommandOutput
|
|
709
715
|
| PurchaseOfferingCommandOutput
|
|
710
716
|
| RebootInputDeviceCommandOutput
|
|
711
717
|
| RejectInputDeviceTransferCommandOutput
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
MediaLiveClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../MediaLiveClient";
|
|
8
|
+
import { ListVersionsRequest, ListVersionsResponse } from "../models/models_2";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface ListVersionsCommandInput extends ListVersionsRequest {}
|
|
12
|
+
export interface ListVersionsCommandOutput
|
|
13
|
+
extends ListVersionsResponse,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const ListVersionsCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: ListVersionsCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
ListVersionsCommandInput,
|
|
20
|
+
ListVersionsCommandOutput,
|
|
21
|
+
MediaLiveClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
...[input]: [] | [ListVersionsCommandInput]
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
ListVersionsCommandInput,
|
|
29
|
+
ListVersionsCommandOutput,
|
|
30
|
+
MediaLiveClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class ListVersionsCommand extends ListVersionsCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: {};
|
|
40
|
+
output: ListVersionsResponse;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: ListVersionsCommandInput;
|
|
44
|
+
output: ListVersionsCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -79,6 +79,7 @@ export * from "./ListOfferingsCommand";
|
|
|
79
79
|
export * from "./ListReservationsCommand";
|
|
80
80
|
export * from "./ListSignalMapsCommand";
|
|
81
81
|
export * from "./ListTagsForResourceCommand";
|
|
82
|
+
export * from "./ListVersionsCommand";
|
|
82
83
|
export * from "./PurchaseOfferingCommand";
|
|
83
84
|
export * from "./RebootInputDeviceCommand";
|
|
84
85
|
export * from "./RejectInputDeviceTransferCommand";
|