@aws-sdk/client-ivs-realtime 3.637.0 → 3.648.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +45 -5
- package/dist-cjs/index.js +315 -2
- package/dist-es/IVSRealTime.js +10 -0
- package/dist-es/commands/CreateIngestConfigurationCommand.js +25 -0
- package/dist-es/commands/DeleteIngestConfigurationCommand.js +24 -0
- package/dist-es/commands/GetIngestConfigurationCommand.js +25 -0
- package/dist-es/commands/ListIngestConfigurationsCommand.js +24 -0
- package/dist-es/commands/UpdateIngestConfigurationCommand.js +25 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_0.js +44 -0
- package/dist-es/pagination/ListIngestConfigurationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +144 -0
- package/dist-types/IVSRealTime.d.ts +41 -5
- package/dist-types/IVSRealTimeClient.d.ts +12 -7
- package/dist-types/commands/CreateIngestConfigurationCommand.d.ts +97 -0
- package/dist-types/commands/CreateStageCommand.d.ts +2 -0
- package/dist-types/commands/DeleteIngestConfigurationCommand.d.ts +74 -0
- package/dist-types/commands/DeleteStageCommand.d.ts +3 -1
- package/dist-types/commands/DisconnectParticipantCommand.d.ts +3 -2
- package/dist-types/commands/GetIngestConfigurationCommand.d.ts +84 -0
- package/dist-types/commands/GetParticipantCommand.d.ts +1 -0
- package/dist-types/commands/GetStageCommand.d.ts +2 -0
- package/dist-types/commands/ListIngestConfigurationsCommand.d.ts +80 -0
- package/dist-types/commands/ListParticipantEventsCommand.d.ts +1 -1
- package/dist-types/commands/StartCompositionCommand.d.ts +1 -1
- package/dist-types/commands/UpdateIngestConfigurationCommand.d.ts +91 -0
- package/dist-types/commands/UpdateStageCommand.d.ts +2 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/index.d.ts +5 -5
- package/dist-types/models/models_0.d.ts +398 -60
- package/dist-types/pagination/ListIngestConfigurationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
- package/dist-types/ts3.4/IVSRealTime.d.ts +86 -0
- package/dist-types/ts3.4/IVSRealTimeClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/CreateIngestConfigurationCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/DeleteIngestConfigurationCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/GetIngestConfigurationCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/ListIngestConfigurationsCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/UpdateIngestConfigurationCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +104 -0
- package/dist-types/ts3.4/pagination/ListIngestConfigurationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
- package/package.json +6 -6
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListIngestConfigurationsCommandInput, ListIngestConfigurationsCommandOutput } from "../commands/ListIngestConfigurationsCommand";
|
|
3
|
+
import { IVSRealTimePaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListIngestConfigurations: (config: IVSRealTimePaginationConfiguration, input: ListIngestConfigurationsCommandInput, ...rest: any[]) => Paginator<ListIngestConfigurationsCommandOutput>;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
2
|
export * from "./ListCompositionsPaginator";
|
|
3
3
|
export * from "./ListEncoderConfigurationsPaginator";
|
|
4
|
+
export * from "./ListIngestConfigurationsPaginator";
|
|
4
5
|
export * from "./ListParticipantEventsPaginator";
|
|
5
6
|
export * from "./ListParticipantsPaginator";
|
|
6
7
|
export * from "./ListPublicKeysPaginator";
|
|
@@ -1,16 +1,19 @@
|
|
|
1
1
|
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
2
|
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
3
|
import { CreateEncoderConfigurationCommandInput, CreateEncoderConfigurationCommandOutput } from "../commands/CreateEncoderConfigurationCommand";
|
|
4
|
+
import { CreateIngestConfigurationCommandInput, CreateIngestConfigurationCommandOutput } from "../commands/CreateIngestConfigurationCommand";
|
|
4
5
|
import { CreateParticipantTokenCommandInput, CreateParticipantTokenCommandOutput } from "../commands/CreateParticipantTokenCommand";
|
|
5
6
|
import { CreateStageCommandInput, CreateStageCommandOutput } from "../commands/CreateStageCommand";
|
|
6
7
|
import { CreateStorageConfigurationCommandInput, CreateStorageConfigurationCommandOutput } from "../commands/CreateStorageConfigurationCommand";
|
|
7
8
|
import { DeleteEncoderConfigurationCommandInput, DeleteEncoderConfigurationCommandOutput } from "../commands/DeleteEncoderConfigurationCommand";
|
|
9
|
+
import { DeleteIngestConfigurationCommandInput, DeleteIngestConfigurationCommandOutput } from "../commands/DeleteIngestConfigurationCommand";
|
|
8
10
|
import { DeletePublicKeyCommandInput, DeletePublicKeyCommandOutput } from "../commands/DeletePublicKeyCommand";
|
|
9
11
|
import { DeleteStageCommandInput, DeleteStageCommandOutput } from "../commands/DeleteStageCommand";
|
|
10
12
|
import { DeleteStorageConfigurationCommandInput, DeleteStorageConfigurationCommandOutput } from "../commands/DeleteStorageConfigurationCommand";
|
|
11
13
|
import { DisconnectParticipantCommandInput, DisconnectParticipantCommandOutput } from "../commands/DisconnectParticipantCommand";
|
|
12
14
|
import { GetCompositionCommandInput, GetCompositionCommandOutput } from "../commands/GetCompositionCommand";
|
|
13
15
|
import { GetEncoderConfigurationCommandInput, GetEncoderConfigurationCommandOutput } from "../commands/GetEncoderConfigurationCommand";
|
|
16
|
+
import { GetIngestConfigurationCommandInput, GetIngestConfigurationCommandOutput } from "../commands/GetIngestConfigurationCommand";
|
|
14
17
|
import { GetParticipantCommandInput, GetParticipantCommandOutput } from "../commands/GetParticipantCommand";
|
|
15
18
|
import { GetPublicKeyCommandInput, GetPublicKeyCommandOutput } from "../commands/GetPublicKeyCommand";
|
|
16
19
|
import { GetStageCommandInput, GetStageCommandOutput } from "../commands/GetStageCommand";
|
|
@@ -19,6 +22,7 @@ import { GetStorageConfigurationCommandInput, GetStorageConfigurationCommandOutp
|
|
|
19
22
|
import { ImportPublicKeyCommandInput, ImportPublicKeyCommandOutput } from "../commands/ImportPublicKeyCommand";
|
|
20
23
|
import { ListCompositionsCommandInput, ListCompositionsCommandOutput } from "../commands/ListCompositionsCommand";
|
|
21
24
|
import { ListEncoderConfigurationsCommandInput, ListEncoderConfigurationsCommandOutput } from "../commands/ListEncoderConfigurationsCommand";
|
|
25
|
+
import { ListIngestConfigurationsCommandInput, ListIngestConfigurationsCommandOutput } from "../commands/ListIngestConfigurationsCommand";
|
|
22
26
|
import { ListParticipantEventsCommandInput, ListParticipantEventsCommandOutput } from "../commands/ListParticipantEventsCommand";
|
|
23
27
|
import { ListParticipantsCommandInput, ListParticipantsCommandOutput } from "../commands/ListParticipantsCommand";
|
|
24
28
|
import { ListPublicKeysCommandInput, ListPublicKeysCommandOutput } from "../commands/ListPublicKeysCommand";
|
|
@@ -30,11 +34,16 @@ import { StartCompositionCommandInput, StartCompositionCommandOutput } from "../
|
|
|
30
34
|
import { StopCompositionCommandInput, StopCompositionCommandOutput } from "../commands/StopCompositionCommand";
|
|
31
35
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
32
36
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
37
|
+
import { UpdateIngestConfigurationCommandInput, UpdateIngestConfigurationCommandOutput } from "../commands/UpdateIngestConfigurationCommand";
|
|
33
38
|
import { UpdateStageCommandInput, UpdateStageCommandOutput } from "../commands/UpdateStageCommand";
|
|
34
39
|
/**
|
|
35
40
|
* serializeAws_restJson1CreateEncoderConfigurationCommand
|
|
36
41
|
*/
|
|
37
42
|
export declare const se_CreateEncoderConfigurationCommand: (input: CreateEncoderConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
43
|
+
/**
|
|
44
|
+
* serializeAws_restJson1CreateIngestConfigurationCommand
|
|
45
|
+
*/
|
|
46
|
+
export declare const se_CreateIngestConfigurationCommand: (input: CreateIngestConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
38
47
|
/**
|
|
39
48
|
* serializeAws_restJson1CreateParticipantTokenCommand
|
|
40
49
|
*/
|
|
@@ -51,6 +60,10 @@ export declare const se_CreateStorageConfigurationCommand: (input: CreateStorage
|
|
|
51
60
|
* serializeAws_restJson1DeleteEncoderConfigurationCommand
|
|
52
61
|
*/
|
|
53
62
|
export declare const se_DeleteEncoderConfigurationCommand: (input: DeleteEncoderConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
63
|
+
/**
|
|
64
|
+
* serializeAws_restJson1DeleteIngestConfigurationCommand
|
|
65
|
+
*/
|
|
66
|
+
export declare const se_DeleteIngestConfigurationCommand: (input: DeleteIngestConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
54
67
|
/**
|
|
55
68
|
* serializeAws_restJson1DeletePublicKeyCommand
|
|
56
69
|
*/
|
|
@@ -75,6 +88,10 @@ export declare const se_GetCompositionCommand: (input: GetCompositionCommandInpu
|
|
|
75
88
|
* serializeAws_restJson1GetEncoderConfigurationCommand
|
|
76
89
|
*/
|
|
77
90
|
export declare const se_GetEncoderConfigurationCommand: (input: GetEncoderConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
91
|
+
/**
|
|
92
|
+
* serializeAws_restJson1GetIngestConfigurationCommand
|
|
93
|
+
*/
|
|
94
|
+
export declare const se_GetIngestConfigurationCommand: (input: GetIngestConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
78
95
|
/**
|
|
79
96
|
* serializeAws_restJson1GetParticipantCommand
|
|
80
97
|
*/
|
|
@@ -107,6 +124,10 @@ export declare const se_ListCompositionsCommand: (input: ListCompositionsCommand
|
|
|
107
124
|
* serializeAws_restJson1ListEncoderConfigurationsCommand
|
|
108
125
|
*/
|
|
109
126
|
export declare const se_ListEncoderConfigurationsCommand: (input: ListEncoderConfigurationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
127
|
+
/**
|
|
128
|
+
* serializeAws_restJson1ListIngestConfigurationsCommand
|
|
129
|
+
*/
|
|
130
|
+
export declare const se_ListIngestConfigurationsCommand: (input: ListIngestConfigurationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
110
131
|
/**
|
|
111
132
|
* serializeAws_restJson1ListParticipantEventsCommand
|
|
112
133
|
*/
|
|
@@ -151,6 +172,10 @@ export declare const se_TagResourceCommand: (input: TagResourceCommandInput, con
|
|
|
151
172
|
* serializeAws_restJson1UntagResourceCommand
|
|
152
173
|
*/
|
|
153
174
|
export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
175
|
+
/**
|
|
176
|
+
* serializeAws_restJson1UpdateIngestConfigurationCommand
|
|
177
|
+
*/
|
|
178
|
+
export declare const se_UpdateIngestConfigurationCommand: (input: UpdateIngestConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
154
179
|
/**
|
|
155
180
|
* serializeAws_restJson1UpdateStageCommand
|
|
156
181
|
*/
|
|
@@ -159,6 +184,10 @@ export declare const se_UpdateStageCommand: (input: UpdateStageCommandInput, con
|
|
|
159
184
|
* deserializeAws_restJson1CreateEncoderConfigurationCommand
|
|
160
185
|
*/
|
|
161
186
|
export declare const de_CreateEncoderConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateEncoderConfigurationCommandOutput>;
|
|
187
|
+
/**
|
|
188
|
+
* deserializeAws_restJson1CreateIngestConfigurationCommand
|
|
189
|
+
*/
|
|
190
|
+
export declare const de_CreateIngestConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateIngestConfigurationCommandOutput>;
|
|
162
191
|
/**
|
|
163
192
|
* deserializeAws_restJson1CreateParticipantTokenCommand
|
|
164
193
|
*/
|
|
@@ -175,6 +204,10 @@ export declare const de_CreateStorageConfigurationCommand: (output: __HttpRespon
|
|
|
175
204
|
* deserializeAws_restJson1DeleteEncoderConfigurationCommand
|
|
176
205
|
*/
|
|
177
206
|
export declare const de_DeleteEncoderConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteEncoderConfigurationCommandOutput>;
|
|
207
|
+
/**
|
|
208
|
+
* deserializeAws_restJson1DeleteIngestConfigurationCommand
|
|
209
|
+
*/
|
|
210
|
+
export declare const de_DeleteIngestConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteIngestConfigurationCommandOutput>;
|
|
178
211
|
/**
|
|
179
212
|
* deserializeAws_restJson1DeletePublicKeyCommand
|
|
180
213
|
*/
|
|
@@ -199,6 +232,10 @@ export declare const de_GetCompositionCommand: (output: __HttpResponse, context:
|
|
|
199
232
|
* deserializeAws_restJson1GetEncoderConfigurationCommand
|
|
200
233
|
*/
|
|
201
234
|
export declare const de_GetEncoderConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEncoderConfigurationCommandOutput>;
|
|
235
|
+
/**
|
|
236
|
+
* deserializeAws_restJson1GetIngestConfigurationCommand
|
|
237
|
+
*/
|
|
238
|
+
export declare const de_GetIngestConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetIngestConfigurationCommandOutput>;
|
|
202
239
|
/**
|
|
203
240
|
* deserializeAws_restJson1GetParticipantCommand
|
|
204
241
|
*/
|
|
@@ -231,6 +268,10 @@ export declare const de_ListCompositionsCommand: (output: __HttpResponse, contex
|
|
|
231
268
|
* deserializeAws_restJson1ListEncoderConfigurationsCommand
|
|
232
269
|
*/
|
|
233
270
|
export declare const de_ListEncoderConfigurationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEncoderConfigurationsCommandOutput>;
|
|
271
|
+
/**
|
|
272
|
+
* deserializeAws_restJson1ListIngestConfigurationsCommand
|
|
273
|
+
*/
|
|
274
|
+
export declare const de_ListIngestConfigurationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListIngestConfigurationsCommandOutput>;
|
|
234
275
|
/**
|
|
235
276
|
* deserializeAws_restJson1ListParticipantEventsCommand
|
|
236
277
|
*/
|
|
@@ -275,6 +316,10 @@ export declare const de_TagResourceCommand: (output: __HttpResponse, context: __
|
|
|
275
316
|
* deserializeAws_restJson1UntagResourceCommand
|
|
276
317
|
*/
|
|
277
318
|
export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
319
|
+
/**
|
|
320
|
+
* deserializeAws_restJson1UpdateIngestConfigurationCommand
|
|
321
|
+
*/
|
|
322
|
+
export declare const de_UpdateIngestConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateIngestConfigurationCommandOutput>;
|
|
278
323
|
/**
|
|
279
324
|
* deserializeAws_restJson1UpdateStageCommand
|
|
280
325
|
*/
|
|
@@ -3,6 +3,10 @@ import {
|
|
|
3
3
|
CreateEncoderConfigurationCommandInput,
|
|
4
4
|
CreateEncoderConfigurationCommandOutput,
|
|
5
5
|
} from "./commands/CreateEncoderConfigurationCommand";
|
|
6
|
+
import {
|
|
7
|
+
CreateIngestConfigurationCommandInput,
|
|
8
|
+
CreateIngestConfigurationCommandOutput,
|
|
9
|
+
} from "./commands/CreateIngestConfigurationCommand";
|
|
6
10
|
import {
|
|
7
11
|
CreateParticipantTokenCommandInput,
|
|
8
12
|
CreateParticipantTokenCommandOutput,
|
|
@@ -19,6 +23,10 @@ import {
|
|
|
19
23
|
DeleteEncoderConfigurationCommandInput,
|
|
20
24
|
DeleteEncoderConfigurationCommandOutput,
|
|
21
25
|
} from "./commands/DeleteEncoderConfigurationCommand";
|
|
26
|
+
import {
|
|
27
|
+
DeleteIngestConfigurationCommandInput,
|
|
28
|
+
DeleteIngestConfigurationCommandOutput,
|
|
29
|
+
} from "./commands/DeleteIngestConfigurationCommand";
|
|
22
30
|
import {
|
|
23
31
|
DeletePublicKeyCommandInput,
|
|
24
32
|
DeletePublicKeyCommandOutput,
|
|
@@ -43,6 +51,10 @@ import {
|
|
|
43
51
|
GetEncoderConfigurationCommandInput,
|
|
44
52
|
GetEncoderConfigurationCommandOutput,
|
|
45
53
|
} from "./commands/GetEncoderConfigurationCommand";
|
|
54
|
+
import {
|
|
55
|
+
GetIngestConfigurationCommandInput,
|
|
56
|
+
GetIngestConfigurationCommandOutput,
|
|
57
|
+
} from "./commands/GetIngestConfigurationCommand";
|
|
46
58
|
import {
|
|
47
59
|
GetParticipantCommandInput,
|
|
48
60
|
GetParticipantCommandOutput,
|
|
@@ -75,6 +87,10 @@ import {
|
|
|
75
87
|
ListEncoderConfigurationsCommandInput,
|
|
76
88
|
ListEncoderConfigurationsCommandOutput,
|
|
77
89
|
} from "./commands/ListEncoderConfigurationsCommand";
|
|
90
|
+
import {
|
|
91
|
+
ListIngestConfigurationsCommandInput,
|
|
92
|
+
ListIngestConfigurationsCommandOutput,
|
|
93
|
+
} from "./commands/ListIngestConfigurationsCommand";
|
|
78
94
|
import {
|
|
79
95
|
ListParticipantEventsCommandInput,
|
|
80
96
|
ListParticipantEventsCommandOutput,
|
|
@@ -119,6 +135,10 @@ import {
|
|
|
119
135
|
UntagResourceCommandInput,
|
|
120
136
|
UntagResourceCommandOutput,
|
|
121
137
|
} from "./commands/UntagResourceCommand";
|
|
138
|
+
import {
|
|
139
|
+
UpdateIngestConfigurationCommandInput,
|
|
140
|
+
UpdateIngestConfigurationCommandOutput,
|
|
141
|
+
} from "./commands/UpdateIngestConfigurationCommand";
|
|
122
142
|
import {
|
|
123
143
|
UpdateStageCommandInput,
|
|
124
144
|
UpdateStageCommandOutput,
|
|
@@ -139,6 +159,19 @@ export interface IVSRealTime {
|
|
|
139
159
|
options: __HttpHandlerOptions,
|
|
140
160
|
cb: (err: any, data?: CreateEncoderConfigurationCommandOutput) => void
|
|
141
161
|
): void;
|
|
162
|
+
createIngestConfiguration(
|
|
163
|
+
args: CreateIngestConfigurationCommandInput,
|
|
164
|
+
options?: __HttpHandlerOptions
|
|
165
|
+
): Promise<CreateIngestConfigurationCommandOutput>;
|
|
166
|
+
createIngestConfiguration(
|
|
167
|
+
args: CreateIngestConfigurationCommandInput,
|
|
168
|
+
cb: (err: any, data?: CreateIngestConfigurationCommandOutput) => void
|
|
169
|
+
): void;
|
|
170
|
+
createIngestConfiguration(
|
|
171
|
+
args: CreateIngestConfigurationCommandInput,
|
|
172
|
+
options: __HttpHandlerOptions,
|
|
173
|
+
cb: (err: any, data?: CreateIngestConfigurationCommandOutput) => void
|
|
174
|
+
): void;
|
|
142
175
|
createParticipantToken(
|
|
143
176
|
args: CreateParticipantTokenCommandInput,
|
|
144
177
|
options?: __HttpHandlerOptions
|
|
@@ -192,6 +225,19 @@ export interface IVSRealTime {
|
|
|
192
225
|
options: __HttpHandlerOptions,
|
|
193
226
|
cb: (err: any, data?: DeleteEncoderConfigurationCommandOutput) => void
|
|
194
227
|
): void;
|
|
228
|
+
deleteIngestConfiguration(
|
|
229
|
+
args: DeleteIngestConfigurationCommandInput,
|
|
230
|
+
options?: __HttpHandlerOptions
|
|
231
|
+
): Promise<DeleteIngestConfigurationCommandOutput>;
|
|
232
|
+
deleteIngestConfiguration(
|
|
233
|
+
args: DeleteIngestConfigurationCommandInput,
|
|
234
|
+
cb: (err: any, data?: DeleteIngestConfigurationCommandOutput) => void
|
|
235
|
+
): void;
|
|
236
|
+
deleteIngestConfiguration(
|
|
237
|
+
args: DeleteIngestConfigurationCommandInput,
|
|
238
|
+
options: __HttpHandlerOptions,
|
|
239
|
+
cb: (err: any, data?: DeleteIngestConfigurationCommandOutput) => void
|
|
240
|
+
): void;
|
|
195
241
|
deletePublicKey(
|
|
196
242
|
args: DeletePublicKeyCommandInput,
|
|
197
243
|
options?: __HttpHandlerOptions
|
|
@@ -270,6 +316,19 @@ export interface IVSRealTime {
|
|
|
270
316
|
options: __HttpHandlerOptions,
|
|
271
317
|
cb: (err: any, data?: GetEncoderConfigurationCommandOutput) => void
|
|
272
318
|
): void;
|
|
319
|
+
getIngestConfiguration(
|
|
320
|
+
args: GetIngestConfigurationCommandInput,
|
|
321
|
+
options?: __HttpHandlerOptions
|
|
322
|
+
): Promise<GetIngestConfigurationCommandOutput>;
|
|
323
|
+
getIngestConfiguration(
|
|
324
|
+
args: GetIngestConfigurationCommandInput,
|
|
325
|
+
cb: (err: any, data?: GetIngestConfigurationCommandOutput) => void
|
|
326
|
+
): void;
|
|
327
|
+
getIngestConfiguration(
|
|
328
|
+
args: GetIngestConfigurationCommandInput,
|
|
329
|
+
options: __HttpHandlerOptions,
|
|
330
|
+
cb: (err: any, data?: GetIngestConfigurationCommandOutput) => void
|
|
331
|
+
): void;
|
|
273
332
|
getParticipant(
|
|
274
333
|
args: GetParticipantCommandInput,
|
|
275
334
|
options?: __HttpHandlerOptions
|
|
@@ -376,6 +435,20 @@ export interface IVSRealTime {
|
|
|
376
435
|
options: __HttpHandlerOptions,
|
|
377
436
|
cb: (err: any, data?: ListEncoderConfigurationsCommandOutput) => void
|
|
378
437
|
): void;
|
|
438
|
+
listIngestConfigurations(): Promise<ListIngestConfigurationsCommandOutput>;
|
|
439
|
+
listIngestConfigurations(
|
|
440
|
+
args: ListIngestConfigurationsCommandInput,
|
|
441
|
+
options?: __HttpHandlerOptions
|
|
442
|
+
): Promise<ListIngestConfigurationsCommandOutput>;
|
|
443
|
+
listIngestConfigurations(
|
|
444
|
+
args: ListIngestConfigurationsCommandInput,
|
|
445
|
+
cb: (err: any, data?: ListIngestConfigurationsCommandOutput) => void
|
|
446
|
+
): void;
|
|
447
|
+
listIngestConfigurations(
|
|
448
|
+
args: ListIngestConfigurationsCommandInput,
|
|
449
|
+
options: __HttpHandlerOptions,
|
|
450
|
+
cb: (err: any, data?: ListIngestConfigurationsCommandOutput) => void
|
|
451
|
+
): void;
|
|
379
452
|
listParticipantEvents(
|
|
380
453
|
args: ListParticipantEventsCommandInput,
|
|
381
454
|
options?: __HttpHandlerOptions
|
|
@@ -522,6 +595,19 @@ export interface IVSRealTime {
|
|
|
522
595
|
options: __HttpHandlerOptions,
|
|
523
596
|
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
524
597
|
): void;
|
|
598
|
+
updateIngestConfiguration(
|
|
599
|
+
args: UpdateIngestConfigurationCommandInput,
|
|
600
|
+
options?: __HttpHandlerOptions
|
|
601
|
+
): Promise<UpdateIngestConfigurationCommandOutput>;
|
|
602
|
+
updateIngestConfiguration(
|
|
603
|
+
args: UpdateIngestConfigurationCommandInput,
|
|
604
|
+
cb: (err: any, data?: UpdateIngestConfigurationCommandOutput) => void
|
|
605
|
+
): void;
|
|
606
|
+
updateIngestConfiguration(
|
|
607
|
+
args: UpdateIngestConfigurationCommandInput,
|
|
608
|
+
options: __HttpHandlerOptions,
|
|
609
|
+
cb: (err: any, data?: UpdateIngestConfigurationCommandOutput) => void
|
|
610
|
+
): void;
|
|
525
611
|
updateStage(
|
|
526
612
|
args: UpdateStageCommandInput,
|
|
527
613
|
options?: __HttpHandlerOptions
|
|
@@ -49,6 +49,10 @@ import {
|
|
|
49
49
|
CreateEncoderConfigurationCommandInput,
|
|
50
50
|
CreateEncoderConfigurationCommandOutput,
|
|
51
51
|
} from "./commands/CreateEncoderConfigurationCommand";
|
|
52
|
+
import {
|
|
53
|
+
CreateIngestConfigurationCommandInput,
|
|
54
|
+
CreateIngestConfigurationCommandOutput,
|
|
55
|
+
} from "./commands/CreateIngestConfigurationCommand";
|
|
52
56
|
import {
|
|
53
57
|
CreateParticipantTokenCommandInput,
|
|
54
58
|
CreateParticipantTokenCommandOutput,
|
|
@@ -65,6 +69,10 @@ import {
|
|
|
65
69
|
DeleteEncoderConfigurationCommandInput,
|
|
66
70
|
DeleteEncoderConfigurationCommandOutput,
|
|
67
71
|
} from "./commands/DeleteEncoderConfigurationCommand";
|
|
72
|
+
import {
|
|
73
|
+
DeleteIngestConfigurationCommandInput,
|
|
74
|
+
DeleteIngestConfigurationCommandOutput,
|
|
75
|
+
} from "./commands/DeleteIngestConfigurationCommand";
|
|
68
76
|
import {
|
|
69
77
|
DeletePublicKeyCommandInput,
|
|
70
78
|
DeletePublicKeyCommandOutput,
|
|
@@ -89,6 +97,10 @@ import {
|
|
|
89
97
|
GetEncoderConfigurationCommandInput,
|
|
90
98
|
GetEncoderConfigurationCommandOutput,
|
|
91
99
|
} from "./commands/GetEncoderConfigurationCommand";
|
|
100
|
+
import {
|
|
101
|
+
GetIngestConfigurationCommandInput,
|
|
102
|
+
GetIngestConfigurationCommandOutput,
|
|
103
|
+
} from "./commands/GetIngestConfigurationCommand";
|
|
92
104
|
import {
|
|
93
105
|
GetParticipantCommandInput,
|
|
94
106
|
GetParticipantCommandOutput,
|
|
@@ -121,6 +133,10 @@ import {
|
|
|
121
133
|
ListEncoderConfigurationsCommandInput,
|
|
122
134
|
ListEncoderConfigurationsCommandOutput,
|
|
123
135
|
} from "./commands/ListEncoderConfigurationsCommand";
|
|
136
|
+
import {
|
|
137
|
+
ListIngestConfigurationsCommandInput,
|
|
138
|
+
ListIngestConfigurationsCommandOutput,
|
|
139
|
+
} from "./commands/ListIngestConfigurationsCommand";
|
|
124
140
|
import {
|
|
125
141
|
ListParticipantEventsCommandInput,
|
|
126
142
|
ListParticipantEventsCommandOutput,
|
|
@@ -165,6 +181,10 @@ import {
|
|
|
165
181
|
UntagResourceCommandInput,
|
|
166
182
|
UntagResourceCommandOutput,
|
|
167
183
|
} from "./commands/UntagResourceCommand";
|
|
184
|
+
import {
|
|
185
|
+
UpdateIngestConfigurationCommandInput,
|
|
186
|
+
UpdateIngestConfigurationCommandOutput,
|
|
187
|
+
} from "./commands/UpdateIngestConfigurationCommand";
|
|
168
188
|
import {
|
|
169
189
|
UpdateStageCommandInput,
|
|
170
190
|
UpdateStageCommandOutput,
|
|
@@ -178,16 +198,19 @@ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
|
178
198
|
export { __Client };
|
|
179
199
|
export type ServiceInputTypes =
|
|
180
200
|
| CreateEncoderConfigurationCommandInput
|
|
201
|
+
| CreateIngestConfigurationCommandInput
|
|
181
202
|
| CreateParticipantTokenCommandInput
|
|
182
203
|
| CreateStageCommandInput
|
|
183
204
|
| CreateStorageConfigurationCommandInput
|
|
184
205
|
| DeleteEncoderConfigurationCommandInput
|
|
206
|
+
| DeleteIngestConfigurationCommandInput
|
|
185
207
|
| DeletePublicKeyCommandInput
|
|
186
208
|
| DeleteStageCommandInput
|
|
187
209
|
| DeleteStorageConfigurationCommandInput
|
|
188
210
|
| DisconnectParticipantCommandInput
|
|
189
211
|
| GetCompositionCommandInput
|
|
190
212
|
| GetEncoderConfigurationCommandInput
|
|
213
|
+
| GetIngestConfigurationCommandInput
|
|
191
214
|
| GetParticipantCommandInput
|
|
192
215
|
| GetPublicKeyCommandInput
|
|
193
216
|
| GetStageCommandInput
|
|
@@ -196,6 +219,7 @@ export type ServiceInputTypes =
|
|
|
196
219
|
| ImportPublicKeyCommandInput
|
|
197
220
|
| ListCompositionsCommandInput
|
|
198
221
|
| ListEncoderConfigurationsCommandInput
|
|
222
|
+
| ListIngestConfigurationsCommandInput
|
|
199
223
|
| ListParticipantEventsCommandInput
|
|
200
224
|
| ListParticipantsCommandInput
|
|
201
225
|
| ListPublicKeysCommandInput
|
|
@@ -207,19 +231,23 @@ export type ServiceInputTypes =
|
|
|
207
231
|
| StopCompositionCommandInput
|
|
208
232
|
| TagResourceCommandInput
|
|
209
233
|
| UntagResourceCommandInput
|
|
234
|
+
| UpdateIngestConfigurationCommandInput
|
|
210
235
|
| UpdateStageCommandInput;
|
|
211
236
|
export type ServiceOutputTypes =
|
|
212
237
|
| CreateEncoderConfigurationCommandOutput
|
|
238
|
+
| CreateIngestConfigurationCommandOutput
|
|
213
239
|
| CreateParticipantTokenCommandOutput
|
|
214
240
|
| CreateStageCommandOutput
|
|
215
241
|
| CreateStorageConfigurationCommandOutput
|
|
216
242
|
| DeleteEncoderConfigurationCommandOutput
|
|
243
|
+
| DeleteIngestConfigurationCommandOutput
|
|
217
244
|
| DeletePublicKeyCommandOutput
|
|
218
245
|
| DeleteStageCommandOutput
|
|
219
246
|
| DeleteStorageConfigurationCommandOutput
|
|
220
247
|
| DisconnectParticipantCommandOutput
|
|
221
248
|
| GetCompositionCommandOutput
|
|
222
249
|
| GetEncoderConfigurationCommandOutput
|
|
250
|
+
| GetIngestConfigurationCommandOutput
|
|
223
251
|
| GetParticipantCommandOutput
|
|
224
252
|
| GetPublicKeyCommandOutput
|
|
225
253
|
| GetStageCommandOutput
|
|
@@ -228,6 +256,7 @@ export type ServiceOutputTypes =
|
|
|
228
256
|
| ImportPublicKeyCommandOutput
|
|
229
257
|
| ListCompositionsCommandOutput
|
|
230
258
|
| ListEncoderConfigurationsCommandOutput
|
|
259
|
+
| ListIngestConfigurationsCommandOutput
|
|
231
260
|
| ListParticipantEventsCommandOutput
|
|
232
261
|
| ListParticipantsCommandOutput
|
|
233
262
|
| ListPublicKeysCommandOutput
|
|
@@ -239,6 +268,7 @@ export type ServiceOutputTypes =
|
|
|
239
268
|
| StopCompositionCommandOutput
|
|
240
269
|
| TagResourceCommandOutput
|
|
241
270
|
| UntagResourceCommandOutput
|
|
271
|
+
| UpdateIngestConfigurationCommandOutput
|
|
242
272
|
| UpdateStageCommandOutput;
|
|
243
273
|
export interface ClientDefaults
|
|
244
274
|
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
IVSRealTimeClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../IVSRealTimeClient";
|
|
8
|
+
import {
|
|
9
|
+
CreateIngestConfigurationRequest,
|
|
10
|
+
CreateIngestConfigurationResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateIngestConfigurationCommandInput
|
|
15
|
+
extends CreateIngestConfigurationRequest {}
|
|
16
|
+
export interface CreateIngestConfigurationCommandOutput
|
|
17
|
+
extends CreateIngestConfigurationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateIngestConfigurationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateIngestConfigurationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateIngestConfigurationCommandInput,
|
|
24
|
+
CreateIngestConfigurationCommandOutput,
|
|
25
|
+
IVSRealTimeClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: CreateIngestConfigurationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateIngestConfigurationCommandInput,
|
|
33
|
+
CreateIngestConfigurationCommandOutput,
|
|
34
|
+
IVSRealTimeClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateIngestConfigurationCommand extends CreateIngestConfigurationCommand_base {}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
IVSRealTimeClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../IVSRealTimeClient";
|
|
8
|
+
import {
|
|
9
|
+
DeleteIngestConfigurationRequest,
|
|
10
|
+
DeleteIngestConfigurationResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteIngestConfigurationCommandInput
|
|
15
|
+
extends DeleteIngestConfigurationRequest {}
|
|
16
|
+
export interface DeleteIngestConfigurationCommandOutput
|
|
17
|
+
extends DeleteIngestConfigurationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteIngestConfigurationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteIngestConfigurationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DeleteIngestConfigurationCommandInput,
|
|
24
|
+
DeleteIngestConfigurationCommandOutput,
|
|
25
|
+
IVSRealTimeClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: DeleteIngestConfigurationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DeleteIngestConfigurationCommandInput,
|
|
33
|
+
DeleteIngestConfigurationCommandOutput,
|
|
34
|
+
IVSRealTimeClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DeleteIngestConfigurationCommand extends DeleteIngestConfigurationCommand_base {}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
IVSRealTimeClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../IVSRealTimeClient";
|
|
8
|
+
import {
|
|
9
|
+
GetIngestConfigurationRequest,
|
|
10
|
+
GetIngestConfigurationResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetIngestConfigurationCommandInput
|
|
15
|
+
extends GetIngestConfigurationRequest {}
|
|
16
|
+
export interface GetIngestConfigurationCommandOutput
|
|
17
|
+
extends GetIngestConfigurationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetIngestConfigurationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetIngestConfigurationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetIngestConfigurationCommandInput,
|
|
24
|
+
GetIngestConfigurationCommandOutput,
|
|
25
|
+
IVSRealTimeClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: GetIngestConfigurationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetIngestConfigurationCommandInput,
|
|
33
|
+
GetIngestConfigurationCommandOutput,
|
|
34
|
+
IVSRealTimeClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetIngestConfigurationCommand extends GetIngestConfigurationCommand_base {}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
IVSRealTimeClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../IVSRealTimeClient";
|
|
8
|
+
import {
|
|
9
|
+
ListIngestConfigurationsRequest,
|
|
10
|
+
ListIngestConfigurationsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListIngestConfigurationsCommandInput
|
|
15
|
+
extends ListIngestConfigurationsRequest {}
|
|
16
|
+
export interface ListIngestConfigurationsCommandOutput
|
|
17
|
+
extends ListIngestConfigurationsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListIngestConfigurationsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListIngestConfigurationsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListIngestConfigurationsCommandInput,
|
|
24
|
+
ListIngestConfigurationsCommandOutput,
|
|
25
|
+
IVSRealTimeClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [ListIngestConfigurationsCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListIngestConfigurationsCommandInput,
|
|
33
|
+
ListIngestConfigurationsCommandOutput,
|
|
34
|
+
IVSRealTimeClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListIngestConfigurationsCommand extends ListIngestConfigurationsCommand_base {}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
IVSRealTimeClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../IVSRealTimeClient";
|
|
8
|
+
import {
|
|
9
|
+
UpdateIngestConfigurationRequest,
|
|
10
|
+
UpdateIngestConfigurationResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdateIngestConfigurationCommandInput
|
|
15
|
+
extends UpdateIngestConfigurationRequest {}
|
|
16
|
+
export interface UpdateIngestConfigurationCommandOutput
|
|
17
|
+
extends UpdateIngestConfigurationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const UpdateIngestConfigurationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: UpdateIngestConfigurationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
UpdateIngestConfigurationCommandInput,
|
|
24
|
+
UpdateIngestConfigurationCommandOutput,
|
|
25
|
+
IVSRealTimeClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: UpdateIngestConfigurationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
UpdateIngestConfigurationCommandInput,
|
|
33
|
+
UpdateIngestConfigurationCommandOutput,
|
|
34
|
+
IVSRealTimeClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class UpdateIngestConfigurationCommand extends UpdateIngestConfigurationCommand_base {}
|
|
@@ -1,14 +1,17 @@
|
|
|
1
1
|
export * from "./CreateEncoderConfigurationCommand";
|
|
2
|
+
export * from "./CreateIngestConfigurationCommand";
|
|
2
3
|
export * from "./CreateParticipantTokenCommand";
|
|
3
4
|
export * from "./CreateStageCommand";
|
|
4
5
|
export * from "./CreateStorageConfigurationCommand";
|
|
5
6
|
export * from "./DeleteEncoderConfigurationCommand";
|
|
7
|
+
export * from "./DeleteIngestConfigurationCommand";
|
|
6
8
|
export * from "./DeletePublicKeyCommand";
|
|
7
9
|
export * from "./DeleteStageCommand";
|
|
8
10
|
export * from "./DeleteStorageConfigurationCommand";
|
|
9
11
|
export * from "./DisconnectParticipantCommand";
|
|
10
12
|
export * from "./GetCompositionCommand";
|
|
11
13
|
export * from "./GetEncoderConfigurationCommand";
|
|
14
|
+
export * from "./GetIngestConfigurationCommand";
|
|
12
15
|
export * from "./GetParticipantCommand";
|
|
13
16
|
export * from "./GetPublicKeyCommand";
|
|
14
17
|
export * from "./GetStageCommand";
|
|
@@ -17,6 +20,7 @@ export * from "./GetStorageConfigurationCommand";
|
|
|
17
20
|
export * from "./ImportPublicKeyCommand";
|
|
18
21
|
export * from "./ListCompositionsCommand";
|
|
19
22
|
export * from "./ListEncoderConfigurationsCommand";
|
|
23
|
+
export * from "./ListIngestConfigurationsCommand";
|
|
20
24
|
export * from "./ListParticipantEventsCommand";
|
|
21
25
|
export * from "./ListParticipantsCommand";
|
|
22
26
|
export * from "./ListPublicKeysCommand";
|
|
@@ -28,4 +32,5 @@ export * from "./StartCompositionCommand";
|
|
|
28
32
|
export * from "./StopCompositionCommand";
|
|
29
33
|
export * from "./TagResourceCommand";
|
|
30
34
|
export * from "./UntagResourceCommand";
|
|
35
|
+
export * from "./UpdateIngestConfigurationCommand";
|
|
31
36
|
export * from "./UpdateStageCommand";
|