@aws-sdk/client-medialive 3.363.0 → 3.369.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.
Files changed (52) hide show
  1. package/README.md +24 -0
  2. package/dist-cjs/MediaLive.js +6 -0
  3. package/dist-cjs/commands/DescribeAccountConfigurationCommand.js +46 -0
  4. package/dist-cjs/commands/DescribeThumbnailsCommand.js +46 -0
  5. package/dist-cjs/commands/UpdateAccountConfigurationCommand.js +46 -0
  6. package/dist-cjs/commands/index.js +3 -0
  7. package/dist-cjs/models/models_1.js +11 -7
  8. package/dist-cjs/models/models_2.js +5 -0
  9. package/dist-cjs/protocols/Aws_restJson1.js +273 -3
  10. package/dist-es/MediaLive.js +6 -0
  11. package/dist-es/commands/DescribeAccountConfigurationCommand.js +42 -0
  12. package/dist-es/commands/DescribeThumbnailsCommand.js +42 -0
  13. package/dist-es/commands/UpdateAccountConfigurationCommand.js +42 -0
  14. package/dist-es/commands/index.js +3 -0
  15. package/dist-es/models/models_1.js +8 -4
  16. package/dist-es/models/models_2.js +4 -1
  17. package/dist-es/protocols/Aws_restJson1.js +265 -1
  18. package/dist-types/MediaLive.d.ts +21 -0
  19. package/dist-types/MediaLiveClient.d.ts +5 -2
  20. package/dist-types/commands/CreateChannelCommand.d.ts +6 -0
  21. package/dist-types/commands/DeleteChannelCommand.d.ts +3 -0
  22. package/dist-types/commands/DescribeAccountConfigurationCommand.d.ts +91 -0
  23. package/dist-types/commands/DescribeChannelCommand.d.ts +3 -0
  24. package/dist-types/commands/DescribeThumbnailsCommand.d.ts +111 -0
  25. package/dist-types/commands/PurchaseOfferingCommand.d.ts +1 -1
  26. package/dist-types/commands/RebootInputDeviceCommand.d.ts +1 -1
  27. package/dist-types/commands/RejectInputDeviceTransferCommand.d.ts +1 -1
  28. package/dist-types/commands/StartChannelCommand.d.ts +4 -1
  29. package/dist-types/commands/StartInputDeviceMaintenanceWindowCommand.d.ts +1 -2
  30. package/dist-types/commands/StopChannelCommand.d.ts +3 -0
  31. package/dist-types/commands/UpdateAccountConfigurationCommand.d.ts +98 -0
  32. package/dist-types/commands/UpdateChannelClassCommand.d.ts +3 -0
  33. package/dist-types/commands/UpdateChannelCommand.d.ts +6 -0
  34. package/dist-types/commands/index.d.ts +3 -0
  35. package/dist-types/models/models_1.d.ts +128 -192
  36. package/dist-types/models/models_2.d.ts +213 -1
  37. package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
  38. package/dist-types/ts3.4/MediaLive.d.ts +51 -0
  39. package/dist-types/ts3.4/MediaLiveClient.d.ts +18 -0
  40. package/dist-types/ts3.4/commands/DescribeAccountConfigurationCommand.d.ts +42 -0
  41. package/dist-types/ts3.4/commands/DescribeThumbnailsCommand.d.ts +39 -0
  42. package/dist-types/ts3.4/commands/PurchaseOfferingCommand.d.ts +1 -1
  43. package/dist-types/ts3.4/commands/RebootInputDeviceCommand.d.ts +1 -1
  44. package/dist-types/ts3.4/commands/RejectInputDeviceTransferCommand.d.ts +1 -1
  45. package/dist-types/ts3.4/commands/StartChannelCommand.d.ts +1 -1
  46. package/dist-types/ts3.4/commands/StartInputDeviceMaintenanceWindowCommand.d.ts +4 -2
  47. package/dist-types/ts3.4/commands/UpdateAccountConfigurationCommand.d.ts +42 -0
  48. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  49. package/dist-types/ts3.4/models/models_1.d.ts +40 -53
  50. package/dist-types/ts3.4/models/models_2.d.ts +60 -0
  51. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
  52. package/package.json +13 -13
@@ -87,6 +87,10 @@ import {
87
87
  DeleteTagsCommandInput,
88
88
  DeleteTagsCommandOutput,
89
89
  } from "./commands/DeleteTagsCommand";
