@aws-sdk/client-gameliftstreams 3.1087.0 → 3.1089.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 +38 -38
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UntagResourceRequest,
|
|
4
|
-
UntagResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
8
|
-
export interface UntagResourceCommandOutput
|
|
9
|
-
extends UntagResourceResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {}
|
|
11
6
|
declare const UntagResourceCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: UntagResourceCommandInput
|
|
8
|
+
input: UntagResourceCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
UntagResourceCommandInput,
|
|
16
11
|
UntagResourceCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const UntagResourceCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: UntagResourceCommandInput
|
|
17
|
+
input: UntagResourceCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
UntagResourceCommandInput,
|
|
25
20
|
UntagResourceCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateApplicationInput,
|
|
4
|
-
UpdateApplicationOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateApplicationInput, UpdateApplicationOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface UpdateApplicationCommandInput extends UpdateApplicationInput {}
|
|
8
|
-
export interface UpdateApplicationCommandOutput
|
|
9
|
-
extends UpdateApplicationOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UpdateApplicationCommandOutput extends UpdateApplicationOutput, __MetadataBearer {}
|
|
11
6
|
declare const UpdateApplicationCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: UpdateApplicationCommandInput
|
|
8
|
+
input: UpdateApplicationCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
UpdateApplicationCommandInput,
|
|
16
11
|
UpdateApplicationCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const UpdateApplicationCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: UpdateApplicationCommandInput
|
|
17
|
+
input: UpdateApplicationCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
UpdateApplicationCommandInput,
|
|
25
20
|
UpdateApplicationCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateStreamGroupInput,
|
|
4
|
-
UpdateStreamGroupOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateStreamGroupInput, UpdateStreamGroupOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface UpdateStreamGroupCommandInput extends UpdateStreamGroupInput {}
|
|
8
|
-
export interface UpdateStreamGroupCommandOutput
|
|
9
|
-
extends UpdateStreamGroupOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UpdateStreamGroupCommandOutput extends UpdateStreamGroupOutput, __MetadataBearer {}
|
|
11
6
|
declare const UpdateStreamGroupCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: UpdateStreamGroupCommandInput
|
|
8
|
+
input: UpdateStreamGroupCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
UpdateStreamGroupCommandInput,
|
|
16
11
|
UpdateStreamGroupCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const UpdateStreamGroupCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: UpdateStreamGroupCommandInput
|
|
17
|
+
input: UpdateStreamGroupCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
UpdateStreamGroupCommandInput,
|
|
25
20
|
UpdateStreamGroupCommandOutput,
|
|
@@ -22,7 +22,7 @@ export type ClientResolvedEndpointParameters = Pick<
|
|
|
22
22
|
defaultSigningName: string;
|
|
23
23
|
};
|
|
24
24
|
export declare const resolveClientEndpointParameters: <T>(
|
|
25
|
-
options: T & ClientInputEndpointParameters
|
|
25
|
+
options: T & ClientInputEndpointParameters,
|
|
26
26
|
) => T & ClientResolvedEndpointParameters;
|
|
27
27
|
export declare const commonParams: {
|
|
28
28
|
readonly UseFIPS: {
|
|
@@ -3,7 +3,8 @@ import { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
|
|
|
3
3
|
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
4
|
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
5
|
export interface GameLiftStreamsExtensionConfiguration
|
|
6
|
-
extends
|
|
6
|
+
extends
|
|
7
|
+
HttpHandlerExtensionConfiguration,
|
|
7
8
|
DefaultExtensionConfiguration,
|
|
8
9
|
AwsRegionExtensionConfiguration,
|
|
9
10
|
HttpAuthExtensionConfiguration {}
|
|
@@ -13,8 +13,7 @@ export declare const ApplicationStatus: {
|
|
|
13
13
|
readonly PROCESSING: "PROCESSING";
|
|
14
14
|
readonly READY: "READY";
|
|
15
15
|
};
|
|
16
|
-
export type ApplicationStatus =
|
|
17
|
-
(typeof ApplicationStatus)[keyof typeof ApplicationStatus];
|
|
16
|
+
export type ApplicationStatus = (typeof ApplicationStatus)[keyof typeof ApplicationStatus];
|
|
18
17
|
export declare const ApplicationStatusReason: {
|
|
19
18
|
readonly ACCESS_DENIED: "accessDenied";
|
|
20
19
|
readonly INTERNAL_ERROR: "internalError";
|
|
@@ -64,8 +63,7 @@ export declare const StreamGroupStatus: {
|
|
|
64
63
|
readonly EXPIRED: "EXPIRED";
|
|
65
64
|
readonly UPDATING_LOCATIONS: "UPDATING_LOCATIONS";
|
|
66
65
|
};
|
|
67
|
-
export type StreamGroupStatus =
|
|
68
|
-
(typeof StreamGroupStatus)[keyof typeof StreamGroupStatus];
|
|
66
|
+
export type StreamGroupStatus = (typeof StreamGroupStatus)[keyof typeof StreamGroupStatus];
|
|
69
67
|
export declare const StreamGroupStatusReason: {
|
|
70
68
|
readonly INTERNAL_ERROR: "internalError";
|
|
71
69
|
readonly NO_AVAILABLE_INSTANCES: "noAvailableInstances";
|
|
@@ -77,8 +75,7 @@ export declare const ExportFilesStatus: {
|
|
|
77
75
|
readonly PENDING: "PENDING";
|
|
78
76
|
readonly SUCCEEDED: "SUCCEEDED";
|
|
79
77
|
};
|
|
80
|
-
export type ExportFilesStatus =
|
|
81
|
-
(typeof ExportFilesStatus)[keyof typeof ExportFilesStatus];
|
|
78
|
+
export type ExportFilesStatus = (typeof ExportFilesStatus)[keyof typeof ExportFilesStatus];
|
|
82
79
|
export declare const Protocol: {
|
|
83
80
|
readonly WEBRTC: "WebRTC";
|
|
84
81
|
};
|
|
@@ -93,8 +90,7 @@ export declare const StreamSessionStatus: {
|
|
|
93
90
|
readonly TERMINATED: "TERMINATED";
|
|
94
91
|
readonly TERMINATING: "TERMINATING";
|
|
95
92
|
};
|
|
96
|
-
export type StreamSessionStatus =
|
|
97
|
-
(typeof StreamSessionStatus)[keyof typeof StreamSessionStatus];
|
|
93
|
+
export type StreamSessionStatus = (typeof StreamSessionStatus)[keyof typeof StreamSessionStatus];
|
|
98
94
|
export declare const StreamSessionStatusReason: {
|
|
99
95
|
readonly API_TERMINATED: "apiTerminated";
|
|
100
96
|
readonly APPLICATION_EXIT: "applicationExit";
|
|
@@ -4,34 +4,26 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
4
4
|
readonly name: "AccessDeniedException";
|
|
5
5
|
readonly $fault: "client";
|
|
6
6
|
Message: string | undefined;
|
|
7
|
-
constructor(
|
|
8
|
-
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
|
-
);
|
|
7
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
10
8
|
}
|
|
11
9
|
export declare class InternalServerException extends __BaseException {
|
|
12
10
|
readonly name: "InternalServerException";
|
|
13
11
|
readonly $fault: "server";
|
|
14
12
|
$retryable: {};
|
|
15
13
|
Message: string | undefined;
|
|
16
|
-
constructor(
|
|
17
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
18
|
-
);
|
|
14
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
19
15
|
}
|
|
20
16
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
21
17
|
readonly name: "ResourceNotFoundException";
|
|
22
18
|
readonly $fault: "client";
|
|
23
19
|
Message: string | undefined;
|
|
24
|
-
constructor(
|
|
25
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
26
|
-
);
|
|
20
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
27
21
|
}
|
|
28
22
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
29
23
|
readonly name: "ServiceQuotaExceededException";
|
|
30
24
|
readonly $fault: "client";
|
|
31
25
|
Message: string | undefined;
|
|
32
|
-
constructor(
|
|
33
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
34
|
-
);
|
|
26
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
35
27
|
}
|
|
36
28
|
export declare class ThrottlingException extends __BaseException {
|
|
37
29
|
readonly name: "ThrottlingException";
|
|
@@ -40,17 +32,13 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
40
32
|
throttling: boolean;
|
|
41
33
|
};
|
|
42
34
|
Message: string | undefined;
|
|
43
|
-
constructor(
|
|
44
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
45
|
-
);
|
|
35
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
46
36
|
}
|
|
47
37
|
export declare class ValidationException extends __BaseException {
|
|
48
38
|
readonly name: "ValidationException";
|
|
49
39
|
readonly $fault: "client";
|
|
50
40
|
Message: string | undefined;
|
|
51
|
-
constructor(
|
|
52
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
53
|
-
);
|
|
41
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
54
42
|
}
|
|
55
43
|
export declare class ConflictException extends __BaseException {
|
|
56
44
|
readonly name: "ConflictException";
|
|
@@ -63,10 +51,5 @@ export declare class StreamSessionAccessNotReadyException extends __BaseExceptio
|
|
|
63
51
|
readonly $fault: "client";
|
|
64
52
|
$retryable: {};
|
|
65
53
|
Message: string | undefined;
|
|
66
|
-
constructor(
|
|
67
|
-
opts: __ExceptionOptionType<
|
|
68
|
-
StreamSessionAccessNotReadyException,
|
|
69
|
-
__BaseException
|
|
70
|
-
>
|
|
71
|
-
);
|
|
54
|
+
constructor(opts: __ExceptionOptionType<StreamSessionAccessNotReadyException, __BaseException>);
|
|
72
55
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@smithy/types";
|
|
2
2
|
import { GameLiftStreamsClient } from "../GameLiftStreamsClient";
|
|
3
|
-
export interface GameLiftStreamsPaginationConfiguration
|
|
4
|
-
extends PaginationConfiguration {
|
|
3
|
+
export interface GameLiftStreamsPaginationConfiguration extends PaginationConfiguration {
|
|
5
4
|
client: GameLiftStreamsClient;
|
|
6
5
|
}
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
|
2
2
|
import { GameLiftStreamsClientConfig } from "./GameLiftStreamsClient";
|
|
3
|
-
export declare const getRuntimeConfig: (
|
|
4
|
-
config: GameLiftStreamsClientConfig
|
|
5
|
-
) => {
|
|
3
|
+
export declare const getRuntimeConfig: (config: GameLiftStreamsClientConfig) => {
|
|
6
4
|
runtime: string;
|
|
7
5
|
defaultsMode: import("@smithy/types").Provider<
|
|
8
6
|
import("@smithy/core/client").ResolvedDefaultsMode
|
|
@@ -10,24 +8,16 @@ export declare const getRuntimeConfig: (
|
|
|
10
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
9
|
credentialDefaultProvider:
|
|
12
10
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
13
|
-
| ((
|
|
14
|
-
_: unknown
|
|
15
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
16
12
|
defaultUserAgentProvider: (
|
|
17
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
13
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
18
14
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
19
15
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
20
16
|
region: string | import("@smithy/types").Provider<any>;
|
|
21
|
-
requestHandler:
|
|
22
|
-
| import("@smithy/core/protocols").HttpHandler<any>
|
|
23
|
-
| RequestHandler;
|
|
17
|
+
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
24
18
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
25
19
|
streamCollector: (
|
|
26
|
-
stream:
|
|
27
|
-
| import("stream").Readable
|
|
28
|
-
| import("stream/web").ReadableStream
|
|
29
|
-
| ReadableStream
|
|
30
|
-
| Blob
|
|
20
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
31
21
|
) => Promise<Uint8Array>;
|
|
32
22
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
33
23
|
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
@@ -55,13 +45,8 @@ export declare const getRuntimeConfig: (
|
|
|
55
45
|
logger: import("@smithy/types").Logger;
|
|
56
46
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
57
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
58
|
-
userAgentAppId?:
|
|
59
|
-
|
|
60
|
-
| undefined
|
|
61
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
62
|
-
retryStrategy?:
|
|
63
|
-
| import("@smithy/types").RetryStrategy
|
|
64
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
48
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
49
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
65
50
|
endpoint?:
|
|
66
51
|
| ((
|
|
67
52
|
| string
|
|
@@ -83,7 +68,7 @@ export declare const getRuntimeConfig: (
|
|
|
83
68
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
84
69
|
context?: {
|
|
85
70
|
logger?: import("@smithy/types").Logger;
|
|
86
|
-
}
|
|
71
|
+
},
|
|
87
72
|
) => import("@smithy/types").EndpointV2;
|
|
88
73
|
tls?: boolean;
|
|
89
74
|
serviceConfiguredEndpoint?: never;
|
|
@@ -96,13 +81,13 @@ export declare const getRuntimeConfig: (
|
|
|
96
81
|
signer?:
|
|
97
82
|
| import("@smithy/types").RequestSigner
|
|
98
83
|
| ((
|
|
99
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
100
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
101
86
|
signingEscapePath?: boolean;
|
|
102
87
|
systemClockOffset?: number;
|
|
103
88
|
signingRegion?: string;
|
|
104
89
|
signerConstructor?: new (
|
|
105
90
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
106
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
107
92
|
) => import("@smithy/types").RequestSigner;
|
|
108
93
|
};
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
|
2
2
|
import { GameLiftStreamsClientConfig } from "./GameLiftStreamsClient";
|
|
3
|
-
export declare const getRuntimeConfig: (
|
|
4
|
-
config: GameLiftStreamsClientConfig
|
|
5
|
-
) => {
|
|
3
|
+
export declare const getRuntimeConfig: (config: GameLiftStreamsClientConfig) => {
|
|
6
4
|
runtime: string;
|
|
7
5
|
defaultsMode: import("@smithy/types").Provider<
|
|
8
6
|
import("@smithy/core/client").ResolvedDefaultsMode
|
|
@@ -12,23 +10,17 @@ export declare const getRuntimeConfig: (
|
|
|
12
10
|
credentialDefaultProvider:
|
|
13
11
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
14
12
|
| ((
|
|
15
|
-
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
13
|
+
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit,
|
|
16
14
|
) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
|
|
17
15
|
defaultUserAgentProvider: (
|
|
18
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
16
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
19
17
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
20
18
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
21
19
|
region: string | import("@smithy/types").Provider<string>;
|
|
22
|
-
requestHandler:
|
|
23
|
-
| RequestHandler
|
|
24
|
-
| import("@smithy/core/protocols").HttpHandler<any>;
|
|
20
|
+
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
25
21
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
26
22
|
streamCollector: (
|
|
27
|
-
stream:
|
|
28
|
-
| import("stream").Readable
|
|
29
|
-
| import("stream/web").ReadableStream
|
|
30
|
-
| ReadableStream
|
|
31
|
-
| Blob
|
|
23
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
32
24
|
) => Promise<Uint8Array>;
|
|
33
25
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
34
26
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
@@ -55,9 +47,7 @@ export declare const getRuntimeConfig: (
|
|
|
55
47
|
logger: import("@smithy/types").Logger;
|
|
56
48
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
57
49
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
58
|
-
retryStrategy?:
|
|
59
|
-
| import("@smithy/types").RetryStrategy
|
|
60
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
50
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
61
51
|
endpoint?:
|
|
62
52
|
| ((
|
|
63
53
|
| string
|
|
@@ -79,7 +69,7 @@ export declare const getRuntimeConfig: (
|
|
|
79
69
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
80
70
|
context?: {
|
|
81
71
|
logger?: import("@smithy/types").Logger;
|
|
82
|
-
}
|
|
72
|
+
},
|
|
83
73
|
) => import("@smithy/types").EndpointV2;
|
|
84
74
|
tls?: boolean;
|
|
85
75
|
serviceConfiguredEndpoint?: never;
|
|
@@ -91,13 +81,13 @@ export declare const getRuntimeConfig: (
|
|
|
91
81
|
signer?:
|
|
92
82
|
| import("@smithy/types").RequestSigner
|
|
93
83
|
| ((
|
|
94
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
95
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
96
86
|
signingEscapePath?: boolean;
|
|
97
87
|
systemClockOffset?: number;
|
|
98
88
|
signingRegion?: string;
|
|
99
89
|
signerConstructor?: new (
|
|
100
90
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
101
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
102
92
|
) => import("@smithy/types").RequestSigner;
|
|
103
93
|
};
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
import { GameLiftStreamsClientConfig } from "./GameLiftStreamsClient";
|
|
2
|
-
export declare const getRuntimeConfig: (
|
|
3
|
-
config: GameLiftStreamsClientConfig
|
|
4
|
-
) => {
|
|
2
|
+
export declare const getRuntimeConfig: (config: GameLiftStreamsClientConfig) => {
|
|
5
3
|
runtime: string;
|
|
6
4
|
requestHandler:
|
|
7
5
|
| import("@smithy/types").NodeHttpHandlerOptions
|
|
@@ -23,11 +21,7 @@ export declare const getRuntimeConfig: (
|
|
|
23
21
|
urlParser: import("@smithy/types").UrlParser;
|
|
24
22
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
25
23
|
streamCollector: (
|
|
26
|
-
stream:
|
|
27
|
-
| import("stream").Readable
|
|
28
|
-
| import("stream/web").ReadableStream
|
|
29
|
-
| ReadableStream
|
|
30
|
-
| Blob
|
|
24
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
31
25
|
) => Promise<Uint8Array>;
|
|
32
26
|
base64Decoder: import("@smithy/types").Decoder;
|
|
33
27
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -42,30 +36,21 @@ export declare const getRuntimeConfig: (
|
|
|
42
36
|
region: string | import("@smithy/types").Provider<any>;
|
|
43
37
|
profile?: string;
|
|
44
38
|
defaultUserAgentProvider: (
|
|
45
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
39
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
46
40
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
47
41
|
credentialDefaultProvider:
|
|
48
42
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
49
|
-
| ((
|
|
50
|
-
_: unknown
|
|
51
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
43
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
52
44
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
53
45
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
54
46
|
logger: import("@smithy/types").Logger;
|
|
55
47
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
56
48
|
defaultsMode:
|
|
57
49
|
| import("@smithy/core/client").DefaultsMode
|
|
58
|
-
| import("@smithy/types").Provider<
|
|
59
|
-
import("@smithy/core/client").DefaultsMode
|
|
60
|
-
>;
|
|
50
|
+
| import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>;
|
|
61
51
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
62
|
-
userAgentAppId?:
|
|
63
|
-
|
|
64
|
-
| undefined
|
|
65
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
66
|
-
retryStrategy?:
|
|
67
|
-
| import("@smithy/types").RetryStrategy
|
|
68
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
52
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
53
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
69
54
|
endpoint?:
|
|
70
55
|
| ((
|
|
71
56
|
| string
|
|
@@ -87,7 +72,7 @@ export declare const getRuntimeConfig: (
|
|
|
87
72
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
88
73
|
context?: {
|
|
89
74
|
logger?: import("@smithy/types").Logger;
|
|
90
|
-
}
|
|
75
|
+
},
|
|
91
76
|
) => import("@smithy/types").EndpointV2;
|
|
92
77
|
tls?: boolean;
|
|
93
78
|
serviceConfiguredEndpoint?: never;
|
|
@@ -100,13 +85,13 @@ export declare const getRuntimeConfig: (
|
|
|
100
85
|
signer?:
|
|
101
86
|
| import("@smithy/types").RequestSigner
|
|
102
87
|
| ((
|
|
103
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
88
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
104
89
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
105
90
|
signingEscapePath?: boolean;
|
|
106
91
|
systemClockOffset?: number;
|
|
107
92
|
signingRegion?: string;
|
|
108
93
|
signerConstructor?: new (
|
|
109
94
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
110
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
95
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
111
96
|
) => import("@smithy/types").RequestSigner;
|
|
112
97
|
};
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
|
|
2
2
|
import { GameLiftStreamsClientConfig } from "./GameLiftStreamsClient";
|
|
3
|
-
export declare const getRuntimeConfig: (
|
|
4
|
-
config: GameLiftStreamsClientConfig
|
|
5
|
-
) => {
|
|
3
|
+
export declare const getRuntimeConfig: (config: GameLiftStreamsClientConfig) => {
|
|
6
4
|
apiVersion: string;
|
|
7
5
|
base64Decoder: import("@smithy/types").Decoder;
|
|
8
6
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -11,7 +9,7 @@ export declare const getRuntimeConfig: (
|
|
|
11
9
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
12
10
|
context?: {
|
|
13
11
|
logger?: import("@smithy/types").Logger;
|
|
14
|
-
}
|
|
12
|
+
},
|
|
15
13
|
) => import("@smithy/types").EndpointV2;
|
|
16
14
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
17
15
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").GameLiftStreamsHttpAuthSchemeProvider;
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
import { GameLiftStreamsExtensionConfiguration } from "./extensionConfiguration";
|
|
2
2
|
export interface RuntimeExtension {
|
|
3
|
-
configure(
|
|
4
|
-
extensionConfiguration: GameLiftStreamsExtensionConfiguration
|
|
5
|
-
): void;
|
|
3
|
+
configure(extensionConfiguration: GameLiftStreamsExtensionConfiguration): void;
|
|
6
4
|
}
|
|
7
5
|
export interface RuntimeExtensionsConfig {
|
|
8
6
|
extensions: RuntimeExtension[];
|
|
9
7
|
}
|
|
10
8
|
export declare const resolveRuntimeExtensions: (
|
|
11
9
|
runtimeConfig: any,
|
|
12
|
-
extensions: RuntimeExtension[]
|
|
10
|
+
extensions: RuntimeExtension[],
|
|
13
11
|
) => any;
|
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
2
|
-
import {
|
|
3
|
-
StaticErrorSchema,
|
|
4
|
-
StaticOperationSchema,
|
|
5
|
-
StaticStructureSchema,
|
|
6
|
-
} from "@smithy/types";
|
|
2
|
+
import { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
|
|
7
3
|
export declare var GameLiftStreamsServiceException$: StaticErrorSchema;
|
|
8
4
|
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
9
5
|
export declare var ConflictException$: StaticErrorSchema;
|
|
@@ -8,11 +8,9 @@ import { ResourceNotFoundException } from "../models/errors";
|
|
|
8
8
|
import { GameLiftStreamsServiceException } from "../models/GameLiftStreamsServiceException";
|
|
9
9
|
export declare const waitForApplicationDeleted: (
|
|
10
10
|
params: WaiterConfiguration<GameLiftStreamsClient>,
|
|
11
|
-
input: GetApplicationCommandInput
|
|
12
|
-
) => Promise<
|
|
13
|
-
WaiterResult<GetApplicationCommandOutput | GameLiftStreamsServiceException>
|
|
14
|
-
>;
|
|
11
|
+
input: GetApplicationCommandInput,
|
|
12
|
+
) => Promise<WaiterResult<GetApplicationCommandOutput | GameLiftStreamsServiceException>>;
|
|
15
13
|
export declare const waitUntilApplicationDeleted: (
|
|
16
14
|
params: WaiterConfiguration<GameLiftStreamsClient>,
|
|
17
|
-
input: GetApplicationCommandInput
|
|
15
|
+
input: GetApplicationCommandInput,
|
|
18
16
|
) => Promise<WaiterResult<ResourceNotFoundException>>;
|
|
@@ -7,11 +7,9 @@ import { GameLiftStreamsClient } from "../GameLiftStreamsClient";
|
|
|
7
7
|
import { GameLiftStreamsServiceException } from "../models/GameLiftStreamsServiceException";
|
|
8
8
|
export declare const waitForApplicationReady: (
|
|
9
9
|
params: WaiterConfiguration<GameLiftStreamsClient>,
|
|
10
|
-
input: GetApplicationCommandInput
|
|
11
|
-
) => Promise<
|
|
12
|
-
WaiterResult<GetApplicationCommandOutput | GameLiftStreamsServiceException>
|
|
13
|
-
>;
|
|
10
|
+
input: GetApplicationCommandInput,
|
|
11
|
+
) => Promise<WaiterResult<GetApplicationCommandOutput | GameLiftStreamsServiceException>>;
|
|
14
12
|
export declare const waitUntilApplicationReady: (
|
|
15
13
|
params: WaiterConfiguration<GameLiftStreamsClient>,
|
|
16
|
-
input: GetApplicationCommandInput
|
|
14
|
+
input: GetApplicationCommandInput,
|
|
17
15
|
) => Promise<WaiterResult<GetApplicationCommandOutput>>;
|
|
@@ -7,11 +7,9 @@ import { GameLiftStreamsClient } from "../GameLiftStreamsClient";
|
|
|
7
7
|
import { GameLiftStreamsServiceException } from "../models/GameLiftStreamsServiceException";
|
|
8
8
|
export declare const waitForStreamGroupActive: (
|
|
9
9
|
params: WaiterConfiguration<GameLiftStreamsClient>,
|
|
10
|
-
input: GetStreamGroupCommandInput
|
|
11
|
-
) => Promise<
|
|
12
|
-
WaiterResult<GetStreamGroupCommandOutput | GameLiftStreamsServiceException>
|
|
13
|
-
>;
|
|
10
|
+
input: GetStreamGroupCommandInput,
|
|
11
|
+
) => Promise<WaiterResult<GetStreamGroupCommandOutput | GameLiftStreamsServiceException>>;
|
|
14
12
|
export declare const waitUntilStreamGroupActive: (
|
|
15
13
|
params: WaiterConfiguration<GameLiftStreamsClient>,
|
|
16
|
-
input: GetStreamGroupCommandInput
|
|
14
|
+
input: GetStreamGroupCommandInput,
|
|
17
15
|
) => Promise<WaiterResult<GetStreamGroupCommandOutput>>;
|
|
@@ -8,11 +8,9 @@ import { ResourceNotFoundException } from "../models/errors";
|
|
|
8
8
|
import { GameLiftStreamsServiceException } from "../models/GameLiftStreamsServiceException";
|
|
9
9
|
export declare const waitForStreamGroupDeleted: (
|
|
10
10
|
params: WaiterConfiguration<GameLiftStreamsClient>,
|
|
11
|
-
input: GetStreamGroupCommandInput
|
|
12
|
-
) => Promise<
|
|
13
|
-
WaiterResult<GetStreamGroupCommandOutput | GameLiftStreamsServiceException>
|
|
14
|
-
>;
|
|
11
|
+
input: GetStreamGroupCommandInput,
|
|
12
|
+
) => Promise<WaiterResult<GetStreamGroupCommandOutput | GameLiftStreamsServiceException>>;
|
|
15
13
|
export declare const waitUntilStreamGroupDeleted: (
|
|
16
14
|
params: WaiterConfiguration<GameLiftStreamsClient>,
|
|
17
|
-
input: GetStreamGroupCommandInput
|
|
15
|
+
input: GetStreamGroupCommandInput,
|
|
18
16
|
) => Promise<WaiterResult<ResourceNotFoundException>>;
|
|
@@ -7,11 +7,9 @@ import { GameLiftStreamsClient } from "../GameLiftStreamsClient";
|
|
|
7
7
|
import { GameLiftStreamsServiceException } from "../models/GameLiftStreamsServiceException";
|
|
8
8
|
export declare const waitForStreamSessionActive: (
|
|
9
9
|
params: WaiterConfiguration<GameLiftStreamsClient>,
|
|
10
|
-
input: GetStreamSessionCommandInput
|
|
11
|
-
) => Promise<
|
|
12
|
-
WaiterResult<GetStreamSessionCommandOutput | GameLiftStreamsServiceException>
|
|
13
|
-
>;
|
|
10
|
+
input: GetStreamSessionCommandInput,
|
|
11
|
+
) => Promise<WaiterResult<GetStreamSessionCommandOutput | GameLiftStreamsServiceException>>;
|
|
14
12
|
export declare const waitUntilStreamSessionActive: (
|
|
15
13
|
params: WaiterConfiguration<GameLiftStreamsClient>,
|
|
16
|
-
input: GetStreamSessionCommandInput
|
|
14
|
+
input: GetStreamSessionCommandInput,
|
|
17
15
|
) => Promise<WaiterResult<GetStreamSessionCommandOutput>>;
|