@aws-sdk/client-medialive 3.128.0 → 3.136.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 (44) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/dist-cjs/MediaLive.js +30 -0
  3. package/dist-cjs/commands/RebootInputDeviceCommand.js +36 -0
  4. package/dist-cjs/commands/StartInputDeviceMaintenanceWindowCommand.js +36 -0
  5. package/dist-cjs/commands/UpdateInputCommand.js +2 -1
  6. package/dist-cjs/commands/UpdateInputDeviceCommand.js +3 -3
  7. package/dist-cjs/commands/UpdateInputSecurityGroupCommand.js +3 -3
  8. package/dist-cjs/commands/index.js +2 -0
  9. package/dist-cjs/models/models_1.js +30 -31
  10. package/dist-cjs/models/models_2.js +31 -1
  11. package/dist-cjs/protocols/Aws_restJson1.js +174 -3
  12. package/dist-es/MediaLive.js +30 -0
  13. package/dist-es/commands/RebootInputDeviceCommand.js +39 -0
  14. package/dist-es/commands/StartInputDeviceMaintenanceWindowCommand.js +39 -0
  15. package/dist-es/commands/UpdateInputCommand.js +2 -1
  16. package/dist-es/commands/UpdateInputDeviceCommand.js +1 -1
  17. package/dist-es/commands/UpdateInputSecurityGroupCommand.js +1 -1
  18. package/dist-es/commands/index.js +2 -0
  19. package/dist-es/models/models_1.js +21 -20
  20. package/dist-es/models/models_2.js +20 -0
  21. package/dist-es/protocols/Aws_restJson1.js +227 -0
  22. package/dist-types/MediaLive.d.ts +14 -0
  23. package/dist-types/MediaLiveClient.d.ts +4 -2
  24. package/dist-types/commands/RebootInputDeviceCommand.d.ts +35 -0
  25. package/dist-types/commands/StartInputDeviceMaintenanceWindowCommand.d.ts +35 -0
  26. package/dist-types/commands/UpdateInputCommand.d.ts +2 -1
  27. package/dist-types/commands/UpdateInputDeviceCommand.d.ts +1 -1
  28. package/dist-types/commands/UpdateInputSecurityGroupCommand.d.ts +1 -1
  29. package/dist-types/commands/index.d.ts +2 -0
  30. package/dist-types/models/models_1.d.ts +60 -139
  31. package/dist-types/models/models_2.d.ts +141 -1
  32. package/dist-types/protocols/Aws_restJson1.d.ts +6 -0
  33. package/dist-types/ts3.4/MediaLive.d.ts +10 -0
  34. package/dist-types/ts3.4/MediaLiveClient.d.ts +4 -2
  35. package/dist-types/ts3.4/commands/RebootInputDeviceCommand.d.ts +17 -0
  36. package/dist-types/ts3.4/commands/StartInputDeviceMaintenanceWindowCommand.d.ts +17 -0
  37. package/dist-types/ts3.4/commands/UpdateInputCommand.d.ts +2 -1
  38. package/dist-types/ts3.4/commands/UpdateInputDeviceCommand.d.ts +1 -1
  39. package/dist-types/ts3.4/commands/UpdateInputSecurityGroupCommand.d.ts +1 -1
  40. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  41. package/dist-types/ts3.4/models/models_1.d.ts +38 -77
  42. package/dist-types/ts3.4/models/models_2.d.ts +79 -1
  43. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +6 -0
  44. package/package.json +7 -7