90
+ import {
91
+ DescribeAccountConfigurationCommandInput,
92
+ DescribeAccountConfigurationCommandOutput,
93
+ } from "./commands/DescribeAccountConfigurationCommand";
90
94
  import {
91
95
  DescribeChannelCommandInput,
92
96
  DescribeChannelCommandOutput,
@@ -127,6 +131,10 @@ import {
127
131
  DescribeScheduleCommandInput,
128
132
  DescribeScheduleCommandOutput,
129
133
  } from "./commands/DescribeScheduleCommand";
134
+ import {
135
+ DescribeThumbnailsCommandInput,
136
+ DescribeThumbnailsCommandOutput,
137
+ } from "./commands/DescribeThumbnailsCommand";
130
138
  import {
131
139
  ListChannelsCommandInput,
132
140
  ListChannelsCommandOutput,
@@ -203,6 +211,10 @@ import {
203
211
  TransferInputDeviceCommandInput,
204
212
  TransferInputDeviceCommandOutput,
205
213
  } from "./commands/TransferInputDeviceCommand";
214
+ import {
215
+ UpdateAccountConfigurationCommandInput,
216
+ UpdateAccountConfigurationCommandOutput,
217
+ } from "./commands/UpdateAccountConfigurationCommand";
206
218
  import {
207
219
  UpdateChannelClassCommandInput,
208
220
  UpdateChannelClassCommandOutput,
@@ -523,6 +535,19 @@ export interface MediaLive {
523
535
  options: __HttpHandlerOptions,
524
536
  cb: (err: any, data?: DeleteTagsCommandOutput) => void
525
537
  ): void;
538
+ describeAccountConfiguration(
539
+ args: DescribeAccountConfigurationCommandInput,
540
+ options?: __HttpHandlerOptions
541
+ ): Promise<DescribeAccountConfigurationCommandOutput>;
542
+ describeAccountConfiguration(
543
+ args: DescribeAccountConfigurationCommandInput,
544
+ cb: (err: any, data?: DescribeAccountConfigurationCommandOutput) => void
545
+ ): void;
546
+ describeAccountConfiguration(
547
+ args: DescribeAccountConfigurationCommandInput,
548
+ options: __HttpHandlerOptions,
549
+ cb: (err: any, data?: DescribeAccountConfigurationCommandOutput) => void
550
+ ): void;
526
551
  describeChannel(
527
552
  args: DescribeChannelCommandInput,
528
553
  options?: __HttpHandlerOptions
@@ -653,6 +678,19 @@ export interface MediaLive {
653
678
  options: __HttpHandlerOptions,
654
679
  cb: (err: any, data?: DescribeScheduleCommandOutput) => void
655
680
  ): void;
681
+ describeThumbnails(
682
+ args: DescribeThumbnailsCommandInput,
683
+ options?: __HttpHandlerOptions
684
+ ): Promise<DescribeThumbnailsCommandOutput>;
685
+ describeThumbnails(
686
+ args: DescribeThumbnailsCommandInput,
687
+ cb: (err: any, data?: DescribeThumbnailsCommandOutput) => void
688
+ ): void;
689
+ describeThumbnails(
690
+ args: DescribeThumbnailsCommandInput,
691
+ options: __HttpHandlerOptions,
692
+ cb: (err: any, data?: DescribeThumbnailsCommandOutput) => void
693
+ ): void;
656
694
  listChannels(
657
695
  args: ListChannelsCommandInput,
658
696
  options?: __HttpHandlerOptions
@@ -906,6 +944,19 @@ export interface MediaLive {
906
944
  options: __HttpHandlerOptions,
907
945
  cb: (err: any, data?: TransferInputDeviceCommandOutput) => void
908
946
  ): void;
947
+ updateAccountConfiguration(
948
+ args: UpdateAccountConfigurationCommandInput,
949
+ options?: __HttpHandlerOptions
950
+ ): Promise<UpdateAccountConfigurationCommandOutput>;
951
+ updateAccountConfiguration(
952
+ args: UpdateAccountConfigurationCommandInput,
953
+ cb: (err: any, data?: UpdateAccountConfigurationCommandOutput) => void
954
+ ): void;
955
+ updateAccountConfiguration(
956
+ args: UpdateAccountConfigurationCommandInput,
957
+ options: __HttpHandlerOptions,
958
+ cb: (err: any, data?: UpdateAccountConfigurationCommandOutput) => void
959
+ ): void;
909
960
  updateChannel(
910
961
  args: UpdateChannelCommandInput,
911
962
  options?: __HttpHandlerOptions
@@ -133,6 +133,10 @@ import {
133
133
  DeleteTagsCommandInput,
134
134
  DeleteTagsCommandOutput,
135
135
  } from "./commands/DeleteTagsCommand";
136
+ import {
137
+ DescribeAccountConfigurationCommandInput,
138
+ DescribeAccountConfigurationCommandOutput,
139
+ } from "./commands/DescribeAccountConfigurationCommand";
136
140
  import {
137
141
  DescribeChannelCommandInput,
138
142
  DescribeChannelCommandOutput,
@@ -173,6 +177,10 @@ import {
173
177
  DescribeScheduleCommandInput,
174
178
  DescribeScheduleCommandOutput,
175
179
  } from "./commands/DescribeScheduleCommand";
180
+ import {
181
+ DescribeThumbnailsCommandInput,
182
+ DescribeThumbnailsCommandOutput,
183
+ } from "./commands/DescribeThumbnailsCommand";
176
184
  import {
177
185
  ListChannelsCommandInput,
178
186
  ListChannelsCommandOutput,
@@ -249,6 +257,10 @@ import {
249
257
  TransferInputDeviceCommandInput,
250
258
  TransferInputDeviceCommandOutput,
251
259
  } from "./commands/TransferInputDeviceCommand";
260
+ import {
261
+ UpdateAccountConfigurationCommandInput,
262
+ UpdateAccountConfigurationCommandOutput,
263
+ } from "./commands/UpdateAccountConfigurationCommand";
252
264
  import {
253
265
  UpdateChannelClassCommandInput,
254
266
  UpdateChannelClassCommandOutput,
@@ -310,6 +322,7 @@ export type ServiceInputTypes =
310
322
  | DeleteReservationCommandInput
311
323
  | DeleteScheduleCommandInput
312
324
  | DeleteTagsCommandInput
325
+ | DescribeAccountConfigurationCommandInput
313
326
  | DescribeChannelCommandInput
314
327
  | DescribeInputCommandInput
315
328
  | DescribeInputDeviceCommandInput
@@ -320,6 +333,7 @@ export type ServiceInputTypes =
320
333
  | DescribeOfferingCommandInput
321
334
  | DescribeReservationCommandInput
322
335
  | DescribeScheduleCommandInput
336
+ | DescribeThumbnailsCommandInput
323
337
  | ListChannelsCommandInput
324
338
  | ListInputDeviceTransfersCommandInput
325
339
  | ListInputDevicesCommandInput
@@ -339,6 +353,7 @@ export type ServiceInputTypes =
339
353
  | StopChannelCommandInput
340
354
  | StopMultiplexCommandInput
341
355
  | TransferInputDeviceCommandInput
356
+ | UpdateAccountConfigurationCommandInput
342
357
  | UpdateChannelClassCommandInput
343
358
  | UpdateChannelCommandInput
344
359
  | UpdateInputCommandInput
@@ -370,6 +385,7 @@ export type ServiceOutputTypes =
370
385
  | DeleteReservationCommandOutput
371
386
  | DeleteScheduleCommandOutput
372
387
  | DeleteTagsCommandOutput
388
+ | DescribeAccountConfigurationCommandOutput
373
389
  | DescribeChannelCommandOutput
374
390
  | DescribeInputCommandOutput
375
391
  | DescribeInputDeviceCommandOutput
@@ -380,6 +396,7 @@ export type ServiceOutputTypes =
380
396
  | DescribeOfferingCommandOutput
381
397
  | DescribeReservationCommandOutput
382
398
  | DescribeScheduleCommandOutput
399
+ | DescribeThumbnailsCommandOutput
383
400
  | ListChannelsCommandOutput
384
401
  | ListInputDeviceTransfersCommandOutput
385
402
  | ListInputDevicesCommandOutput
@@ -399,6 +416,7 @@ export type ServiceOutputTypes =
399
416
  | StopChannelCommandOutput
400
417
  | StopMultiplexCommandOutput
401
418
  | TransferInputDeviceCommandOutput
419
+ | UpdateAccountConfigurationCommandOutput
402
420
  | UpdateChannelClassCommandOutput
403
421
  | UpdateChannelCommandOutput
404
422
  | UpdateInputCommandOutput
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ MediaLiveClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../MediaLiveClient";
14
+ import {
15
+ DescribeAccountConfigurationRequest,
16
+ DescribeAccountConfigurationResponse,
17
+ } from "../models/models_1";
18
+ export { __MetadataBearer, $Command };
19
+ export interface DescribeAccountConfigurationCommandInput
20
+ extends DescribeAccountConfigurationRequest {}
21
+ export interface DescribeAccountConfigurationCommandOutput
22
+ extends DescribeAccountConfigurationResponse,
23
+ __MetadataBearer {}
24
+ export declare class DescribeAccountConfigurationCommand extends $Command<
25
+ DescribeAccountConfigurationCommandInput,
26
+ DescribeAccountConfigurationCommandOutput,
27
+ MediaLiveClientResolvedConfig
28
+ > {
29
+ readonly input: DescribeAccountConfigurationCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: DescribeAccountConfigurationCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: MediaLiveClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ DescribeAccountConfigurationCommandInput,
38
+ DescribeAccountConfigurationCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,39 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ MediaLiveClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../MediaLiveClient";
14
+ import {
15
+ DescribeThumbnailsRequest,
16
+ DescribeThumbnailsResponse,
17
+ } from "../models/models_1";
18
+ export { __MetadataBearer, $Command };
19
+ export interface DescribeThumbnailsCommandInput
20
+ extends DescribeThumbnailsRequest {}
21
+ export interface DescribeThumbnailsCommandOutput
22
+ extends DescribeThumbnailsResponse,
23
+ __MetadataBearer {}
24
+ export declare class DescribeThumbnailsCommand extends $Command<
25
+ DescribeThumbnailsCommandInput,
26
+ DescribeThumbnailsCommandOutput,
27
+ MediaLiveClientResolvedConfig
28
+ > {
29
+ readonly input: DescribeThumbnailsCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: DescribeThumbnailsCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: MediaLiveClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<DescribeThumbnailsCommandInput, DescribeThumbnailsCommandOutput>;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -14,7 +14,7 @@ import {
14
14
  import {
15
15
  PurchaseOfferingRequest,
16
16
  PurchaseOfferingResponse,
17
- } from "../models/models_1";
17
+ } from "../models/models_2";
18
18
  export { __MetadataBearer, $Command };
19
19
  export interface PurchaseOfferingCommandInput extends PurchaseOfferingRequest {}
20
20
  export interface PurchaseOfferingCommandOutput
@@ -14,7 +14,7 @@ import {
14
14
  import {
15
15
  RebootInputDeviceRequest,
16
16
  RebootInputDeviceResponse,
17
- } from "../models/models_1";
17
+ } from "../models/models_2";
18
18
  export { __MetadataBearer, $Command };
19
19
  export interface RebootInputDeviceCommandInput
20
20
  extends RebootInputDeviceRequest {}
@@ -14,7 +14,7 @@ import {
14
14
  import {
15
15
  RejectInputDeviceTransferRequest,
16
16
  RejectInputDeviceTransferResponse,
17
- } from "../models/models_1";
17
+ } from "../models/models_2";
18
18
  export { __MetadataBearer, $Command };
19
19
  export interface RejectInputDeviceTransferCommandInput
20
20
  extends RejectInputDeviceTransferRequest {}
@@ -11,7 +11,7 @@ import {
11
11
  ServiceInputTypes,
12
12
  ServiceOutputTypes,
13
13
  } from "../MediaLiveClient";
14
- import { StartChannelRequest, StartChannelResponse } from "../models/models_1";
14
+ import { StartChannelRequest, StartChannelResponse } from "../models/models_2";
15
15
  export { __MetadataBearer, $Command };
16
16
  export interface StartChannelCommandInput extends StartChannelRequest {}
17
17
  export interface StartChannelCommandOutput
@@ -11,8 +11,10 @@ import {
11
11
  ServiceInputTypes,
12
12
  ServiceOutputTypes,
13
13
  } from "../MediaLiveClient";
14
- import { StartInputDeviceMaintenanceWindowRequest } from "../models/models_1";
15
- import { StartInputDeviceMaintenanceWindowResponse } from "../models/models_2";
14
+ import {
15
+ StartInputDeviceMaintenanceWindowRequest,
16
+ StartInputDeviceMaintenanceWindowResponse,
17
+ } from "../models/models_2";
16
18
  export { __MetadataBearer, $Command };
17
19
  export interface StartInputDeviceMaintenanceWindowCommandInput
18
20
  extends StartInputDeviceMaintenanceWindowRequest {}
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ MediaLiveClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../MediaLiveClient";
14
+ import {
15
+ UpdateAccountConfigurationRequest,
16
+ UpdateAccountConfigurationResponse,
17
+ } from "../models/models_2";
18
+ export { __MetadataBearer, $Command };
19
+ export interface UpdateAccountConfigurationCommandInput
20
+ extends UpdateAccountConfigurationRequest {}
21
+ export interface UpdateAccountConfigurationCommandOutput
22
+ extends UpdateAccountConfigurationResponse,
23
+ __MetadataBearer {}
24
+ export declare class UpdateAccountConfigurationCommand extends $Command<
25
+ UpdateAccountConfigurationCommandInput,
26
+ UpdateAccountConfigurationCommandOutput,
27
+ MediaLiveClientResolvedConfig
28
+ > {
29
+ readonly input: UpdateAccountConfigurationCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: UpdateAccountConfigurationCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: MediaLiveClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ UpdateAccountConfigurationCommandInput,
38
+ UpdateAccountConfigurationCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -20,6 +20,7 @@ export * from "./DeleteMultiplexProgramCommand";
20
20
  export * from "./DeleteReservationCommand";
21
21
  export * from "./DeleteScheduleCommand";
22
22
  export * from "./DeleteTagsCommand";
23
+ export * from "./DescribeAccountConfigurationCommand";
23
24
  export * from "./DescribeChannelCommand";
24
25
  export * from "./DescribeInputCommand";
25
26
  export * from "./DescribeInputDeviceCommand";
@@ -30,6 +31,7 @@ export * from "./DescribeMultiplexProgramCommand";
30
31
  export * from "./DescribeOfferingCommand";
31
32
  export * from "./DescribeReservationCommand";
32
33
  export * from "./DescribeScheduleCommand";
34
+ export * from "./DescribeThumbnailsCommand";
33
35
  export * from "./ListChannelsCommand";
34
36
  export * from "./ListInputDeviceTransfersCommand";
35
37
  export * from "./ListInputDevicesCommand";
@@ -49,6 +51,7 @@ export * from "./StartMultiplexCommand";
49
51
  export * from "./StopChannelCommand";
50
52
  export * from "./StopMultiplexCommand";
51
53
  export * from "./TransferInputDeviceCommand";
54
+ export * from "./UpdateAccountConfigurationCommand";
52
55
  export * from "./UpdateChannelClassCommand";
53
56
  export * from "./UpdateChannelCommand";
54
57
  export * from "./UpdateInputCommand";
@@ -571,6 +571,21 @@ export interface ScheduleAction {
571
571
  ScheduleActionSettings: ScheduleActionSettings | undefined;
572
572
  ScheduleActionStartSettings: ScheduleActionStartSettings | undefined;
573
573
  }
574
+ export declare const ThumbnailType: {
575
+ readonly CURRENT_ACTIVE: "CURRENT_ACTIVE";
576
+ readonly UNSPECIFIED: "UNSPECIFIED";
577
+ };
578
+ export type ThumbnailType = (typeof ThumbnailType)[keyof typeof ThumbnailType];
579
+ export interface Thumbnail {
580
+ Body?: string;
581
+ ContentType?: string;
582
+ ThumbnailType?: ThumbnailType | string;
583
+ TimeStamp?: Date;
584
+ }
585
+ export interface ThumbnailDetail {
586
+ PipelineId?: string;
587
+ Thumbnails?: Thumbnail[];
588
+ }
574
589
  export declare const InputDeviceTransferType: {
575
590
  readonly INCOMING: "INCOMING";
576
591
  readonly OUTGOING: "OUTGOING";
@@ -1188,6 +1203,9 @@ export declare class UnprocessableEntityException extends __BaseException {
1188
1203
  opts: __ExceptionOptionType<UnprocessableEntityException, __BaseException>
1189
1204
  );
1190
1205
  }
1206
+ export interface AccountConfiguration {
1207
+ KmsKeyId?: string;
1208
+ }
1191
1209
  export declare const AvailBlankingState: {
1192
1210
  readonly DISABLED: "DISABLED";
1193
1211
  readonly ENABLED: "ENABLED";
@@ -1402,6 +1420,15 @@ export interface NielsenConfiguration {
1402
1420
  DistributorId?: string;
1403
1421
  NielsenPcmToId3Tagging?: NielsenPcmToId3TaggingState | string;
1404
1422
  }
1423
+ export declare const ThumbnailState: {
1424
+ readonly AUTO: "AUTO";
1425
+ readonly DISABLED: "DISABLED";
1426
+ };
1427
+ export type ThumbnailState =
1428
+ (typeof ThumbnailState)[keyof typeof ThumbnailState];
1429
+ export interface ThumbnailConfiguration {
1430
+ State: ThumbnailState | string | undefined;
1431
+ }
1405
1432
  export declare const TimecodeConfigSource: {
1406
1433
  readonly EMBEDDED: "EMBEDDED";
1407
1434
  readonly SYSTEMCLOCK: "SYSTEMCLOCK";
@@ -1426,6 +1453,7 @@ export interface EncoderSettings {
1426
1453
  OutputGroups: OutputGroup[] | undefined;
1427
1454
  TimecodeConfig: TimecodeConfig | undefined;
1428
1455
  VideoDescriptions: VideoDescription[] | undefined;
1456
+ ThumbnailConfiguration?: ThumbnailConfiguration;
1429
1457
  }
1430
1458
  export interface Channel {
1431
1459
  Arn?: string;
@@ -1696,6 +1724,10 @@ export interface DeleteTagsRequest {
1696
1724
  ResourceArn: string | undefined;
1697
1725
  TagKeys: string[] | undefined;
1698
1726
  }
1727
+ export interface DescribeAccountConfigurationRequest {}
1728
+ export interface DescribeAccountConfigurationResponse {
1729
+ AccountConfiguration?: AccountConfiguration;
1730
+ }
1699
1731
  export interface DescribeChannelRequest {
1700
1732
  ChannelId: string | undefined;
1701
1733
  }
@@ -1855,6 +1887,14 @@ export interface DescribeScheduleResponse {
1855
1887
  NextToken?: string;
1856
1888
  ScheduleActions?: ScheduleAction[];
1857
1889
  }
1890
+ export interface DescribeThumbnailsRequest {
1891
+ ChannelId: string | undefined;
1892
+ PipelineId: string | undefined;
1893
+ ThumbnailType: string | undefined;
1894
+ }
1895
+ export interface DescribeThumbnailsResponse {
1896
+ ThumbnailDetails?: ThumbnailDetail[];
1897
+ }
1858
1898
  export interface InputDeviceConfigurableSettings {
1859
1899
  ConfiguredInput?: InputDeviceConfiguredInput | string;
1860
1900
  MaxBitrate?: number;
@@ -1963,59 +2003,6 @@ export interface MaintenanceUpdateSettings {
1963
2003
  MaintenanceScheduledDate?: string;
1964
2004
  MaintenanceStartTime?: string;
1965
2005
  }
1966
- export interface PurchaseOfferingRequest {
1967
- Count: number | undefined;
1968
- Name?: string;
1969
- OfferingId: string | undefined;
1970
- RenewalSettings?: RenewalSettings;
1971
- RequestId?: string;
1972
- Start?: string;
1973
- Tags?: Record<string, string>;
1974
- }
1975
- export interface PurchaseOfferingResponse {
1976
- Reservation?: Reservation;
1977
- }
1978
- export declare const RebootInputDeviceForce: {
1979
- readonly NO: "NO";
1980
- readonly YES: "YES";
1981
- };
1982
- export type RebootInputDeviceForce =
1983
- (typeof RebootInputDeviceForce)[keyof typeof RebootInputDeviceForce];
1984
- export interface RebootInputDeviceRequest {
1985
- Force?: RebootInputDeviceForce | string;
1986
- InputDeviceId: string | undefined;
1987
- }
1988
- export interface RebootInputDeviceResponse {}
1989
- export interface RejectInputDeviceTransferRequest {
1990
- InputDeviceId: string | undefined;
1991
- }
1992
- export interface RejectInputDeviceTransferResponse {}
1993
- export interface StartChannelRequest {
1994
- ChannelId: string | undefined;
1995
- }
1996
- export interface StartChannelResponse {
1997
- Arn?: string;
1998
- CdiInputSpecification?: CdiInputSpecification;
1999
- ChannelClass?: ChannelClass | string;
2000
- Destinations?: OutputDestination[];
2001
- EgressEndpoints?: ChannelEgressEndpoint[];
2002
- EncoderSettings?: EncoderSettings;
2003
- Id?: string;
2004
- InputAttachments?: InputAttachment[];
2005
- InputSpecification?: InputSpecification;
2006
- LogLevel?: LogLevel | string;
2007
- Maintenance?: MaintenanceStatus;
2008
- Name?: string;
2009
- PipelineDetails?: PipelineDetail[];
2010
- PipelinesRunningCount?: number;
2011
- RoleArn?: string;
2012
- State?: ChannelState | string;
2013
- Tags?: Record<string, string>;
2014
- Vpc?: VpcOutputSettingsDescription;
2015
- }
2016
- export interface StartInputDeviceMaintenanceWindowRequest {
2017
- InputDeviceId: string | undefined;
2018
- }
2019
2006
  export declare const DescribeInputDeviceThumbnailResponseFilterSensitiveLog: (
2020
2007
  obj: DescribeInputDeviceThumbnailResponse
2021
2008
  ) => any;
@@ -27,6 +27,7 @@ import {
27
27
  VpcOutputSettingsDescription,
28
28
  } from "./models_0";
29
29
  import {
30
+ AccountConfiguration,
30
31
  Channel,
31
32
  EncoderSettings,
32
33
  InputDeviceConfigurableSettings,
@@ -39,6 +40,59 @@ import {
39
40
  RenewalSettings,
40
41
  Reservation,
41
42
  } from "./models_1";
43
+ export interface PurchaseOfferingRequest {
44
+ Count: number | undefined;
45
+ Name?: string;
46
+ OfferingId: string | undefined;
47
+ RenewalSettings?: RenewalSettings;
48
+ RequestId?: string;
49
+ Start?: string;
50
+ Tags?: Record<string, string>;
51
+ }
52
+ export interface PurchaseOfferingResponse {
53
+ Reservation?: Reservation;
54
+ }
55
+ export declare const RebootInputDeviceForce: {
56
+ readonly NO: "NO";
57
+ readonly YES: "YES";
58
+ };
59
+ export type RebootInputDeviceForce =
60
+ (typeof RebootInputDeviceForce)[keyof typeof RebootInputDeviceForce];
61
+ export interface RebootInputDeviceRequest {
62
+ Force?: RebootInputDeviceForce | string;
63
+ InputDeviceId: string | undefined;
64
+ }
65
+ export interface RebootInputDeviceResponse {}
66
+ export interface RejectInputDeviceTransferRequest {
67
+ InputDeviceId: string | undefined;
68
+ }
69
+ export interface RejectInputDeviceTransferResponse {}
70
+ export interface StartChannelRequest {
71
+ ChannelId: string | undefined;
72
+ }
73
+ export interface StartChannelResponse {
74
+ Arn?: string;
75
+ CdiInputSpecification?: CdiInputSpecification;
76
+ ChannelClass?: ChannelClass | string;
77
+ Destinations?: OutputDestination[];
78
+ EgressEndpoints?: ChannelEgressEndpoint[];
79
+ EncoderSettings?: EncoderSettings;
80
+ Id?: string;
81
+ InputAttachments?: InputAttachment[];
82
+ InputSpecification?: InputSpecification;
83
+ LogLevel?: LogLevel | string;
84
+ Maintenance?: MaintenanceStatus;
85
+ Name?: string;
86
+ PipelineDetails?: PipelineDetail[];
87
+ PipelinesRunningCount?: number;
88
+ RoleArn?: string;
89
+ State?: ChannelState | string;
90
+ Tags?: Record<string, string>;
91
+ Vpc?: VpcOutputSettingsDescription;
92
+ }
93
+ export interface StartInputDeviceMaintenanceWindowRequest {
94
+ InputDeviceId: string | undefined;
95
+ }
42
96
  export interface StartInputDeviceMaintenanceWindowResponse {}
43
97
  export interface StartMultiplexRequest {
44
98
  MultiplexId: string | undefined;
@@ -100,6 +154,12 @@ export interface TransferInputDeviceRequest {
100
154
  TransferMessage?: string;
101
155
  }
102
156
  export interface TransferInputDeviceResponse {}
157
+ export interface UpdateAccountConfigurationRequest {
158
+ AccountConfiguration?: AccountConfiguration;
159
+ }
160
+ export interface UpdateAccountConfigurationResponse {
161
+ AccountConfiguration?: AccountConfiguration;
162
+ }
103
163
  export interface UpdateChannelRequest {
104
164
  CdiInputSpecification?: CdiInputSpecification;
105
165
  ChannelId: string | undefined;
@@ -94,6 +94,10 @@ import {
94
94
  DeleteTagsCommandInput,
95
95
  DeleteTagsCommandOutput,
96
96
  } from "../commands/DeleteTagsCommand";
97
+ import {
98
+ DescribeAccountConfigurationCommandInput,
99
+ DescribeAccountConfigurationCommandOutput,
100
+ } from "../commands/DescribeAccountConfigurationCommand";
97
101
  import {
98
102
  DescribeChannelCommandInput,
99
103
  DescribeChannelCommandOutput,
@@ -134,6 +138,10 @@ import {
134
138
  DescribeScheduleCommandInput,
135
139
  DescribeScheduleCommandOutput,
136
140
  } from "../commands/DescribeScheduleCommand";
141
+ import {
142
+ DescribeThumbnailsCommandInput,
143
+ DescribeThumbnailsCommandOutput,
144
+ } from "../commands/DescribeThumbnailsCommand";
137
145
  import {
138
146
  ListChannelsCommandInput,
139
147
  ListChannelsCommandOutput,
@@ -210,6 +218,10 @@ import {
210
218
  TransferInputDeviceCommandInput,
211
219
  TransferInputDeviceCommandOutput,
212
220
  } from "../commands/TransferInputDeviceCommand";
221
+ import {
222
+ UpdateAccountConfigurationCommandInput,
223
+ UpdateAccountConfigurationCommandOutput,
224
+ } from "../commands/UpdateAccountConfigurationCommand";
213
225
  import {
214
226
  UpdateChannelClassCommandInput,
215
227
  UpdateChannelClassCommandOutput,
@@ -330,6 +342,10 @@ export declare const se_DeleteTagsCommand: (
330
342
  input: DeleteTagsCommandInput,
331
343
  context: __SerdeContext
332
344
  ) => Promise<__HttpRequest>;
345
+ export declare const se_DescribeAccountConfigurationCommand: (
346
+ input: DescribeAccountConfigurationCommandInput,
347
+ context: __SerdeContext
348
+ ) => Promise<__HttpRequest>;
333
349
  export declare const se_DescribeChannelCommand: (
334
350
  input: DescribeChannelCommandInput,
335
351
  context: __SerdeContext
@@ -370,6 +386,10 @@ export declare const se_DescribeScheduleCommand: (
370
386
  input: DescribeScheduleCommandInput,
371
387
  context: __SerdeContext
372
388
  ) => Promise<__HttpRequest>;
389
+ export declare const se_DescribeThumbnailsCommand: (
390
+ input: DescribeThumbnailsCommandInput,
391
+ context: __SerdeContext
392
+ ) => Promise<__HttpRequest>;
373
393
  export declare const se_ListChannelsCommand: (
374
394
  input: ListChannelsCommandInput,
375
395
  context: __SerdeContext
@@ -446,6 +466,10 @@ export declare const se_TransferInputDeviceCommand: (
446
466
  input: TransferInputDeviceCommandInput,
447
467
  context: __SerdeContext
448
468
  ) => Promise<__HttpRequest>;
469
+ export declare const se_UpdateAccountConfigurationCommand: (
470
+ input: UpdateAccountConfigurationCommandInput,
471
+ context: __SerdeContext
472
+ ) => Promise<__HttpRequest>;
449
473
  export declare const se_UpdateChannelCommand: (
450
474
  input: UpdateChannelCommandInput,
451
475
  context: __SerdeContext
@@ -566,6 +590,10 @@ export declare const de_DeleteTagsCommand: (
566
590
  output: __HttpResponse,
567
591
  context: __SerdeContext
568
592
  ) => Promise<DeleteTagsCommandOutput>;
593
+ export declare const de_DescribeAccountConfigurationCommand: (
594
+ output: __HttpResponse,
595
+ context: __SerdeContext
596
+ ) => Promise<DescribeAccountConfigurationCommandOutput>;
569
597
  export declare const de_DescribeChannelCommand: (
570
598
  output: __HttpResponse,
571
599
  context: __SerdeContext
@@ -606,6 +634,10 @@ export declare const de_DescribeScheduleCommand: (
606
634
  output: __HttpResponse,
607
635
  context: __SerdeContext
608
636
  ) => Promise<DescribeScheduleCommandOutput>;
637
+ export declare const de_DescribeThumbnailsCommand: (
638
+ output: __HttpResponse,
639
+ context: __SerdeContext
640
+ ) => Promise<DescribeThumbnailsCommandOutput>;
609
641
  export declare const de_ListChannelsCommand: (
610
642
  output: __HttpResponse,
611
643
  context: __SerdeContext
@@ -682,6 +714,10 @@ export declare const de_TransferInputDeviceCommand: (
682
714
  output: __HttpResponse,
683
715
  context: __SerdeContext
684
716
  ) => Promise<TransferInputDeviceCommandOutput>;
717
+ export declare const de_UpdateAccountConfigurationCommand: (
718
+ output: __HttpResponse,
719
+ context: __SerdeContext
720
+ ) => Promise<UpdateAccountConfigurationCommandOutput>;
685
721
  export declare const de_UpdateChannelCommand: (
686
722
  output: __HttpResponse,
687
723
  context: __SerdeContext