@aws-sdk/client-medialive 3.315.0 → 3.319.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.
|
@@ -159,7 +159,7 @@ export const se_CreateChannelCommand = async (input, context) => {
|
|
|
159
159
|
logLevel: [, , `LogLevel`],
|
|
160
160
|
maintenance: [, (_) => se_MaintenanceCreateSettings(_, context), `Maintenance`],
|
|
161
161
|
name: [, , `Name`],
|
|
162
|
-
requestId: [, (_) => _ ?? generateIdempotencyToken(), `RequestId`],
|
|
162
|
+
requestId: [true, (_) => _ ?? generateIdempotencyToken(), `RequestId`],
|
|
163
163
|
reserved: [, , `Reserved`],
|
|
164
164
|
roleArn: [, , `RoleArn`],
|
|
165
165
|
tags: [, (_) => _json(_), `Tags`],
|
|
@@ -188,7 +188,7 @@ export const se_CreateInputCommand = async (input, context) => {
|
|
|
188
188
|
inputSecurityGroups: [, (_) => _json(_), `InputSecurityGroups`],
|
|
189
189
|
mediaConnectFlows: [, (_) => se___listOfMediaConnectFlowRequest(_, context), `MediaConnectFlows`],
|
|
190
190
|
name: [, , `Name`],
|
|
191
|
-
requestId: [, (_) => _ ?? generateIdempotencyToken(), `RequestId`],
|
|
191
|
+
requestId: [true, (_) => _ ?? generateIdempotencyToken(), `RequestId`],
|
|
192
192
|
roleArn: [, , `RoleArn`],
|
|
193
193
|
sources: [, (_) => se___listOfInputSourceRequest(_, context), `Sources`],
|
|
194
194
|
tags: [, (_) => _json(_), `Tags`],
|
|
@@ -237,7 +237,7 @@ export const se_CreateMultiplexCommand = async (input, context) => {
|
|
|
237
237
|
availabilityZones: [, (_) => _json(_), `AvailabilityZones`],
|
|
238
238
|
multiplexSettings: [, (_) => se_MultiplexSettings(_, context), `MultiplexSettings`],
|
|
239
239
|
name: [, , `Name`],
|
|
240
|
-
requestId: [, (_) => _ ?? generateIdempotencyToken(), `RequestId`],
|
|
240
|
+
requestId: [true, (_) => _ ?? generateIdempotencyToken(), `RequestId`],
|
|
241
241
|
tags: [, (_) => _json(_), `Tags`],
|
|
242
242
|
}));
|
|
243
243
|
return new __HttpRequest({
|
|
@@ -261,7 +261,7 @@ export const se_CreateMultiplexProgramCommand = async (input, context) => {
|
|
|
261
261
|
body = JSON.stringify(take(input, {
|
|
262
262
|
multiplexProgramSettings: [, (_) => se_MultiplexProgramSettings(_, context), `MultiplexProgramSettings`],
|
|
263
263
|
programName: [, , `ProgramName`],
|
|
264
|
-
requestId: [, (_) => _ ?? generateIdempotencyToken(), `RequestId`],
|
|
264
|
+
requestId: [true, (_) => _ ?? generateIdempotencyToken(), `RequestId`],
|
|
265
265
|
}));
|
|
266
266
|
return new __HttpRequest({
|
|
267
267
|
protocol,
|
|
@@ -282,7 +282,7 @@ export const se_CreatePartnerInputCommand = async (input, context) => {
|
|
|
282
282
|
resolvedPath = __resolvedPath(resolvedPath, input, "InputId", () => input.InputId, "{InputId}", false);
|
|
283
283
|
let body;
|
|
284
284
|
body = JSON.stringify(take(input, {
|
|
285
|
-
requestId: [, (_) => _ ?? generateIdempotencyToken(), `RequestId`],
|
|
285
|
+
requestId: [true, (_) => _ ?? generateIdempotencyToken(), `RequestId`],
|
|
286
286
|
tags: [, (_) => _json(_), `Tags`],
|
|
287
287
|
}));
|
|
288
288
|
return new __HttpRequest({
|
|
@@ -853,7 +853,7 @@ export const se_PurchaseOfferingCommand = async (input, context) => {
|
|
|
853
853
|
count: [, , `Count`],
|
|
854
854
|
name: [, , `Name`],
|
|
855
855
|
renewalSettings: [, (_) => se_RenewalSettings(_, context), `RenewalSettings`],
|
|
856
|
-
requestId: [, (_) => _ ?? generateIdempotencyToken(), `RequestId`],
|
|
856
|
+
requestId: [true, (_) => _ ?? generateIdempotencyToken(), `RequestId`],
|
|
857
857
|
start: [, , `Start`],
|
|
858
858
|
tags: [, (_) => _json(_), `Tags`],
|
|
859
859
|
}));
|
|
@@ -59,422 +59,365 @@ import { UpdateMultiplexCommandInput, UpdateMultiplexCommandOutput } from "./com
|
|
|
59
59
|
import { UpdateMultiplexProgramCommandInput, UpdateMultiplexProgramCommandOutput } from "./commands/UpdateMultiplexProgramCommand";
|
|
60
60
|
import { UpdateReservationCommandInput, UpdateReservationCommandOutput } from "./commands/UpdateReservationCommand";
|
|
61
61
|
import { MediaLiveClient } from "./MediaLiveClient";
|
|
62
|
-
|
|
63
|
-
* @public
|
|
64
|
-
* API for AWS Elemental MediaLive
|
|
65
|
-
*/
|
|
66
|
-
export declare class MediaLive extends MediaLiveClient {
|
|
62
|
+
export interface MediaLive {
|
|
67
63
|
/**
|
|
68
|
-
* @
|
|
69
|
-
* Accept an incoming input device transfer. The ownership of the device will transfer to your AWS account.
|
|
64
|
+
* @see {@link AcceptInputDeviceTransferCommand}
|
|
70
65
|
*/
|
|
71
66
|
acceptInputDeviceTransfer(args: AcceptInputDeviceTransferCommandInput, options?: __HttpHandlerOptions): Promise<AcceptInputDeviceTransferCommandOutput>;
|
|
72
67
|
acceptInputDeviceTransfer(args: AcceptInputDeviceTransferCommandInput, cb: (err: any, data?: AcceptInputDeviceTransferCommandOutput) => void): void;
|
|
73
68
|
acceptInputDeviceTransfer(args: AcceptInputDeviceTransferCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AcceptInputDeviceTransferCommandOutput) => void): void;
|
|
74
69
|
/**
|
|
75
|
-
* @
|
|
76
|
-
* Starts delete of resources.
|
|
70
|
+
* @see {@link BatchDeleteCommand}
|
|
77
71
|
*/
|
|
78
72
|
batchDelete(args: BatchDeleteCommandInput, options?: __HttpHandlerOptions): Promise<BatchDeleteCommandOutput>;
|
|
79
73
|
batchDelete(args: BatchDeleteCommandInput, cb: (err: any, data?: BatchDeleteCommandOutput) => void): void;
|
|
80
74
|
batchDelete(args: BatchDeleteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchDeleteCommandOutput) => void): void;
|
|
81
75
|
/**
|
|
82
|
-
* @
|
|
83
|
-
* Starts existing resources
|
|
76
|
+
* @see {@link BatchStartCommand}
|
|
84
77
|
*/
|
|
85
78
|
batchStart(args: BatchStartCommandInput, options?: __HttpHandlerOptions): Promise<BatchStartCommandOutput>;
|
|
86
79
|
batchStart(args: BatchStartCommandInput, cb: (err: any, data?: BatchStartCommandOutput) => void): void;
|
|
87
80
|
batchStart(args: BatchStartCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchStartCommandOutput) => void): void;
|
|
88
81
|
/**
|
|
89
|
-
* @
|
|
90
|
-
* Stops running resources
|
|
82
|
+
* @see {@link BatchStopCommand}
|
|
91
83
|
*/
|
|
92
84
|
batchStop(args: BatchStopCommandInput, options?: __HttpHandlerOptions): Promise<BatchStopCommandOutput>;
|
|
93
85
|
batchStop(args: BatchStopCommandInput, cb: (err: any, data?: BatchStopCommandOutput) => void): void;
|
|
94
86
|
batchStop(args: BatchStopCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchStopCommandOutput) => void): void;
|
|
95
87
|
/**
|
|
96
|
-
* @
|
|
97
|
-
* Update a channel schedule
|
|
88
|
+
* @see {@link BatchUpdateScheduleCommand}
|
|
98
89
|
*/
|
|
99
90
|
batchUpdateSchedule(args: BatchUpdateScheduleCommandInput, options?: __HttpHandlerOptions): Promise<BatchUpdateScheduleCommandOutput>;
|
|
100
91
|
batchUpdateSchedule(args: BatchUpdateScheduleCommandInput, cb: (err: any, data?: BatchUpdateScheduleCommandOutput) => void): void;
|
|
101
92
|
batchUpdateSchedule(args: BatchUpdateScheduleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchUpdateScheduleCommandOutput) => void): void;
|
|
102
93
|
/**
|
|
103
|
-
* @
|
|
104
|
-
* Cancel an input device transfer that you have requested.
|
|
94
|
+
* @see {@link CancelInputDeviceTransferCommand}
|
|
105
95
|
*/
|
|
106
96
|
cancelInputDeviceTransfer(args: CancelInputDeviceTransferCommandInput, options?: __HttpHandlerOptions): Promise<CancelInputDeviceTransferCommandOutput>;
|
|
107
97
|
cancelInputDeviceTransfer(args: CancelInputDeviceTransferCommandInput, cb: (err: any, data?: CancelInputDeviceTransferCommandOutput) => void): void;
|
|
108
98
|
cancelInputDeviceTransfer(args: CancelInputDeviceTransferCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelInputDeviceTransferCommandOutput) => void): void;
|
|
109
99
|
/**
|
|
110
|
-
* @
|
|
111
|
-
* Send a request to claim an AWS Elemental device that you have purchased from a third-party vendor. After the request succeeds, you will own the device.
|
|
100
|
+
* @see {@link ClaimDeviceCommand}
|
|
112
101
|
*/
|
|
113
102
|
claimDevice(args: ClaimDeviceCommandInput, options?: __HttpHandlerOptions): Promise<ClaimDeviceCommandOutput>;
|
|
114
103
|
claimDevice(args: ClaimDeviceCommandInput, cb: (err: any, data?: ClaimDeviceCommandOutput) => void): void;
|
|
115
104
|
claimDevice(args: ClaimDeviceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ClaimDeviceCommandOutput) => void): void;
|
|
116
105
|
/**
|
|
117
|
-
* @
|
|
118
|
-
* Creates a new channel
|
|
106
|
+
* @see {@link CreateChannelCommand}
|
|
119
107
|
*/
|
|
120
108
|
createChannel(args: CreateChannelCommandInput, options?: __HttpHandlerOptions): Promise<CreateChannelCommandOutput>;
|
|
121
109
|
createChannel(args: CreateChannelCommandInput, cb: (err: any, data?: CreateChannelCommandOutput) => void): void;
|
|
122
110
|
createChannel(args: CreateChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateChannelCommandOutput) => void): void;
|
|
123
111
|
/**
|
|
124
|
-
* @
|
|
125
|
-
* Create an input
|
|
112
|
+
* @see {@link CreateInputCommand}
|
|
126
113
|
*/
|
|
127
114
|
createInput(args: CreateInputCommandInput, options?: __HttpHandlerOptions): Promise<CreateInputCommandOutput>;
|
|
128
115
|
createInput(args: CreateInputCommandInput, cb: (err: any, data?: CreateInputCommandOutput) => void): void;
|
|
129
116
|
createInput(args: CreateInputCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateInputCommandOutput) => void): void;
|
|
130
117
|
/**
|
|
131
|
-
* @
|
|
132
|
-
* Creates a Input Security Group
|
|
118
|
+
* @see {@link CreateInputSecurityGroupCommand}
|
|
133
119
|
*/
|
|
134
120
|
createInputSecurityGroup(args: CreateInputSecurityGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateInputSecurityGroupCommandOutput>;
|
|
135
121
|
createInputSecurityGroup(args: CreateInputSecurityGroupCommandInput, cb: (err: any, data?: CreateInputSecurityGroupCommandOutput) => void): void;
|
|
136
122
|
createInputSecurityGroup(args: CreateInputSecurityGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateInputSecurityGroupCommandOutput) => void): void;
|
|
137
123
|
/**
|
|
138
|
-
* @
|
|
139
|
-
* Create a new multiplex.
|
|
124
|
+
* @see {@link CreateMultiplexCommand}
|
|
140
125
|
*/
|
|
141
126
|
createMultiplex(args: CreateMultiplexCommandInput, options?: __HttpHandlerOptions): Promise<CreateMultiplexCommandOutput>;
|
|
142
127
|
createMultiplex(args: CreateMultiplexCommandInput, cb: (err: any, data?: CreateMultiplexCommandOutput) => void): void;
|
|
143
128
|
createMultiplex(args: CreateMultiplexCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateMultiplexCommandOutput) => void): void;
|
|
144
129
|
/**
|
|
145
|
-
* @
|
|
146
|
-
* Create a new program in the multiplex.
|
|
130
|
+
* @see {@link CreateMultiplexProgramCommand}
|
|
147
131
|
*/
|
|
148
132
|
createMultiplexProgram(args: CreateMultiplexProgramCommandInput, options?: __HttpHandlerOptions): Promise<CreateMultiplexProgramCommandOutput>;
|
|
149
133
|
createMultiplexProgram(args: CreateMultiplexProgramCommandInput, cb: (err: any, data?: CreateMultiplexProgramCommandOutput) => void): void;
|
|
150
134
|
createMultiplexProgram(args: CreateMultiplexProgramCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateMultiplexProgramCommandOutput) => void): void;
|
|
151
135
|
/**
|
|
152
|
-
* @
|
|
153
|
-
* Create a partner input
|
|
136
|
+
* @see {@link CreatePartnerInputCommand}
|
|
154
137
|
*/
|
|
155
138
|
createPartnerInput(args: CreatePartnerInputCommandInput, options?: __HttpHandlerOptions): Promise<CreatePartnerInputCommandOutput>;
|
|
156
139
|
createPartnerInput(args: CreatePartnerInputCommandInput, cb: (err: any, data?: CreatePartnerInputCommandOutput) => void): void;
|
|
157
140
|
createPartnerInput(args: CreatePartnerInputCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreatePartnerInputCommandOutput) => void): void;
|
|
158
141
|
/**
|
|
159
|
-
* @
|
|
160
|
-
* Create tags for a resource
|
|
142
|
+
* @see {@link CreateTagsCommand}
|
|
161
143
|
*/
|
|
162
144
|
createTags(args: CreateTagsCommandInput, options?: __HttpHandlerOptions): Promise<CreateTagsCommandOutput>;
|
|
163
145
|
createTags(args: CreateTagsCommandInput, cb: (err: any, data?: CreateTagsCommandOutput) => void): void;
|
|
164
146
|
createTags(args: CreateTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTagsCommandOutput) => void): void;
|
|
165
147
|
/**
|
|
166
|
-
* @
|
|
167
|
-
* Starts deletion of channel. The associated outputs are also deleted.
|
|
148
|
+
* @see {@link DeleteChannelCommand}
|
|
168
149
|
*/
|
|
169
150
|
deleteChannel(args: DeleteChannelCommandInput, options?: __HttpHandlerOptions): Promise<DeleteChannelCommandOutput>;
|
|
170
151
|
deleteChannel(args: DeleteChannelCommandInput, cb: (err: any, data?: DeleteChannelCommandOutput) => void): void;
|
|
171
152
|
deleteChannel(args: DeleteChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteChannelCommandOutput) => void): void;
|
|
172
153
|
/**
|
|
173
|
-
* @
|
|
174
|
-
* Deletes the input end point
|
|
154
|
+
* @see {@link DeleteInputCommand}
|
|
175
155
|
*/
|
|
176
156
|
deleteInput(args: DeleteInputCommandInput, options?: __HttpHandlerOptions): Promise<DeleteInputCommandOutput>;
|
|
177
157
|
deleteInput(args: DeleteInputCommandInput, cb: (err: any, data?: DeleteInputCommandOutput) => void): void;
|
|
178
158
|
deleteInput(args: DeleteInputCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteInputCommandOutput) => void): void;
|
|
179
159
|
/**
|
|
180
|
-
* @
|
|
181
|
-
* Deletes an Input Security Group
|
|
160
|
+
* @see {@link DeleteInputSecurityGroupCommand}
|
|
182
161
|
*/
|
|
183
162
|
deleteInputSecurityGroup(args: DeleteInputSecurityGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteInputSecurityGroupCommandOutput>;
|
|
184
163
|
deleteInputSecurityGroup(args: DeleteInputSecurityGroupCommandInput, cb: (err: any, data?: DeleteInputSecurityGroupCommandOutput) => void): void;
|
|
185
164
|
deleteInputSecurityGroup(args: DeleteInputSecurityGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteInputSecurityGroupCommandOutput) => void): void;
|
|
186
165
|
/**
|
|
187
|
-
* @
|
|
188
|
-
* Delete a multiplex. The multiplex must be idle.
|
|
166
|
+
* @see {@link DeleteMultiplexCommand}
|
|
189
167
|
*/
|
|
190
168
|
deleteMultiplex(args: DeleteMultiplexCommandInput, options?: __HttpHandlerOptions): Promise<DeleteMultiplexCommandOutput>;
|
|
191
169
|
deleteMultiplex(args: DeleteMultiplexCommandInput, cb: (err: any, data?: DeleteMultiplexCommandOutput) => void): void;
|
|
192
170
|
deleteMultiplex(args: DeleteMultiplexCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteMultiplexCommandOutput) => void): void;
|
|
193
171
|
/**
|
|
194
|
-
* @
|
|
195
|
-
* Delete a program from a multiplex.
|
|
172
|
+
* @see {@link DeleteMultiplexProgramCommand}
|
|
196
173
|
*/
|
|
197
174
|
deleteMultiplexProgram(args: DeleteMultiplexProgramCommandInput, options?: __HttpHandlerOptions): Promise<DeleteMultiplexProgramCommandOutput>;
|
|
198
175
|
deleteMultiplexProgram(args: DeleteMultiplexProgramCommandInput, cb: (err: any, data?: DeleteMultiplexProgramCommandOutput) => void): void;
|
|
199
176
|
deleteMultiplexProgram(args: DeleteMultiplexProgramCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteMultiplexProgramCommandOutput) => void): void;
|
|
200
177
|
/**
|
|
201
|
-
* @
|
|
202
|
-
* Delete an expired reservation.
|
|
178
|
+
* @see {@link DeleteReservationCommand}
|
|
203
179
|
*/
|
|
204
180
|
deleteReservation(args: DeleteReservationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteReservationCommandOutput>;
|
|
205
181
|
deleteReservation(args: DeleteReservationCommandInput, cb: (err: any, data?: DeleteReservationCommandOutput) => void): void;
|
|
206
182
|
deleteReservation(args: DeleteReservationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteReservationCommandOutput) => void): void;
|
|
207
183
|
/**
|
|
208
|
-
* @
|
|
209
|
-
* Delete all schedule actions on a channel.
|
|
184
|
+
* @see {@link DeleteScheduleCommand}
|
|
210
185
|
*/
|
|
211
186
|
deleteSchedule(args: DeleteScheduleCommandInput, options?: __HttpHandlerOptions): Promise<DeleteScheduleCommandOutput>;
|
|
212
187
|
deleteSchedule(args: DeleteScheduleCommandInput, cb: (err: any, data?: DeleteScheduleCommandOutput) => void): void;
|
|
213
188
|
deleteSchedule(args: DeleteScheduleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteScheduleCommandOutput) => void): void;
|
|
214
189
|
/**
|
|
215
|
-
* @
|
|
216
|
-
* Removes tags for a resource
|
|
190
|
+
* @see {@link DeleteTagsCommand}
|
|
217
191
|
*/
|
|
218
192
|
deleteTags(args: DeleteTagsCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTagsCommandOutput>;
|
|
219
193
|
deleteTags(args: DeleteTagsCommandInput, cb: (err: any, data?: DeleteTagsCommandOutput) => void): void;
|
|
220
194
|
deleteTags(args: DeleteTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTagsCommandOutput) => void): void;
|
|
221
195
|
/**
|
|
222
|
-
* @
|
|
223
|
-
* Gets details about a channel
|
|
196
|
+
* @see {@link DescribeChannelCommand}
|
|
224
197
|
*/
|
|
225
198
|
describeChannel(args: DescribeChannelCommandInput, options?: __HttpHandlerOptions): Promise<DescribeChannelCommandOutput>;
|
|
226
199
|
describeChannel(args: DescribeChannelCommandInput, cb: (err: any, data?: DescribeChannelCommandOutput) => void): void;
|
|
227
200
|
describeChannel(args: DescribeChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeChannelCommandOutput) => void): void;
|
|
228
201
|
/**
|
|
229
|
-
* @
|
|
230
|
-
* Produces details about an input
|
|
202
|
+
* @see {@link DescribeInputCommand}
|
|
231
203
|
*/
|
|
232
204
|
describeInput(args: DescribeInputCommandInput, options?: __HttpHandlerOptions): Promise<DescribeInputCommandOutput>;
|
|
233
205
|
describeInput(args: DescribeInputCommandInput, cb: (err: any, data?: DescribeInputCommandOutput) => void): void;
|
|
234
206
|
describeInput(args: DescribeInputCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeInputCommandOutput) => void): void;
|
|
235
207
|
/**
|
|
236
|
-
* @
|
|
237
|
-
* Gets the details for the input device
|
|
208
|
+
* @see {@link DescribeInputDeviceCommand}
|
|
238
209
|
*/
|
|
239
210
|
describeInputDevice(args: DescribeInputDeviceCommandInput, options?: __HttpHandlerOptions): Promise<DescribeInputDeviceCommandOutput>;
|
|
240
211
|
describeInputDevice(args: DescribeInputDeviceCommandInput, cb: (err: any, data?: DescribeInputDeviceCommandOutput) => void): void;
|
|
241
212
|
describeInputDevice(args: DescribeInputDeviceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeInputDeviceCommandOutput) => void): void;
|
|
242
213
|
/**
|
|
243
|
-
* @
|
|
244
|
-
* Get the latest thumbnail data for the input device.
|
|
214
|
+
* @see {@link DescribeInputDeviceThumbnailCommand}
|
|
245
215
|
*/
|
|
246
216
|
describeInputDeviceThumbnail(args: DescribeInputDeviceThumbnailCommandInput, options?: __HttpHandlerOptions): Promise<DescribeInputDeviceThumbnailCommandOutput>;
|
|
247
217
|
describeInputDeviceThumbnail(args: DescribeInputDeviceThumbnailCommandInput, cb: (err: any, data?: DescribeInputDeviceThumbnailCommandOutput) => void): void;
|
|
248
218
|
describeInputDeviceThumbnail(args: DescribeInputDeviceThumbnailCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeInputDeviceThumbnailCommandOutput) => void): void;
|
|
249
219
|
/**
|
|
250
|
-
* @
|
|
251
|
-
* Produces a summary of an Input Security Group
|
|
220
|
+
* @see {@link DescribeInputSecurityGroupCommand}
|
|
252
221
|
*/
|
|
253
222
|
describeInputSecurityGroup(args: DescribeInputSecurityGroupCommandInput, options?: __HttpHandlerOptions): Promise<DescribeInputSecurityGroupCommandOutput>;
|
|
254
223
|
describeInputSecurityGroup(args: DescribeInputSecurityGroupCommandInput, cb: (err: any, data?: DescribeInputSecurityGroupCommandOutput) => void): void;
|
|
255
224
|
describeInputSecurityGroup(args: DescribeInputSecurityGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeInputSecurityGroupCommandOutput) => void): void;
|
|
256
225
|
/**
|
|
257
|
-
* @
|
|
258
|
-
* Gets details about a multiplex.
|
|
226
|
+
* @see {@link DescribeMultiplexCommand}
|
|
259
227
|
*/
|
|
260
228
|
describeMultiplex(args: DescribeMultiplexCommandInput, options?: __HttpHandlerOptions): Promise<DescribeMultiplexCommandOutput>;
|
|
261
229
|
describeMultiplex(args: DescribeMultiplexCommandInput, cb: (err: any, data?: DescribeMultiplexCommandOutput) => void): void;
|
|
262
230
|
describeMultiplex(args: DescribeMultiplexCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeMultiplexCommandOutput) => void): void;
|
|
263
231
|
/**
|
|
264
|
-
* @
|
|
265
|
-
* Get the details for a program in a multiplex.
|
|
232
|
+
* @see {@link DescribeMultiplexProgramCommand}
|
|
266
233
|
*/
|
|
267
234
|
describeMultiplexProgram(args: DescribeMultiplexProgramCommandInput, options?: __HttpHandlerOptions): Promise<DescribeMultiplexProgramCommandOutput>;
|
|
268
235
|
describeMultiplexProgram(args: DescribeMultiplexProgramCommandInput, cb: (err: any, data?: DescribeMultiplexProgramCommandOutput) => void): void;
|
|
269
236
|
describeMultiplexProgram(args: DescribeMultiplexProgramCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeMultiplexProgramCommandOutput) => void): void;
|
|
270
237
|
/**
|
|
271
|
-
* @
|
|
272
|
-
* Get details for an offering.
|
|
238
|
+
* @see {@link DescribeOfferingCommand}
|
|
273
239
|
*/
|
|
274
240
|
describeOffering(args: DescribeOfferingCommandInput, options?: __HttpHandlerOptions): Promise<DescribeOfferingCommandOutput>;
|
|
275
241
|
describeOffering(args: DescribeOfferingCommandInput, cb: (err: any, data?: DescribeOfferingCommandOutput) => void): void;
|
|
276
242
|
describeOffering(args: DescribeOfferingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeOfferingCommandOutput) => void): void;
|
|
277
243
|
/**
|
|
278
|
-
* @
|
|
279
|
-
* Get details for a reservation.
|
|
244
|
+
* @see {@link DescribeReservationCommand}
|
|
280
245
|
*/
|
|
281
246
|
describeReservation(args: DescribeReservationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeReservationCommandOutput>;
|
|
282
247
|
describeReservation(args: DescribeReservationCommandInput, cb: (err: any, data?: DescribeReservationCommandOutput) => void): void;
|
|
283
248
|
describeReservation(args: DescribeReservationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeReservationCommandOutput) => void): void;
|
|
284
249
|
/**
|
|
285
|
-
* @
|
|
286
|
-
* Get a channel schedule
|
|
250
|
+
* @see {@link DescribeScheduleCommand}
|
|
287
251
|
*/
|
|
288
252
|
describeSchedule(args: DescribeScheduleCommandInput, options?: __HttpHandlerOptions): Promise<DescribeScheduleCommandOutput>;
|
|
289
253
|
describeSchedule(args: DescribeScheduleCommandInput, cb: (err: any, data?: DescribeScheduleCommandOutput) => void): void;
|
|
290
254
|
describeSchedule(args: DescribeScheduleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeScheduleCommandOutput) => void): void;
|
|
291
255
|
/**
|
|
292
|
-
* @
|
|
293
|
-
* Produces list of channels that have been created
|
|
256
|
+
* @see {@link ListChannelsCommand}
|
|
294
257
|
*/
|
|
295
258
|
listChannels(args: ListChannelsCommandInput, options?: __HttpHandlerOptions): Promise<ListChannelsCommandOutput>;
|
|
296
259
|
listChannels(args: ListChannelsCommandInput, cb: (err: any, data?: ListChannelsCommandOutput) => void): void;
|
|
297
260
|
listChannels(args: ListChannelsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListChannelsCommandOutput) => void): void;
|
|
298
261
|
/**
|
|
299
|
-
* @
|
|
300
|
-
* List input devices
|
|
262
|
+
* @see {@link ListInputDevicesCommand}
|
|
301
263
|
*/
|
|
302
264
|
listInputDevices(args: ListInputDevicesCommandInput, options?: __HttpHandlerOptions): Promise<ListInputDevicesCommandOutput>;
|
|
303
265
|
listInputDevices(args: ListInputDevicesCommandInput, cb: (err: any, data?: ListInputDevicesCommandOutput) => void): void;
|
|
304
266
|
listInputDevices(args: ListInputDevicesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListInputDevicesCommandOutput) => void): void;
|
|
305
267
|
/**
|
|
306
|
-
* @
|
|
307
|
-
* List input devices that are currently being transferred. List input devices that you are transferring from your AWS account or input devices that another AWS account is transferring to you.
|
|
268
|
+
* @see {@link ListInputDeviceTransfersCommand}
|
|
308
269
|
*/
|
|
309
270
|
listInputDeviceTransfers(args: ListInputDeviceTransfersCommandInput, options?: __HttpHandlerOptions): Promise<ListInputDeviceTransfersCommandOutput>;
|
|
310
271
|
listInputDeviceTransfers(args: ListInputDeviceTransfersCommandInput, cb: (err: any, data?: ListInputDeviceTransfersCommandOutput) => void): void;
|
|
311
272
|
listInputDeviceTransfers(args: ListInputDeviceTransfersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListInputDeviceTransfersCommandOutput) => void): void;
|
|
312
273
|
/**
|
|
313
|
-
* @
|
|
314
|
-
* Produces list of inputs that have been created
|
|
274
|
+
* @see {@link ListInputsCommand}
|
|
315
275
|
*/
|
|
316
276
|
listInputs(args: ListInputsCommandInput, options?: __HttpHandlerOptions): Promise<ListInputsCommandOutput>;
|
|
317
277
|
listInputs(args: ListInputsCommandInput, cb: (err: any, data?: ListInputsCommandOutput) => void): void;
|
|
318
278
|
listInputs(args: ListInputsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListInputsCommandOutput) => void): void;
|
|
319
279
|
/**
|
|
320
|
-
* @
|
|
321
|
-
* Produces a list of Input Security Groups for an account
|
|
280
|
+
* @see {@link ListInputSecurityGroupsCommand}
|
|
322
281
|
*/
|
|
323
282
|
listInputSecurityGroups(args: ListInputSecurityGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListInputSecurityGroupsCommandOutput>;
|
|
324
283
|
listInputSecurityGroups(args: ListInputSecurityGroupsCommandInput, cb: (err: any, data?: ListInputSecurityGroupsCommandOutput) => void): void;
|
|
325
284
|
listInputSecurityGroups(args: ListInputSecurityGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListInputSecurityGroupsCommandOutput) => void): void;
|
|
326
285
|
/**
|
|
327
|
-
* @
|
|
328
|
-
* Retrieve a list of the existing multiplexes.
|
|
286
|
+
* @see {@link ListMultiplexesCommand}
|
|
329
287
|
*/
|
|
330
288
|
listMultiplexes(args: ListMultiplexesCommandInput, options?: __HttpHandlerOptions): Promise<ListMultiplexesCommandOutput>;
|
|
331
289
|
listMultiplexes(args: ListMultiplexesCommandInput, cb: (err: any, data?: ListMultiplexesCommandOutput) => void): void;
|
|
332
290
|
listMultiplexes(args: ListMultiplexesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListMultiplexesCommandOutput) => void): void;
|
|
333
291
|
/**
|
|
334
|
-
* @
|
|
335
|
-
* List the programs that currently exist for a specific multiplex.
|
|
292
|
+
* @see {@link ListMultiplexProgramsCommand}
|
|
336
293
|
*/
|
|
337
294
|
listMultiplexPrograms(args: ListMultiplexProgramsCommandInput, options?: __HttpHandlerOptions): Promise<ListMultiplexProgramsCommandOutput>;
|
|
338
295
|
listMultiplexPrograms(args: ListMultiplexProgramsCommandInput, cb: (err: any, data?: ListMultiplexProgramsCommandOutput) => void): void;
|
|
339
296
|
listMultiplexPrograms(args: ListMultiplexProgramsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListMultiplexProgramsCommandOutput) => void): void;
|
|
340
297
|
/**
|
|
341
|
-
* @
|
|
342
|
-
* List offerings available for purchase.
|
|
298
|
+
* @see {@link ListOfferingsCommand}
|
|
343
299
|
*/
|
|
344
300
|
listOfferings(args: ListOfferingsCommandInput, options?: __HttpHandlerOptions): Promise<ListOfferingsCommandOutput>;
|
|
345
301
|
listOfferings(args: ListOfferingsCommandInput, cb: (err: any, data?: ListOfferingsCommandOutput) => void): void;
|
|
346
302
|
listOfferings(args: ListOfferingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListOfferingsCommandOutput) => void): void;
|
|
347
303
|
/**
|
|
348
|
-
* @
|
|
349
|
-
* List purchased reservations.
|
|
304
|
+
* @see {@link ListReservationsCommand}
|
|
350
305
|
*/
|
|
351
306
|
listReservations(args: ListReservationsCommandInput, options?: __HttpHandlerOptions): Promise<ListReservationsCommandOutput>;
|
|
352
307
|
listReservations(args: ListReservationsCommandInput, cb: (err: any, data?: ListReservationsCommandOutput) => void): void;
|
|
353
308
|
listReservations(args: ListReservationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListReservationsCommandOutput) => void): void;
|
|
354
309
|
/**
|
|
355
|
-
* @
|
|
356
|
-
* Produces list of tags that have been created for a resource
|
|
310
|
+
* @see {@link ListTagsForResourceCommand}
|
|
357
311
|
*/
|
|
358
312
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
359
313
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
360
314
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
361
315
|
/**
|
|
362
|
-
* @
|
|
363
|
-
* Purchase an offering and create a reservation.
|
|
316
|
+
* @see {@link PurchaseOfferingCommand}
|
|
364
317
|
*/
|
|
365
318
|
purchaseOffering(args: PurchaseOfferingCommandInput, options?: __HttpHandlerOptions): Promise<PurchaseOfferingCommandOutput>;
|
|
366
319
|
purchaseOffering(args: PurchaseOfferingCommandInput, cb: (err: any, data?: PurchaseOfferingCommandOutput) => void): void;
|
|
367
320
|
purchaseOffering(args: PurchaseOfferingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PurchaseOfferingCommandOutput) => void): void;
|
|
368
321
|
/**
|
|
369
|
-
* @
|
|
370
|
-
* Send a reboot command to the specified input device. The device will begin rebooting within a few seconds of sending the command. When the reboot is complete, the device’s connection status will change to connected.
|
|
322
|
+
* @see {@link RebootInputDeviceCommand}
|
|
371
323
|
*/
|
|
372
324
|
rebootInputDevice(args: RebootInputDeviceCommandInput, options?: __HttpHandlerOptions): Promise<RebootInputDeviceCommandOutput>;
|
|
373
325
|
rebootInputDevice(args: RebootInputDeviceCommandInput, cb: (err: any, data?: RebootInputDeviceCommandOutput) => void): void;
|
|
374
326
|
rebootInputDevice(args: RebootInputDeviceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RebootInputDeviceCommandOutput) => void): void;
|
|
375
327
|
/**
|
|
376
|
-
* @
|
|
377
|
-
* Reject the transfer of the specified input device to your AWS account.
|
|
328
|
+
* @see {@link RejectInputDeviceTransferCommand}
|
|
378
329
|
*/
|
|
379
330
|
rejectInputDeviceTransfer(args: RejectInputDeviceTransferCommandInput, options?: __HttpHandlerOptions): Promise<RejectInputDeviceTransferCommandOutput>;
|
|
380
331
|
rejectInputDeviceTransfer(args: RejectInputDeviceTransferCommandInput, cb: (err: any, data?: RejectInputDeviceTransferCommandOutput) => void): void;
|
|
381
332
|
rejectInputDeviceTransfer(args: RejectInputDeviceTransferCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RejectInputDeviceTransferCommandOutput) => void): void;
|
|
382
333
|
/**
|
|
383
|
-
* @
|
|
384
|
-
* Starts an existing channel
|
|
334
|
+
* @see {@link StartChannelCommand}
|
|
385
335
|
*/
|
|
386
336
|
startChannel(args: StartChannelCommandInput, options?: __HttpHandlerOptions): Promise<StartChannelCommandOutput>;
|
|
387
337
|
startChannel(args: StartChannelCommandInput, cb: (err: any, data?: StartChannelCommandOutput) => void): void;
|
|
388
338
|
startChannel(args: StartChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartChannelCommandOutput) => void): void;
|
|
389
339
|
/**
|
|
390
|
-
* @
|
|
391
|
-
* 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.
|
|
340
|
+
* @see {@link StartInputDeviceMaintenanceWindowCommand}
|
|
392
341
|
*/
|
|
393
342
|
startInputDeviceMaintenanceWindow(args: StartInputDeviceMaintenanceWindowCommandInput, options?: __HttpHandlerOptions): Promise<StartInputDeviceMaintenanceWindowCommandOutput>;
|
|
394
343
|
startInputDeviceMaintenanceWindow(args: StartInputDeviceMaintenanceWindowCommandInput, cb: (err: any, data?: StartInputDeviceMaintenanceWindowCommandOutput) => void): void;
|
|
395
344
|
startInputDeviceMaintenanceWindow(args: StartInputDeviceMaintenanceWindowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartInputDeviceMaintenanceWindowCommandOutput) => void): void;
|
|
396
345
|
/**
|
|
397
|
-
* @
|
|
398
|
-
* Start (run) the multiplex. Starting the multiplex does not start the channels. You must explicitly start each channel.
|
|
346
|
+
* @see {@link StartMultiplexCommand}
|
|
399
347
|
*/
|
|
400
348
|
startMultiplex(args: StartMultiplexCommandInput, options?: __HttpHandlerOptions): Promise<StartMultiplexCommandOutput>;
|
|
401
349
|
startMultiplex(args: StartMultiplexCommandInput, cb: (err: any, data?: StartMultiplexCommandOutput) => void): void;
|
|
402
350
|
startMultiplex(args: StartMultiplexCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartMultiplexCommandOutput) => void): void;
|
|
403
351
|
/**
|
|
404
|
-
* @
|
|
405
|
-
* Stops a running channel
|
|
352
|
+
* @see {@link StopChannelCommand}
|
|
406
353
|
*/
|
|
407
354
|
stopChannel(args: StopChannelCommandInput, options?: __HttpHandlerOptions): Promise<StopChannelCommandOutput>;
|
|
408
355
|
stopChannel(args: StopChannelCommandInput, cb: (err: any, data?: StopChannelCommandOutput) => void): void;
|
|
409
356
|
stopChannel(args: StopChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopChannelCommandOutput) => void): void;
|
|
410
357
|
/**
|
|
411
|
-
* @
|
|
412
|
-
* Stops a running multiplex. If the multiplex isn't running, this action has no effect.
|
|
358
|
+
* @see {@link StopMultiplexCommand}
|
|
413
359
|
*/
|
|
414
360
|
stopMultiplex(args: StopMultiplexCommandInput, options?: __HttpHandlerOptions): Promise<StopMultiplexCommandOutput>;
|
|
415
361
|
stopMultiplex(args: StopMultiplexCommandInput, cb: (err: any, data?: StopMultiplexCommandOutput) => void): void;
|
|
416
362
|
stopMultiplex(args: StopMultiplexCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopMultiplexCommandOutput) => void): void;
|
|
417
363
|
/**
|
|
418
|
-
* @
|
|
419
|
-
* Start an input device transfer to another AWS account. After you make the request, the other account must accept or reject the transfer.
|
|
364
|
+
* @see {@link TransferInputDeviceCommand}
|
|
420
365
|
*/
|
|
421
366
|
transferInputDevice(args: TransferInputDeviceCommandInput, options?: __HttpHandlerOptions): Promise<TransferInputDeviceCommandOutput>;
|
|
422
367
|
transferInputDevice(args: TransferInputDeviceCommandInput, cb: (err: any, data?: TransferInputDeviceCommandOutput) => void): void;
|
|
423
368
|
transferInputDevice(args: TransferInputDeviceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TransferInputDeviceCommandOutput) => void): void;
|
|
424
369
|
/**
|
|
425
|
-
* @
|
|
426
|
-
* Updates a channel.
|
|
370
|
+
* @see {@link UpdateChannelCommand}
|
|
427
371
|
*/
|
|
428
372
|
updateChannel(args: UpdateChannelCommandInput, options?: __HttpHandlerOptions): Promise<UpdateChannelCommandOutput>;
|
|
429
373
|
updateChannel(args: UpdateChannelCommandInput, cb: (err: any, data?: UpdateChannelCommandOutput) => void): void;
|
|
430
374
|
updateChannel(args: UpdateChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateChannelCommandOutput) => void): void;
|
|
431
375
|
/**
|
|
432
|
-
* @
|
|
433
|
-
* Changes the class of the channel.
|
|
376
|
+
* @see {@link UpdateChannelClassCommand}
|
|
434
377
|
*/
|
|
435
378
|
updateChannelClass(args: UpdateChannelClassCommandInput, options?: __HttpHandlerOptions): Promise<UpdateChannelClassCommandOutput>;
|
|
436
379
|
updateChannelClass(args: UpdateChannelClassCommandInput, cb: (err: any, data?: UpdateChannelClassCommandOutput) => void): void;
|
|
437
380
|
updateChannelClass(args: UpdateChannelClassCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateChannelClassCommandOutput) => void): void;
|
|
438
381
|
/**
|
|
439
|
-
* @
|
|
440
|
-
* Updates an input.
|
|
382
|
+
* @see {@link UpdateInputCommand}
|
|
441
383
|
*/
|
|
442
384
|
updateInput(args: UpdateInputCommandInput, options?: __HttpHandlerOptions): Promise<UpdateInputCommandOutput>;
|
|
443
385
|
updateInput(args: UpdateInputCommandInput, cb: (err: any, data?: UpdateInputCommandOutput) => void): void;
|
|
444
386
|
updateInput(args: UpdateInputCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateInputCommandOutput) => void): void;
|
|
445
387
|
/**
|
|
446
|
-
* @
|
|
447
|
-
* Updates the parameters for the input device.
|
|
388
|
+
* @see {@link UpdateInputDeviceCommand}
|
|
448
389
|
*/
|
|
449
390
|
updateInputDevice(args: UpdateInputDeviceCommandInput, options?: __HttpHandlerOptions): Promise<UpdateInputDeviceCommandOutput>;
|
|
450
391
|
updateInputDevice(args: UpdateInputDeviceCommandInput, cb: (err: any, data?: UpdateInputDeviceCommandOutput) => void): void;
|
|
451
392
|
updateInputDevice(args: UpdateInputDeviceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateInputDeviceCommandOutput) => void): void;
|
|
452
393
|
/**
|
|
453
|
-
* @
|
|
454
|
-
* Update an Input Security Group's Whilelists.
|
|
394
|
+
* @see {@link UpdateInputSecurityGroupCommand}
|
|
455
395
|
*/
|
|
456
396
|
updateInputSecurityGroup(args: UpdateInputSecurityGroupCommandInput, options?: __HttpHandlerOptions): Promise<UpdateInputSecurityGroupCommandOutput>;
|
|
457
397
|
updateInputSecurityGroup(args: UpdateInputSecurityGroupCommandInput, cb: (err: any, data?: UpdateInputSecurityGroupCommandOutput) => void): void;
|
|
458
398
|
updateInputSecurityGroup(args: UpdateInputSecurityGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateInputSecurityGroupCommandOutput) => void): void;
|
|
459
399
|
/**
|
|
460
|
-
* @
|
|
461
|
-
* Updates a multiplex.
|
|
400
|
+
* @see {@link UpdateMultiplexCommand}
|
|
462
401
|
*/
|
|
463
402
|
updateMultiplex(args: UpdateMultiplexCommandInput, options?: __HttpHandlerOptions): Promise<UpdateMultiplexCommandOutput>;
|
|
464
403
|
updateMultiplex(args: UpdateMultiplexCommandInput, cb: (err: any, data?: UpdateMultiplexCommandOutput) => void): void;
|
|
465
404
|
updateMultiplex(args: UpdateMultiplexCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateMultiplexCommandOutput) => void): void;
|
|
466
405
|
/**
|
|
467
|
-
* @
|
|
468
|
-
* Update a program in a multiplex.
|
|
406
|
+
* @see {@link UpdateMultiplexProgramCommand}
|
|
469
407
|
*/
|
|
470
408
|
updateMultiplexProgram(args: UpdateMultiplexProgramCommandInput, options?: __HttpHandlerOptions): Promise<UpdateMultiplexProgramCommandOutput>;
|
|
471
409
|
updateMultiplexProgram(args: UpdateMultiplexProgramCommandInput, cb: (err: any, data?: UpdateMultiplexProgramCommandOutput) => void): void;
|
|
472
410
|
updateMultiplexProgram(args: UpdateMultiplexProgramCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateMultiplexProgramCommandOutput) => void): void;
|
|
473
411
|
/**
|
|
474
|
-
* @
|
|
475
|
-
* Update reservation.
|
|
412
|
+
* @see {@link UpdateReservationCommand}
|
|
476
413
|
*/
|
|
477
414
|
updateReservation(args: UpdateReservationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateReservationCommandOutput>;
|
|
478
415
|
updateReservation(args: UpdateReservationCommandInput, cb: (err: any, data?: UpdateReservationCommandOutput) => void): void;
|
|
479
416
|
updateReservation(args: UpdateReservationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateReservationCommandOutput) => void): void;
|
|
480
417
|
}
|
|
418
|
+
/**
|
|
419
|
+
* @public
|
|
420
|
+
* API for AWS Elemental MediaLive
|
|
421
|
+
*/
|
|
422
|
+
export declare class MediaLive extends MediaLiveClient implements MediaLive {
|
|
423
|
+
}
|
|
@@ -236,7 +236,7 @@ import {
|
|
|
236
236
|
UpdateReservationCommandOutput,
|
|
237
237
|
} from "./commands/UpdateReservationCommand";
|
|
238
238
|
import { MediaLiveClient } from "./MediaLiveClient";
|
|
239
|
-
export
|
|
239
|
+
export interface MediaLive {
|
|
240
240
|
acceptInputDeviceTransfer(
|
|
241
241
|
args: AcceptInputDeviceTransferCommandInput,
|
|
242
242
|
options?: __HttpHandlerOptions
|
|
@@ -1011,3 +1011,4 @@ export declare class MediaLive extends MediaLiveClient {
|
|
|
1011
1011
|
cb: (err: any, data?: UpdateReservationCommandOutput) => void
|
|
1012
1012
|
): void;
|
|
1013
1013
|
}
|
|
1014
|
+
export declare class MediaLive extends MediaLiveClient implements MediaLive {}
|
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.319.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",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.319.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.319.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -36,19 +36,19 @@
|
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.310.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.310.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.310.0",
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.319.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.310.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.316.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.316.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.316.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.319.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-stream-browser": "3.310.0",
|
|
54
54
|
"@aws-sdk/util-stream-node": "3.310.0",
|