@aws-sdk/client-medialive 3.299.0 → 3.300.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/dist-cjs/protocols/Aws_restJson1.js +9 -0
- package/dist-es/protocols/Aws_restJson1.js +9 -0
- package/dist-types/commands/AcceptInputDeviceTransferCommand.d.ts +3 -0
- package/dist-types/commands/BatchDeleteCommand.d.ts +14 -0
- package/dist-types/commands/BatchStartCommand.d.ts +8 -0
- package/dist-types/commands/BatchStopCommand.d.ts +8 -0
- package/dist-types/commands/BatchUpdateScheduleCommand.d.ts +137 -0
- package/dist-types/commands/CancelInputDeviceTransferCommand.d.ts +3 -0
- package/dist-types/commands/ClaimDeviceCommand.d.ts +3 -0
- package/dist-types/commands/CreateChannelCommand.d.ts +1005 -0
- package/dist-types/commands/CreateInputCommand.d.ts +42 -0
- package/dist-types/commands/CreateInputSecurityGroupCommand.d.ts +10 -0
- package/dist-types/commands/CreateMultiplexCommand.d.ts +16 -0
- package/dist-types/commands/CreateMultiplexProgramCommand.d.ts +21 -0
- package/dist-types/commands/CreatePartnerInputCommand.d.ts +7 -0
- package/dist-types/commands/CreateTagsCommand.d.ts +6 -0
- package/dist-types/commands/DeleteChannelCommand.d.ts +3 -0
- package/dist-types/commands/DeleteInputCommand.d.ts +3 -0
- package/dist-types/commands/DeleteInputSecurityGroupCommand.d.ts +3 -0
- package/dist-types/commands/DeleteMultiplexCommand.d.ts +3 -0
- package/dist-types/commands/DeleteMultiplexProgramCommand.d.ts +4 -0
- package/dist-types/commands/DeleteReservationCommand.d.ts +3 -0
- package/dist-types/commands/DeleteScheduleCommand.d.ts +3 -0
- package/dist-types/commands/DeleteTagsCommand.d.ts +6 -0
- package/dist-types/commands/DescribeChannelCommand.d.ts +3 -0
- package/dist-types/commands/DescribeInputCommand.d.ts +3 -0
- package/dist-types/commands/DescribeInputDeviceCommand.d.ts +3 -0
- package/dist-types/commands/DescribeInputDeviceThumbnailCommand.d.ts +4 -0
- package/dist-types/commands/DescribeInputSecurityGroupCommand.d.ts +3 -0
- package/dist-types/commands/DescribeMultiplexCommand.d.ts +3 -0
- package/dist-types/commands/DescribeMultiplexProgramCommand.d.ts +4 -0
- package/dist-types/commands/DescribeOfferingCommand.d.ts +3 -0
- package/dist-types/commands/DescribeReservationCommand.d.ts +3 -0
- package/dist-types/commands/DescribeScheduleCommand.d.ts +5 -0
- package/dist-types/commands/ListChannelsCommand.d.ts +4 -0
- package/dist-types/commands/ListInputDeviceTransfersCommand.d.ts +5 -0
- package/dist-types/commands/ListInputDevicesCommand.d.ts +4 -0
- package/dist-types/commands/ListInputSecurityGroupsCommand.d.ts +4 -0
- package/dist-types/commands/ListInputsCommand.d.ts +4 -0
- package/dist-types/commands/ListMultiplexProgramsCommand.d.ts +5 -0
- package/dist-types/commands/ListMultiplexesCommand.d.ts +4 -0
- package/dist-types/commands/ListOfferingsCommand.d.ts +14 -0
- package/dist-types/commands/ListReservationsCommand.d.ts +12 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
- package/dist-types/commands/PurchaseOfferingCommand.d.ts +14 -0
- package/dist-types/commands/RebootInputDeviceCommand.d.ts +4 -0
- package/dist-types/commands/RejectInputDeviceTransferCommand.d.ts +3 -0
- package/dist-types/commands/StartChannelCommand.d.ts +3 -0
- package/dist-types/commands/StartInputDeviceMaintenanceWindowCommand.d.ts +3 -0
- package/dist-types/commands/StartMultiplexCommand.d.ts +3 -0
- package/dist-types/commands/StopChannelCommand.d.ts +3 -0
- package/dist-types/commands/StopMultiplexCommand.d.ts +3 -0
- package/dist-types/commands/TransferInputDeviceCommand.d.ts +6 -0
- package/dist-types/commands/UpdateChannelClassCommand.d.ts +26 -0
- package/dist-types/commands/UpdateChannelCommand.d.ts +990 -0
- package/dist-types/commands/UpdateInputCommand.d.ts +30 -0
- package/dist-types/commands/UpdateInputDeviceCommand.d.ts +14 -0
- package/dist-types/commands/UpdateInputSecurityGroupCommand.d.ts +11 -0
- package/dist-types/commands/UpdateMultiplexCommand.d.ts +10 -0
- package/dist-types/commands/UpdateMultiplexProgramCommand.d.ts +20 -0
- package/dist-types/commands/UpdateReservationCommand.d.ts +8 -0
- package/dist-types/models/models_0.d.ts +4 -0
- package/dist-types/models/models_1.d.ts +9 -1
- package/dist-types/models/models_2.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/dist-types/ts3.4/models/models_1.d.ts +3 -1
- package/dist-types/ts3.4/models/models_2.d.ts +1 -0
- package/package.json +8 -8
|
@@ -26,6 +26,36 @@ export interface UpdateInputCommandOutput extends UpdateInputResponse, __Metadat
|
|
|
26
26
|
* import { MediaLiveClient, UpdateInputCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, UpdateInputCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* Destinations: [
|
|
31
|
+
* {
|
|
32
|
+
* StreamName: "STRING_VALUE",
|
|
33
|
+
* },
|
|
34
|
+
* ],
|
|
35
|
+
* InputDevices: [
|
|
36
|
+
* {
|
|
37
|
+
* Id: "STRING_VALUE",
|
|
38
|
+
* },
|
|
39
|
+
* ],
|
|
40
|
+
* InputId: "STRING_VALUE", // required
|
|
41
|
+
* InputSecurityGroups: [
|
|
42
|
+
* "STRING_VALUE",
|
|
43
|
+
* ],
|
|
44
|
+
* MediaConnectFlows: [
|
|
45
|
+
* {
|
|
46
|
+
* FlowArn: "STRING_VALUE",
|
|
47
|
+
* },
|
|
48
|
+
* ],
|
|
49
|
+
* Name: "STRING_VALUE",
|
|
50
|
+
* RoleArn: "STRING_VALUE",
|
|
51
|
+
* Sources: [
|
|
52
|
+
* {
|
|
53
|
+
* PasswordParam: "STRING_VALUE",
|
|
54
|
+
* Url: "STRING_VALUE",
|
|
55
|
+
* Username: "STRING_VALUE",
|
|
56
|
+
* },
|
|
57
|
+
* ],
|
|
58
|
+
* };
|
|
29
59
|
* const command = new UpdateInputCommand(input);
|
|
30
60
|
* const response = await client.send(command);
|
|
31
61
|
* ```
|
|
@@ -26,6 +26,20 @@ export interface UpdateInputDeviceCommandOutput extends UpdateInputDeviceRespons
|
|
|
26
26
|
* import { MediaLiveClient, UpdateInputDeviceCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, UpdateInputDeviceCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* HdDeviceSettings: {
|
|
31
|
+
* ConfiguredInput: "AUTO" || "HDMI" || "SDI",
|
|
32
|
+
* MaxBitrate: Number("int"),
|
|
33
|
+
* LatencyMs: Number("int"),
|
|
34
|
+
* },
|
|
35
|
+
* InputDeviceId: "STRING_VALUE", // required
|
|
36
|
+
* Name: "STRING_VALUE",
|
|
37
|
+
* UhdDeviceSettings: {
|
|
38
|
+
* ConfiguredInput: "AUTO" || "HDMI" || "SDI",
|
|
39
|
+
* MaxBitrate: Number("int"),
|
|
40
|
+
* LatencyMs: Number("int"),
|
|
41
|
+
* },
|
|
42
|
+
* };
|
|
29
43
|
* const command = new UpdateInputDeviceCommand(input);
|
|
30
44
|
* const response = await client.send(command);
|
|
31
45
|
* ```
|
|
@@ -26,6 +26,17 @@ export interface UpdateInputSecurityGroupCommandOutput extends UpdateInputSecuri
|
|
|
26
26
|
* import { MediaLiveClient, UpdateInputSecurityGroupCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, UpdateInputSecurityGroupCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* InputSecurityGroupId: "STRING_VALUE", // required
|
|
31
|
+
* Tags: {
|
|
32
|
+
* "<keys>": "STRING_VALUE",
|
|
33
|
+
* },
|
|
34
|
+
* WhitelistRules: [
|
|
35
|
+
* {
|
|
36
|
+
* Cidr: "STRING_VALUE",
|
|
37
|
+
* },
|
|
38
|
+
* ],
|
|
39
|
+
* };
|
|
29
40
|
* const command = new UpdateInputSecurityGroupCommand(input);
|
|
30
41
|
* const response = await client.send(command);
|
|
31
42
|
* ```
|
|
@@ -26,6 +26,16 @@ export interface UpdateMultiplexCommandOutput extends UpdateMultiplexResponse, _
|
|
|
26
26
|
* import { MediaLiveClient, UpdateMultiplexCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, UpdateMultiplexCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* MultiplexId: "STRING_VALUE", // required
|
|
31
|
+
* MultiplexSettings: {
|
|
32
|
+
* MaximumVideoBufferDelayMilliseconds: Number("int"),
|
|
33
|
+
* TransportStreamBitrate: Number("int"), // required
|
|
34
|
+
* TransportStreamId: Number("int"), // required
|
|
35
|
+
* TransportStreamReservedBitrate: Number("int"),
|
|
36
|
+
* },
|
|
37
|
+
* Name: "STRING_VALUE",
|
|
38
|
+
* };
|
|
29
39
|
* const command = new UpdateMultiplexCommand(input);
|
|
30
40
|
* const response = await client.send(command);
|
|
31
41
|
* ```
|
|
@@ -26,6 +26,26 @@ export interface UpdateMultiplexProgramCommandOutput extends UpdateMultiplexProg
|
|
|
26
26
|
* import { MediaLiveClient, UpdateMultiplexProgramCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, UpdateMultiplexProgramCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* MultiplexId: "STRING_VALUE", // required
|
|
31
|
+
* MultiplexProgramSettings: {
|
|
32
|
+
* PreferredChannelPipeline: "CURRENTLY_ACTIVE" || "PIPELINE_0" || "PIPELINE_1",
|
|
33
|
+
* ProgramNumber: Number("int"), // required
|
|
34
|
+
* ServiceDescriptor: {
|
|
35
|
+
* ProviderName: "STRING_VALUE", // required
|
|
36
|
+
* ServiceName: "STRING_VALUE", // required
|
|
37
|
+
* },
|
|
38
|
+
* VideoSettings: {
|
|
39
|
+
* ConstantBitrate: Number("int"),
|
|
40
|
+
* StatmuxSettings: {
|
|
41
|
+
* MaximumBitrate: Number("int"),
|
|
42
|
+
* MinimumBitrate: Number("int"),
|
|
43
|
+
* Priority: Number("int"),
|
|
44
|
+
* },
|
|
45
|
+
* },
|
|
46
|
+
* },
|
|
47
|
+
* ProgramName: "STRING_VALUE", // required
|
|
48
|
+
* };
|
|
29
49
|
* const command = new UpdateMultiplexProgramCommand(input);
|
|
30
50
|
* const response = await client.send(command);
|
|
31
51
|
* ```
|
|
@@ -26,6 +26,14 @@ export interface UpdateReservationCommandOutput extends UpdateReservationRespons
|
|
|
26
26
|
* import { MediaLiveClient, UpdateReservationCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, UpdateReservationCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* Name: "STRING_VALUE",
|
|
31
|
+
* RenewalSettings: {
|
|
32
|
+
* AutomaticRenewal: "DISABLED" || "ENABLED" || "UNAVAILABLE",
|
|
33
|
+
* RenewalCount: Number("int"),
|
|
34
|
+
* },
|
|
35
|
+
* ReservationId: "STRING_VALUE", // required
|
|
36
|
+
* };
|
|
29
37
|
* const command = new UpdateReservationCommand(input);
|
|
30
38
|
* const response = await client.send(command);
|
|
31
39
|
* ```
|
|
@@ -2802,6 +2802,10 @@ export interface InputDeviceSummary {
|
|
|
2802
2802
|
* Settings that describe an input device that is type UHD.
|
|
2803
2803
|
*/
|
|
2804
2804
|
UhdDeviceSettings?: InputDeviceUhdSettings;
|
|
2805
|
+
/**
|
|
2806
|
+
* A collection of key-value pairs.
|
|
2807
|
+
*/
|
|
2808
|
+
Tags?: Record<string, string>;
|
|
2805
2809
|
}
|
|
2806
2810
|
/**
|
|
2807
2811
|
* @public
|
|
@@ -782,7 +782,11 @@ export interface HlsId3SegmentTaggingScheduleActionSettings {
|
|
|
782
782
|
/**
|
|
783
783
|
* ID3 tag to insert into each segment. Supports special keyword identifiers to substitute in segment-related values.\nSupported keyword identifiers: https://docs.aws.amazon.com/medialive/latest/ug/variable-data-identifiers.html
|
|
784
784
|
*/
|
|
785
|
-
Tag
|
|
785
|
+
Tag?: string;
|
|
786
|
+
/**
|
|
787
|
+
* Base64 string formatted according to the ID3 specification: http://id3.org/id3v2.4.0-structure
|
|
788
|
+
*/
|
|
789
|
+
Id3?: string;
|
|
786
790
|
}
|
|
787
791
|
/**
|
|
788
792
|
* @public
|
|
@@ -4453,6 +4457,10 @@ export interface DescribeInputDeviceResponse {
|
|
|
4453
4457
|
* Settings that describe an input device that is type UHD.
|
|
4454
4458
|
*/
|
|
4455
4459
|
UhdDeviceSettings?: InputDeviceUhdSettings;
|
|
4460
|
+
/**
|
|
4461
|
+
* A collection of key-value pairs.
|
|
4462
|
+
*/
|
|
4463
|
+
Tags?: Record<string, string>;
|
|
4456
4464
|
}
|
|
4457
4465
|
/**
|
|
4458
4466
|
* @public
|
|
@@ -447,6 +447,10 @@ export interface UpdateInputDeviceResponse {
|
|
|
447
447
|
* Settings that describe an input device that is type UHD.
|
|
448
448
|
*/
|
|
449
449
|
UhdDeviceSettings?: InputDeviceUhdSettings;
|
|
450
|
+
/**
|
|
451
|
+
* A collection of key-value pairs.
|
|
452
|
+
*/
|
|
453
|
+
Tags?: Record<string, string>;
|
|
450
454
|
}
|
|
451
455
|
/**
|
|
452
456
|
* @public
|
|
@@ -1029,6 +1029,7 @@ export interface InputDeviceSummary {
|
|
|
1029
1029
|
SerialNumber?: string;
|
|
1030
1030
|
Type?: InputDeviceType | string;
|
|
1031
1031
|
UhdDeviceSettings?: InputDeviceUhdSettings;
|
|
1032
|
+
Tags?: Record<string, string>;
|
|
1032
1033
|
}
|
|
1033
1034
|
export declare enum InputSecurityGroupState {
|
|
1034
1035
|
DELETED = "DELETED",
|
|
@@ -333,7 +333,8 @@ export interface Reservation {
|
|
|
333
333
|
UsagePrice?: number;
|
|
334
334
|
}
|
|
335
335
|
export interface HlsId3SegmentTaggingScheduleActionSettings {
|
|
336
|
-
Tag
|
|
336
|
+
Tag?: string;
|
|
337
|
+
Id3?: string;
|
|
337
338
|
}
|
|
338
339
|
export interface HlsTimedMetadataScheduleActionSettings {
|
|
339
340
|
Id3: string | undefined;
|
|
@@ -1560,6 +1561,7 @@ export interface DescribeInputDeviceResponse {
|
|
|
1560
1561
|
SerialNumber?: string;
|
|
1561
1562
|
Type?: InputDeviceType | string;
|
|
1562
1563
|
UhdDeviceSettings?: InputDeviceUhdSettings;
|
|
1564
|
+
Tags?: Record<string, string>;
|
|
1563
1565
|
}
|
|
1564
1566
|
export interface DescribeInputDeviceThumbnailRequest {
|
|
1565
1567
|
InputDeviceId: string | undefined;
|
|
@@ -155,6 +155,7 @@ export interface UpdateInputDeviceResponse {
|
|
|
155
155
|
SerialNumber?: string;
|
|
156
156
|
Type?: InputDeviceType | string;
|
|
157
157
|
UhdDeviceSettings?: InputDeviceUhdSettings;
|
|
158
|
+
Tags?: Record<string, string>;
|
|
158
159
|
}
|
|
159
160
|
export interface UpdateInputSecurityGroupRequest {
|
|
160
161
|
InputSecurityGroupId: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-medialive",
|
|
3
3
|
"description": "AWS SDK for JavaScript Medialive Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.300.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",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.300.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.300.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.296.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.296.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.296.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.300.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.296.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.299.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.296.0",
|
|
39
39
|
"@aws-sdk/middleware-user-agent": "3.299.0",
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.300.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.296.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.296.0",
|
|
43
43
|
"@aws-sdk/smithy-client": "3.296.0",
|
|
@@ -47,13 +47,13 @@
|
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.295.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.295.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.296.0",
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.300.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.296.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.296.0",
|
|
53
53
|
"@aws-sdk/util-stream-browser": "3.296.0",
|
|
54
54
|
"@aws-sdk/util-stream-node": "3.296.0",
|
|
55
55
|
"@aws-sdk/util-user-agent-browser": "3.299.0",
|
|
56
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
56
|
+
"@aws-sdk/util-user-agent-node": "3.300.0",
|
|
57
57
|
"@aws-sdk/util-utf8": "3.295.0",
|
|
58
58
|
"@aws-sdk/util-waiter": "3.296.0",
|
|
59
59
|
"tslib": "^2.5.0",
|