@aws-sdk/client-ivs-realtime 3.1086.0 → 3.1088.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/dist-cjs/index.js +1 -1
- package/dist-types/ts3.4/IVSRealTime.d.ts +134 -157
- package/dist-types/ts3.4/IVSRealTimeClient.d.ts +11 -38
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/CreateEncoderConfigurationCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/CreateIngestConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateParticipantTokenCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateStageCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/CreateStorageConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteEncoderConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteIngestConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeletePublicKeyCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteStageCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DeleteStorageConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DisconnectParticipantCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetCompositionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetEncoderConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetIngestConfigurationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetParticipantCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetPublicKeyCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetStageCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/GetStageSessionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetStorageConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ImportPublicKeyCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListCompositionsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListEncoderConfigurationsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListIngestConfigurationsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListParticipantEventsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListParticipantReplicasCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListParticipantsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListPublicKeysCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListStageSessionsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListStagesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListStorageConfigurationsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/StartCompositionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/StartParticipantReplicationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/StopCompositionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/StopParticipantReplicationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateIngestConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/UpdateStageCommand.d.ts +3 -5
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +10 -20
- package/dist-types/ts3.4/models/errors.d.ts +6 -18
- package/dist-types/ts3.4/models/models_0.d.ts +4 -12
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/pagination/ListStagesPaginator.d.ts +1 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +39 -39
|
@@ -11,10 +11,7 @@ import {
|
|
|
11
11
|
Client as __Client,
|
|
12
12
|
} from "@smithy/core/client";
|
|
13
13
|
import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
|
|
14
|
-
import {
|
|
15
|
-
EndpointInputConfig,
|
|
16
|
-
EndpointResolvedConfig,
|
|
17
|
-
} from "@smithy/core/endpoints";
|
|
14
|
+
import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints";
|
|
18
15
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
|
|
19
16
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
|
|
20
17
|
import {
|
|
@@ -48,10 +45,7 @@ import {
|
|
|
48
45
|
CreateParticipantTokenCommandInput,
|
|
49
46
|
CreateParticipantTokenCommandOutput,
|
|
50
47
|
} from "./commands/CreateParticipantTokenCommand";
|
|
51
|
-
import {
|
|
52
|
-
CreateStageCommandInput,
|
|
53
|
-
CreateStageCommandOutput,
|
|
54
|
-
} from "./commands/CreateStageCommand";
|
|
48
|
+
import { CreateStageCommandInput, CreateStageCommandOutput } from "./commands/CreateStageCommand";
|
|
55
49
|
import {
|
|
56
50
|
CreateStorageConfigurationCommandInput,
|
|
57
51
|
CreateStorageConfigurationCommandOutput,
|
|
@@ -68,10 +62,7 @@ import {
|
|
|
68
62
|
DeletePublicKeyCommandInput,
|
|
69
63
|
DeletePublicKeyCommandOutput,
|
|
70
64
|
} from "./commands/DeletePublicKeyCommand";
|
|
71
|
-
import {
|
|
72
|
-
DeleteStageCommandInput,
|
|
73
|
-
DeleteStageCommandOutput,
|
|
74
|
-
} from "./commands/DeleteStageCommand";
|
|
65
|
+
import { DeleteStageCommandInput, DeleteStageCommandOutput } from "./commands/DeleteStageCommand";
|
|
75
66
|
import {
|
|
76
67
|
DeleteStorageConfigurationCommandInput,
|
|
77
68
|
DeleteStorageConfigurationCommandOutput,
|
|
@@ -100,10 +91,7 @@ import {
|
|
|
100
91
|
GetPublicKeyCommandInput,
|
|
101
92
|
GetPublicKeyCommandOutput,
|
|
102
93
|
} from "./commands/GetPublicKeyCommand";
|
|
103
|
-
import {
|
|
104
|
-
GetStageCommandInput,
|
|
105
|
-
GetStageCommandOutput,
|
|
106
|
-
} from "./commands/GetStageCommand";
|
|
94
|
+
import { GetStageCommandInput, GetStageCommandOutput } from "./commands/GetStageCommand";
|
|
107
95
|
import {
|
|
108
96
|
GetStageSessionCommandInput,
|
|
109
97
|
GetStageSessionCommandOutput,
|
|
@@ -144,10 +132,7 @@ import {
|
|
|
144
132
|
ListPublicKeysCommandInput,
|
|
145
133
|
ListPublicKeysCommandOutput,
|
|
146
134
|
} from "./commands/ListPublicKeysCommand";
|
|
147
|
-
import {
|
|
148
|
-
ListStagesCommandInput,
|
|
149
|
-
ListStagesCommandOutput,
|
|
150
|
-
} from "./commands/ListStagesCommand";
|
|
135
|
+
import { ListStagesCommandInput, ListStagesCommandOutput } from "./commands/ListStagesCommand";
|
|
151
136
|
import {
|
|
152
137
|
ListStageSessionsCommandInput,
|
|
153
138
|
ListStageSessionsCommandOutput,
|
|
@@ -176,10 +161,7 @@ import {
|
|
|
176
161
|
StopParticipantReplicationCommandInput,
|
|
177
162
|
StopParticipantReplicationCommandOutput,
|
|
178
163
|
} from "./commands/StopParticipantReplicationCommand";
|
|
179
|
-
import {
|
|
180
|
-
TagResourceCommandInput,
|
|
181
|
-
TagResourceCommandOutput,
|
|
182
|
-
} from "./commands/TagResourceCommand";
|
|
164
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
183
165
|
import {
|
|
184
166
|
UntagResourceCommandInput,
|
|
185
167
|
UntagResourceCommandOutput,
|
|
@@ -188,10 +170,7 @@ import {
|
|
|
188
170
|
UpdateIngestConfigurationCommandInput,
|
|
189
171
|
UpdateIngestConfigurationCommandOutput,
|
|
190
172
|
} from "./commands/UpdateIngestConfigurationCommand";
|
|
191
|
-
import {
|
|
192
|
-
UpdateStageCommandInput,
|
|
193
|
-
UpdateStageCommandOutput,
|
|
194
|
-
} from "./commands/UpdateStageCommand";
|
|
173
|
+
import { UpdateStageCommandInput, UpdateStageCommandOutput } from "./commands/UpdateStageCommand";
|
|
195
174
|
import {
|
|
196
175
|
ClientInputEndpointParameters,
|
|
197
176
|
ClientResolvedEndpointParameters,
|
|
@@ -279,8 +258,7 @@ export type ServiceOutputTypes =
|
|
|
279
258
|
| UntagResourceCommandOutput
|
|
280
259
|
| UpdateIngestConfigurationCommandOutput
|
|
281
260
|
| UpdateStageCommandOutput;
|
|
282
|
-
export interface ClientDefaults
|
|
283
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
261
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
284
262
|
requestHandler?: __HttpHandlerUserInput;
|
|
285
263
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
286
264
|
urlParser?: __UrlParser;
|
|
@@ -305,9 +283,7 @@ export interface ClientDefaults
|
|
|
305
283
|
extensions?: RuntimeExtension[];
|
|
306
284
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
307
285
|
}
|
|
308
|
-
export type IVSRealTimeClientConfigType = Partial<
|
|
309
|
-
__SmithyConfiguration<__HttpHandlerOptions>
|
|
310
|
-
> &
|
|
286
|
+
export type IVSRealTimeClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
|
|
311
287
|
ClientDefaults &
|
|
312
288
|
UserAgentInputConfig &
|
|
313
289
|
RetryInputConfig &
|
|
@@ -328,8 +304,7 @@ export type IVSRealTimeClientResolvedConfigType =
|
|
|
328
304
|
EndpointResolvedConfig<EndpointParameters> &
|
|
329
305
|
HttpAuthSchemeResolvedConfig &
|
|
330
306
|
ClientResolvedEndpointParameters;
|
|
331
|
-
export interface IVSRealTimeClientResolvedConfig
|
|
332
|
-
extends IVSRealTimeClientResolvedConfigType {}
|
|
307
|
+
export interface IVSRealTimeClientResolvedConfig extends IVSRealTimeClientResolvedConfigType {}
|
|
333
308
|
export declare class IVSRealTimeClient extends __Client<
|
|
334
309
|
__HttpHandlerOptions,
|
|
335
310
|
ServiceInputTypes,
|
|
@@ -337,8 +312,6 @@ export declare class IVSRealTimeClient extends __Client<
|
|
|
337
312
|
IVSRealTimeClientResolvedConfig
|
|
338
313
|
> {
|
|
339
314
|
readonly config: IVSRealTimeClientResolvedConfig;
|
|
340
|
-
constructor(
|
|
341
|
-
...[configuration]: __CheckOptionalClientConfig<IVSRealTimeClientConfig>
|
|
342
|
-
);
|
|
315
|
+
constructor(...[configuration]: __CheckOptionalClientConfig<IVSRealTimeClientConfig>);
|
|
343
316
|
destroy(): void;
|
|
344
317
|
}
|
|
@@ -7,17 +7,10 @@ import { IVSRealTimeHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
|
7
7
|
export interface HttpAuthExtensionConfiguration {
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
-
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: IVSRealTimeHttpAuthSchemeProvider
|
|
12
|
-
): void;
|
|
10
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider: IVSRealTimeHttpAuthSchemeProvider): void;
|
|
13
11
|
httpAuthSchemeProvider(): IVSRealTimeHttpAuthSchemeProvider;
|
|
14
|
-
setCredentials(
|
|
15
|
-
|
|
16
|
-
): void;
|
|
17
|
-
credentials():
|
|
18
|
-
| AwsCredentialIdentity
|
|
19
|
-
| AwsCredentialIdentityProvider
|
|
20
|
-
| undefined;
|
|
12
|
+
setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
|
|
13
|
+
credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
|
|
21
14
|
}
|
|
22
15
|
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
16
|
httpAuthSchemes: HttpAuthScheme[];
|
|
@@ -25,8 +18,8 @@ export type HttpAuthRuntimeConfig = Partial<{
|
|
|
25
18
|
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
19
|
}>;
|
|
27
20
|
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
-
runtimeConfig: HttpAuthRuntimeConfig
|
|
21
|
+
runtimeConfig: HttpAuthRuntimeConfig,
|
|
29
22
|
) => HttpAuthExtensionConfiguration;
|
|
30
23
|
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
-
config: HttpAuthExtensionConfiguration
|
|
24
|
+
config: HttpAuthExtensionConfiguration,
|
|
32
25
|
) => HttpAuthRuntimeConfig;
|
|
@@ -12,36 +12,32 @@ import {
|
|
|
12
12
|
Provider,
|
|
13
13
|
} from "@smithy/types";
|
|
14
14
|
import { IVSRealTimeClientResolvedConfig } from "../IVSRealTimeClient";
|
|
15
|
-
export interface IVSRealTimeHttpAuthSchemeParameters
|
|
16
|
-
extends HttpAuthSchemeParameters {
|
|
15
|
+
export interface IVSRealTimeHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
17
16
|
region?: string;
|
|
18
17
|
}
|
|
19
|
-
export interface IVSRealTimeHttpAuthSchemeParametersProvider
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {}
|
|
18
|
+
export interface IVSRealTimeHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
IVSRealTimeClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
IVSRealTimeHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
26
24
|
export declare const defaultIVSRealTimeHttpAuthSchemeParametersProvider: (
|
|
27
25
|
config: IVSRealTimeClientResolvedConfig,
|
|
28
26
|
context: HandlerExecutionContext,
|
|
29
|
-
input: object
|
|
27
|
+
input: object,
|
|
30
28
|
) => Promise<IVSRealTimeHttpAuthSchemeParameters>;
|
|
31
|
-
export interface IVSRealTimeHttpAuthSchemeProvider
|
|
32
|
-
extends HttpAuthSchemeProvider<IVSRealTimeHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface IVSRealTimeHttpAuthSchemeProvider extends HttpAuthSchemeProvider<IVSRealTimeHttpAuthSchemeParameters> {}
|
|
33
30
|
export declare const defaultIVSRealTimeHttpAuthSchemeProvider: IVSRealTimeHttpAuthSchemeProvider;
|
|
34
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
34
|
httpAuthSchemeProvider?: IVSRealTimeHttpAuthSchemeProvider;
|
|
38
35
|
}
|
|
39
|
-
export interface HttpAuthSchemeResolvedConfig
|
|
40
|
-
extends AwsSdkSigV4AuthResolvedConfig {
|
|
36
|
+
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
41
37
|
readonly authSchemePreference: Provider<string[]>;
|
|
42
38
|
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
43
39
|
readonly httpAuthSchemeProvider: IVSRealTimeHttpAuthSchemeProvider;
|
|
44
40
|
}
|
|
45
41
|
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
-
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
42
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
|
|
47
43
|
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -4,22 +4,21 @@ import {
|
|
|
4
4
|
ServiceInputTypes,
|
|
5
5
|
ServiceOutputTypes,
|
|
6
6
|
} from "./IVSRealTimeClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
7
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
|
|
11
8
|
added: EndpointParameterInstructions,
|
|
12
9
|
plugins: (
|
|
13
10
|
CommandCtor: any,
|
|
14
11
|
clientStack: any,
|
|
15
12
|
config: any,
|
|
16
|
-
options: any
|
|
13
|
+
options: any,
|
|
17
14
|
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
15
|
op: string,
|
|
19
16
|
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
-
smithyContext?: Record<string, unknown
|
|
17
|
+
smithyContext?: Record<string, unknown>,
|
|
21
18
|
) => {
|
|
22
|
-
new (
|
|
19
|
+
new (
|
|
20
|
+
input: I,
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
22
|
I,
|
|
24
23
|
O,
|
|
25
24
|
IVSRealTimeClientResolvedConfig,
|
|
@@ -38,9 +37,4 @@ export declare const command: <
|
|
|
38
37
|
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
38
|
};
|
|
40
39
|
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
-
export declare const _mw0: (
|
|
42
|
-
Command: any,
|
|
43
|
-
cs: any,
|
|
44
|
-
config: any,
|
|
45
|
-
o: any
|
|
46
|
-
) => never[];
|
|
40
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
CreateEncoderConfigurationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateEncoderConfigurationCommandInput
|
|
8
|
-
extends CreateEncoderConfigurationRequest {}
|
|
7
|
+
export interface CreateEncoderConfigurationCommandInput extends CreateEncoderConfigurationRequest {}
|
|
9
8
|
export interface CreateEncoderConfigurationCommandOutput
|
|
10
|
-
extends CreateEncoderConfigurationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends CreateEncoderConfigurationResponse, __MetadataBearer {}
|
|
12
10
|
declare const CreateEncoderConfigurationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: CreateEncoderConfigurationCommandInput
|
|
12
|
+
input: CreateEncoderConfigurationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
CreateEncoderConfigurationCommandInput,
|
|
17
15
|
CreateEncoderConfigurationCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
CreateIngestConfigurationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateIngestConfigurationCommandInput
|
|
8
|
-
extends CreateIngestConfigurationRequest {}
|
|
7
|
+
export interface CreateIngestConfigurationCommandInput extends CreateIngestConfigurationRequest {}
|
|
9
8
|
export interface CreateIngestConfigurationCommandOutput
|
|
10
|
-
extends CreateIngestConfigurationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends CreateIngestConfigurationResponse, __MetadataBearer {}
|
|
12
10
|
declare const CreateIngestConfigurationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: CreateIngestConfigurationCommandInput
|
|
12
|
+
input: CreateIngestConfigurationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
CreateIngestConfigurationCommandInput,
|
|
17
15
|
CreateIngestConfigurationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const CreateIngestConfigurationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: CreateIngestConfigurationCommandInput
|
|
21
|
+
input: CreateIngestConfigurationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
CreateIngestConfigurationCommandInput,
|
|
26
24
|
CreateIngestConfigurationCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateParticipantTokenRequest,
|
|
4
|
-
CreateParticipantTokenResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateParticipantTokenRequest, CreateParticipantTokenResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateParticipantTokenCommandInput
|
|
8
|
-
extends CreateParticipantTokenRequest {}
|
|
4
|
+
export interface CreateParticipantTokenCommandInput extends CreateParticipantTokenRequest {}
|
|
9
5
|
export interface CreateParticipantTokenCommandOutput
|
|
10
|
-
extends CreateParticipantTokenResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CreateParticipantTokenResponse, __MetadataBearer {}
|
|
12
7
|
declare const CreateParticipantTokenCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CreateParticipantTokenCommandInput
|
|
9
|
+
input: CreateParticipantTokenCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CreateParticipantTokenCommandInput,
|
|
17
12
|
CreateParticipantTokenCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CreateParticipantTokenCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CreateParticipantTokenCommandInput
|
|
18
|
+
input: CreateParticipantTokenCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CreateParticipantTokenCommandInput,
|
|
26
21
|
CreateParticipantTokenCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { CreateStageRequest, CreateStageResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface CreateStageCommandInput extends CreateStageRequest {}
|
|
5
|
-
export interface CreateStageCommandOutput
|
|
6
|
-
extends CreateStageResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CreateStageCommandOutput extends CreateStageResponse, __MetadataBearer {}
|
|
8
6
|
declare const CreateStageCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: CreateStageCommandInput
|
|
8
|
+
input: CreateStageCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
CreateStageCommandInput,
|
|
13
11
|
CreateStageCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
CreateStorageConfigurationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateStorageConfigurationCommandInput
|
|
8
|
-
extends CreateStorageConfigurationRequest {}
|
|
7
|
+
export interface CreateStorageConfigurationCommandInput extends CreateStorageConfigurationRequest {}
|
|
9
8
|
export interface CreateStorageConfigurationCommandOutput
|
|
10
|
-
extends CreateStorageConfigurationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends CreateStorageConfigurationResponse, __MetadataBearer {}
|
|
12
10
|
declare const CreateStorageConfigurationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: CreateStorageConfigurationCommandInput
|
|
12
|
+
input: CreateStorageConfigurationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
CreateStorageConfigurationCommandInput,
|
|
17
15
|
CreateStorageConfigurationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const CreateStorageConfigurationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: CreateStorageConfigurationCommandInput
|
|
21
|
+
input: CreateStorageConfigurationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
CreateStorageConfigurationCommandInput,
|
|
26
24
|
CreateStorageConfigurationCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DeleteEncoderConfigurationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteEncoderConfigurationCommandInput
|
|
8
|
-
extends DeleteEncoderConfigurationRequest {}
|
|
7
|
+
export interface DeleteEncoderConfigurationCommandInput extends DeleteEncoderConfigurationRequest {}
|
|
9
8
|
export interface DeleteEncoderConfigurationCommandOutput
|
|
10
|
-
extends DeleteEncoderConfigurationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DeleteEncoderConfigurationResponse, __MetadataBearer {}
|
|
12
10
|
declare const DeleteEncoderConfigurationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DeleteEncoderConfigurationCommandInput
|
|
12
|
+
input: DeleteEncoderConfigurationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DeleteEncoderConfigurationCommandInput,
|
|
17
15
|
DeleteEncoderConfigurationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DeleteEncoderConfigurationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DeleteEncoderConfigurationCommandInput
|
|
21
|
+
input: DeleteEncoderConfigurationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DeleteEncoderConfigurationCommandInput,
|
|
26
24
|
DeleteEncoderConfigurationCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DeleteIngestConfigurationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteIngestConfigurationCommandInput
|
|
8
|
-
extends DeleteIngestConfigurationRequest {}
|
|
7
|
+
export interface DeleteIngestConfigurationCommandInput extends DeleteIngestConfigurationRequest {}
|
|
9
8
|
export interface DeleteIngestConfigurationCommandOutput
|
|
10
|
-
extends DeleteIngestConfigurationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DeleteIngestConfigurationResponse, __MetadataBearer {}
|
|
12
10
|
declare const DeleteIngestConfigurationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DeleteIngestConfigurationCommandInput
|
|
12
|
+
input: DeleteIngestConfigurationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DeleteIngestConfigurationCommandInput,
|
|
17
15
|
DeleteIngestConfigurationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DeleteIngestConfigurationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DeleteIngestConfigurationCommandInput
|
|
21
|
+
input: DeleteIngestConfigurationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DeleteIngestConfigurationCommandInput,
|
|
26
24
|
DeleteIngestConfigurationCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeletePublicKeyRequest,
|
|
4
|
-
DeletePublicKeyResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeletePublicKeyRequest, DeletePublicKeyResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface DeletePublicKeyCommandInput extends DeletePublicKeyRequest {}
|
|
8
|
-
export interface DeletePublicKeyCommandOutput
|
|
9
|
-
extends DeletePublicKeyResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeletePublicKeyCommandOutput extends DeletePublicKeyResponse, __MetadataBearer {}
|
|
11
6
|
declare const DeletePublicKeyCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: DeletePublicKeyCommandInput
|
|
8
|
+
input: DeletePublicKeyCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
DeletePublicKeyCommandInput,
|
|
16
11
|
DeletePublicKeyCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const DeletePublicKeyCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: DeletePublicKeyCommandInput
|
|
17
|
+
input: DeletePublicKeyCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
DeletePublicKeyCommandInput,
|
|
25
20
|
DeletePublicKeyCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { DeleteStageRequest, DeleteStageResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface DeleteStageCommandInput extends DeleteStageRequest {}
|
|
5
|
-
export interface DeleteStageCommandOutput
|
|
6
|
-
extends DeleteStageResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeleteStageCommandOutput extends DeleteStageResponse, __MetadataBearer {}
|
|
8
6
|
declare const DeleteStageCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: DeleteStageCommandInput
|
|
8
|
+
input: DeleteStageCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
DeleteStageCommandInput,
|
|
13
11
|
DeleteStageCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const DeleteStageCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: DeleteStageCommandInput
|
|
17
|
+
input: DeleteStageCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
DeleteStageCommandInput,
|
|
22
20
|
DeleteStageCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DeleteStorageConfigurationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteStorageConfigurationCommandInput
|
|
8
|
-
extends DeleteStorageConfigurationRequest {}
|
|
7
|
+
export interface DeleteStorageConfigurationCommandInput extends DeleteStorageConfigurationRequest {}
|
|
9
8
|
export interface DeleteStorageConfigurationCommandOutput
|
|
10
|
-
extends DeleteStorageConfigurationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DeleteStorageConfigurationResponse, __MetadataBearer {}
|
|
12
10
|
declare const DeleteStorageConfigurationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DeleteStorageConfigurationCommandInput
|
|
12
|
+
input: DeleteStorageConfigurationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DeleteStorageConfigurationCommandInput,
|
|
17
15
|
DeleteStorageConfigurationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DeleteStorageConfigurationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DeleteStorageConfigurationCommandInput
|
|
21
|
+
input: DeleteStorageConfigurationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DeleteStorageConfigurationCommandInput,
|
|
26
24
|
DeleteStorageConfigurationCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DisconnectParticipantRequest,
|
|
4
|
-
DisconnectParticipantResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DisconnectParticipantRequest, DisconnectParticipantResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DisconnectParticipantCommandInput
|
|
8
|
-
extends DisconnectParticipantRequest {}
|
|
4
|
+
export interface DisconnectParticipantCommandInput extends DisconnectParticipantRequest {}
|
|
9
5
|
export interface DisconnectParticipantCommandOutput
|
|
10
|
-
extends DisconnectParticipantResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DisconnectParticipantResponse, __MetadataBearer {}
|
|
12
7
|
declare const DisconnectParticipantCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DisconnectParticipantCommandInput
|
|
9
|
+
input: DisconnectParticipantCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DisconnectParticipantCommandInput,
|
|
17
12
|
DisconnectParticipantCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DisconnectParticipantCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DisconnectParticipantCommandInput
|
|
18
|
+
input: DisconnectParticipantCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DisconnectParticipantCommandInput,
|
|
26
21
|
DisconnectParticipantCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetCompositionRequest,
|
|
4
|
-
GetCompositionResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetCompositionRequest, GetCompositionResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface GetCompositionCommandInput extends GetCompositionRequest {}
|
|
8
|
-
export interface GetCompositionCommandOutput
|
|
9
|
-
extends GetCompositionResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetCompositionCommandOutput extends GetCompositionResponse, __MetadataBearer {}
|
|
11
6
|
declare const GetCompositionCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: GetCompositionCommandInput
|
|
8
|
+
input: GetCompositionCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
GetCompositionCommandInput,
|
|
16
11
|
GetCompositionCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const GetCompositionCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: GetCompositionCommandInput
|
|
17
|
+
input: GetCompositionCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
GetCompositionCommandInput,
|
|
25
20
|
GetCompositionCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetEncoderConfigurationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetEncoderConfigurationCommandInput
|
|
8
|
-
extends GetEncoderConfigurationRequest {}
|
|
7
|
+
export interface GetEncoderConfigurationCommandInput extends GetEncoderConfigurationRequest {}
|
|
9
8
|
export interface GetEncoderConfigurationCommandOutput
|
|
10
|
-
extends GetEncoderConfigurationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetEncoderConfigurationResponse, __MetadataBearer {}
|
|
12
10
|
declare const GetEncoderConfigurationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetEncoderConfigurationCommandInput
|
|
12
|
+
input: GetEncoderConfigurationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetEncoderConfigurationCommandInput,
|
|
17
15
|
GetEncoderConfigurationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const GetEncoderConfigurationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: GetEncoderConfigurationCommandInput
|
|
21
|
+
input: GetEncoderConfigurationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
GetEncoderConfigurationCommandInput,
|
|
26
24
|
GetEncoderConfigurationCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetIngestConfigurationRequest,
|
|
4
|
-
GetIngestConfigurationResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetIngestConfigurationRequest, GetIngestConfigurationResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetIngestConfigurationCommandInput
|
|
8
|
-
extends GetIngestConfigurationRequest {}
|
|
4
|
+
export interface GetIngestConfigurationCommandInput extends GetIngestConfigurationRequest {}
|
|
9
5
|
export interface GetIngestConfigurationCommandOutput
|
|
10
|
-
extends GetIngestConfigurationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetIngestConfigurationResponse, __MetadataBearer {}
|
|
12
7
|
declare const GetIngestConfigurationCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetIngestConfigurationCommandInput
|
|
9
|
+
input: GetIngestConfigurationCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetIngestConfigurationCommandInput,
|
|
17
12
|
GetIngestConfigurationCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetIngestConfigurationCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetIngestConfigurationCommandInput
|
|
18
|
+
input: GetIngestConfigurationCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetIngestConfigurationCommandInput,
|
|
26
21
|
GetIngestConfigurationCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetParticipantRequest,
|
|
4
|
-
GetParticipantResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetParticipantRequest, GetParticipantResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface GetParticipantCommandInput extends GetParticipantRequest {}
|
|
8
|
-
export interface GetParticipantCommandOutput
|
|
9
|
-
extends GetParticipantResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetParticipantCommandOutput extends GetParticipantResponse, __MetadataBearer {}
|
|
11
6
|
declare const GetParticipantCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: GetParticipantCommandInput
|
|
8
|
+
input: GetParticipantCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
GetParticipantCommandInput,
|
|
16
11
|
GetParticipantCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const GetParticipantCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: GetParticipantCommandInput
|
|
17
|
+
input: GetParticipantCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
GetParticipantCommandInput,
|
|
25
20
|
GetParticipantCommandOutput,
|