@@ -0,0 +1,35 @@
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 { StartInputDeviceMaintenanceWindowRequest, StartInputDeviceMaintenanceWindowResponse } from "../models/models_1";
5
+ export interface StartInputDeviceMaintenanceWindowCommandInput extends StartInputDeviceMaintenanceWindowRequest {
6
+ }
7
+ export interface StartInputDeviceMaintenanceWindowCommandOutput extends StartInputDeviceMaintenanceWindowResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * Start a maintenance window for the specified input device. Starting a maintenance window will give the device up to two hours to install software. If the device was streaming prior to the maintenance, it will resume streaming when the software is fully installed. Devices automatically install updates while they are powered on and their MediaLive channels are stopped. A maintenance window allows you to update a device without having to stop MediaLive channels that use the device. The device must remain powered on and connected to the internet for the duration of the maintenance.
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { MediaLiveClient, StartInputDeviceMaintenanceWindowCommand } from "@aws-sdk/client-medialive"; // ES Modules import
15
+ * // const { MediaLiveClient, StartInputDeviceMaintenanceWindowCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
16
+ * const client = new MediaLiveClient(config);
17
+ * const command = new StartInputDeviceMaintenanceWindowCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link StartInputDeviceMaintenanceWindowCommandInput} for command's `input` shape.
22
+ * @see {@link StartInputDeviceMaintenanceWindowCommandOutput} for command's `response` shape.
23
+ * @see {@link MediaLiveClientResolvedConfig | config} for MediaLiveClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class StartInputDeviceMaintenanceWindowCommand extends $Command<StartInputDeviceMaintenanceWindowCommandInput, StartInputDeviceMaintenanceWindowCommandOutput, MediaLiveClientResolvedConfig> {
27
+ readonly input: StartInputDeviceMaintenanceWindowCommandInput;
28
+ constructor(input: StartInputDeviceMaintenanceWindowCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaLiveClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartInputDeviceMaintenanceWindowCommandInput, StartInputDeviceMaintenanceWindowCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,7 +1,8 @@
1
1
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
2
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
3
  import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient";
4
- import { UpdateInputRequest, UpdateInputResponse } from "../models/models_1";
4
+ import { UpdateInputRequest } from "../models/models_1";
5
+ import { UpdateInputResponse } from "../models/models_2";
5
6
  export interface UpdateInputCommandInput extends UpdateInputRequest {
6
7
  }
7
8
  export interface UpdateInputCommandOutput extends UpdateInputResponse, __MetadataBearer {
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
2
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
3
  import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient";
4
- import { UpdateInputDeviceRequest, UpdateInputDeviceResponse } from "../models/models_1";
4
+ import { UpdateInputDeviceRequest, UpdateInputDeviceResponse } from "../models/models_2";
5
5
  export interface UpdateInputDeviceCommandInput extends UpdateInputDeviceRequest {
6
6
  }
7
7
  export interface UpdateInputDeviceCommandOutput extends UpdateInputDeviceResponse, __MetadataBearer {
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
2
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
3
  import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient";
4
- import { UpdateInputSecurityGroupRequest, UpdateInputSecurityGroupResponse } from "../models/models_1";
4
+ import { UpdateInputSecurityGroupRequest, UpdateInputSecurityGroupResponse } from "../models/models_2";
5
5
  export interface UpdateInputSecurityGroupCommandInput extends UpdateInputSecurityGroupRequest {
6
6
  }
7
7
  export interface UpdateInputSecurityGroupCommandOutput extends UpdateInputSecurityGroupResponse, __MetadataBearer {
@@ -41,8 +41,10 @@ export * from "./ListOfferingsCommand";
41
41
  export * from "./ListReservationsCommand";
42
42
  export * from "./ListTagsForResourceCommand";
43
43
  export * from "./PurchaseOfferingCommand";
44
+ export * from "./RebootInputDeviceCommand";
44
45
  export * from "./RejectInputDeviceTransferCommand";
45
46
  export * from "./StartChannelCommand";
47
+ export * from "./StartInputDeviceMaintenanceWindowCommand";
46
48
  export * from "./StartMultiplexCommand";
47
49
  export * from "./StopChannelCommand";
48
50
  export * from "./StopMultiplexCommand";
@@ -5618,6 +5618,40 @@ export declare namespace PurchaseOfferingResponse {
5618
5618
  */
5619
5619
  const filterSensitiveLog: (obj: PurchaseOfferingResponse) => any;
5620
5620
  }
5621
+ export declare enum RebootInputDeviceForce {
5622
+ NO = "NO",
5623
+ YES = "YES"
5624
+ }
5625
+ /**
5626
+ * A request to reboot an AWS Elemental device.
5627
+ */
5628
+ export interface RebootInputDeviceRequest {
5629
+ /**
5630
+ * Force a reboot of an input device. If the device is streaming, it will stop streaming and begin rebooting within a few seconds of sending the command. If the device was streaming prior to the reboot, the device will resume streaming when the reboot completes.
5631
+ */
5632
+ Force?: RebootInputDeviceForce | string;
5633
+ /**
5634
+ * The unique ID of the input device to reboot. For example, hd-123456789abcdef.
5635
+ */
5636
+ InputDeviceId: string | undefined;
5637
+ }
5638
+ export declare namespace RebootInputDeviceRequest {
5639
+ /**
5640
+ * @internal
5641
+ */
5642
+ const filterSensitiveLog: (obj: RebootInputDeviceRequest) => any;
5643
+ }
5644
+ /**
5645
+ * Placeholder documentation for RebootInputDeviceResponse
5646
+ */
5647
+ export interface RebootInputDeviceResponse {
5648
+ }
5649
+ export declare namespace RebootInputDeviceResponse {
5650
+ /**
5651
+ * @internal
5652
+ */
5653
+ const filterSensitiveLog: (obj: RebootInputDeviceResponse) => any;
5654
+ }
5621
5655
  /**
5622
5656
  * Placeholder documentation for RejectInputDeviceTransferRequest
5623
5657
  */
@@ -5744,6 +5778,32 @@ export declare namespace StartChannelResponse {
5744
5778
  */
5745
5779
  const filterSensitiveLog: (obj: StartChannelResponse) => any;
5746
5780
  }
5781
+ /**
5782
+ * Placeholder documentation for StartInputDeviceMaintenanceWindowRequest
5783
+ */
5784
+ export interface StartInputDeviceMaintenanceWindowRequest {
5785
+ /**
5786
+ * The unique ID of the input device to start a maintenance window for. For example, hd-123456789abcdef.
5787
+ */
5788
+ InputDeviceId: string | undefined;
5789
+ }
5790
+ export declare namespace StartInputDeviceMaintenanceWindowRequest {
5791
+ /**
5792
+ * @internal
5793
+ */
5794
+ const filterSensitiveLog: (obj: StartInputDeviceMaintenanceWindowRequest) => any;
5795
+ }
5796
+ /**
5797
+ * Placeholder documentation for StartInputDeviceMaintenanceWindowResponse
5798
+ */
5799
+ export interface StartInputDeviceMaintenanceWindowResponse {
5800
+ }
5801
+ export declare namespace StartInputDeviceMaintenanceWindowResponse {
5802
+ /**
5803
+ * @internal
5804
+ */
5805
+ const filterSensitiveLog: (obj: StartInputDeviceMaintenanceWindowResponse) => any;
5806
+ }
5747
5807
  /**
5748
5808
  * Placeholder documentation for StartMultiplexRequest
5749
5809
  */
@@ -6165,142 +6225,3 @@ export declare namespace UpdateInputRequest {
6165
6225
  */
6166
6226
  const filterSensitiveLog: (obj: UpdateInputRequest) => any;
6167
6227
  }
6168
- /**
6169
- * Placeholder documentation for UpdateInputResponse
6170
- */
6171
- export interface UpdateInputResponse {
6172
- /**
6173
- * Placeholder documentation for Input
6174
- */
6175
- Input?: Input;
6176
- }
6177
- export declare namespace UpdateInputResponse {
6178
- /**
6179
- * @internal
6180
- */
6181
- const filterSensitiveLog: (obj: UpdateInputResponse) => any;
6182
- }
6183
- /**
6184
- * A request to update an input device.
6185
- */
6186
- export interface UpdateInputDeviceRequest {
6187
- /**
6188
- * The settings that you want to apply to the HD input device.
6189
- */
6190
- HdDeviceSettings?: InputDeviceConfigurableSettings;
6191
- /**
6192
- * The unique ID of the input device. For example, hd-123456789abcdef.
6193
- */
6194
- InputDeviceId: string | undefined;
6195
- /**
6196
- * The name that you assigned to this input device (not the unique ID).
6197
- */
6198
- Name?: string;
6199
- /**
6200
- * The settings that you want to apply to the UHD input device.
6201
- */
6202
- UhdDeviceSettings?: InputDeviceConfigurableSettings;
6203
- }
6204
- export declare namespace UpdateInputDeviceRequest {
6205
- /**
6206
- * @internal
6207
- */
6208
- const filterSensitiveLog: (obj: UpdateInputDeviceRequest) => any;
6209
- }
6210
- /**
6211
- * Placeholder documentation for UpdateInputDeviceResponse
6212
- */
6213
- export interface UpdateInputDeviceResponse {
6214
- /**
6215
- * The unique ARN of the input device.
6216
- */
6217
- Arn?: string;
6218
- /**
6219
- * The state of the connection between the input device and AWS.
6220
- */
6221
- ConnectionState?: InputDeviceConnectionState | string;
6222
- /**
6223
- * The status of the action to synchronize the device configuration. If you change the configuration of the input device (for example, the maximum bitrate), MediaLive sends the new data to the device. The device might not update itself immediately. SYNCED means the device has updated its configuration. SYNCING means that it has not updated its configuration.
6224
- */
6225
- DeviceSettingsSyncState?: DeviceSettingsSyncState | string;
6226
- /**
6227
- * The status of software on the input device.
6228
- */
6229
- DeviceUpdateStatus?: DeviceUpdateStatus | string;
6230
- /**
6231
- * Settings that describe an input device that is type HD.
6232
- */
6233
- HdDeviceSettings?: InputDeviceHdSettings;
6234
- /**
6235
- * The unique ID of the input device.
6236
- */
6237
- Id?: string;
6238
- /**
6239
- * The network MAC address of the input device.
6240
- */
6241
- MacAddress?: string;
6242
- /**
6243
- * A name that you specify for the input device.
6244
- */
6245
- Name?: string;
6246
- /**
6247
- * The network settings for the input device.
6248
- */
6249
- NetworkSettings?: InputDeviceNetworkSettings;
6250
- /**
6251
- * The unique serial number of the input device.
6252
- */
6253
- SerialNumber?: string;
6254
- /**
6255
- * The type of the input device.
6256
- */
6257
- Type?: InputDeviceType | string;
6258
- /**
6259
- * Settings that describe an input device that is type UHD.
6260
- */
6261
- UhdDeviceSettings?: InputDeviceUhdSettings;
6262
- }
6263
- export declare namespace UpdateInputDeviceResponse {
6264
- /**
6265
- * @internal
6266
- */
6267
- const filterSensitiveLog: (obj: UpdateInputDeviceResponse) => any;
6268
- }
6269
- /**
6270
- * The request to update some combination of the Input Security Group name and the IPv4 CIDRs the Input Security Group should allow.
6271
- */
6272
- export interface UpdateInputSecurityGroupRequest {
6273
- /**
6274
- * The id of the Input Security Group to update.
6275
- */
6276
- InputSecurityGroupId: string | undefined;
6277
- /**
6278
- * A collection of key-value pairs.
6279
- */
6280
- Tags?: Record<string, string>;
6281
- /**
6282
- * List of IPv4 CIDR addresses to whitelist
6283
- */
6284
- WhitelistRules?: InputWhitelistRuleCidr[];
6285
- }
6286
- export declare namespace UpdateInputSecurityGroupRequest {
6287
- /**
6288
- * @internal
6289
- */
6290
- const filterSensitiveLog: (obj: UpdateInputSecurityGroupRequest) => any;
6291
- }
6292
- /**
6293
- * Placeholder documentation for UpdateInputSecurityGroupResponse
6294
- */
6295
- export interface UpdateInputSecurityGroupResponse {
6296
- /**
6297
- * An Input Security Group
6298
- */
6299
- SecurityGroup?: InputSecurityGroup;
6300
- }
6301
- export declare namespace UpdateInputSecurityGroupResponse {
6302
- /**
6303
- * @internal
6304
- */
6305
- const filterSensitiveLog: (obj: UpdateInputSecurityGroupResponse) => any;
6306
- }
@@ -1,4 +1,144 @@
1
- import { Multiplex, MultiplexProgram, MultiplexProgramSettings, MultiplexSettings, RenewalSettings, Reservation } from "./models_1";
1
+ import { DeviceSettingsSyncState, DeviceUpdateStatus, Input, InputDeviceConnectionState, InputDeviceHdSettings, InputDeviceNetworkSettings, InputDeviceType, InputDeviceUhdSettings, InputSecurityGroup, InputWhitelistRuleCidr } from "./models_0";
2
+ import { InputDeviceConfigurableSettings, Multiplex, MultiplexProgram, MultiplexProgramSettings, MultiplexSettings, RenewalSettings, Reservation } from "./models_1";
3
+ /**
4
+ * Placeholder documentation for UpdateInputResponse
5
+ */
6
+ export interface UpdateInputResponse {
7
+ /**
8
+ * Placeholder documentation for Input
9
+ */
10
+ Input?: Input;
11
+ }
12
+ export declare namespace UpdateInputResponse {
13
+ /**
14
+ * @internal
15
+ */
16
+ const filterSensitiveLog: (obj: UpdateInputResponse) => any;
17
+ }
18
+ /**
19
+ * A request to update an input device.
20
+ */
21
+ export interface UpdateInputDeviceRequest {
22
+ /**
23
+ * The settings that you want to apply to the HD input device.
24
+ */
25
+ HdDeviceSettings?: InputDeviceConfigurableSettings;
26
+ /**
27
+ * The unique ID of the input device. For example, hd-123456789abcdef.
28
+ */
29
+ InputDeviceId: string | undefined;
30
+ /**
31
+ * The name that you assigned to this input device (not the unique ID).
32
+ */
33
+ Name?: string;
34
+ /**
35
+ * The settings that you want to apply to the UHD input device.
36
+ */
37
+ UhdDeviceSettings?: InputDeviceConfigurableSettings;
38
+ }
39
+ export declare namespace UpdateInputDeviceRequest {
40
+ /**
41
+ * @internal
42
+ */
43
+ const filterSensitiveLog: (obj: UpdateInputDeviceRequest) => any;
44
+ }
45
+ /**
46
+ * Placeholder documentation for UpdateInputDeviceResponse
47
+ */
48
+ export interface UpdateInputDeviceResponse {
49
+ /**
50
+ * The unique ARN of the input device.
51
+ */
52
+ Arn?: string;
53
+ /**
54
+ * The state of the connection between the input device and AWS.
55
+ */
56
+ ConnectionState?: InputDeviceConnectionState | string;
57
+ /**
58
+ * The status of the action to synchronize the device configuration. If you change the configuration of the input device (for example, the maximum bitrate), MediaLive sends the new data to the device. The device might not update itself immediately. SYNCED means the device has updated its configuration. SYNCING means that it has not updated its configuration.
59
+ */
60
+ DeviceSettingsSyncState?: DeviceSettingsSyncState | string;
61
+ /**
62
+ * The status of software on the input device.
63
+ */
64
+ DeviceUpdateStatus?: DeviceUpdateStatus | string;
65
+ /**
66
+ * Settings that describe an input device that is type HD.
67
+ */
68
+ HdDeviceSettings?: InputDeviceHdSettings;
69
+ /**
70
+ * The unique ID of the input device.
71
+ */
72
+ Id?: string;
73
+ /**
74
+ * The network MAC address of the input device.
75
+ */
76
+ MacAddress?: string;
77
+ /**
78
+ * A name that you specify for the input device.
79
+ */
80
+ Name?: string;
81
+ /**
82
+ * The network settings for the input device.
83
+ */
84
+ NetworkSettings?: InputDeviceNetworkSettings;
85
+ /**
86
+ * The unique serial number of the input device.
87
+ */
88
+ SerialNumber?: string;
89
+ /**
90
+ * The type of the input device.
91
+ */
92
+ Type?: InputDeviceType | string;
93
+ /**
94
+ * Settings that describe an input device that is type UHD.
95
+ */
96
+ UhdDeviceSettings?: InputDeviceUhdSettings;
97
+ }
98
+ export declare namespace UpdateInputDeviceResponse {
99
+ /**
100
+ * @internal
101
+ */
102
+ const filterSensitiveLog: (obj: UpdateInputDeviceResponse) => any;
103
+ }
104
+ /**
105
+ * The request to update some combination of the Input Security Group name and the IPv4 CIDRs the Input Security Group should allow.
106
+ */
107
+ export interface UpdateInputSecurityGroupRequest {
108
+ /**
109
+ * The id of the Input Security Group to update.
110
+ */
111
+ InputSecurityGroupId: string | undefined;
112
+ /**
113
+ * A collection of key-value pairs.
114
+ */
115
+ Tags?: Record<string, string>;
116
+ /**
117
+ * List of IPv4 CIDR addresses to whitelist
118
+ */
119
+ WhitelistRules?: InputWhitelistRuleCidr[];
120
+ }
121
+ export declare namespace UpdateInputSecurityGroupRequest {
122
+ /**
123
+ * @internal
124
+ */
125
+ const filterSensitiveLog: (obj: UpdateInputSecurityGroupRequest) => any;
126
+ }
127
+ /**
128
+ * Placeholder documentation for UpdateInputSecurityGroupResponse
129
+ */
130
+ export interface UpdateInputSecurityGroupResponse {
131
+ /**
132
+ * An Input Security Group
133
+ */
134
+ SecurityGroup?: InputSecurityGroup;
135
+ }
136
+ export declare namespace UpdateInputSecurityGroupResponse {
137
+ /**
138
+ * @internal
139
+ */
140
+ const filterSensitiveLog: (obj: UpdateInputSecurityGroupResponse) => any;
141
+ }
2
142
  /**
3
143
  * A request to update a multiplex.
4
144
  */
@@ -43,8 +43,10 @@ import { ListOfferingsCommandInput, ListOfferingsCommandOutput } from "../comman
43
43
  import { ListReservationsCommandInput, ListReservationsCommandOutput } from "../commands/ListReservationsCommand";
44
44
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
45
45
  import { PurchaseOfferingCommandInput, PurchaseOfferingCommandOutput } from "../commands/PurchaseOfferingCommand";
46
+ import { RebootInputDeviceCommandInput, RebootInputDeviceCommandOutput } from "../commands/RebootInputDeviceCommand";
46
47
  import { RejectInputDeviceTransferCommandInput, RejectInputDeviceTransferCommandOutput } from "../commands/RejectInputDeviceTransferCommand";
47
48
  import { StartChannelCommandInput, StartChannelCommandOutput } from "../commands/StartChannelCommand";
49
+ import { StartInputDeviceMaintenanceWindowCommandInput, StartInputDeviceMaintenanceWindowCommandOutput } from "../commands/StartInputDeviceMaintenanceWindowCommand";
48
50
  import { StartMultiplexCommandInput, StartMultiplexCommandOutput } from "../commands/StartMultiplexCommand";
49
51
  import { StopChannelCommandInput, StopChannelCommandOutput } from "../commands/StopChannelCommand";
50
52
  import { StopMultiplexCommandInput, StopMultiplexCommandOutput } from "../commands/StopMultiplexCommand";
@@ -100,8 +102,10 @@ export declare const serializeAws_restJson1ListOfferingsCommand: (input: ListOff
100
102
  export declare const serializeAws_restJson1ListReservationsCommand: (input: ListReservationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
101
103
  export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
102
104
  export declare const serializeAws_restJson1PurchaseOfferingCommand: (input: PurchaseOfferingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
105
+ export declare const serializeAws_restJson1RebootInputDeviceCommand: (input: RebootInputDeviceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
103
106
  export declare const serializeAws_restJson1RejectInputDeviceTransferCommand: (input: RejectInputDeviceTransferCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
104
107
  export declare const serializeAws_restJson1StartChannelCommand: (input: StartChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
108
+ export declare const serializeAws_restJson1StartInputDeviceMaintenanceWindowCommand: (input: StartInputDeviceMaintenanceWindowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
105
109
  export declare const serializeAws_restJson1StartMultiplexCommand: (input: StartMultiplexCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
106
110
  export declare const serializeAws_restJson1StopChannelCommand: (input: StopChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
107
111
  export declare const serializeAws_restJson1StopMultiplexCommand: (input: StopMultiplexCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -157,8 +161,10 @@ export declare const deserializeAws_restJson1ListOfferingsCommand: (output: __Ht
157
161
  export declare const deserializeAws_restJson1ListReservationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListReservationsCommandOutput>;
158
162
  export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
159
163
  export declare const deserializeAws_restJson1PurchaseOfferingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PurchaseOfferingCommandOutput>;
164
+ export declare const deserializeAws_restJson1RebootInputDeviceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RebootInputDeviceCommandOutput>;
160
165
  export declare const deserializeAws_restJson1RejectInputDeviceTransferCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RejectInputDeviceTransferCommandOutput>;
161
166
  export declare const deserializeAws_restJson1StartChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartChannelCommandOutput>;
167
+ export declare const deserializeAws_restJson1StartInputDeviceMaintenanceWindowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartInputDeviceMaintenanceWindowCommandOutput>;
162
168
  export declare const deserializeAws_restJson1StartMultiplexCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartMultiplexCommandOutput>;
163
169
  export declare const deserializeAws_restJson1StopChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopChannelCommandOutput>;
164
170
  export declare const deserializeAws_restJson1StopMultiplexCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopMultiplexCommandOutput>;
@@ -42,8 +42,10 @@ import { ListOfferingsCommandInput, ListOfferingsCommandOutput } from "./command
42
42
  import { ListReservationsCommandInput, ListReservationsCommandOutput } from "./commands/ListReservationsCommand";
43
43
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
44
44
  import { PurchaseOfferingCommandInput, PurchaseOfferingCommandOutput } from "./commands/PurchaseOfferingCommand";
45
+ import { RebootInputDeviceCommandInput, RebootInputDeviceCommandOutput } from "./commands/RebootInputDeviceCommand";
45
46
  import { RejectInputDeviceTransferCommandInput, RejectInputDeviceTransferCommandOutput } from "./commands/RejectInputDeviceTransferCommand";
46
47
  import { StartChannelCommandInput, StartChannelCommandOutput } from "./commands/StartChannelCommand";
48
+ import { StartInputDeviceMaintenanceWindowCommandInput, StartInputDeviceMaintenanceWindowCommandOutput } from "./commands/StartInputDeviceMaintenanceWindowCommand";
47
49
  import { StartMultiplexCommandInput, StartMultiplexCommandOutput } from "./commands/StartMultiplexCommand";
48
50
  import { StopChannelCommandInput, StopChannelCommandOutput } from "./commands/StopChannelCommand";
49
51
  import { StopMultiplexCommandInput, StopMultiplexCommandOutput } from "./commands/StopMultiplexCommand";
@@ -232,6 +234,10 @@ export declare class MediaLive extends MediaLiveClient {
232
234
  purchaseOffering(args: PurchaseOfferingCommandInput, cb: (err: any, data?: PurchaseOfferingCommandOutput) => void): void;
233
235
  purchaseOffering(args: PurchaseOfferingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PurchaseOfferingCommandOutput) => void): void;
234
236
 
237
+ rebootInputDevice(args: RebootInputDeviceCommandInput, options?: __HttpHandlerOptions): Promise<RebootInputDeviceCommandOutput>;
238
+ rebootInputDevice(args: RebootInputDeviceCommandInput, cb: (err: any, data?: RebootInputDeviceCommandOutput) => void): void;
239
+ rebootInputDevice(args: RebootInputDeviceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RebootInputDeviceCommandOutput) => void): void;
240
+
235
241
  rejectInputDeviceTransfer(args: RejectInputDeviceTransferCommandInput, options?: __HttpHandlerOptions): Promise<RejectInputDeviceTransferCommandOutput>;
236
242
  rejectInputDeviceTransfer(args: RejectInputDeviceTransferCommandInput, cb: (err: any, data?: RejectInputDeviceTransferCommandOutput) => void): void;
237
243
  rejectInputDeviceTransfer(args: RejectInputDeviceTransferCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RejectInputDeviceTransferCommandOutput) => void): void;
@@ -240,6 +246,10 @@ export declare class MediaLive extends MediaLiveClient {
240
246
  startChannel(args: StartChannelCommandInput, cb: (err: any, data?: StartChannelCommandOutput) => void): void;
241
247
  startChannel(args: StartChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartChannelCommandOutput) => void): void;
242
248
 
249
+ startInputDeviceMaintenanceWindow(args: StartInputDeviceMaintenanceWindowCommandInput, options?: __HttpHandlerOptions): Promise<StartInputDeviceMaintenanceWindowCommandOutput>;
250
+ startInputDeviceMaintenanceWindow(args: StartInputDeviceMaintenanceWindowCommandInput, cb: (err: any, data?: StartInputDeviceMaintenanceWindowCommandOutput) => void): void;
251
+ startInputDeviceMaintenanceWindow(args: StartInputDeviceMaintenanceWindowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartInputDeviceMaintenanceWindowCommandOutput) => void): void;
252
+
243
253
  startMultiplex(args: StartMultiplexCommandInput, options?: __HttpHandlerOptions): Promise<StartMultiplexCommandOutput>;
244
254
  startMultiplex(args: StartMultiplexCommandInput, cb: (err: any, data?: StartMultiplexCommandOutput) => void): void;
245
255
  startMultiplex(args: StartMultiplexCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartMultiplexCommandOutput) => void): void;
@@ -49,8 +49,10 @@ import { ListOfferingsCommandInput, ListOfferingsCommandOutput } from "./command
49
49
  import { ListReservationsCommandInput, ListReservationsCommandOutput } from "./commands/ListReservationsCommand";
50
50
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
51
51
  import { PurchaseOfferingCommandInput, PurchaseOfferingCommandOutput } from "./commands/PurchaseOfferingCommand";
52
+ import { RebootInputDeviceCommandInput, RebootInputDeviceCommandOutput } from "./commands/RebootInputDeviceCommand";
52
53
  import { RejectInputDeviceTransferCommandInput, RejectInputDeviceTransferCommandOutput } from "./commands/RejectInputDeviceTransferCommand";
53
54
  import { StartChannelCommandInput, StartChannelCommandOutput } from "./commands/StartChannelCommand";
55
+ import { StartInputDeviceMaintenanceWindowCommandInput, StartInputDeviceMaintenanceWindowCommandOutput } from "./commands/StartInputDeviceMaintenanceWindowCommand";
54
56
  import { StartMultiplexCommandInput, StartMultiplexCommandOutput } from "./commands/StartMultiplexCommand";
55
57
  import { StopChannelCommandInput, StopChannelCommandOutput } from "./commands/StopChannelCommand";
56
58
  import { StopMultiplexCommandInput, StopMultiplexCommandOutput } from "./commands/StopMultiplexCommand";
@@ -63,8 +65,8 @@ import { UpdateInputSecurityGroupCommandInput, UpdateInputSecurityGroupCommandOu
63
65
  import { UpdateMultiplexCommandInput, UpdateMultiplexCommandOutput } from "./commands/UpdateMultiplexCommand";
64
66
  import { UpdateMultiplexProgramCommandInput, UpdateMultiplexProgramCommandOutput } from "./commands/UpdateMultiplexProgramCommand";
65
67
  import { UpdateReservationCommandInput, UpdateReservationCommandOutput } from "./commands/UpdateReservationCommand";
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;
68
+ 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 | RebootInputDeviceCommandInput | RejectInputDeviceTransferCommandInput | StartChannelCommandInput | StartInputDeviceMaintenanceWindowCommandInput | StartMultiplexCommandInput | StopChannelCommandInput | StopMultiplexCommandInput | TransferInputDeviceCommandInput | UpdateChannelClassCommandInput | UpdateChannelCommandInput | UpdateInputCommandInput | UpdateInputDeviceCommandInput | UpdateInputSecurityGroupCommandInput | UpdateMultiplexCommandInput | UpdateMultiplexProgramCommandInput | UpdateReservationCommandInput;
69
+ 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 | RebootInputDeviceCommandOutput | RejectInputDeviceTransferCommandOutput | StartChannelCommandOutput | StartInputDeviceMaintenanceWindowCommandOutput | StartMultiplexCommandOutput | StopChannelCommandOutput | StopMultiplexCommandOutput | TransferInputDeviceCommandOutput | UpdateChannelClassCommandOutput | UpdateChannelCommandOutput | UpdateInputCommandOutput | UpdateInputDeviceCommandOutput | UpdateInputSecurityGroupCommandOutput | UpdateMultiplexCommandOutput | UpdateMultiplexProgramCommandOutput | UpdateReservationCommandOutput;
68
70
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
69
71
 
70
72
  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 { RebootInputDeviceRequest, RebootInputDeviceResponse } from "../models/models_1";
5
+ export interface RebootInputDeviceCommandInput extends RebootInputDeviceRequest {
6
+ }
7
+ export interface RebootInputDeviceCommandOutput extends RebootInputDeviceResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class RebootInputDeviceCommand extends $Command<RebootInputDeviceCommandInput, RebootInputDeviceCommandOutput, MediaLiveClientResolvedConfig> {
11
+ readonly input: RebootInputDeviceCommandInput;
12
+ constructor(input: RebootInputDeviceCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaLiveClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RebootInputDeviceCommandInput, RebootInputDeviceCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -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 { StartInputDeviceMaintenanceWindowRequest, StartInputDeviceMaintenanceWindowResponse } from "../models/models_1";
5
+ export interface StartInputDeviceMaintenanceWindowCommandInput extends StartInputDeviceMaintenanceWindowRequest {
6
+ }
7
+ export interface StartInputDeviceMaintenanceWindowCommandOutput extends StartInputDeviceMaintenanceWindowResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class StartInputDeviceMaintenanceWindowCommand extends $Command<StartInputDeviceMaintenanceWindowCommandInput, StartInputDeviceMaintenanceWindowCommandOutput, MediaLiveClientResolvedConfig> {
11
+ readonly input: StartInputDeviceMaintenanceWindowCommandInput;
12
+ constructor(input: StartInputDeviceMaintenanceWindowCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaLiveClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartInputDeviceMaintenanceWindowCommandInput, StartInputDeviceMaintenanceWindowCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -1,7 +1,8 @@
1
1
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
2
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
3
  import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient";
4
- import { UpdateInputRequest, UpdateInputResponse } from "../models/models_1";
4
+ import { UpdateInputRequest } from "../models/models_1";
5
+ import { UpdateInputResponse } from "../models/models_2";
5
6
  export interface UpdateInputCommandInput extends UpdateInputRequest {
6
7
  }
7
8
  export interface UpdateInputCommandOutput extends UpdateInputResponse, __MetadataBearer {
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
2
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
3
  import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient";
4
- import { UpdateInputDeviceRequest, UpdateInputDeviceResponse } from "../models/models_1";
4
+ import { UpdateInputDeviceRequest, UpdateInputDeviceResponse } from "../models/models_2";
5
5
  export interface UpdateInputDeviceCommandInput extends UpdateInputDeviceRequest {
6
6
  }
7
7
  export interface UpdateInputDeviceCommandOutput extends UpdateInputDeviceResponse, __MetadataBearer {
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
2
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
3
  import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient";
4
- import { UpdateInputSecurityGroupRequest, UpdateInputSecurityGroupResponse } from "../models/models_1";
4
+ import { UpdateInputSecurityGroupRequest, UpdateInputSecurityGroupResponse } from "../models/models_2";
5
5
  export interface UpdateInputSecurityGroupCommandInput extends UpdateInputSecurityGroupRequest {
6
6
  }
7
7
  export interface UpdateInputSecurityGroupCommandOutput extends UpdateInputSecurityGroupResponse, __MetadataBearer {
@@ -41,8 +41,10 @@ export * from "./ListOfferingsCommand";
41
41
  export * from "./ListReservationsCommand";
42
42
  export * from "./ListTagsForResourceCommand";
43
43
  export * from "./PurchaseOfferingCommand";
44
+ export * from "./RebootInputDeviceCommand";
44
45
  export * from "./RejectInputDeviceTransferCommand";
45
46
  export * from "./StartChannelCommand";
47
+ export * from "./StartInputDeviceMaintenanceWindowCommand";
46
48
  export * from "./StartMultiplexCommand";
47
49
  export * from "./StopChannelCommand";
48
50
  export * from "./StopMultiplexCommand";