@aws-sdk/client-medialive 3.325.0 → 3.326.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 (60) hide show
  1. package/dist-types/commands/AcceptInputDeviceTransferCommand.d.ts +4 -0
  2. package/dist-types/commands/BatchDeleteCommand.d.ts +20 -0
  3. package/dist-types/commands/BatchStartCommand.d.ts +20 -0
  4. package/dist-types/commands/BatchStopCommand.d.ts +20 -0
  5. package/dist-types/commands/BatchUpdateScheduleCommand.d.ts +263 -0
  6. package/dist-types/commands/CancelInputDeviceTransferCommand.d.ts +4 -0
  7. package/dist-types/commands/ClaimDeviceCommand.d.ts +4 -0
  8. package/dist-types/commands/CreateChannelCommand.d.ts +1011 -0
  9. package/dist-types/commands/CreateInputCommand.d.ts +55 -0
  10. package/dist-types/commands/CreateInputSecurityGroupCommand.d.ts +21 -0
  11. package/dist-types/commands/CreateMultiplexCommand.d.ts +32 -0
  12. package/dist-types/commands/CreateMultiplexProgramCommand.d.ts +54 -0
  13. package/dist-types/commands/CreatePartnerInputCommand.d.ts +55 -0
  14. package/dist-types/commands/CreateTagsCommand.d.ts +4 -0
  15. package/dist-types/commands/DeleteChannelCommand.d.ts +1009 -0
  16. package/dist-types/commands/DeleteInputCommand.d.ts +4 -0
  17. package/dist-types/commands/DeleteInputSecurityGroupCommand.d.ts +4 -0
  18. package/dist-types/commands/DeleteMultiplexCommand.d.ts +30 -0
  19. package/dist-types/commands/DeleteMultiplexProgramCommand.d.ts +52 -0
  20. package/dist-types/commands/DeleteReservationCommand.d.ts +38 -0
  21. package/dist-types/commands/DeleteScheduleCommand.d.ts +4 -0
  22. package/dist-types/commands/DeleteTagsCommand.d.ts +4 -0
  23. package/dist-types/commands/DescribeChannelCommand.d.ts +1009 -0
  24. package/dist-types/commands/DescribeInputCommand.d.ts +53 -0
  25. package/dist-types/commands/DescribeInputDeviceCommand.d.ts +48 -0
  26. package/dist-types/commands/DescribeInputDeviceThumbnailCommand.d.ts +10 -0
  27. package/dist-types/commands/DescribeInputSecurityGroupCommand.d.ts +19 -0
  28. package/dist-types/commands/DescribeMultiplexCommand.d.ts +30 -0
  29. package/dist-types/commands/DescribeMultiplexProgramCommand.d.ts +52 -0
  30. package/dist-types/commands/DescribeOfferingCommand.d.ts +25 -0
  31. package/dist-types/commands/DescribeReservationCommand.d.ts +38 -0
  32. package/dist-types/commands/DescribeScheduleCommand.d.ts +133 -0
  33. package/dist-types/commands/ListChannelsCommand.d.ts +208 -0
  34. package/dist-types/commands/ListInputDeviceTransfersCommand.d.ts +14 -0
  35. package/dist-types/commands/ListInputDevicesCommand.d.ts +53 -0
  36. package/dist-types/commands/ListInputSecurityGroupsCommand.d.ts +24 -0
  37. package/dist-types/commands/ListInputsCommand.d.ts +58 -0
  38. package/dist-types/commands/ListMultiplexProgramsCommand.d.ts +12 -0
  39. package/dist-types/commands/ListMultiplexesCommand.d.ts +25 -0
  40. package/dist-types/commands/ListOfferingsCommand.d.ts +30 -0
  41. package/dist-types/commands/ListReservationsCommand.d.ts +43 -0
  42. package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
  43. package/dist-types/commands/PurchaseOfferingCommand.d.ts +40 -0
  44. package/dist-types/commands/RebootInputDeviceCommand.d.ts +4 -0
  45. package/dist-types/commands/RejectInputDeviceTransferCommand.d.ts +4 -0
  46. package/dist-types/commands/StartChannelCommand.d.ts +1009 -0
  47. package/dist-types/commands/StartInputDeviceMaintenanceWindowCommand.d.ts +4 -0
  48. package/dist-types/commands/StartMultiplexCommand.d.ts +30 -0
  49. package/dist-types/commands/StopChannelCommand.d.ts +1009 -0
  50. package/dist-types/commands/StopMultiplexCommand.d.ts +30 -0
  51. package/dist-types/commands/TransferInputDeviceCommand.d.ts +4 -0
  52. package/dist-types/commands/UpdateChannelClassCommand.d.ts +1011 -0
  53. package/dist-types/commands/UpdateChannelCommand.d.ts +1011 -0
  54. package/dist-types/commands/UpdateInputCommand.d.ts +55 -0
  55. package/dist-types/commands/UpdateInputDeviceCommand.d.ts +48 -0
  56. package/dist-types/commands/UpdateInputSecurityGroupCommand.d.ts +21 -0
  57. package/dist-types/commands/UpdateMultiplexCommand.d.ts +32 -0
  58. package/dist-types/commands/UpdateMultiplexProgramCommand.d.ts +54 -0
  59. package/dist-types/commands/UpdateReservationCommand.d.ts +40 -0
  60. package/package.json +3 -3
