@aws-sdk/client-ivs-realtime 3.600.0 → 3.605.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 +49 -170
- package/dist-cjs/index.js +230 -0
- package/dist-es/IVSRealTime.js +8 -0
- package/dist-es/commands/DeletePublicKeyCommand.js +24 -0
- package/dist-es/commands/GetPublicKeyCommand.js +24 -0
- package/dist-es/commands/ImportPublicKeyCommand.js +24 -0
- package/dist-es/commands/ListPublicKeysCommand.js +24 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/models_0.js +19 -0
- package/dist-es/pagination/ListPublicKeysPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +115 -0
- package/dist-types/IVSRealTime.d.ts +53 -177
- package/dist-types/IVSRealTimeClient.d.ts +30 -179
- package/dist-types/commands/CreateStageCommand.d.ts +16 -0
- package/dist-types/commands/DeletePublicKeyCommand.d.ts +75 -0
- package/dist-types/commands/GetParticipantCommand.d.ts +3 -0
- package/dist-types/commands/GetPublicKeyCommand.d.ts +77 -0
- package/dist-types/commands/GetStageCommand.d.ts +10 -0
- package/dist-types/commands/ImportPublicKeyCommand.d.ts +87 -0
- package/dist-types/commands/ListParticipantsCommand.d.ts +2 -0
- package/dist-types/commands/ListPublicKeysCommand.d.ts +76 -0
- package/dist-types/commands/UpdateStageCommand.d.ts +16 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/index.d.ts +24 -177
- package/dist-types/models/models_0.d.ts +305 -22
- package/dist-types/pagination/ListPublicKeysPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +36 -0
- package/dist-types/ts3.4/IVSRealTime.d.ts +69 -0
- package/dist-types/ts3.4/IVSRealTimeClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/DeletePublicKeyCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetPublicKeyCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/ImportPublicKeyCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListPublicKeysCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +80 -0
- package/dist-types/ts3.4/pagination/ListPublicKeysPaginator.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 +48 -0
- package/package.json +1 -1
|
@@ -19,6 +19,10 @@ import {
|
|
|
19
19
|
DeleteEncoderConfigurationCommandInput,
|
|
20
20
|
DeleteEncoderConfigurationCommandOutput,
|
|
21
21
|
} from "./commands/DeleteEncoderConfigurationCommand";
|
|
22
|
+
import {
|
|
23
|
+
DeletePublicKeyCommandInput,
|
|
24
|
+
DeletePublicKeyCommandOutput,
|
|
25
|
+
} from "./commands/DeletePublicKeyCommand";
|
|
22
26
|
import {
|
|
23
27
|
DeleteStageCommandInput,
|
|
24
28
|
DeleteStageCommandOutput,
|
|
@@ -43,6 +47,10 @@ import {
|
|
|
43
47
|
GetParticipantCommandInput,
|
|
44
48
|
GetParticipantCommandOutput,
|
|
45
49
|
} from "./commands/GetParticipantCommand";
|
|
50
|
+
import {
|
|
51
|
+
GetPublicKeyCommandInput,
|
|
52
|
+
GetPublicKeyCommandOutput,
|
|
53
|
+
} from "./commands/GetPublicKeyCommand";
|
|
46
54
|
import {
|
|
47
55
|
GetStageCommandInput,
|
|
48
56
|
GetStageCommandOutput,
|
|
@@ -55,6 +63,10 @@ import {
|
|
|
55
63
|
GetStorageConfigurationCommandInput,
|
|
56
64
|
GetStorageConfigurationCommandOutput,
|
|
57
65
|
} from "./commands/GetStorageConfigurationCommand";
|
|
66
|
+
import {
|
|
67
|
+
ImportPublicKeyCommandInput,
|
|
68
|
+
ImportPublicKeyCommandOutput,
|
|
69
|
+
} from "./commands/ImportPublicKeyCommand";
|
|
58
70
|
import {
|
|
59
71
|
ListCompositionsCommandInput,
|
|
60
72
|
ListCompositionsCommandOutput,
|
|
@@ -71,6 +83,10 @@ import {
|
|
|
71
83
|
ListParticipantsCommandInput,
|
|
72
84
|
ListParticipantsCommandOutput,
|
|
73
85
|
} from "./commands/ListParticipantsCommand";
|
|
86
|
+
import {
|
|
87
|
+
ListPublicKeysCommandInput,
|
|
88
|
+
ListPublicKeysCommandOutput,
|
|
89
|
+
} from "./commands/ListPublicKeysCommand";
|
|
74
90
|
import {
|
|
75
91
|
ListStagesCommandInput,
|
|
76
92
|
ListStagesCommandOutput,
|
|
@@ -176,6 +192,19 @@ export interface IVSRealTime {
|
|
|
176
192
|
options: __HttpHandlerOptions,
|
|
177
193
|
cb: (err: any, data?: DeleteEncoderConfigurationCommandOutput) => void
|
|
178
194
|
): void;
|
|
195
|
+
deletePublicKey(
|
|
196
|
+
args: DeletePublicKeyCommandInput,
|
|
197
|
+
options?: __HttpHandlerOptions
|
|
198
|
+
): Promise<DeletePublicKeyCommandOutput>;
|
|
199
|
+
deletePublicKey(
|
|
200
|
+
args: DeletePublicKeyCommandInput,
|
|
201
|
+
cb: (err: any, data?: DeletePublicKeyCommandOutput) => void
|
|
202
|
+
): void;
|
|
203
|
+
deletePublicKey(
|
|
204
|
+
args: DeletePublicKeyCommandInput,
|
|
205
|
+
options: __HttpHandlerOptions,
|
|
206
|
+
cb: (err: any, data?: DeletePublicKeyCommandOutput) => void
|
|
207
|
+
): void;
|
|
179
208
|
deleteStage(
|
|
180
209
|
args: DeleteStageCommandInput,
|
|
181
210
|
options?: __HttpHandlerOptions
|
|
@@ -254,6 +283,19 @@ export interface IVSRealTime {
|
|
|
254
283
|
options: __HttpHandlerOptions,
|
|
255
284
|
cb: (err: any, data?: GetParticipantCommandOutput) => void
|
|
256
285
|
): void;
|
|
286
|
+
getPublicKey(
|
|
287
|
+
args: GetPublicKeyCommandInput,
|
|
288
|
+
options?: __HttpHandlerOptions
|
|
289
|
+
): Promise<GetPublicKeyCommandOutput>;
|
|
290
|
+
getPublicKey(
|
|
291
|
+
args: GetPublicKeyCommandInput,
|
|
292
|
+
cb: (err: any, data?: GetPublicKeyCommandOutput) => void
|
|
293
|
+
): void;
|
|
294
|
+
getPublicKey(
|
|
295
|
+
args: GetPublicKeyCommandInput,
|
|
296
|
+
options: __HttpHandlerOptions,
|
|
297
|
+
cb: (err: any, data?: GetPublicKeyCommandOutput) => void
|
|
298
|
+
): void;
|
|
257
299
|
getStage(
|
|
258
300
|
args: GetStageCommandInput,
|
|
259
301
|
options?: __HttpHandlerOptions
|
|
@@ -293,6 +335,19 @@ export interface IVSRealTime {
|
|
|
293
335
|
options: __HttpHandlerOptions,
|
|
294
336
|
cb: (err: any, data?: GetStorageConfigurationCommandOutput) => void
|
|
295
337
|
): void;
|
|
338
|
+
importPublicKey(
|
|
339
|
+
args: ImportPublicKeyCommandInput,
|
|
340
|
+
options?: __HttpHandlerOptions
|
|
341
|
+
): Promise<ImportPublicKeyCommandOutput>;
|
|
342
|
+
importPublicKey(
|
|
343
|
+
args: ImportPublicKeyCommandInput,
|
|
344
|
+
cb: (err: any, data?: ImportPublicKeyCommandOutput) => void
|
|
345
|
+
): void;
|
|
346
|
+
importPublicKey(
|
|
347
|
+
args: ImportPublicKeyCommandInput,
|
|
348
|
+
options: __HttpHandlerOptions,
|
|
349
|
+
cb: (err: any, data?: ImportPublicKeyCommandOutput) => void
|
|
350
|
+
): void;
|
|
296
351
|
listCompositions(): Promise<ListCompositionsCommandOutput>;
|
|
297
352
|
listCompositions(
|
|
298
353
|
args: ListCompositionsCommandInput,
|
|
@@ -347,6 +402,20 @@ export interface IVSRealTime {
|
|
|
347
402
|
options: __HttpHandlerOptions,
|
|
348
403
|
cb: (err: any, data?: ListParticipantsCommandOutput) => void
|
|
349
404
|
): void;
|
|
405
|
+
listPublicKeys(): Promise<ListPublicKeysCommandOutput>;
|
|
406
|
+
listPublicKeys(
|
|
407
|
+
args: ListPublicKeysCommandInput,
|
|
408
|
+
options?: __HttpHandlerOptions
|
|
409
|
+
): Promise<ListPublicKeysCommandOutput>;
|
|
410
|
+
listPublicKeys(
|
|
411
|
+
args: ListPublicKeysCommandInput,
|
|
412
|
+
cb: (err: any, data?: ListPublicKeysCommandOutput) => void
|
|
413
|
+
): void;
|
|
414
|
+
listPublicKeys(
|
|
415
|
+
args: ListPublicKeysCommandInput,
|
|
416
|
+
options: __HttpHandlerOptions,
|
|
417
|
+
cb: (err: any, data?: ListPublicKeysCommandOutput) => void
|
|
418
|
+
): void;
|
|
350
419
|
listStages(): Promise<ListStagesCommandOutput>;
|
|
351
420
|
listStages(
|
|
352
421
|
args: ListStagesCommandInput,
|
|
@@ -65,6 +65,10 @@ import {
|
|
|
65
65
|
DeleteEncoderConfigurationCommandInput,
|
|
66
66
|
DeleteEncoderConfigurationCommandOutput,
|
|
67
67
|
} from "./commands/DeleteEncoderConfigurationCommand";
|
|
68
|
+
import {
|
|
69
|
+
DeletePublicKeyCommandInput,
|
|
70
|
+
DeletePublicKeyCommandOutput,
|
|
71
|
+
} from "./commands/DeletePublicKeyCommand";
|
|
68
72
|
import {
|
|
69
73
|
DeleteStageCommandInput,
|
|
70
74
|
DeleteStageCommandOutput,
|
|
@@ -89,6 +93,10 @@ import {
|
|
|
89
93
|
GetParticipantCommandInput,
|
|
90
94
|
GetParticipantCommandOutput,
|
|
91
95
|
} from "./commands/GetParticipantCommand";
|
|
96
|
+
import {
|
|
97
|
+
GetPublicKeyCommandInput,
|
|
98
|
+
GetPublicKeyCommandOutput,
|
|
99
|
+
} from "./commands/GetPublicKeyCommand";
|
|
92
100
|
import {
|
|
93
101
|
GetStageCommandInput,
|
|
94
102
|
GetStageCommandOutput,
|
|
@@ -101,6 +109,10 @@ import {
|
|
|
101
109
|
GetStorageConfigurationCommandInput,
|
|
102
110
|
GetStorageConfigurationCommandOutput,
|
|
103
111
|
} from "./commands/GetStorageConfigurationCommand";
|
|
112
|
+
import {
|
|
113
|
+
ImportPublicKeyCommandInput,
|
|
114
|
+
ImportPublicKeyCommandOutput,
|
|
115
|
+
} from "./commands/ImportPublicKeyCommand";
|
|
104
116
|
import {
|
|
105
117
|
ListCompositionsCommandInput,
|
|
106
118
|
ListCompositionsCommandOutput,
|
|
@@ -117,6 +129,10 @@ import {
|
|
|
117
129
|
ListParticipantsCommandInput,
|
|
118
130
|
ListParticipantsCommandOutput,
|
|
119
131
|
} from "./commands/ListParticipantsCommand";
|
|
132
|
+
import {
|
|
133
|
+
ListPublicKeysCommandInput,
|
|
134
|
+
ListPublicKeysCommandOutput,
|
|
135
|
+
} from "./commands/ListPublicKeysCommand";
|
|
120
136
|
import {
|
|
121
137
|
ListStagesCommandInput,
|
|
122
138
|
ListStagesCommandOutput,
|
|
@@ -166,19 +182,23 @@ export type ServiceInputTypes =
|
|
|
166
182
|
| CreateStageCommandInput
|
|
167
183
|
| CreateStorageConfigurationCommandInput
|
|
168
184
|
| DeleteEncoderConfigurationCommandInput
|
|
185
|
+
| DeletePublicKeyCommandInput
|
|
169
186
|
| DeleteStageCommandInput
|
|
170
187
|
| DeleteStorageConfigurationCommandInput
|
|
171
188
|
| DisconnectParticipantCommandInput
|
|
172
189
|
| GetCompositionCommandInput
|
|
173
190
|
| GetEncoderConfigurationCommandInput
|
|
174
191
|
| GetParticipantCommandInput
|
|
192
|
+
| GetPublicKeyCommandInput
|
|
175
193
|
| GetStageCommandInput
|
|
176
194
|
| GetStageSessionCommandInput
|
|
177
195
|
| GetStorageConfigurationCommandInput
|
|
196
|
+
| ImportPublicKeyCommandInput
|
|
178
197
|
| ListCompositionsCommandInput
|
|
179
198
|
| ListEncoderConfigurationsCommandInput
|
|
180
199
|
| ListParticipantEventsCommandInput
|
|
181
200
|
| ListParticipantsCommandInput
|
|
201
|
+
| ListPublicKeysCommandInput
|
|
182
202
|
| ListStageSessionsCommandInput
|
|
183
203
|
| ListStagesCommandInput
|
|
184
204
|
| ListStorageConfigurationsCommandInput
|
|
@@ -194,19 +214,23 @@ export type ServiceOutputTypes =
|
|
|
194
214
|
| CreateStageCommandOutput
|
|
195
215
|
| CreateStorageConfigurationCommandOutput
|
|
196
216
|
| DeleteEncoderConfigurationCommandOutput
|
|
217
|
+
| DeletePublicKeyCommandOutput
|
|
197
218
|
| DeleteStageCommandOutput
|
|
198
219
|
| DeleteStorageConfigurationCommandOutput
|
|
199
220
|
| DisconnectParticipantCommandOutput
|
|
200
221
|
| GetCompositionCommandOutput
|
|
201
222
|
| GetEncoderConfigurationCommandOutput
|
|
202
223
|
| GetParticipantCommandOutput
|
|
224
|
+
| GetPublicKeyCommandOutput
|
|
203
225
|
| GetStageCommandOutput
|
|
204
226
|
| GetStageSessionCommandOutput
|
|
205
227
|
| GetStorageConfigurationCommandOutput
|
|
228
|
+
| ImportPublicKeyCommandOutput
|
|
206
229
|
| ListCompositionsCommandOutput
|
|
207
230
|
| ListEncoderConfigurationsCommandOutput
|
|
208
231
|
| ListParticipantEventsCommandOutput
|
|
209
232
|
| ListParticipantsCommandOutput
|
|
233
|
+
| ListPublicKeysCommandOutput
|
|
210
234
|
| ListStageSessionsCommandOutput
|
|
211
235
|
| ListStagesCommandOutput
|
|
212
236
|
| ListStorageConfigurationsCommandOutput
|
|
@@ -0,0 +1,39 @@
|
|
|
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
|
+
DeletePublicKeyRequest,
|
|
10
|
+
DeletePublicKeyResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeletePublicKeyCommandInput extends DeletePublicKeyRequest {}
|
|
15
|
+
export interface DeletePublicKeyCommandOutput
|
|
16
|
+
extends DeletePublicKeyResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const DeletePublicKeyCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: DeletePublicKeyCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
DeletePublicKeyCommandInput,
|
|
23
|
+
DeletePublicKeyCommandOutput,
|
|
24
|
+
IVSRealTimeClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: DeletePublicKeyCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
DeletePublicKeyCommandInput,
|
|
32
|
+
DeletePublicKeyCommandOutput,
|
|
33
|
+
IVSRealTimeClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class DeletePublicKeyCommand extends DeletePublicKeyCommand_base {}
|
|
@@ -0,0 +1,36 @@
|
|
|
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 { GetPublicKeyRequest, GetPublicKeyResponse } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface GetPublicKeyCommandInput extends GetPublicKeyRequest {}
|
|
12
|
+
export interface GetPublicKeyCommandOutput
|
|
13
|
+
extends GetPublicKeyResponse,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const GetPublicKeyCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: GetPublicKeyCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
GetPublicKeyCommandInput,
|
|
20
|
+
GetPublicKeyCommandOutput,
|
|
21
|
+
IVSRealTimeClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
__0_0: GetPublicKeyCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
GetPublicKeyCommandInput,
|
|
29
|
+
GetPublicKeyCommandOutput,
|
|
30
|
+
IVSRealTimeClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class GetPublicKeyCommand extends GetPublicKeyCommand_base {}
|
|
@@ -0,0 +1,39 @@
|
|
|
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
|
+
ImportPublicKeyRequest,
|
|
10
|
+
ImportPublicKeyResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ImportPublicKeyCommandInput extends ImportPublicKeyRequest {}
|
|
15
|
+
export interface ImportPublicKeyCommandOutput
|
|
16
|
+
extends ImportPublicKeyResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const ImportPublicKeyCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: ImportPublicKeyCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
ImportPublicKeyCommandInput,
|
|
23
|
+
ImportPublicKeyCommandOutput,
|
|
24
|
+
IVSRealTimeClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: ImportPublicKeyCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ImportPublicKeyCommandInput,
|
|
32
|
+
ImportPublicKeyCommandOutput,
|
|
33
|
+
IVSRealTimeClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class ImportPublicKeyCommand extends ImportPublicKeyCommand_base {}
|
|
@@ -0,0 +1,39 @@
|
|
|
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
|
+
ListPublicKeysRequest,
|
|
10
|
+
ListPublicKeysResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListPublicKeysCommandInput extends ListPublicKeysRequest {}
|
|
15
|
+
export interface ListPublicKeysCommandOutput
|
|
16
|
+
extends ListPublicKeysResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const ListPublicKeysCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: ListPublicKeysCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
ListPublicKeysCommandInput,
|
|
23
|
+
ListPublicKeysCommandOutput,
|
|
24
|
+
IVSRealTimeClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
...[input]: [] | [ListPublicKeysCommandInput]
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ListPublicKeysCommandInput,
|
|
32
|
+
ListPublicKeysCommandOutput,
|
|
33
|
+
IVSRealTimeClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class ListPublicKeysCommand extends ListPublicKeysCommand_base {}
|
|
@@ -3,19 +3,23 @@ export * from "./CreateParticipantTokenCommand";
|
|
|
3
3
|
export * from "./CreateStageCommand";
|
|
4
4
|
export * from "./CreateStorageConfigurationCommand";
|
|
5
5
|
export * from "./DeleteEncoderConfigurationCommand";
|
|
6
|
+
export * from "./DeletePublicKeyCommand";
|
|
6
7
|
export * from "./DeleteStageCommand";
|
|
7
8
|
export * from "./DeleteStorageConfigurationCommand";
|
|
8
9
|
export * from "./DisconnectParticipantCommand";
|
|
9
10
|
export * from "./GetCompositionCommand";
|
|
10
11
|
export * from "./GetEncoderConfigurationCommand";
|
|
11
12
|
export * from "./GetParticipantCommand";
|
|
13
|
+
export * from "./GetPublicKeyCommand";
|
|
12
14
|
export * from "./GetStageCommand";
|
|
13
15
|
export * from "./GetStageSessionCommand";
|
|
14
16
|
export * from "./GetStorageConfigurationCommand";
|
|
17
|
+
export * from "./ImportPublicKeyCommand";
|
|
15
18
|
export * from "./ListCompositionsCommand";
|
|
16
19
|
export * from "./ListEncoderConfigurationsCommand";
|
|
17
20
|
export * from "./ListParticipantEventsCommand";
|
|
18
21
|
export * from "./ListParticipantsCommand";
|
|
22
|
+
export * from "./ListPublicKeysCommand";
|
|
19
23
|
export * from "./ListStageSessionsCommand";
|
|
20
24
|
export * from "./ListStagesCommand";
|
|
21
25
|
export * from "./ListStorageConfigurationsCommand";
|
|
@@ -99,6 +99,16 @@ export interface ParticipantToken {
|
|
|
99
99
|
export interface CreateParticipantTokenResponse {
|
|
100
100
|
participantToken?: ParticipantToken;
|
|
101
101
|
}
|
|
102
|
+
export declare const ParticipantRecordingMediaType: {
|
|
103
|
+
readonly AUDIO_ONLY: "AUDIO_ONLY";
|
|
104
|
+
readonly AUDIO_VIDEO: "AUDIO_VIDEO";
|
|
105
|
+
};
|
|
106
|
+
export type ParticipantRecordingMediaType =
|
|
107
|
+
(typeof ParticipantRecordingMediaType)[keyof typeof ParticipantRecordingMediaType];
|
|
108
|
+
export interface AutoParticipantRecordingConfiguration {
|
|
109
|
+
storageConfigurationArn: string | undefined;
|
|
110
|
+
mediaTypes?: ParticipantRecordingMediaType[];
|
|
111
|
+
}
|
|
102
112
|
export interface ParticipantTokenConfiguration {
|
|
103
113
|
duration?: number;
|
|
104
114
|
userId?: string;
|
|
@@ -109,12 +119,19 @@ export interface CreateStageRequest {
|
|
|
109
119
|
name?: string;
|
|
110
120
|
participantTokenConfigurations?: ParticipantTokenConfiguration[];
|
|
111
121
|
tags?: Record<string, string>;
|
|
122
|
+
autoParticipantRecordingConfiguration?: AutoParticipantRecordingConfiguration;
|
|
123
|
+
}
|
|
124
|
+
export interface StageEndpoints {
|
|
125
|
+
events?: string;
|
|
126
|
+
whip?: string;
|
|
112
127
|
}
|
|
113
128
|
export interface Stage {
|
|
114
129
|
arn: string | undefined;
|
|
115
130
|
name?: string;
|
|
116
131
|
activeSessionId?: string;
|
|
117
132
|
tags?: Record<string, string>;
|
|
133
|
+
autoParticipantRecordingConfiguration?: AutoParticipantRecordingConfiguration;
|
|
134
|
+
endpoints?: StageEndpoints;
|
|
118
135
|
}
|
|
119
136
|
export interface CreateStageResponse {
|
|
120
137
|
stage?: Stage;
|
|
@@ -141,6 +158,10 @@ export interface DeleteEncoderConfigurationRequest {
|
|
|
141
158
|
arn: string | undefined;
|
|
142
159
|
}
|
|
143
160
|
export interface DeleteEncoderConfigurationResponse {}
|
|
161
|
+
export interface DeletePublicKeyRequest {
|
|
162
|
+
arn: string | undefined;
|
|
163
|
+
}
|
|
164
|
+
export interface DeletePublicKeyResponse {}
|
|
144
165
|
export interface DeleteStageRequest {
|
|
145
166
|
arn: string | undefined;
|
|
146
167
|
}
|
|
@@ -286,6 +307,16 @@ export interface GetParticipantRequest {
|
|
|
286
307
|
sessionId: string | undefined;
|
|
287
308
|
participantId: string | undefined;
|
|
288
309
|
}
|
|
310
|
+
export declare const ParticipantRecordingState: {
|
|
311
|
+
readonly ACTIVE: "ACTIVE";
|
|
312
|
+
readonly DISABLED: "DISABLED";
|
|
313
|
+
readonly FAILED: "FAILED";
|
|
314
|
+
readonly STARTING: "STARTING";
|
|
315
|
+
readonly STOPPED: "STOPPED";
|
|
316
|
+
readonly STOPPING: "STOPPING";
|
|
317
|
+
};
|
|
318
|
+
export type ParticipantRecordingState =
|
|
319
|
+
(typeof ParticipantRecordingState)[keyof typeof ParticipantRecordingState];
|
|
289
320
|
export declare const ParticipantState: {
|
|
290
321
|
readonly CONNECTED: "CONNECTED";
|
|
291
322
|
readonly DISCONNECTED: "DISCONNECTED";
|
|
@@ -305,10 +336,26 @@ export interface Participant {
|
|
|
305
336
|
browserName?: string;
|
|
306
337
|
browserVersion?: string;
|
|
307
338
|
sdkVersion?: string;
|
|
339
|
+
recordingS3BucketName?: string;
|
|
340
|
+
recordingS3Prefix?: string;
|
|
341
|
+
recordingState?: ParticipantRecordingState;
|
|
308
342
|
}
|
|
309
343
|
export interface GetParticipantResponse {
|
|
310
344
|
participant?: Participant;
|
|
311
345
|
}
|
|
346
|
+
export interface GetPublicKeyRequest {
|
|
347
|
+
arn: string | undefined;
|
|
348
|
+
}
|
|
349
|
+
export interface PublicKey {
|
|
350
|
+
arn?: string;
|
|
351
|
+
name?: string;
|
|
352
|
+
publicKeyMaterial?: string;
|
|
353
|
+
fingerprint?: string;
|
|
354
|
+
tags?: Record<string, string>;
|
|
355
|
+
}
|
|
356
|
+
export interface GetPublicKeyResponse {
|
|
357
|
+
publicKey?: PublicKey;
|
|
358
|
+
}
|
|
312
359
|
export interface GetStageRequest {
|
|
313
360
|
arn: string | undefined;
|
|
314
361
|
}
|
|
@@ -333,6 +380,14 @@ export interface GetStorageConfigurationRequest {
|
|
|
333
380
|
export interface GetStorageConfigurationResponse {
|
|
334
381
|
storageConfiguration?: StorageConfiguration;
|
|
335
382
|
}
|
|
383
|
+
export interface ImportPublicKeyRequest {
|
|
384
|
+
publicKeyMaterial: string | undefined;
|
|
385
|
+
name?: string;
|
|
386
|
+
tags?: Record<string, string>;
|
|
387
|
+
}
|
|
388
|
+
export interface ImportPublicKeyResponse {
|
|
389
|
+
publicKey?: PublicKey;
|
|
390
|
+
}
|
|
336
391
|
export interface ListCompositionsRequest {
|
|
337
392
|
filterByStageArn?: string;
|
|
338
393
|
filterByEncoderConfigurationArn?: string;
|
|
@@ -408,6 +463,15 @@ export interface ListParticipantEventsResponse {
|
|
|
408
463
|
events: Event[] | undefined;
|
|
409
464
|
nextToken?: string;
|
|
410
465
|
}
|
|
466
|
+
export declare const ParticipantRecordingFilterByRecordingState: {
|
|
467
|
+
readonly ACTIVE: "ACTIVE";
|
|
468
|
+
readonly FAILED: "FAILED";
|
|
469
|
+
readonly STARTING: "STARTING";
|
|
470
|
+
readonly STOPPED: "STOPPED";
|
|
471
|
+
readonly STOPPING: "STOPPING";
|
|
472
|
+
};
|
|
473
|
+
export type ParticipantRecordingFilterByRecordingState =
|
|
474
|
+
(typeof ParticipantRecordingFilterByRecordingState)[keyof typeof ParticipantRecordingFilterByRecordingState];
|
|
411
475
|
export interface ListParticipantsRequest {
|
|
412
476
|
stageArn: string | undefined;
|
|
413
477
|
sessionId: string | undefined;
|
|
@@ -416,6 +480,7 @@ export interface ListParticipantsRequest {
|
|
|
416
480
|
filterByState?: ParticipantState;
|
|
417
481
|
nextToken?: string;
|
|
418
482
|
maxResults?: number;
|
|
483
|
+
filterByRecordingState?: ParticipantRecordingFilterByRecordingState;
|
|
419
484
|
}
|
|
420
485
|
export interface ParticipantSummary {
|
|
421
486
|
participantId?: string;
|
|
@@ -423,11 +488,25 @@ export interface ParticipantSummary {
|
|
|
423
488
|
state?: ParticipantState;
|
|
424
489
|
firstJoinTime?: Date;
|
|
425
490
|
published?: boolean;
|
|
491
|
+
recordingState?: ParticipantRecordingState;
|
|
426
492
|
}
|
|
427
493
|
export interface ListParticipantsResponse {
|
|
428
494
|
participants: ParticipantSummary[] | undefined;
|
|
429
495
|
nextToken?: string;
|
|
430
496
|
}
|
|
497
|
+
export interface ListPublicKeysRequest {
|
|
498
|
+
nextToken?: string;
|
|
499
|
+
maxResults?: number;
|
|
500
|
+
}
|
|
501
|
+
export interface PublicKeySummary {
|
|
502
|
+
arn?: string;
|
|
503
|
+
name?: string;
|
|
504
|
+
tags?: Record<string, string>;
|
|
505
|
+
}
|
|
506
|
+
export interface ListPublicKeysResponse {
|
|
507
|
+
publicKeys: PublicKeySummary[] | undefined;
|
|
508
|
+
nextToken?: string;
|
|
509
|
+
}
|
|
431
510
|
export interface ListStagesRequest {
|
|
432
511
|
nextToken?: string;
|
|
433
512
|
maxResults?: number;
|
|
@@ -503,6 +582,7 @@ export interface UntagResourceResponse {}
|
|
|
503
582
|
export interface UpdateStageRequest {
|
|
504
583
|
arn: string | undefined;
|
|
505
584
|
name?: string;
|
|
585
|
+
autoParticipantRecordingConfiguration?: AutoParticipantRecordingConfiguration;
|
|
506
586
|
}
|
|
507
587
|
export interface UpdateStageResponse {
|
|
508
588
|
stage?: Stage;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListPublicKeysCommandInput,
|
|
4
|
+
ListPublicKeysCommandOutput,
|
|
5
|
+
} from "../commands/ListPublicKeysCommand";
|
|
6
|
+
import { IVSRealTimePaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListPublicKeys: (
|
|
8
|
+
config: IVSRealTimePaginationConfiguration,
|
|
9
|
+
input: ListPublicKeysCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListPublicKeysCommandOutput>;
|
|
@@ -3,6 +3,7 @@ export * from "./ListCompositionsPaginator";
|
|
|
3
3
|
export * from "./ListEncoderConfigurationsPaginator";
|
|
4
4
|
export * from "./ListParticipantEventsPaginator";
|
|
5
5
|
export * from "./ListParticipantsPaginator";
|
|
6
|
+
export * from "./ListPublicKeysPaginator";
|
|
6
7
|
export * from "./ListStageSessionsPaginator";
|
|
7
8
|
export * from "./ListStagesPaginator";
|
|
8
9
|
export * from "./ListStorageConfigurationsPaginator";
|