@aws-sdk/client-medialive 3.56.0 → 3.72.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 +27 -0
- package/README.md +2 -2
- package/dist-cjs/commands/UpdateMultiplexProgramCommand.js +2 -1
- package/dist-cjs/commands/UpdateReservationCommand.js +3 -3
- package/dist-cjs/models/index.js +1 -0
- package/dist-cjs/models/models_0.js +20 -15
- package/dist-cjs/models/models_1.js +29 -24
- package/dist-cjs/models/models_2.js +21 -0
- package/dist-cjs/protocols/Aws_restJson1.js +56 -0
- package/dist-es/commands/UpdateMultiplexProgramCommand.js +2 -1
- package/dist-es/commands/UpdateReservationCommand.js +1 -1
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +14 -9
- package/dist-es/models/models_1.js +17 -12
- package/dist-es/models/models_2.js +13 -0
- package/dist-es/protocols/Aws_restJson1.js +51 -4
- package/dist-types/commands/UpdateMultiplexProgramCommand.d.ts +2 -1
- package/dist-types/commands/UpdateReservationCommand.d.ts +1 -1
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +42 -224
- package/dist-types/models/models_1.d.ts +294 -51
- package/dist-types/models/models_2.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateMultiplexProgramCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/UpdateReservationCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +26 -97
- package/dist-types/ts3.4/models/models_1.d.ts +136 -30
- package/dist-types/ts3.4/models/models_2.d.ts +30 -0
- package/package.json +20 -20
|
@@ -2,7 +2,104 @@
|
|
|
2
2
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
3
3
|
import { Readable } from "stream";
|
|
4
4
|
import { MediaLiveServiceException as __BaseException } from "./MediaLiveServiceException";
|
|
5
|
-
import { ArchiveGroupSettings, AudioDescription, BatchFailedResultModel, BatchSuccessfulResultModel, CaptionDescription, CdiInputSpecification, ChannelClass, ChannelEgressEndpoint, ChannelState, ChannelSummary, DeviceSettingsSyncState, DeviceUpdateStatus, FrameCaptureGroupSettings, Hdr10Settings,
|
|
5
|
+
import { ArchiveGroupSettings, AudioDescription, BatchFailedResultModel, BatchSuccessfulResultModel, CaptionDescription, CaptionLanguageMapping, CdiInputSpecification, ChannelClass, ChannelEgressEndpoint, ChannelState, ChannelSummary, DeviceSettingsSyncState, DeviceUpdateStatus, FrameCaptureGroupSettings, Hdr10Settings, HlsAdMarkers, HlsCaptionLanguageSetting, HlsCdnSettings, HlsClientCache, HlsCodecSpecification, HlsDirectoryStructure, HlsDiscontinuityTags, HlsEncryptionType, HlsId3SegmentTaggingState, HlsIncompleteSegmentBehavior, HlsIvInManifest, HlsIvSource, HlsManifestCompression, HlsManifestDurationFormat, HlsMode, HlsOutputSelection, HlsProgramDateTime, HlsProgramDateTimeClock, HlsRedundantManifest, HlsSegmentationMode, HlsStreamInfResolution, HlsTimedMetadataId3Frame, IFrameOnlyPlaylistType, Input, InputAttachment, InputClass, InputDestination, InputDestinationRequest, InputDeviceConfiguredInput, InputDeviceConnectionState, InputDeviceHdSettings, InputDeviceNetworkSettings, InputDeviceRequest, InputDeviceSettings, InputDeviceSummary, InputDeviceType, InputDeviceUhdSettings, InputLocation, InputLossActionForHlsOut, InputSecurityGroup, InputSecurityGroupState, InputSource, InputSourceRequest, InputSourceType, InputSpecification, InputState, InputType, InputWhitelistRule, InputWhitelistRuleCidr, KeyProviderSettings, LogLevel, MaintenanceDay, MaintenanceStatus, MediaConnectFlow, MediaConnectFlowRequest, MultiplexOutputDestination, MultiplexProgramPipelineDetail, MultiplexProgramSummary, MultiplexState, MultiplexSummary, Offering, OfferingDurationUnits, OfferingType, Output, OutputDestination, OutputLocationRef, ReservationResourceSpecification, VpcOutputSettingsDescription } from "./models_0";
|
|
6
|
+
export declare enum HlsTsFileMode {
|
|
7
|
+
SEGMENTED_FILES = "SEGMENTED_FILES",
|
|
8
|
+
SINGLE_FILE = "SINGLE_FILE"
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export interface HlsGroupSettings {
|
|
12
|
+
|
|
13
|
+
AdMarkers?: (HlsAdMarkers | string)[];
|
|
14
|
+
|
|
15
|
+
BaseUrlContent?: string;
|
|
16
|
+
|
|
17
|
+
BaseUrlContent1?: string;
|
|
18
|
+
|
|
19
|
+
BaseUrlManifest?: string;
|
|
20
|
+
|
|
21
|
+
BaseUrlManifest1?: string;
|
|
22
|
+
|
|
23
|
+
CaptionLanguageMappings?: CaptionLanguageMapping[];
|
|
24
|
+
|
|
25
|
+
CaptionLanguageSetting?: HlsCaptionLanguageSetting | string;
|
|
26
|
+
|
|
27
|
+
ClientCache?: HlsClientCache | string;
|
|
28
|
+
|
|
29
|
+
CodecSpecification?: HlsCodecSpecification | string;
|
|
30
|
+
|
|
31
|
+
ConstantIv?: string;
|
|
32
|
+
|
|
33
|
+
Destination: OutputLocationRef | undefined;
|
|
34
|
+
|
|
35
|
+
DirectoryStructure?: HlsDirectoryStructure | string;
|
|
36
|
+
|
|
37
|
+
DiscontinuityTags?: HlsDiscontinuityTags | string;
|
|
38
|
+
|
|
39
|
+
EncryptionType?: HlsEncryptionType | string;
|
|
40
|
+
|
|
41
|
+
HlsCdnSettings?: HlsCdnSettings;
|
|
42
|
+
|
|
43
|
+
HlsId3SegmentTagging?: HlsId3SegmentTaggingState | string;
|
|
44
|
+
|
|
45
|
+
IFrameOnlyPlaylists?: IFrameOnlyPlaylistType | string;
|
|
46
|
+
|
|
47
|
+
IncompleteSegmentBehavior?: HlsIncompleteSegmentBehavior | string;
|
|
48
|
+
|
|
49
|
+
IndexNSegments?: number;
|
|
50
|
+
|
|
51
|
+
InputLossAction?: InputLossActionForHlsOut | string;
|
|
52
|
+
|
|
53
|
+
IvInManifest?: HlsIvInManifest | string;
|
|
54
|
+
|
|
55
|
+
IvSource?: HlsIvSource | string;
|
|
56
|
+
|
|
57
|
+
KeepSegments?: number;
|
|
58
|
+
|
|
59
|
+
KeyFormat?: string;
|
|
60
|
+
|
|
61
|
+
KeyFormatVersions?: string;
|
|
62
|
+
|
|
63
|
+
KeyProviderSettings?: KeyProviderSettings;
|
|
64
|
+
|
|
65
|
+
ManifestCompression?: HlsManifestCompression | string;
|
|
66
|
+
|
|
67
|
+
ManifestDurationFormat?: HlsManifestDurationFormat | string;
|
|
68
|
+
|
|
69
|
+
MinSegmentLength?: number;
|
|
70
|
+
|
|
71
|
+
Mode?: HlsMode | string;
|
|
72
|
+
|
|
73
|
+
OutputSelection?: HlsOutputSelection | string;
|
|
74
|
+
|
|
75
|
+
ProgramDateTime?: HlsProgramDateTime | string;
|
|
76
|
+
|
|
77
|
+
ProgramDateTimeClock?: HlsProgramDateTimeClock | string;
|
|
78
|
+
|
|
79
|
+
ProgramDateTimePeriod?: number;
|
|
80
|
+
|
|
81
|
+
RedundantManifest?: HlsRedundantManifest | string;
|
|
82
|
+
|
|
83
|
+
SegmentLength?: number;
|
|
84
|
+
|
|
85
|
+
SegmentationMode?: HlsSegmentationMode | string;
|
|
86
|
+
|
|
87
|
+
SegmentsPerSubdirectory?: number;
|
|
88
|
+
|
|
89
|
+
StreamInfResolution?: HlsStreamInfResolution | string;
|
|
90
|
+
|
|
91
|
+
TimedMetadataId3Frame?: HlsTimedMetadataId3Frame | string;
|
|
92
|
+
|
|
93
|
+
TimedMetadataId3Period?: number;
|
|
94
|
+
|
|
95
|
+
TimestampDeltaMilliseconds?: number;
|
|
96
|
+
|
|
97
|
+
TsFileMode?: HlsTsFileMode | string;
|
|
98
|
+
}
|
|
99
|
+
export declare namespace HlsGroupSettings {
|
|
100
|
+
|
|
101
|
+
const filterSensitiveLog: (obj: HlsGroupSettings) => any;
|
|
102
|
+
}
|
|
6
103
|
|
|
7
104
|
export interface MediaPackageGroupSettings {
|
|
8
105
|
|
|
@@ -1802,6 +1899,8 @@ export interface Channel {
|
|
|
1802
1899
|
|
|
1803
1900
|
LogLevel?: LogLevel | string;
|
|
1804
1901
|
|
|
1902
|
+
Maintenance?: MaintenanceStatus;
|
|
1903
|
+
|
|
1805
1904
|
Name?: string;
|
|
1806
1905
|
|
|
1807
1906
|
PipelineDetails?: PipelineDetail[];
|
|
@@ -1842,6 +1941,17 @@ export declare enum ContentType {
|
|
|
1842
1941
|
image_jpeg = "image/jpeg"
|
|
1843
1942
|
}
|
|
1844
1943
|
|
|
1944
|
+
export interface MaintenanceCreateSettings {
|
|
1945
|
+
|
|
1946
|
+
MaintenanceDay?: MaintenanceDay | string;
|
|
1947
|
+
|
|
1948
|
+
MaintenanceStartTime?: string;
|
|
1949
|
+
}
|
|
1950
|
+
export declare namespace MaintenanceCreateSettings {
|
|
1951
|
+
|
|
1952
|
+
const filterSensitiveLog: (obj: MaintenanceCreateSettings) => any;
|
|
1953
|
+
}
|
|
1954
|
+
|
|
1845
1955
|
export interface VpcOutputSettings {
|
|
1846
1956
|
|
|
1847
1957
|
PublicAddressAllocationIds?: string[];
|
|
@@ -1871,6 +1981,8 @@ export interface CreateChannelRequest {
|
|
|
1871
1981
|
|
|
1872
1982
|
LogLevel?: LogLevel | string;
|
|
1873
1983
|
|
|
1984
|
+
Maintenance?: MaintenanceCreateSettings;
|
|
1985
|
+
|
|
1874
1986
|
Name?: string;
|
|
1875
1987
|
|
|
1876
1988
|
RequestId?: string;
|
|
@@ -2241,6 +2353,8 @@ export interface DeleteChannelResponse {
|
|
|
2241
2353
|
|
|
2242
2354
|
LogLevel?: LogLevel | string;
|
|
2243
2355
|
|
|
2356
|
+
Maintenance?: MaintenanceStatus;
|
|
2357
|
+
|
|
2244
2358
|
Name?: string;
|
|
2245
2359
|
|
|
2246
2360
|
PipelineDetails?: PipelineDetail[];
|
|
@@ -2472,6 +2586,8 @@ export interface DescribeChannelResponse {
|
|
|
2472
2586
|
|
|
2473
2587
|
LogLevel?: LogLevel | string;
|
|
2474
2588
|
|
|
2589
|
+
Maintenance?: MaintenanceStatus;
|
|
2590
|
+
|
|
2475
2591
|
Name?: string;
|
|
2476
2592
|
|
|
2477
2593
|
PipelineDetails?: PipelineDetail[];
|
|
@@ -3092,6 +3208,19 @@ export declare namespace ListTagsForResourceResponse {
|
|
|
3092
3208
|
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
3093
3209
|
}
|
|
3094
3210
|
|
|
3211
|
+
export interface MaintenanceUpdateSettings {
|
|
3212
|
+
|
|
3213
|
+
MaintenanceDay?: MaintenanceDay | string;
|
|
3214
|
+
|
|
3215
|
+
MaintenanceScheduledDate?: string;
|
|
3216
|
+
|
|
3217
|
+
MaintenanceStartTime?: string;
|
|
3218
|
+
}
|
|
3219
|
+
export declare namespace MaintenanceUpdateSettings {
|
|
3220
|
+
|
|
3221
|
+
const filterSensitiveLog: (obj: MaintenanceUpdateSettings) => any;
|
|
3222
|
+
}
|
|
3223
|
+
|
|
3095
3224
|
export interface PurchaseOfferingRequest {
|
|
3096
3225
|
|
|
3097
3226
|
Count: number | undefined;
|
|
@@ -3169,6 +3298,8 @@ export interface StartChannelResponse {
|
|
|
3169
3298
|
|
|
3170
3299
|
LogLevel?: LogLevel | string;
|
|
3171
3300
|
|
|
3301
|
+
Maintenance?: MaintenanceStatus;
|
|
3302
|
+
|
|
3172
3303
|
Name?: string;
|
|
3173
3304
|
|
|
3174
3305
|
PipelineDetails?: PipelineDetail[];
|
|
@@ -3259,6 +3390,8 @@ export interface StopChannelResponse {
|
|
|
3259
3390
|
|
|
3260
3391
|
LogLevel?: LogLevel | string;
|
|
3261
3392
|
|
|
3393
|
+
Maintenance?: MaintenanceStatus;
|
|
3394
|
+
|
|
3262
3395
|
Name?: string;
|
|
3263
3396
|
|
|
3264
3397
|
PipelineDetails?: PipelineDetail[];
|
|
@@ -3356,6 +3489,8 @@ export interface UpdateChannelRequest {
|
|
|
3356
3489
|
|
|
3357
3490
|
LogLevel?: LogLevel | string;
|
|
3358
3491
|
|
|
3492
|
+
Maintenance?: MaintenanceUpdateSettings;
|
|
3493
|
+
|
|
3359
3494
|
Name?: string;
|
|
3360
3495
|
|
|
3361
3496
|
RoleArn?: string;
|
|
@@ -3532,32 +3667,3 @@ export declare namespace UpdateMultiplexProgramRequest {
|
|
|
3532
3667
|
|
|
3533
3668
|
const filterSensitiveLog: (obj: UpdateMultiplexProgramRequest) => any;
|
|
3534
3669
|
}
|
|
3535
|
-
|
|
3536
|
-
export interface UpdateMultiplexProgramResponse {
|
|
3537
|
-
|
|
3538
|
-
MultiplexProgram?: MultiplexProgram;
|
|
3539
|
-
}
|
|
3540
|
-
export declare namespace UpdateMultiplexProgramResponse {
|
|
3541
|
-
|
|
3542
|
-
const filterSensitiveLog: (obj: UpdateMultiplexProgramResponse) => any;
|
|
3543
|
-
}
|
|
3544
|
-
|
|
3545
|
-
export interface UpdateReservationRequest {
|
|
3546
|
-
|
|
3547
|
-
Name?: string;
|
|
3548
|
-
|
|
3549
|
-
ReservationId: string | undefined;
|
|
3550
|
-
}
|
|
3551
|
-
export declare namespace UpdateReservationRequest {
|
|
3552
|
-
|
|
3553
|
-
const filterSensitiveLog: (obj: UpdateReservationRequest) => any;
|
|
3554
|
-
}
|
|
3555
|
-
|
|
3556
|
-
export interface UpdateReservationResponse {
|
|
3557
|
-
|
|
3558
|
-
Reservation?: Reservation;
|
|
3559
|
-
}
|
|
3560
|
-
export declare namespace UpdateReservationResponse {
|
|
3561
|
-
|
|
3562
|
-
const filterSensitiveLog: (obj: UpdateReservationResponse) => any;
|
|
3563
|
-
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { MultiplexProgram, Reservation } from "./models_1";
|
|
2
|
+
|
|
3
|
+
export interface UpdateMultiplexProgramResponse {
|
|
4
|
+
|
|
5
|
+
MultiplexProgram?: MultiplexProgram;
|
|
6
|
+
}
|
|
7
|
+
export declare namespace UpdateMultiplexProgramResponse {
|
|
8
|
+
|
|
9
|
+
const filterSensitiveLog: (obj: UpdateMultiplexProgramResponse) => any;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export interface UpdateReservationRequest {
|
|
13
|
+
|
|
14
|
+
Name?: string;
|
|
15
|
+
|
|
16
|
+
ReservationId: string | undefined;
|
|
17
|
+
}
|
|
18
|
+
export declare namespace UpdateReservationRequest {
|
|
19
|
+
|
|
20
|
+
const filterSensitiveLog: (obj: UpdateReservationRequest) => any;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export interface UpdateReservationResponse {
|
|
24
|
+
|
|
25
|
+
Reservation?: Reservation;
|
|
26
|
+
}
|
|
27
|
+
export declare namespace UpdateReservationResponse {
|
|
28
|
+
|
|
29
|
+
const filterSensitiveLog: (obj: UpdateReservationResponse) => any;
|
|
30
|
+
}
|
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.72.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",
|
|
@@ -18,34 +18,34 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.72.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.58.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.72.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.58.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.55.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.55.0",
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.58.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.58.0",
|
|
29
29
|
"@aws-sdk/middleware-logger": "3.55.0",
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.58.0",
|
|
31
31
|
"@aws-sdk/middleware-serde": "3.55.0",
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.58.0",
|
|
33
33
|
"@aws-sdk/middleware-stack": "3.55.0",
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.58.0",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.58.0",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.58.0",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.58.0",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.72.0",
|
|
39
39
|
"@aws-sdk/types": "3.55.0",
|
|
40
40
|
"@aws-sdk/url-parser": "3.55.0",
|
|
41
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
41
|
+
"@aws-sdk/util-base64-browser": "3.58.0",
|
|
42
42
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
43
43
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
44
44
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.72.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.72.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.58.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.58.0",
|
|
49
49
|
"@aws-sdk/util-utf8-browser": "3.55.0",
|
|
50
50
|
"@aws-sdk/util-utf8-node": "3.55.0",
|
|
51
51
|
"@aws-sdk/util-waiter": "3.55.0",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"uuid": "^8.3.2"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
56
|
+
"@aws-sdk/service-client-documentation-generator": "3.58.0",
|
|
57
57
|
"@tsconfig/recommended": "1.0.1",
|
|
58
58
|
"@types/node": "^12.7.5",
|
|
59
59
|
"@types/uuid": "^8.3.0",
|