@aws-sdk/client-gameliftstreams 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/GameLiftStreams.d.ts +86 -91
- package/dist-types/ts3.4/GameLiftStreamsClient.d.ts +7 -20
- 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/AddStreamGroupLocationsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/AssociateApplicationsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateStreamGroupCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateStreamSessionAdminShellCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateStreamSessionConnectionCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/DeleteStreamGroupCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/DisassociateApplicationsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ExportStreamSessionFilesCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetStreamGroupCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetStreamSessionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListStreamGroupsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListStreamSessionsByAccountCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListStreamSessionsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/RemoveStreamGroupLocationsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/StartStreamSessionCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/TerminateStreamSessionCommand.d.ts +3 -4
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateStreamGroupCommand.d.ts +4 -9
- 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 +4 -8
- package/dist-types/ts3.4/models/errors.d.ts +7 -24
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -19
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -4
- package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/dist-types/ts3.4/waiters/waitForApplicationDeleted.d.ts +3 -5
- package/dist-types/ts3.4/waiters/waitForApplicationReady.d.ts +3 -5
- package/dist-types/ts3.4/waiters/waitForStreamGroupActive.d.ts +3 -5
- package/dist-types/ts3.4/waiters/waitForStreamGroupDeleted.d.ts +3 -5
- package/dist-types/ts3.4/waiters/waitForStreamSessionActive.d.ts +3 -5
- package/package.json +39 -39
|
@@ -4,22 +4,21 @@ import {
|
|
|
4
4
|
ServiceInputTypes,
|
|
5
5
|
ServiceOutputTypes,
|
|
6
6
|
} from "./GameLiftStreamsClient";
|
|
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
|
GameLiftStreamsClientResolvedConfig,
|
|
@@ -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[];
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
AddStreamGroupLocationsInput,
|
|
4
|
-
AddStreamGroupLocationsOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { AddStreamGroupLocationsInput, AddStreamGroupLocationsOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface AddStreamGroupLocationsCommandInput
|
|
8
|
-
extends AddStreamGroupLocationsInput {}
|
|
4
|
+
export interface AddStreamGroupLocationsCommandInput extends AddStreamGroupLocationsInput {}
|
|
9
5
|
export interface AddStreamGroupLocationsCommandOutput
|
|
10
|
-
extends AddStreamGroupLocationsOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends AddStreamGroupLocationsOutput, __MetadataBearer {}
|
|
12
7
|
declare const AddStreamGroupLocationsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: AddStreamGroupLocationsCommandInput
|
|
9
|
+
input: AddStreamGroupLocationsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
AddStreamGroupLocationsCommandInput,
|
|
17
12
|
AddStreamGroupLocationsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const AddStreamGroupLocationsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: AddStreamGroupLocationsCommandInput
|
|
18
|
+
input: AddStreamGroupLocationsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
AddStreamGroupLocationsCommandInput,
|
|
26
21
|
AddStreamGroupLocationsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
AssociateApplicationsInput,
|
|
4
|
-
AssociateApplicationsOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { AssociateApplicationsInput, AssociateApplicationsOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface AssociateApplicationsCommandInput
|
|
8
|
-
extends AssociateApplicationsInput {}
|
|
4
|
+
export interface AssociateApplicationsCommandInput extends AssociateApplicationsInput {}
|
|
9
5
|
export interface AssociateApplicationsCommandOutput
|
|
10
|
-
extends AssociateApplicationsOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends AssociateApplicationsOutput, __MetadataBearer {}
|
|
12
7
|
declare const AssociateApplicationsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: AssociateApplicationsCommandInput
|
|
9
|
+
input: AssociateApplicationsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
AssociateApplicationsCommandInput,
|
|
17
12
|
AssociateApplicationsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const AssociateApplicationsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: AssociateApplicationsCommandInput
|
|
18
|
+
input: AssociateApplicationsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
AssociateApplicationsCommandInput,
|
|
26
21
|
AssociateApplicationsCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateApplicationInput,
|
|
4
|
-
CreateApplicationOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateApplicationInput, CreateApplicationOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface CreateApplicationCommandInput extends CreateApplicationInput {}
|
|
8
|
-
export interface CreateApplicationCommandOutput
|
|
9
|
-
extends CreateApplicationOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CreateApplicationCommandOutput extends CreateApplicationOutput, __MetadataBearer {}
|
|
11
6
|
declare const CreateApplicationCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: CreateApplicationCommandInput
|
|
8
|
+
input: CreateApplicationCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
CreateApplicationCommandInput,
|
|
16
11
|
CreateApplicationCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const CreateApplicationCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: CreateApplicationCommandInput
|
|
17
|
+
input: CreateApplicationCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
CreateApplicationCommandInput,
|
|
25
20
|
CreateApplicationCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateStreamGroupInput,
|
|
4
|
-
CreateStreamGroupOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateStreamGroupInput, CreateStreamGroupOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface CreateStreamGroupCommandInput extends CreateStreamGroupInput {}
|
|
8
|
-
export interface CreateStreamGroupCommandOutput
|
|
9
|
-
extends CreateStreamGroupOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CreateStreamGroupCommandOutput extends CreateStreamGroupOutput, __MetadataBearer {}
|
|
11
6
|
declare const CreateStreamGroupCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: CreateStreamGroupCommandInput
|
|
8
|
+
input: CreateStreamGroupCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
CreateStreamGroupCommandInput,
|
|
16
11
|
CreateStreamGroupCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const CreateStreamGroupCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: CreateStreamGroupCommandInput
|
|
17
|
+
input: CreateStreamGroupCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
CreateStreamGroupCommandInput,
|
|
25
20
|
CreateStreamGroupCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
CreateStreamSessionAdminShellOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateStreamSessionAdminShellCommandInput
|
|
8
|
-
extends CreateStreamSessionAdminShellInput {}
|
|
7
|
+
export interface CreateStreamSessionAdminShellCommandInput extends CreateStreamSessionAdminShellInput {}
|
|
9
8
|
export interface CreateStreamSessionAdminShellCommandOutput
|
|
10
|
-
extends CreateStreamSessionAdminShellOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends CreateStreamSessionAdminShellOutput, __MetadataBearer {}
|
|
12
10
|
declare const CreateStreamSessionAdminShellCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: CreateStreamSessionAdminShellCommandInput
|
|
12
|
+
input: CreateStreamSessionAdminShellCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
CreateStreamSessionAdminShellCommandInput,
|
|
17
15
|
CreateStreamSessionAdminShellCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const CreateStreamSessionAdminShellCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: CreateStreamSessionAdminShellCommandInput
|
|
21
|
+
input: CreateStreamSessionAdminShellCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
CreateStreamSessionAdminShellCommandInput,
|
|
26
24
|
CreateStreamSessionAdminShellCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
CreateStreamSessionConnectionOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateStreamSessionConnectionCommandInput
|
|
8
|
-
extends CreateStreamSessionConnectionInput {}
|
|
7
|
+
export interface CreateStreamSessionConnectionCommandInput extends CreateStreamSessionConnectionInput {}
|
|
9
8
|
export interface CreateStreamSessionConnectionCommandOutput
|
|
10
|
-
extends CreateStreamSessionConnectionOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends CreateStreamSessionConnectionOutput, __MetadataBearer {}
|
|
12
10
|
declare const CreateStreamSessionConnectionCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: CreateStreamSessionConnectionCommandInput
|
|
12
|
+
input: CreateStreamSessionConnectionCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
CreateStreamSessionConnectionCommandInput,
|
|
17
15
|
CreateStreamSessionConnectionCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const CreateStreamSessionConnectionCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: CreateStreamSessionConnectionCommandInput
|
|
21
|
+
input: CreateStreamSessionConnectionCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
CreateStreamSessionConnectionCommandInput,
|
|
26
24
|
CreateStreamSessionConnectionCommandOutput,
|
|
@@ -5,7 +5,7 @@ export interface DeleteApplicationCommandInput extends DeleteApplicationInput {}
|
|
|
5
5
|
export interface DeleteApplicationCommandOutput extends __MetadataBearer {}
|
|
6
6
|
declare const DeleteApplicationCommand_base: {
|
|
7
7
|
new (
|
|
8
|
-
input: DeleteApplicationCommandInput
|
|
8
|
+
input: DeleteApplicationCommandInput,
|
|
9
9
|
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
DeleteApplicationCommandInput,
|
|
11
11
|
DeleteApplicationCommandOutput,
|
|
@@ -14,7 +14,7 @@ declare const DeleteApplicationCommand_base: {
|
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
16
|
new (
|
|
17
|
-
input: DeleteApplicationCommandInput
|
|
17
|
+
input: DeleteApplicationCommandInput,
|
|
18
18
|
): import("@smithy/core/client").CommandImpl<
|
|
19
19
|
DeleteApplicationCommandInput,
|
|
20
20
|
DeleteApplicationCommandOutput,
|
|
@@ -5,7 +5,7 @@ export interface DeleteStreamGroupCommandInput extends DeleteStreamGroupInput {}
|
|
|
5
5
|
export interface DeleteStreamGroupCommandOutput extends __MetadataBearer {}
|
|
6
6
|
declare const DeleteStreamGroupCommand_base: {
|
|
7
7
|
new (
|
|
8
|
-
input: DeleteStreamGroupCommandInput
|
|
8
|
+
input: DeleteStreamGroupCommandInput,
|
|
9
9
|
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
DeleteStreamGroupCommandInput,
|
|
11
11
|
DeleteStreamGroupCommandOutput,
|
|
@@ -14,7 +14,7 @@ declare const DeleteStreamGroupCommand_base: {
|
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
16
|
new (
|
|
17
|
-
input: DeleteStreamGroupCommandInput
|
|
17
|
+
input: DeleteStreamGroupCommandInput,
|
|
18
18
|
): import("@smithy/core/client").CommandImpl<
|
|
19
19
|
DeleteStreamGroupCommandInput,
|
|
20
20
|
DeleteStreamGroupCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DisassociateApplicationsInput,
|
|
4
|
-
DisassociateApplicationsOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DisassociateApplicationsInput, DisassociateApplicationsOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DisassociateApplicationsCommandInput
|
|
8
|
-
extends DisassociateApplicationsInput {}
|
|
4
|
+
export interface DisassociateApplicationsCommandInput extends DisassociateApplicationsInput {}
|
|
9
5
|
export interface DisassociateApplicationsCommandOutput
|
|
10
|
-
extends DisassociateApplicationsOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DisassociateApplicationsOutput, __MetadataBearer {}
|
|
12
7
|
declare const DisassociateApplicationsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DisassociateApplicationsCommandInput
|
|
9
|
+
input: DisassociateApplicationsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DisassociateApplicationsCommandInput,
|
|
17
12
|
DisassociateApplicationsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DisassociateApplicationsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DisassociateApplicationsCommandInput
|
|
18
|
+
input: DisassociateApplicationsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DisassociateApplicationsCommandInput,
|
|
26
21
|
DisassociateApplicationsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ExportStreamSessionFilesInput,
|
|
4
|
-
ExportStreamSessionFilesOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ExportStreamSessionFilesInput, ExportStreamSessionFilesOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ExportStreamSessionFilesCommandInput
|
|
8
|
-
extends ExportStreamSessionFilesInput {}
|
|
4
|
+
export interface ExportStreamSessionFilesCommandInput extends ExportStreamSessionFilesInput {}
|
|
9
5
|
export interface ExportStreamSessionFilesCommandOutput
|
|
10
|
-
extends ExportStreamSessionFilesOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ExportStreamSessionFilesOutput, __MetadataBearer {}
|
|
12
7
|
declare const ExportStreamSessionFilesCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ExportStreamSessionFilesCommandInput
|
|
9
|
+
input: ExportStreamSessionFilesCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ExportStreamSessionFilesCommandInput,
|
|
17
12
|
ExportStreamSessionFilesCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ExportStreamSessionFilesCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ExportStreamSessionFilesCommandInput
|
|
18
|
+
input: ExportStreamSessionFilesCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ExportStreamSessionFilesCommandInput,
|
|
26
21
|
ExportStreamSessionFilesCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetApplicationInput, GetApplicationOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetApplicationCommandInput extends GetApplicationInput {}
|
|
5
|
-
export interface GetApplicationCommandOutput
|
|
6
|
-
extends GetApplicationOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetApplicationCommandOutput extends GetApplicationOutput, __MetadataBearer {}
|
|
8
6
|
declare const GetApplicationCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: GetApplicationCommandInput
|
|
8
|
+
input: GetApplicationCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
GetApplicationCommandInput,
|
|
13
11
|
GetApplicationCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const GetApplicationCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: GetApplicationCommandInput
|
|
17
|
+
input: GetApplicationCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
GetApplicationCommandInput,
|
|
22
20
|
GetApplicationCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetStreamGroupInput, GetStreamGroupOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetStreamGroupCommandInput extends GetStreamGroupInput {}
|
|
5
|
-
export interface GetStreamGroupCommandOutput
|
|
6
|
-
extends GetStreamGroupOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetStreamGroupCommandOutput extends GetStreamGroupOutput, __MetadataBearer {}
|
|
8
6
|
declare const GetStreamGroupCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: GetStreamGroupCommandInput
|
|
8
|
+
input: GetStreamGroupCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
GetStreamGroupCommandInput,
|
|
13
11
|
GetStreamGroupCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const GetStreamGroupCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: GetStreamGroupCommandInput
|
|
17
|
+
input: GetStreamGroupCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
GetStreamGroupCommandInput,
|
|
22
20
|
GetStreamGroupCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetStreamSessionInput,
|
|
4
|
-
GetStreamSessionOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetStreamSessionInput, GetStreamSessionOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface GetStreamSessionCommandInput extends GetStreamSessionInput {}
|
|
8
|
-
export interface GetStreamSessionCommandOutput
|
|
9
|
-
extends GetStreamSessionOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetStreamSessionCommandOutput extends GetStreamSessionOutput, __MetadataBearer {}
|
|
11
6
|
declare const GetStreamSessionCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: GetStreamSessionCommandInput
|
|
8
|
+
input: GetStreamSessionCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
GetStreamSessionCommandInput,
|
|
16
11
|
GetStreamSessionCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const GetStreamSessionCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: GetStreamSessionCommandInput
|
|
17
|
+
input: GetStreamSessionCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
GetStreamSessionCommandInput,
|
|
25
20
|
GetStreamSessionCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListApplicationsInput,
|
|
4
|
-
ListApplicationsOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListApplicationsInput, ListApplicationsOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListApplicationsCommandInput extends ListApplicationsInput {}
|
|
8
|
-
export interface ListApplicationsCommandOutput
|
|
9
|
-
extends ListApplicationsOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListApplicationsCommandOutput extends ListApplicationsOutput, __MetadataBearer {}
|
|
11
6
|
declare const ListApplicationsCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListApplicationsCommandInput
|
|
8
|
+
input: ListApplicationsCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListApplicationsCommandInput,
|
|
16
11
|
ListApplicationsCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListStreamGroupsInput,
|
|
4
|
-
ListStreamGroupsOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListStreamGroupsInput, ListStreamGroupsOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListStreamGroupsCommandInput extends ListStreamGroupsInput {}
|
|
8
|
-
export interface ListStreamGroupsCommandOutput
|
|
9
|
-
extends ListStreamGroupsOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListStreamGroupsCommandOutput extends ListStreamGroupsOutput, __MetadataBearer {}
|
|
11
6
|
declare const ListStreamGroupsCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListStreamGroupsCommandInput
|
|
8
|
+
input: ListStreamGroupsCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListStreamGroupsCommandInput,
|
|
16
11
|
ListStreamGroupsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListStreamSessionsByAccountOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListStreamSessionsByAccountCommandInput
|
|
8
|
-
extends ListStreamSessionsByAccountInput {}
|
|
7
|
+
export interface ListStreamSessionsByAccountCommandInput extends ListStreamSessionsByAccountInput {}
|
|
9
8
|
export interface ListStreamSessionsByAccountCommandOutput
|
|
10
|
-
extends ListStreamSessionsByAccountOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListStreamSessionsByAccountOutput, __MetadataBearer {}
|
|
12
10
|
declare const ListStreamSessionsByAccountCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListStreamSessionsByAccountCommandInput
|
|
12
|
+
input: ListStreamSessionsByAccountCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListStreamSessionsByAccountCommandInput,
|
|
17
15
|
ListStreamSessionsByAccountCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListStreamSessionsInput,
|
|
4
|
-
ListStreamSessionsOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListStreamSessionsInput, ListStreamSessionsOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListStreamSessionsCommandInput
|
|
8
|
-
extends ListStreamSessionsInput {}
|
|
4
|
+
export interface ListStreamSessionsCommandInput extends ListStreamSessionsInput {}
|
|
9
5
|
export interface ListStreamSessionsCommandOutput
|
|
10
|
-
extends ListStreamSessionsOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListStreamSessionsOutput, __MetadataBearer {}
|
|
12
7
|
declare const ListStreamSessionsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListStreamSessionsCommandInput
|
|
9
|
+
input: ListStreamSessionsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListStreamSessionsCommandInput,
|
|
17
12
|
ListStreamSessionsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListStreamSessionsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListStreamSessionsCommandInput
|
|
18
|
+
input: ListStreamSessionsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListStreamSessionsCommandInput,
|
|
26
21
|
ListStreamSessionsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListTagsForResourceRequest,
|
|
4
|
-
ListTagsForResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListTagsForResourceCommandInput
|
|
8
|
-
extends ListTagsForResourceRequest {}
|
|
4
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {}
|
|
9
5
|
export interface ListTagsForResourceCommandOutput
|
|
10
|
-
extends ListTagsForResourceResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListTagsForResourceResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListTagsForResourceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListTagsForResourceCommandInput
|
|
9
|
+
input: ListTagsForResourceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListTagsForResourceCommandInput,
|
|
17
12
|
ListTagsForResourceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListTagsForResourceCommandInput
|
|
18
|
+
input: ListTagsForResourceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListTagsForResourceCommandInput,
|
|
26
21
|
ListTagsForResourceCommandOutput,
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
2
|
import { RemoveStreamGroupLocationsInput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
|
-
export interface RemoveStreamGroupLocationsCommandInput
|
|
5
|
-
|
|
6
|
-
export interface RemoveStreamGroupLocationsCommandOutput
|
|
7
|
-
extends __MetadataBearer {}
|
|
4
|
+
export interface RemoveStreamGroupLocationsCommandInput extends RemoveStreamGroupLocationsInput {}
|
|
5
|
+
export interface RemoveStreamGroupLocationsCommandOutput extends __MetadataBearer {}
|
|
8
6
|
declare const RemoveStreamGroupLocationsCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: RemoveStreamGroupLocationsCommandInput
|
|
8
|
+
input: RemoveStreamGroupLocationsCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
RemoveStreamGroupLocationsCommandInput,
|
|
13
11
|
RemoveStreamGroupLocationsCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const RemoveStreamGroupLocationsCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: RemoveStreamGroupLocationsCommandInput
|
|
17
|
+
input: RemoveStreamGroupLocationsCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
RemoveStreamGroupLocationsCommandInput,
|
|
22
20
|
RemoveStreamGroupLocationsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
StartStreamSessionInput,
|
|
4
|
-
StartStreamSessionOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { StartStreamSessionInput, StartStreamSessionOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface StartStreamSessionCommandInput
|
|
8
|
-
extends StartStreamSessionInput {}
|
|
4
|
+
export interface StartStreamSessionCommandInput extends StartStreamSessionInput {}
|
|
9
5
|
export interface StartStreamSessionCommandOutput
|
|
10
|
-
extends StartStreamSessionOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends StartStreamSessionOutput, __MetadataBearer {}
|
|
12
7
|
declare const StartStreamSessionCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: StartStreamSessionCommandInput
|
|
9
|
+
input: StartStreamSessionCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
StartStreamSessionCommandInput,
|
|
17
12
|
StartStreamSessionCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const StartStreamSessionCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: StartStreamSessionCommandInput
|
|
18
|
+
input: StartStreamSessionCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
StartStreamSessionCommandInput,
|
|
26
21
|
StartStreamSessionCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
5
|
-
export interface TagResourceCommandOutput
|
|
6
|
-
extends TagResourceResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {}
|
|
8
6
|
declare const TagResourceCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: TagResourceCommandInput
|
|
8
|
+
input: TagResourceCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
TagResourceCommandInput,
|
|
13
11
|
TagResourceCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const TagResourceCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: TagResourceCommandInput
|
|
17
|
+
input: TagResourceCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
TagResourceCommandInput,
|
|
22
20
|
TagResourceCommandOutput,
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
2
|
import { TerminateStreamSessionInput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
|
-
export interface TerminateStreamSessionCommandInput
|
|
5
|
-
extends TerminateStreamSessionInput {}
|
|
4
|
+
export interface TerminateStreamSessionCommandInput extends TerminateStreamSessionInput {}
|
|
6
5
|
export interface TerminateStreamSessionCommandOutput extends __MetadataBearer {}
|
|
7
6
|
declare const TerminateStreamSessionCommand_base: {
|
|
8
7
|
new (
|
|
9
|
-
input: TerminateStreamSessionCommandInput
|
|
8
|
+
input: TerminateStreamSessionCommandInput,
|
|
10
9
|
): import("@smithy/core/client").CommandImpl<
|
|
11
10
|
TerminateStreamSessionCommandInput,
|
|
12
11
|
TerminateStreamSessionCommandOutput,
|
|
@@ -15,7 +14,7 @@ declare const TerminateStreamSessionCommand_base: {
|
|
|
15
14
|
import("..").ServiceOutputTypes
|
|
16
15
|
>;
|
|
17
16
|
new (
|
|
18
|
-
input: TerminateStreamSessionCommandInput
|
|
17
|
+
input: TerminateStreamSessionCommandInput,
|
|
19
18
|
): import("@smithy/core/client").CommandImpl<
|
|
20
19
|
TerminateStreamSessionCommandInput,
|
|
21
20
|
TerminateStreamSessionCommandOutput,
|