@aws-sdk/client-medialive 3.36.1 → 3.37.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/dist-cjs/MediaLive.js +15 -0
- package/dist-cjs/commands/ClaimDeviceCommand.js +36 -0
- package/dist-cjs/endpoints.js +1 -1
- package/dist-cjs/index.js +1 -0
- package/dist-cjs/models/models_0.js +41 -37
- package/dist-cjs/models/models_1.js +49 -6
- package/dist-cjs/protocols/Aws_restJson1.js +199 -3
- package/dist-es/MediaLive.js +15 -0
- package/dist-es/commands/ClaimDeviceCommand.js +39 -0
- package/dist-es/endpoints.js +1 -1
- package/dist-es/index.js +1 -0
- package/dist-es/models/models_0.js +27 -31
- package/dist-es/models/models_1.js +39 -0
- package/dist-es/protocols/Aws_restJson1.js +199 -2
- package/dist-types/MediaLive.d.ts +7 -0
- package/dist-types/MediaLiveClient.d.ts +3 -2
- package/dist-types/commands/ClaimDeviceCommand.d.ts +35 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +98 -28
- package/dist-types/models/models_1.d.ts +56 -5
- package/dist-types/protocols/Aws_restJson1.d.ts +3 -0
- package/dist-types/ts3.4/MediaLive.d.ts +5 -0
- package/dist-types/ts3.4/MediaLiveClient.d.ts +3 -2
- package/dist-types/ts3.4/commands/ClaimDeviceCommand.d.ts +17 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +57 -25
- package/dist-types/ts3.4/models/models_1.d.ts +42 -1
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +3 -0
- package/package.json +31 -31
|
@@ -6,6 +6,7 @@ import { BatchStartCommandInput, BatchStartCommandOutput } from "../commands/Bat
|
|
|
6
6
|
import { BatchStopCommandInput, BatchStopCommandOutput } from "../commands/BatchStopCommand";
|
|
7
7
|
import { BatchUpdateScheduleCommandInput, BatchUpdateScheduleCommandOutput } from "../commands/BatchUpdateScheduleCommand";
|
|
8
8
|
import { CancelInputDeviceTransferCommandInput, CancelInputDeviceTransferCommandOutput } from "../commands/CancelInputDeviceTransferCommand";
|
|
9
|
+
import { ClaimDeviceCommandInput, ClaimDeviceCommandOutput } from "../commands/ClaimDeviceCommand";
|
|
9
10
|
import { CreateChannelCommandInput, CreateChannelCommandOutput } from "../commands/CreateChannelCommand";
|
|
10
11
|
import { CreateInputCommandInput, CreateInputCommandOutput } from "../commands/CreateInputCommand";
|
|
11
12
|
import { CreateInputSecurityGroupCommandInput, CreateInputSecurityGroupCommandOutput } from "../commands/CreateInputSecurityGroupCommand";
|
|
@@ -62,6 +63,7 @@ export declare const serializeAws_restJson1BatchStartCommand: (input: BatchStart
|
|
|
62
63
|
export declare const serializeAws_restJson1BatchStopCommand: (input: BatchStopCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
63
64
|
export declare const serializeAws_restJson1BatchUpdateScheduleCommand: (input: BatchUpdateScheduleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
64
65
|
export declare const serializeAws_restJson1CancelInputDeviceTransferCommand: (input: CancelInputDeviceTransferCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
66
|
+
export declare const serializeAws_restJson1ClaimDeviceCommand: (input: ClaimDeviceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
65
67
|
export declare const serializeAws_restJson1CreateChannelCommand: (input: CreateChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
66
68
|
export declare const serializeAws_restJson1CreateInputCommand: (input: CreateInputCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
67
69
|
export declare const serializeAws_restJson1CreateInputSecurityGroupCommand: (input: CreateInputSecurityGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -118,6 +120,7 @@ export declare const deserializeAws_restJson1BatchStartCommand: (output: __HttpR
|
|
|
118
120
|
export declare const deserializeAws_restJson1BatchStopCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchStopCommandOutput>;
|
|
119
121
|
export declare const deserializeAws_restJson1BatchUpdateScheduleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchUpdateScheduleCommandOutput>;
|
|
120
122
|
export declare const deserializeAws_restJson1CancelInputDeviceTransferCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelInputDeviceTransferCommandOutput>;
|
|
123
|
+
export declare const deserializeAws_restJson1ClaimDeviceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ClaimDeviceCommandOutput>;
|
|
121
124
|
export declare const deserializeAws_restJson1CreateChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateChannelCommandOutput>;
|
|
122
125
|
export declare const deserializeAws_restJson1CreateInputCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateInputCommandOutput>;
|
|
123
126
|
export declare const deserializeAws_restJson1CreateInputSecurityGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateInputSecurityGroupCommandOutput>;
|
|
@@ -5,6 +5,7 @@ import { BatchStartCommandInput, BatchStartCommandOutput } from "./commands/Batc
|
|
|
5
5
|
import { BatchStopCommandInput, BatchStopCommandOutput } from "./commands/BatchStopCommand";
|
|
6
6
|
import { BatchUpdateScheduleCommandInput, BatchUpdateScheduleCommandOutput } from "./commands/BatchUpdateScheduleCommand";
|
|
7
7
|
import { CancelInputDeviceTransferCommandInput, CancelInputDeviceTransferCommandOutput } from "./commands/CancelInputDeviceTransferCommand";
|
|
8
|
+
import { ClaimDeviceCommandInput, ClaimDeviceCommandOutput } from "./commands/ClaimDeviceCommand";
|
|
8
9
|
import { CreateChannelCommandInput, CreateChannelCommandOutput } from "./commands/CreateChannelCommand";
|
|
9
10
|
import { CreateInputCommandInput, CreateInputCommandOutput } from "./commands/CreateInputCommand";
|
|
10
11
|
import { CreateInputSecurityGroupCommandInput, CreateInputSecurityGroupCommandOutput } from "./commands/CreateInputSecurityGroupCommand";
|
|
@@ -83,6 +84,10 @@ export declare class MediaLive extends MediaLiveClient {
|
|
|
83
84
|
cancelInputDeviceTransfer(args: CancelInputDeviceTransferCommandInput, cb: (err: any, data?: CancelInputDeviceTransferCommandOutput) => void): void;
|
|
84
85
|
cancelInputDeviceTransfer(args: CancelInputDeviceTransferCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelInputDeviceTransferCommandOutput) => void): void;
|
|
85
86
|
|
|
87
|
+
claimDevice(args: ClaimDeviceCommandInput, options?: __HttpHandlerOptions): Promise<ClaimDeviceCommandOutput>;
|
|
88
|
+
claimDevice(args: ClaimDeviceCommandInput, cb: (err: any, data?: ClaimDeviceCommandOutput) => void): void;
|
|
89
|
+
claimDevice(args: ClaimDeviceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ClaimDeviceCommandOutput) => void): void;
|
|
90
|
+
|
|
86
91
|
createChannel(args: CreateChannelCommandInput, options?: __HttpHandlerOptions): Promise<CreateChannelCommandOutput>;
|
|
87
92
|
createChannel(args: CreateChannelCommandInput, cb: (err: any, data?: CreateChannelCommandOutput) => void): void;
|
|
88
93
|
createChannel(args: CreateChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateChannelCommandOutput) => void): void;
|
|
@@ -12,6 +12,7 @@ import { BatchStartCommandInput, BatchStartCommandOutput } from "./commands/Batc
|
|
|
12
12
|
import { BatchStopCommandInput, BatchStopCommandOutput } from "./commands/BatchStopCommand";
|
|
13
13
|
import { BatchUpdateScheduleCommandInput, BatchUpdateScheduleCommandOutput } from "./commands/BatchUpdateScheduleCommand";
|
|
14
14
|
import { CancelInputDeviceTransferCommandInput, CancelInputDeviceTransferCommandOutput } from "./commands/CancelInputDeviceTransferCommand";
|
|
15
|
+
import { ClaimDeviceCommandInput, ClaimDeviceCommandOutput } from "./commands/ClaimDeviceCommand";
|
|
15
16
|
import { CreateChannelCommandInput, CreateChannelCommandOutput } from "./commands/CreateChannelCommand";
|
|
16
17
|
import { CreateInputCommandInput, CreateInputCommandOutput } from "./commands/CreateInputCommand";
|
|
17
18
|
import { CreateInputSecurityGroupCommandInput, CreateInputSecurityGroupCommandOutput } from "./commands/CreateInputSecurityGroupCommand";
|
|
@@ -62,8 +63,8 @@ import { UpdateInputSecurityGroupCommandInput, UpdateInputSecurityGroupCommandOu
|
|
|
62
63
|
import { UpdateMultiplexCommandInput, UpdateMultiplexCommandOutput } from "./commands/UpdateMultiplexCommand";
|
|
63
64
|
import { UpdateMultiplexProgramCommandInput, UpdateMultiplexProgramCommandOutput } from "./commands/UpdateMultiplexProgramCommand";
|
|
64
65
|
import { UpdateReservationCommandInput, UpdateReservationCommandOutput } from "./commands/UpdateReservationCommand";
|
|
65
|
-
export declare type ServiceInputTypes = AcceptInputDeviceTransferCommandInput | BatchDeleteCommandInput | BatchStartCommandInput | BatchStopCommandInput | BatchUpdateScheduleCommandInput | CancelInputDeviceTransferCommandInput | CreateChannelCommandInput | CreateInputCommandInput | CreateInputSecurityGroupCommandInput | CreateMultiplexCommandInput | CreateMultiplexProgramCommandInput | CreatePartnerInputCommandInput | CreateTagsCommandInput | DeleteChannelCommandInput | DeleteInputCommandInput | DeleteInputSecurityGroupCommandInput | DeleteMultiplexCommandInput | DeleteMultiplexProgramCommandInput | DeleteReservationCommandInput | DeleteScheduleCommandInput | DeleteTagsCommandInput | DescribeChannelCommandInput | DescribeInputCommandInput | DescribeInputDeviceCommandInput | DescribeInputDeviceThumbnailCommandInput | DescribeInputSecurityGroupCommandInput | DescribeMultiplexCommandInput | DescribeMultiplexProgramCommandInput | DescribeOfferingCommandInput | DescribeReservationCommandInput | DescribeScheduleCommandInput | ListChannelsCommandInput | ListInputDeviceTransfersCommandInput | ListInputDevicesCommandInput | ListInputSecurityGroupsCommandInput | ListInputsCommandInput | ListMultiplexProgramsCommandInput | ListMultiplexesCommandInput | ListOfferingsCommandInput | ListReservationsCommandInput | ListTagsForResourceCommandInput | PurchaseOfferingCommandInput | RejectInputDeviceTransferCommandInput | StartChannelCommandInput | StartMultiplexCommandInput | StopChannelCommandInput | StopMultiplexCommandInput | TransferInputDeviceCommandInput | UpdateChannelClassCommandInput | UpdateChannelCommandInput | UpdateInputCommandInput | UpdateInputDeviceCommandInput | UpdateInputSecurityGroupCommandInput | UpdateMultiplexCommandInput | UpdateMultiplexProgramCommandInput | UpdateReservationCommandInput;
|
|
66
|
-
export declare type ServiceOutputTypes = AcceptInputDeviceTransferCommandOutput | BatchDeleteCommandOutput | BatchStartCommandOutput | BatchStopCommandOutput | BatchUpdateScheduleCommandOutput | CancelInputDeviceTransferCommandOutput | CreateChannelCommandOutput | CreateInputCommandOutput | CreateInputSecurityGroupCommandOutput | CreateMultiplexCommandOutput | CreateMultiplexProgramCommandOutput | CreatePartnerInputCommandOutput | CreateTagsCommandOutput | DeleteChannelCommandOutput | DeleteInputCommandOutput | DeleteInputSecurityGroupCommandOutput | DeleteMultiplexCommandOutput | DeleteMultiplexProgramCommandOutput | DeleteReservationCommandOutput | DeleteScheduleCommandOutput | DeleteTagsCommandOutput | DescribeChannelCommandOutput | DescribeInputCommandOutput | DescribeInputDeviceCommandOutput | DescribeInputDeviceThumbnailCommandOutput | DescribeInputSecurityGroupCommandOutput | DescribeMultiplexCommandOutput | DescribeMultiplexProgramCommandOutput | DescribeOfferingCommandOutput | DescribeReservationCommandOutput | DescribeScheduleCommandOutput | ListChannelsCommandOutput | ListInputDeviceTransfersCommandOutput | ListInputDevicesCommandOutput | ListInputSecurityGroupsCommandOutput | ListInputsCommandOutput | ListMultiplexProgramsCommandOutput | ListMultiplexesCommandOutput | ListOfferingsCommandOutput | ListReservationsCommandOutput | ListTagsForResourceCommandOutput | PurchaseOfferingCommandOutput | RejectInputDeviceTransferCommandOutput | StartChannelCommandOutput | StartMultiplexCommandOutput | StopChannelCommandOutput | StopMultiplexCommandOutput | TransferInputDeviceCommandOutput | UpdateChannelClassCommandOutput | UpdateChannelCommandOutput | UpdateInputCommandOutput | UpdateInputDeviceCommandOutput | UpdateInputSecurityGroupCommandOutput | UpdateMultiplexCommandOutput | UpdateMultiplexProgramCommandOutput | UpdateReservationCommandOutput;
|
|
66
|
+
export declare type ServiceInputTypes = AcceptInputDeviceTransferCommandInput | BatchDeleteCommandInput | BatchStartCommandInput | BatchStopCommandInput | BatchUpdateScheduleCommandInput | CancelInputDeviceTransferCommandInput | ClaimDeviceCommandInput | CreateChannelCommandInput | CreateInputCommandInput | CreateInputSecurityGroupCommandInput | CreateMultiplexCommandInput | CreateMultiplexProgramCommandInput | CreatePartnerInputCommandInput | CreateTagsCommandInput | DeleteChannelCommandInput | DeleteInputCommandInput | DeleteInputSecurityGroupCommandInput | DeleteMultiplexCommandInput | DeleteMultiplexProgramCommandInput | DeleteReservationCommandInput | DeleteScheduleCommandInput | DeleteTagsCommandInput | DescribeChannelCommandInput | DescribeInputCommandInput | DescribeInputDeviceCommandInput | DescribeInputDeviceThumbnailCommandInput | DescribeInputSecurityGroupCommandInput | DescribeMultiplexCommandInput | DescribeMultiplexProgramCommandInput | DescribeOfferingCommandInput | DescribeReservationCommandInput | DescribeScheduleCommandInput | ListChannelsCommandInput | ListInputDeviceTransfersCommandInput | ListInputDevicesCommandInput | ListInputSecurityGroupsCommandInput | ListInputsCommandInput | ListMultiplexProgramsCommandInput | ListMultiplexesCommandInput | ListOfferingsCommandInput | ListReservationsCommandInput | ListTagsForResourceCommandInput | PurchaseOfferingCommandInput | RejectInputDeviceTransferCommandInput | StartChannelCommandInput | StartMultiplexCommandInput | StopChannelCommandInput | StopMultiplexCommandInput | TransferInputDeviceCommandInput | UpdateChannelClassCommandInput | UpdateChannelCommandInput | UpdateInputCommandInput | UpdateInputDeviceCommandInput | UpdateInputSecurityGroupCommandInput | UpdateMultiplexCommandInput | UpdateMultiplexProgramCommandInput | UpdateReservationCommandInput;
|
|
67
|
+
export declare type ServiceOutputTypes = AcceptInputDeviceTransferCommandOutput | BatchDeleteCommandOutput | BatchStartCommandOutput | BatchStopCommandOutput | BatchUpdateScheduleCommandOutput | CancelInputDeviceTransferCommandOutput | ClaimDeviceCommandOutput | CreateChannelCommandOutput | CreateInputCommandOutput | CreateInputSecurityGroupCommandOutput | CreateMultiplexCommandOutput | CreateMultiplexProgramCommandOutput | CreatePartnerInputCommandOutput | CreateTagsCommandOutput | DeleteChannelCommandOutput | DeleteInputCommandOutput | DeleteInputSecurityGroupCommandOutput | DeleteMultiplexCommandOutput | DeleteMultiplexProgramCommandOutput | DeleteReservationCommandOutput | DeleteScheduleCommandOutput | DeleteTagsCommandOutput | DescribeChannelCommandOutput | DescribeInputCommandOutput | DescribeInputDeviceCommandOutput | DescribeInputDeviceThumbnailCommandOutput | DescribeInputSecurityGroupCommandOutput | DescribeMultiplexCommandOutput | DescribeMultiplexProgramCommandOutput | DescribeOfferingCommandOutput | DescribeReservationCommandOutput | DescribeScheduleCommandOutput | ListChannelsCommandOutput | ListInputDeviceTransfersCommandOutput | ListInputDevicesCommandOutput | ListInputSecurityGroupsCommandOutput | ListInputsCommandOutput | ListMultiplexProgramsCommandOutput | ListMultiplexesCommandOutput | ListOfferingsCommandOutput | ListReservationsCommandOutput | ListTagsForResourceCommandOutput | PurchaseOfferingCommandOutput | RejectInputDeviceTransferCommandOutput | StartChannelCommandOutput | StartMultiplexCommandOutput | StopChannelCommandOutput | StopMultiplexCommandOutput | TransferInputDeviceCommandOutput | UpdateChannelClassCommandOutput | UpdateChannelCommandOutput | UpdateInputCommandOutput | UpdateInputDeviceCommandOutput | UpdateInputSecurityGroupCommandOutput | UpdateMultiplexCommandOutput | UpdateMultiplexProgramCommandOutput | UpdateReservationCommandOutput;
|
|
67
68
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
68
69
|
|
|
69
70
|
requestHandler?: __HttpHandler;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient";
|
|
4
|
+
import { ClaimDeviceRequest, ClaimDeviceResponse } from "../models/models_1";
|
|
5
|
+
export interface ClaimDeviceCommandInput extends ClaimDeviceRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ClaimDeviceCommandOutput extends ClaimDeviceResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ClaimDeviceCommand extends $Command<ClaimDeviceCommandInput, ClaimDeviceCommandOutput, MediaLiveClientResolvedConfig> {
|
|
11
|
+
readonly input: ClaimDeviceCommandInput;
|
|
12
|
+
constructor(input: ClaimDeviceCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaLiveClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ClaimDeviceCommandInput, ClaimDeviceCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -6,6 +6,7 @@ export * from "./commands/BatchStartCommand";
|
|
|
6
6
|
export * from "./commands/BatchStopCommand";
|
|
7
7
|
export * from "./commands/BatchUpdateScheduleCommand";
|
|
8
8
|
export * from "./commands/CancelInputDeviceTransferCommand";
|
|
9
|
+
export * from "./commands/ClaimDeviceCommand";
|
|
9
10
|
export * from "./commands/CreateChannelCommand";
|
|
10
11
|
export * from "./commands/CreateInputCommand";
|
|
11
12
|
export * from "./commands/CreateInputSecurityGroupCommand";
|
|
@@ -50,6 +50,60 @@ export declare enum AudioDescriptionAudioTypeControl {
|
|
|
50
50
|
FOLLOW_INPUT = "FOLLOW_INPUT",
|
|
51
51
|
USE_CONFIGURED = "USE_CONFIGURED"
|
|
52
52
|
}
|
|
53
|
+
export declare enum NielsenWatermarksCbetStepaside {
|
|
54
|
+
DISABLED = "DISABLED",
|
|
55
|
+
ENABLED = "ENABLED"
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
export interface NielsenCBET {
|
|
59
|
+
|
|
60
|
+
CbetCheckDigitString: string | undefined;
|
|
61
|
+
|
|
62
|
+
CbetStepaside: NielsenWatermarksCbetStepaside | string | undefined;
|
|
63
|
+
|
|
64
|
+
Csid: string | undefined;
|
|
65
|
+
}
|
|
66
|
+
export declare namespace NielsenCBET {
|
|
67
|
+
|
|
68
|
+
const filterSensitiveLog: (obj: NielsenCBET) => any;
|
|
69
|
+
}
|
|
70
|
+
export declare enum NielsenWatermarksDistributionTypes {
|
|
71
|
+
FINAL_DISTRIBUTOR = "FINAL_DISTRIBUTOR",
|
|
72
|
+
PROGRAM_CONTENT = "PROGRAM_CONTENT"
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
export interface NielsenNaesIiNw {
|
|
76
|
+
|
|
77
|
+
CheckDigitString: string | undefined;
|
|
78
|
+
|
|
79
|
+
Sid: number | undefined;
|
|
80
|
+
}
|
|
81
|
+
export declare namespace NielsenNaesIiNw {
|
|
82
|
+
|
|
83
|
+
const filterSensitiveLog: (obj: NielsenNaesIiNw) => any;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
export interface NielsenWatermarksSettings {
|
|
87
|
+
|
|
88
|
+
NielsenCbetSettings?: NielsenCBET;
|
|
89
|
+
|
|
90
|
+
NielsenDistributionType?: NielsenWatermarksDistributionTypes | string;
|
|
91
|
+
|
|
92
|
+
NielsenNaesIiNwSettings?: NielsenNaesIiNw;
|
|
93
|
+
}
|
|
94
|
+
export declare namespace NielsenWatermarksSettings {
|
|
95
|
+
|
|
96
|
+
const filterSensitiveLog: (obj: NielsenWatermarksSettings) => any;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
export interface AudioWatermarkSettings {
|
|
100
|
+
|
|
101
|
+
NielsenWatermarksSettings?: NielsenWatermarksSettings;
|
|
102
|
+
}
|
|
103
|
+
export declare namespace AudioWatermarkSettings {
|
|
104
|
+
|
|
105
|
+
const filterSensitiveLog: (obj: AudioWatermarkSettings) => any;
|
|
106
|
+
}
|
|
53
107
|
export declare enum AacCodingMode {
|
|
54
108
|
AD_RECEIVER_MIX = "AD_RECEIVER_MIX",
|
|
55
109
|
CODING_MODE_1_0 = "CODING_MODE_1_0",
|
|
@@ -367,6 +421,8 @@ export interface AudioDescription {
|
|
|
367
421
|
|
|
368
422
|
AudioTypeControl?: AudioDescriptionAudioTypeControl | string;
|
|
369
423
|
|
|
424
|
+
AudioWatermarkingSettings?: AudioWatermarkSettings;
|
|
425
|
+
|
|
370
426
|
CodecSettings?: AudioCodecSettings;
|
|
371
427
|
|
|
372
428
|
LanguageCode?: string;
|
|
@@ -1486,6 +1542,7 @@ export declare enum InputType {
|
|
|
1486
1542
|
RTMP_PULL = "RTMP_PULL",
|
|
1487
1543
|
RTMP_PUSH = "RTMP_PUSH",
|
|
1488
1544
|
RTP_PUSH = "RTP_PUSH",
|
|
1545
|
+
TS_FILE = "TS_FILE",
|
|
1489
1546
|
UDP_PUSH = "UDP_PUSH",
|
|
1490
1547
|
URL_PULL = "URL_PULL"
|
|
1491
1548
|
}
|
|
@@ -2872,28 +2929,3 @@ export declare namespace MediaPackageGroupSettings {
|
|
|
2872
2929
|
|
|
2873
2930
|
const filterSensitiveLog: (obj: MediaPackageGroupSettings) => any;
|
|
2874
2931
|
}
|
|
2875
|
-
export declare enum SmoothGroupAudioOnlyTimecodeControl {
|
|
2876
|
-
PASSTHROUGH = "PASSTHROUGH",
|
|
2877
|
-
USE_CONFIGURED_CLOCK = "USE_CONFIGURED_CLOCK"
|
|
2878
|
-
}
|
|
2879
|
-
export declare enum SmoothGroupCertificateMode {
|
|
2880
|
-
SELF_SIGNED = "SELF_SIGNED",
|
|
2881
|
-
VERIFY_AUTHENTICITY = "VERIFY_AUTHENTICITY"
|
|
2882
|
-
}
|
|
2883
|
-
export declare enum SmoothGroupEventIdMode {
|
|
2884
|
-
NO_EVENT_ID = "NO_EVENT_ID",
|
|
2885
|
-
USE_CONFIGURED = "USE_CONFIGURED",
|
|
2886
|
-
USE_TIMESTAMP = "USE_TIMESTAMP"
|
|
2887
|
-
}
|
|
2888
|
-
export declare enum SmoothGroupEventStopBehavior {
|
|
2889
|
-
NONE = "NONE",
|
|
2890
|
-
SEND_EOS = "SEND_EOS"
|
|
2891
|
-
}
|
|
2892
|
-
export declare enum InputLossActionForMsSmoothOut {
|
|
2893
|
-
EMIT_OUTPUT = "EMIT_OUTPUT",
|
|
2894
|
-
PAUSE_OUTPUT = "PAUSE_OUTPUT"
|
|
2895
|
-
}
|
|
2896
|
-
export declare enum SmoothGroupSegmentationMode {
|
|
2897
|
-
USE_INPUT_SEGMENTATION = "USE_INPUT_SEGMENTATION",
|
|
2898
|
-
USE_SEGMENT_DURATION = "USE_SEGMENT_DURATION"
|
|
2899
|
-
}
|
|
@@ -1,7 +1,32 @@
|
|
|
1
1
|
|
|
2
2
|
import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
|
|
3
3
|
import { Readable } from "stream";
|
|
4
|
-
import { ArchiveGroupSettings, AudioDescription, BatchFailedResultModel, BatchSuccessfulResultModel, CaptionDescription, CdiInputSpecification, ChannelClass, ChannelEgressEndpoint, ChannelState, ChannelSummary, DeviceSettingsSyncState, DeviceUpdateStatus, FrameCaptureGroupSettings, Hdr10Settings, HlsGroupSettings, Input, InputAttachment, InputClass, InputDestination, InputDestinationRequest, InputDeviceConfiguredInput, InputDeviceConnectionState, InputDeviceHdSettings, InputDeviceNetworkSettings, InputDeviceRequest, InputDeviceSettings, InputDeviceSummary, InputDeviceType, InputDeviceUhdSettings, InputLocation,
|
|
4
|
+
import { ArchiveGroupSettings, AudioDescription, BatchFailedResultModel, BatchSuccessfulResultModel, CaptionDescription, CdiInputSpecification, ChannelClass, ChannelEgressEndpoint, ChannelState, ChannelSummary, DeviceSettingsSyncState, DeviceUpdateStatus, FrameCaptureGroupSettings, Hdr10Settings, HlsGroupSettings, Input, InputAttachment, InputClass, InputDestination, InputDestinationRequest, InputDeviceConfiguredInput, InputDeviceConnectionState, InputDeviceHdSettings, InputDeviceNetworkSettings, InputDeviceRequest, InputDeviceSettings, InputDeviceSummary, InputDeviceType, InputDeviceUhdSettings, InputLocation, InputSecurityGroup, InputSecurityGroupState, InputSource, InputSourceRequest, InputSourceType, InputSpecification, InputState, InputType, InputWhitelistRule, InputWhitelistRuleCidr, LogLevel, MediaConnectFlow, MediaConnectFlowRequest, MediaPackageGroupSettings, MultiplexOutputDestination, MultiplexProgramPipelineDetail, MultiplexProgramSummary, MultiplexState, MultiplexSummary, Offering, OfferingDurationUnits, OfferingType, Output, OutputDestination, OutputLocationRef, ReservationResourceSpecification, VpcOutputSettingsDescription } from "./models_0";
|
|
5
|
+
export declare enum SmoothGroupAudioOnlyTimecodeControl {
|
|
6
|
+
PASSTHROUGH = "PASSTHROUGH",
|
|
7
|
+
USE_CONFIGURED_CLOCK = "USE_CONFIGURED_CLOCK"
|
|
8
|
+
}
|
|
9
|
+
export declare enum SmoothGroupCertificateMode {
|
|
10
|
+
SELF_SIGNED = "SELF_SIGNED",
|
|
11
|
+
VERIFY_AUTHENTICITY = "VERIFY_AUTHENTICITY"
|
|
12
|
+
}
|
|
13
|
+
export declare enum SmoothGroupEventIdMode {
|
|
14
|
+
NO_EVENT_ID = "NO_EVENT_ID",
|
|
15
|
+
USE_CONFIGURED = "USE_CONFIGURED",
|
|
16
|
+
USE_TIMESTAMP = "USE_TIMESTAMP"
|
|
17
|
+
}
|
|
18
|
+
export declare enum SmoothGroupEventStopBehavior {
|
|
19
|
+
NONE = "NONE",
|
|
20
|
+
SEND_EOS = "SEND_EOS"
|
|
21
|
+
}
|
|
22
|
+
export declare enum InputLossActionForMsSmoothOut {
|
|
23
|
+
EMIT_OUTPUT = "EMIT_OUTPUT",
|
|
24
|
+
PAUSE_OUTPUT = "PAUSE_OUTPUT"
|
|
25
|
+
}
|
|
26
|
+
export declare enum SmoothGroupSegmentationMode {
|
|
27
|
+
USE_INPUT_SEGMENTATION = "USE_INPUT_SEGMENTATION",
|
|
28
|
+
USE_SEGMENT_DURATION = "USE_SEGMENT_DURATION"
|
|
29
|
+
}
|
|
5
30
|
export declare enum SmoothGroupSparseTrackType {
|
|
6
31
|
NONE = "NONE",
|
|
7
32
|
SCTE_35 = "SCTE_35",
|
|
@@ -1805,6 +1830,22 @@ export declare namespace Channel {
|
|
|
1805
1830
|
|
|
1806
1831
|
const filterSensitiveLog: (obj: Channel) => any;
|
|
1807
1832
|
}
|
|
1833
|
+
|
|
1834
|
+
export interface ClaimDeviceRequest {
|
|
1835
|
+
|
|
1836
|
+
Id?: string;
|
|
1837
|
+
}
|
|
1838
|
+
export declare namespace ClaimDeviceRequest {
|
|
1839
|
+
|
|
1840
|
+
const filterSensitiveLog: (obj: ClaimDeviceRequest) => any;
|
|
1841
|
+
}
|
|
1842
|
+
|
|
1843
|
+
export interface ClaimDeviceResponse {
|
|
1844
|
+
}
|
|
1845
|
+
export declare namespace ClaimDeviceResponse {
|
|
1846
|
+
|
|
1847
|
+
const filterSensitiveLog: (obj: ClaimDeviceResponse) => any;
|
|
1848
|
+
}
|
|
1808
1849
|
export declare enum ContentType {
|
|
1809
1850
|
image_jpeg = "image/jpeg"
|
|
1810
1851
|
}
|
|
@@ -6,6 +6,7 @@ import { BatchStartCommandInput, BatchStartCommandOutput } from "../commands/Bat
|
|
|
6
6
|
import { BatchStopCommandInput, BatchStopCommandOutput } from "../commands/BatchStopCommand";
|
|
7
7
|
import { BatchUpdateScheduleCommandInput, BatchUpdateScheduleCommandOutput } from "../commands/BatchUpdateScheduleCommand";
|
|
8
8
|
import { CancelInputDeviceTransferCommandInput, CancelInputDeviceTransferCommandOutput } from "../commands/CancelInputDeviceTransferCommand";
|
|
9
|
+
import { ClaimDeviceCommandInput, ClaimDeviceCommandOutput } from "../commands/ClaimDeviceCommand";
|
|
9
10
|
import { CreateChannelCommandInput, CreateChannelCommandOutput } from "../commands/CreateChannelCommand";
|
|
10
11
|
import { CreateInputCommandInput, CreateInputCommandOutput } from "../commands/CreateInputCommand";
|
|
11
12
|
import { CreateInputSecurityGroupCommandInput, CreateInputSecurityGroupCommandOutput } from "../commands/CreateInputSecurityGroupCommand";
|
|
@@ -62,6 +63,7 @@ export declare const serializeAws_restJson1BatchStartCommand: (input: BatchStart
|
|
|
62
63
|
export declare const serializeAws_restJson1BatchStopCommand: (input: BatchStopCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
63
64
|
export declare const serializeAws_restJson1BatchUpdateScheduleCommand: (input: BatchUpdateScheduleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
64
65
|
export declare const serializeAws_restJson1CancelInputDeviceTransferCommand: (input: CancelInputDeviceTransferCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
66
|
+
export declare const serializeAws_restJson1ClaimDeviceCommand: (input: ClaimDeviceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
65
67
|
export declare const serializeAws_restJson1CreateChannelCommand: (input: CreateChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
66
68
|
export declare const serializeAws_restJson1CreateInputCommand: (input: CreateInputCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
67
69
|
export declare const serializeAws_restJson1CreateInputSecurityGroupCommand: (input: CreateInputSecurityGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -118,6 +120,7 @@ export declare const deserializeAws_restJson1BatchStartCommand: (output: __HttpR
|
|
|
118
120
|
export declare const deserializeAws_restJson1BatchStopCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchStopCommandOutput>;
|
|
119
121
|
export declare const deserializeAws_restJson1BatchUpdateScheduleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchUpdateScheduleCommandOutput>;
|
|
120
122
|
export declare const deserializeAws_restJson1CancelInputDeviceTransferCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelInputDeviceTransferCommandOutput>;
|
|
123
|
+
export declare const deserializeAws_restJson1ClaimDeviceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ClaimDeviceCommandOutput>;
|
|
121
124
|
export declare const deserializeAws_restJson1CreateChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateChannelCommandOutput>;
|
|
122
125
|
export declare const deserializeAws_restJson1CreateInputCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateInputCommandOutput>;
|
|
123
126
|
export declare const deserializeAws_restJson1CreateInputSecurityGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateInputSecurityGroupCommandOutput>;
|
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.37.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "yarn build:cjs && yarn build:es && yarn build:types",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.json",
|
|
@@ -21,40 +21,40 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "^1.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "^1.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-retry": "3.
|
|
34
|
-
"@aws-sdk/middleware-serde": "3.
|
|
35
|
-
"@aws-sdk/middleware-signing": "3.
|
|
36
|
-
"@aws-sdk/middleware-stack": "3.
|
|
37
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
38
|
-
"@aws-sdk/node-config-provider": "3.
|
|
39
|
-
"@aws-sdk/node-http-handler": "3.
|
|
40
|
-
"@aws-sdk/protocol-http": "3.
|
|
41
|
-
"@aws-sdk/smithy-client": "3.
|
|
42
|
-
"@aws-sdk/types": "3.
|
|
43
|
-
"@aws-sdk/url-parser": "3.
|
|
44
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
45
|
-
"@aws-sdk/util-base64-node": "3.
|
|
46
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
49
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
50
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
51
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
52
|
-
"@aws-sdk/util-waiter": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.37.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.37.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.37.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.37.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.37.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.37.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.37.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.37.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.37.0",
|
|
33
|
+
"@aws-sdk/middleware-retry": "3.37.0",
|
|
34
|
+
"@aws-sdk/middleware-serde": "3.37.0",
|
|
35
|
+
"@aws-sdk/middleware-signing": "3.37.0",
|
|
36
|
+
"@aws-sdk/middleware-stack": "3.37.0",
|
|
37
|
+
"@aws-sdk/middleware-user-agent": "3.37.0",
|
|
38
|
+
"@aws-sdk/node-config-provider": "3.37.0",
|
|
39
|
+
"@aws-sdk/node-http-handler": "3.37.0",
|
|
40
|
+
"@aws-sdk/protocol-http": "3.37.0",
|
|
41
|
+
"@aws-sdk/smithy-client": "3.37.0",
|
|
42
|
+
"@aws-sdk/types": "3.37.0",
|
|
43
|
+
"@aws-sdk/url-parser": "3.37.0",
|
|
44
|
+
"@aws-sdk/util-base64-browser": "3.37.0",
|
|
45
|
+
"@aws-sdk/util-base64-node": "3.37.0",
|
|
46
|
+
"@aws-sdk/util-body-length-browser": "3.37.0",
|
|
47
|
+
"@aws-sdk/util-body-length-node": "3.37.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-browser": "3.37.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-node": "3.37.0",
|
|
50
|
+
"@aws-sdk/util-utf8-browser": "3.37.0",
|
|
51
|
+
"@aws-sdk/util-utf8-node": "3.37.0",
|
|
52
|
+
"@aws-sdk/util-waiter": "3.37.0",
|
|
53
53
|
"tslib": "^2.3.0",
|
|
54
54
|
"uuid": "^8.3.2"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
|
-
"@aws-sdk/client-documentation-generator": "3.
|
|
57
|
+
"@aws-sdk/client-documentation-generator": "3.37.0",
|
|
58
58
|
"@types/node": "^12.7.5",
|
|
59
59
|
"@types/uuid": "^8.3.0",
|
|
60
60
|
"downlevel-dts": "0.7.0",
|