@@ -42,6 +42,44 @@ export interface PurchaseOfferingCommandOutput extends PurchaseOfferingResponse,
42
42
  * };
43
43
  * const command = new PurchaseOfferingCommand(input);
44
44
  * const response = await client.send(command);
45
+ * // { // PurchaseOfferingResponse
46
+ * // Reservation: { // Reservation
47
+ * // Arn: "STRING_VALUE",
48
+ * // Count: Number("int"),
49
+ * // CurrencyCode: "STRING_VALUE",
50
+ * // Duration: Number("int"),
51
+ * // DurationUnits: "MONTHS",
52
+ * // End: "STRING_VALUE",
53
+ * // FixedPrice: Number("double"),
54
+ * // Name: "STRING_VALUE",
55
+ * // OfferingDescription: "STRING_VALUE",
56
+ * // OfferingId: "STRING_VALUE",
57
+ * // OfferingType: "NO_UPFRONT",
58
+ * // Region: "STRING_VALUE",
59
+ * // RenewalSettings: { // RenewalSettings
60
+ * // AutomaticRenewal: "DISABLED" || "ENABLED" || "UNAVAILABLE",
61
+ * // RenewalCount: Number("int"),
62
+ * // },
63
+ * // ReservationId: "STRING_VALUE",
64
+ * // ResourceSpecification: { // ReservationResourceSpecification
65
+ * // ChannelClass: "STANDARD" || "SINGLE_PIPELINE",
66
+ * // Codec: "MPEG2" || "AVC" || "HEVC" || "AUDIO" || "LINK",
67
+ * // MaximumBitrate: "MAX_10_MBPS" || "MAX_20_MBPS" || "MAX_50_MBPS",
68
+ * // MaximumFramerate: "MAX_30_FPS" || "MAX_60_FPS",
69
+ * // Resolution: "SD" || "HD" || "FHD" || "UHD",
70
+ * // ResourceType: "INPUT" || "OUTPUT" || "MULTIPLEX" || "CHANNEL",
71
+ * // SpecialFeature: "ADVANCED_AUDIO" || "AUDIO_NORMALIZATION" || "MGHD" || "MGUHD",
72
+ * // VideoQuality: "STANDARD" || "ENHANCED" || "PREMIUM",
73
+ * // },
74
+ * // Start: "STRING_VALUE",
75
+ * // State: "ACTIVE" || "EXPIRED" || "CANCELED" || "DELETED",
76
+ * // Tags: { // Tags
77
+ * // "<keys>": "STRING_VALUE",
78
+ * // },
79
+ * // UsagePrice: Number("double"),
80
+ * // },
81
+ * // };
82
+ *
45
83
  * ```
46
84
  *
47
85
  * @param PurchaseOfferingCommandInput - {@link PurchaseOfferingCommandInput}
@@ -74,6 +112,8 @@ export interface PurchaseOfferingCommandOutput extends PurchaseOfferingResponse,
74
112
  * @throws {@link TooManyRequestsException} (client fault)
75
113
  * Placeholder documentation for TooManyRequestsException
76
114
  *
115
+ * @throws {@link MediaLiveServiceException}
116
+ * <p>Base exception class for all service exceptions from MediaLive service.</p>
77
117
  *
78
118
  */
79
119
  export declare class PurchaseOfferingCommand extends $Command<PurchaseOfferingCommandInput, PurchaseOfferingCommandOutput, MediaLiveClientResolvedConfig> {
@@ -32,6 +32,8 @@ export interface RebootInputDeviceCommandOutput extends RebootInputDeviceRespons
32
32
  * };
33
33
  * const command = new RebootInputDeviceCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // {};
36
+ *
35
37
  * ```
36
38
  *
37
39
  * @param RebootInputDeviceCommandInput - {@link RebootInputDeviceCommandInput}
@@ -64,6 +66,8 @@ export interface RebootInputDeviceCommandOutput extends RebootInputDeviceRespons
64
66
  * @throws {@link UnprocessableEntityException} (client fault)
65
67
  * Placeholder documentation for UnprocessableEntityException
66
68
  *
69
+ * @throws {@link MediaLiveServiceException}
70
+ * <p>Base exception class for all service exceptions from MediaLive service.</p>
67
71
  *
68
72
  */
69
73
  export declare class RebootInputDeviceCommand extends $Command<RebootInputDeviceCommandInput, RebootInputDeviceCommandOutput, MediaLiveClientResolvedConfig> {
@@ -31,6 +31,8 @@ export interface RejectInputDeviceTransferCommandOutput extends RejectInputDevic
31
31
  * };
32
32
  * const command = new RejectInputDeviceTransferCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // {};
35
+ *
34
36
  * ```
35
37
  *
36
38
  * @param RejectInputDeviceTransferCommandInput - {@link RejectInputDeviceTransferCommandInput}
@@ -66,6 +68,8 @@ export interface RejectInputDeviceTransferCommandOutput extends RejectInputDevic
66
68
  * @throws {@link UnprocessableEntityException} (client fault)
67
69
  * Placeholder documentation for UnprocessableEntityException
68
70
  *
71
+ * @throws {@link MediaLiveServiceException}
72
+ * <p>Base exception class for all service exceptions from MediaLive service.</p>
69
73
  *
70
74
  */
71
75
  export declare class RejectInputDeviceTransferCommand extends $Command<RejectInputDeviceTransferCommandInput, RejectInputDeviceTransferCommandOutput, MediaLiveClientResolvedConfig> {