@aws-sdk/client-gameliftstreams 3.928.0 → 3.930.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.
Files changed (48) hide show
  1. package/dist-cjs/index.js +991 -1166
  2. package/dist-cjs/runtimeConfig.shared.js +2 -0
  3. package/dist-es/GameLiftStreamsClient.js +2 -0
  4. package/dist-es/commands/AddStreamGroupLocationsCommand.js +3 -9
  5. package/dist-es/commands/AssociateApplicationsCommand.js +3 -9
  6. package/dist-es/commands/CreateApplicationCommand.js +3 -9
  7. package/dist-es/commands/CreateStreamGroupCommand.js +3 -9
  8. package/dist-es/commands/CreateStreamSessionConnectionCommand.js +3 -10
  9. package/dist-es/commands/DeleteApplicationCommand.js +3 -9
  10. package/dist-es/commands/DeleteStreamGroupCommand.js +3 -9
  11. package/dist-es/commands/DisassociateApplicationsCommand.js +3 -9
  12. package/dist-es/commands/ExportStreamSessionFilesCommand.js +3 -9
  13. package/dist-es/commands/GetApplicationCommand.js +3 -9
  14. package/dist-es/commands/GetStreamGroupCommand.js +3 -9
  15. package/dist-es/commands/GetStreamSessionCommand.js +3 -10
  16. package/dist-es/commands/ListApplicationsCommand.js +3 -9
  17. package/dist-es/commands/ListStreamGroupsCommand.js +3 -9
  18. package/dist-es/commands/ListStreamSessionsByAccountCommand.js +3 -9
  19. package/dist-es/commands/ListStreamSessionsCommand.js +3 -9
  20. package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
  21. package/dist-es/commands/RemoveStreamGroupLocationsCommand.js +3 -9
  22. package/dist-es/commands/StartStreamSessionCommand.js +3 -10
  23. package/dist-es/commands/TagResourceCommand.js +3 -9
  24. package/dist-es/commands/TerminateStreamSessionCommand.js +3 -9
  25. package/dist-es/commands/UntagResourceCommand.js +3 -9
  26. package/dist-es/commands/UpdateApplicationCommand.js +3 -9
  27. package/dist-es/commands/UpdateStreamGroupCommand.js +3 -9
  28. package/dist-es/models/models_0.js +0 -23
  29. package/dist-es/runtimeConfig.shared.js +2 -0
  30. package/dist-es/schemas/schemas_0.js +937 -0
  31. package/dist-types/GameLiftStreamsClient.d.ts +10 -1
  32. package/dist-types/models/models_0.d.ts +0 -20
  33. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  34. package/dist-types/runtimeConfig.d.ts +1 -0
  35. package/dist-types/runtimeConfig.native.d.ts +1 -0
  36. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  37. package/dist-types/schemas/schemas_0.d.ts +104 -0
  38. package/dist-types/ts3.4/GameLiftStreamsClient.d.ts +4 -0
  39. package/dist-types/ts3.4/models/models_0.d.ts +0 -15
  40. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  41. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  42. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  43. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  44. package/dist-types/ts3.4/schemas/schemas_0.d.ts +110 -0
  45. package/package.json +34 -35
  46. package/dist-es/protocols/Aws_restJson1.js +0 -959
  47. package/dist-types/protocols/Aws_restJson1.d.ts +0 -218
  48. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -293
@@ -5,7 +5,7 @@ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-
5
5
  import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
6
6
  import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
7
7
  import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
8
- import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
8
+ import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, ClientProtocol, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, HttpRequest, HttpResponse, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
9
9
  import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
10
10
  import { AddStreamGroupLocationsCommandInput, AddStreamGroupLocationsCommandOutput } from "./commands/AddStreamGroupLocationsCommand";
11
11
  import { AssociateApplicationsCommandInput, AssociateApplicationsCommandOutput } from "./commands/AssociateApplicationsCommand";
@@ -165,6 +165,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
165
165
  * Optional extensions
166
166
  */
167
167
  extensions?: RuntimeExtension[];
168
+ /**
169
+ * The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
170
+ * may be overridden. A default will always be set by the client.
171
+ * Available options depend on the service's supported protocols and will not be validated by
172
+ * the client.
173
+ * @alpha
174
+ *
175
+ */
176
+ protocol?: ClientProtocol<HttpRequest, HttpResponse>;
168
177
  /**
169
178
  * The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
170
179
  */
@@ -1835,23 +1835,3 @@ export interface UntagResourceRequest {
1835
1835
  */
1836
1836
  export interface UntagResourceResponse {
1837
1837
  }
1838
- /**
1839
- * @internal
1840
- */
1841
- export declare const CreateStreamSessionConnectionInputFilterSensitiveLog: (obj: CreateStreamSessionConnectionInput) => any;
1842
- /**
1843
- * @internal
1844
- */
1845
- export declare const CreateStreamSessionConnectionOutputFilterSensitiveLog: (obj: CreateStreamSessionConnectionOutput) => any;
1846
- /**
1847
- * @internal
1848
- */
1849
- export declare const GetStreamSessionOutputFilterSensitiveLog: (obj: GetStreamSessionOutput) => any;
1850
- /**
1851
- * @internal
1852
- */
1853
- export declare const StartStreamSessionInputFilterSensitiveLog: (obj: StartStreamSessionInput) => any;
1854
- /**
1855
- * @internal
1856
- */
1857
- export declare const StartStreamSessionOutputFilterSensitiveLog: (obj: StartStreamSessionOutput) => any;
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: GameLiftStreamsClientConfig) =>
29
29
  profile?: string;
30
30
  logger: import("@smithy/types").Logger;
31
31
  extensions: import("./runtimeExtensions").RuntimeExtension[];
32
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
32
33
  customUserAgent?: string | import("@smithy/types").UserAgent;
33
34
  userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
34
35
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
@@ -31,6 +31,7 @@ export declare const getRuntimeConfig: (config: GameLiftStreamsClientConfig) =>
31
31
  profile?: string;
32
32
  logger: import("@smithy/types").Logger;
33
33
  extensions: import("./runtimeExtensions").RuntimeExtension[];
34
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
34
35
  customUserAgent?: string | import("@smithy/types").UserAgent;
35
36
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
36
37
  endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: GameLiftStreamsClientConfig) =>
27
27
  retryMode: string | import("@smithy/types").Provider<string>;
28
28
  logger: import("@smithy/types").Logger;
29
29
  extensions: import("./runtimeExtensions").RuntimeExtension[];
30
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
30
31
  defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
31
32
  customUserAgent?: string | import("@smithy/types").UserAgent;
32
33
  userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
@@ -14,6 +14,7 @@ export declare const getRuntimeConfig: (config: GameLiftStreamsClientConfig) =>
14
14
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").GameLiftStreamsHttpAuthSchemeProvider;
15
15
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
16
16
  logger: import("@smithy/types").Logger;
17
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
17
18
  serviceId: string;
18
19
  urlParser: import("@smithy/types").UrlParser;
19
20
  utf8Decoder: import("@smithy/types").Decoder;
@@ -0,0 +1,104 @@
1
+ import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticSimpleSchema, StaticStructureSchema } from "@smithy/types";
2
+ export declare var SignalRequest: StaticSimpleSchema;
3
+ export declare var SignalResponse: StaticSimpleSchema;
4
+ export declare var AccessDeniedException: StaticErrorSchema;
5
+ export declare var AddStreamGroupLocationsInput: StaticStructureSchema;
6
+ export declare var AddStreamGroupLocationsOutput: StaticStructureSchema;
7
+ export declare var ApplicationSummary: StaticStructureSchema;
8
+ export declare var AssociateApplicationsInput: StaticStructureSchema;
9
+ export declare var AssociateApplicationsOutput: StaticStructureSchema;
10
+ export declare var ConflictException: StaticErrorSchema;
11
+ export declare var CreateApplicationInput: StaticStructureSchema;
12
+ export declare var CreateApplicationOutput: StaticStructureSchema;
13
+ export declare var CreateStreamGroupInput: StaticStructureSchema;
14
+ export declare var CreateStreamGroupOutput: StaticStructureSchema;
15
+ export declare var CreateStreamSessionConnectionInput: StaticStructureSchema;
16
+ export declare var CreateStreamSessionConnectionOutput: StaticStructureSchema;
17
+ export declare var DefaultApplication: StaticStructureSchema;
18
+ export declare var DeleteApplicationInput: StaticStructureSchema;
19
+ export declare var DeleteStreamGroupInput: StaticStructureSchema;
20
+ export declare var DisassociateApplicationsInput: StaticStructureSchema;
21
+ export declare var DisassociateApplicationsOutput: StaticStructureSchema;
22
+ export declare var ExportFilesMetadata: StaticStructureSchema;
23
+ export declare var ExportStreamSessionFilesInput: StaticStructureSchema;
24
+ export declare var ExportStreamSessionFilesOutput: StaticStructureSchema;
25
+ export declare var GetApplicationInput: StaticStructureSchema;
26
+ export declare var GetApplicationOutput: StaticStructureSchema;
27
+ export declare var GetStreamGroupInput: StaticStructureSchema;
28
+ export declare var GetStreamGroupOutput: StaticStructureSchema;
29
+ export declare var GetStreamSessionInput: StaticStructureSchema;
30
+ export declare var GetStreamSessionOutput: StaticStructureSchema;
31
+ export declare var InternalServerException: StaticErrorSchema;
32
+ export declare var ListApplicationsInput: StaticStructureSchema;
33
+ export declare var ListApplicationsOutput: StaticStructureSchema;
34
+ export declare var ListStreamGroupsInput: StaticStructureSchema;
35
+ export declare var ListStreamGroupsOutput: StaticStructureSchema;
36
+ export declare var ListStreamSessionsByAccountInput: StaticStructureSchema;
37
+ export declare var ListStreamSessionsByAccountOutput: StaticStructureSchema;
38
+ export declare var ListStreamSessionsInput: StaticStructureSchema;
39
+ export declare var ListStreamSessionsOutput: StaticStructureSchema;
40
+ export declare var ListTagsForResourceRequest: StaticStructureSchema;
41
+ export declare var ListTagsForResourceResponse: StaticStructureSchema;
42
+ export declare var LocationConfiguration: StaticStructureSchema;
43
+ export declare var LocationState: StaticStructureSchema;
44
+ export declare var RemoveStreamGroupLocationsInput: StaticStructureSchema;
45
+ export declare var ReplicationStatus: StaticStructureSchema;
46
+ export declare var ResourceNotFoundException: StaticErrorSchema;
47
+ export declare var RuntimeEnvironment: StaticStructureSchema;
48
+ export declare var ServiceQuotaExceededException: StaticErrorSchema;
49
+ export declare var StartStreamSessionInput: StaticStructureSchema;
50
+ export declare var StartStreamSessionOutput: StaticStructureSchema;
51
+ export declare var StreamGroupSummary: StaticStructureSchema;
52
+ export declare var StreamSessionSummary: StaticStructureSchema;
53
+ export declare var TagResourceRequest: StaticStructureSchema;
54
+ export declare var TagResourceResponse: StaticStructureSchema;
55
+ export declare var TerminateStreamSessionInput: StaticStructureSchema;
56
+ export declare var ThrottlingException: StaticErrorSchema;
57
+ export declare var UntagResourceRequest: StaticStructureSchema;
58
+ export declare var UntagResourceResponse: StaticStructureSchema;
59
+ export declare var UpdateApplicationInput: StaticStructureSchema;
60
+ export declare var UpdateApplicationOutput: StaticStructureSchema;
61
+ export declare var UpdateStreamGroupInput: StaticStructureSchema;
62
+ export declare var UpdateStreamGroupOutput: StaticStructureSchema;
63
+ export declare var ValidationException: StaticErrorSchema;
64
+ export declare var __Unit: "unit";
65
+ export declare var GameLiftStreamsServiceException: StaticErrorSchema;
66
+ export declare var ApplicationSummaryList: StaticListSchema;
67
+ export declare var ArnList: number;
68
+ export declare var FilePaths: number;
69
+ export declare var GameLaunchArgList: number;
70
+ export declare var Identifiers: number;
71
+ export declare var LocationConfigurations: StaticListSchema;
72
+ export declare var LocationList: number;
73
+ export declare var LocationsList: number;
74
+ export declare var LocationStates: StaticListSchema;
75
+ export declare var ReplicationStatuses: StaticListSchema;
76
+ export declare var StreamGroupSummaryList: StaticListSchema;
77
+ export declare var StreamSessionSummaryList: StaticListSchema;
78
+ export declare var TagKeyList: number;
79
+ export declare var EnvironmentVariables: number;
80
+ export declare var Tags: number;
81
+ export declare var AddStreamGroupLocations: StaticOperationSchema;
82
+ export declare var AssociateApplications: StaticOperationSchema;
83
+ export declare var CreateApplication: StaticOperationSchema;
84
+ export declare var CreateStreamGroup: StaticOperationSchema;
85
+ export declare var CreateStreamSessionConnection: StaticOperationSchema;
86
+ export declare var DeleteApplication: StaticOperationSchema;
87
+ export declare var DeleteStreamGroup: StaticOperationSchema;
88
+ export declare var DisassociateApplications: StaticOperationSchema;
89
+ export declare var ExportStreamSessionFiles: StaticOperationSchema;
90
+ export declare var GetApplication: StaticOperationSchema;
91
+ export declare var GetStreamGroup: StaticOperationSchema;
92
+ export declare var GetStreamSession: StaticOperationSchema;
93
+ export declare var ListApplications: StaticOperationSchema;
94
+ export declare var ListStreamGroups: StaticOperationSchema;
95
+ export declare var ListStreamSessions: StaticOperationSchema;
96
+ export declare var ListStreamSessionsByAccount: StaticOperationSchema;
97
+ export declare var ListTagsForResource: StaticOperationSchema;
98
+ export declare var RemoveStreamGroupLocations: StaticOperationSchema;
99
+ export declare var StartStreamSession: StaticOperationSchema;
100
+ export declare var TagResource: StaticOperationSchema;
101
+ export declare var TerminateStreamSession: StaticOperationSchema;
102
+ export declare var UntagResource: StaticOperationSchema;
103
+ export declare var UpdateApplication: StaticOperationSchema;
104
+ export declare var UpdateStreamGroup: StaticOperationSchema;
@@ -30,10 +30,13 @@ import {
30
30
  BodyLengthCalculator as __BodyLengthCalculator,
31
31
  CheckOptionalClientConfig as __CheckOptionalClientConfig,
32
32
  ChecksumConstructor as __ChecksumConstructor,
33
+ ClientProtocol,
33
34
  Decoder as __Decoder,
34
35
  Encoder as __Encoder,
35
36
  HashConstructor as __HashConstructor,
36
37
  HttpHandlerOptions as __HttpHandlerOptions,
38
+ HttpRequest,
39
+ HttpResponse,
37
40
  Logger as __Logger,
38
41
  Provider as __Provider,
39
42
  Provider,
@@ -222,6 +225,7 @@ export interface ClientDefaults
222
225
  retryMode?: string | __Provider<string>;
223
226
  logger?: __Logger;
224
227
  extensions?: RuntimeExtension[];
228
+ protocol?: ClientProtocol<HttpRequest, HttpResponse>;
225
229
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
226
230
  }
227
231
  export type GameLiftStreamsClientConfigType = Partial<
@@ -513,18 +513,3 @@ export interface UntagResourceRequest {
513
513
  TagKeys: string[] | undefined;
514
514
  }
515
515
  export interface UntagResourceResponse {}
516
- export declare const CreateStreamSessionConnectionInputFilterSensitiveLog: (
517
- obj: CreateStreamSessionConnectionInput
518
- ) => any;
519
- export declare const CreateStreamSessionConnectionOutputFilterSensitiveLog: (
520
- obj: CreateStreamSessionConnectionOutput
521
- ) => any;
522
- export declare const GetStreamSessionOutputFilterSensitiveLog: (
523
- obj: GetStreamSessionOutput
524
- ) => any;
525
- export declare const StartStreamSessionInputFilterSensitiveLog: (
526
- obj: StartStreamSessionInput
527
- ) => any;
528
- export declare const StartStreamSessionOutputFilterSensitiveLog: (
529
- obj: StartStreamSessionOutput
530
- ) => any;
@@ -39,6 +39,10 @@ export declare const getRuntimeConfig: (
39
39
  profile?: string;
40
40
  logger: import("@smithy/types").Logger;
41
41
  extensions: import("./runtimeExtensions").RuntimeExtension[];
42
+ protocol: import("@smithy/types").ClientProtocol<
43
+ import("@smithy/types").HttpRequest,
44
+ import("@smithy/types").HttpResponse
45
+ >;
42
46
  customUserAgent?: string | import("@smithy/types").UserAgent;
43
47
  userAgentAppId?:
44
48
  | string
@@ -40,6 +40,10 @@ export declare const getRuntimeConfig: (
40
40
  profile?: string;
41
41
  logger: import("@smithy/types").Logger;
42
42
  extensions: import("./runtimeExtensions").RuntimeExtension[];
43
+ protocol: import("@smithy/types").ClientProtocol<
44
+ import("@smithy/types").HttpRequest,
45
+ import("@smithy/types").HttpResponse
46
+ >;
43
47
  customUserAgent?: string | import("@smithy/types").UserAgent;
44
48
  retryStrategy?:
45
49
  | import("@smithy/types").RetryStrategy
@@ -38,6 +38,10 @@ export declare const getRuntimeConfig: (
38
38
  retryMode: string | import("@smithy/types").Provider<string>;
39
39
  logger: import("@smithy/types").Logger;
40
40
  extensions: import("./runtimeExtensions").RuntimeExtension[];
41
+ protocol: import("@smithy/types").ClientProtocol<
42
+ import("@smithy/types").HttpRequest,
43
+ import("@smithy/types").HttpResponse
44
+ >;
41
45
  defaultsMode:
42
46
  | import("@smithy/smithy-client").DefaultsMode
43
47
  | import("@smithy/types").Provider<
@@ -16,6 +16,10 @@ export declare const getRuntimeConfig: (
16
16
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").GameLiftStreamsHttpAuthSchemeProvider;
17
17
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
18
18
  logger: import("@smithy/types").Logger;
19
+ protocol: import("@smithy/types").ClientProtocol<
20
+ import("@smithy/types").HttpRequest,
21
+ import("@smithy/types").HttpResponse
22
+ >;
19
23
  serviceId: string;
20
24
  urlParser: import("@smithy/types").UrlParser;
21
25
  utf8Decoder: import("@smithy/types").Decoder;
@@ -0,0 +1,110 @@
1
+ import {
2
+ StaticErrorSchema,
3
+ StaticListSchema,
4
+ StaticOperationSchema,
5
+ StaticSimpleSchema,
6
+ StaticStructureSchema,
7
+ } from "@smithy/types";
8
+ export declare var SignalRequest: StaticSimpleSchema;
9
+ export declare var SignalResponse: StaticSimpleSchema;
10
+ export declare var AccessDeniedException: StaticErrorSchema;
11
+ export declare var AddStreamGroupLocationsInput: StaticStructureSchema;
12
+ export declare var AddStreamGroupLocationsOutput: StaticStructureSchema;
13
+ export declare var ApplicationSummary: StaticStructureSchema;
14
+ export declare var AssociateApplicationsInput: StaticStructureSchema;
15
+ export declare var AssociateApplicationsOutput: StaticStructureSchema;
16
+ export declare var ConflictException: StaticErrorSchema;
17
+ export declare var CreateApplicationInput: StaticStructureSchema;
18
+ export declare var CreateApplicationOutput: StaticStructureSchema;
19
+ export declare var CreateStreamGroupInput: StaticStructureSchema;
20
+ export declare var CreateStreamGroupOutput: StaticStructureSchema;
21
+ export declare var CreateStreamSessionConnectionInput: StaticStructureSchema;
22
+ export declare var CreateStreamSessionConnectionOutput: StaticStructureSchema;
23
+ export declare var DefaultApplication: StaticStructureSchema;
24
+ export declare var DeleteApplicationInput: StaticStructureSchema;
25
+ export declare var DeleteStreamGroupInput: StaticStructureSchema;
26
+ export declare var DisassociateApplicationsInput: StaticStructureSchema;
27
+ export declare var DisassociateApplicationsOutput: StaticStructureSchema;
28
+ export declare var ExportFilesMetadata: StaticStructureSchema;
29
+ export declare var ExportStreamSessionFilesInput: StaticStructureSchema;
30
+ export declare var ExportStreamSessionFilesOutput: StaticStructureSchema;
31
+ export declare var GetApplicationInput: StaticStructureSchema;
32
+ export declare var GetApplicationOutput: StaticStructureSchema;
33
+ export declare var GetStreamGroupInput: StaticStructureSchema;
34
+ export declare var GetStreamGroupOutput: StaticStructureSchema;
35
+ export declare var GetStreamSessionInput: StaticStructureSchema;
36
+ export declare var GetStreamSessionOutput: StaticStructureSchema;
37
+ export declare var InternalServerException: StaticErrorSchema;
38
+ export declare var ListApplicationsInput: StaticStructureSchema;
39
+ export declare var ListApplicationsOutput: StaticStructureSchema;
40
+ export declare var ListStreamGroupsInput: StaticStructureSchema;
41
+ export declare var ListStreamGroupsOutput: StaticStructureSchema;
42
+ export declare var ListStreamSessionsByAccountInput: StaticStructureSchema;
43
+ export declare var ListStreamSessionsByAccountOutput: StaticStructureSchema;
44
+ export declare var ListStreamSessionsInput: StaticStructureSchema;
45
+ export declare var ListStreamSessionsOutput: StaticStructureSchema;
46
+ export declare var ListTagsForResourceRequest: StaticStructureSchema;
47
+ export declare var ListTagsForResourceResponse: StaticStructureSchema;
48
+ export declare var LocationConfiguration: StaticStructureSchema;
49
+ export declare var LocationState: StaticStructureSchema;
50
+ export declare var RemoveStreamGroupLocationsInput: StaticStructureSchema;
51
+ export declare var ReplicationStatus: StaticStructureSchema;
52
+ export declare var ResourceNotFoundException: StaticErrorSchema;
53
+ export declare var RuntimeEnvironment: StaticStructureSchema;
54
+ export declare var ServiceQuotaExceededException: StaticErrorSchema;
55
+ export declare var StartStreamSessionInput: StaticStructureSchema;
56
+ export declare var StartStreamSessionOutput: StaticStructureSchema;
57
+ export declare var StreamGroupSummary: StaticStructureSchema;
58
+ export declare var StreamSessionSummary: StaticStructureSchema;
59
+ export declare var TagResourceRequest: StaticStructureSchema;
60
+ export declare var TagResourceResponse: StaticStructureSchema;
61
+ export declare var TerminateStreamSessionInput: StaticStructureSchema;
62
+ export declare var ThrottlingException: StaticErrorSchema;
63
+ export declare var UntagResourceRequest: StaticStructureSchema;
64
+ export declare var UntagResourceResponse: StaticStructureSchema;
65
+ export declare var UpdateApplicationInput: StaticStructureSchema;
66
+ export declare var UpdateApplicationOutput: StaticStructureSchema;
67
+ export declare var UpdateStreamGroupInput: StaticStructureSchema;
68
+ export declare var UpdateStreamGroupOutput: StaticStructureSchema;
69
+ export declare var ValidationException: StaticErrorSchema;
70
+ export declare var __Unit: "unit";
71
+ export declare var GameLiftStreamsServiceException: StaticErrorSchema;
72
+ export declare var ApplicationSummaryList: StaticListSchema;
73
+ export declare var ArnList: number;
74
+ export declare var FilePaths: number;
75
+ export declare var GameLaunchArgList: number;
76
+ export declare var Identifiers: number;
77
+ export declare var LocationConfigurations: StaticListSchema;
78
+ export declare var LocationList: number;
79
+ export declare var LocationsList: number;
80
+ export declare var LocationStates: StaticListSchema;
81
+ export declare var ReplicationStatuses: StaticListSchema;
82
+ export declare var StreamGroupSummaryList: StaticListSchema;
83
+ export declare var StreamSessionSummaryList: StaticListSchema;
84
+ export declare var TagKeyList: number;
85
+ export declare var EnvironmentVariables: number;
86
+ export declare var Tags: number;
87
+ export declare var AddStreamGroupLocations: StaticOperationSchema;
88
+ export declare var AssociateApplications: StaticOperationSchema;
89
+ export declare var CreateApplication: StaticOperationSchema;
90
+ export declare var CreateStreamGroup: StaticOperationSchema;
91
+ export declare var CreateStreamSessionConnection: StaticOperationSchema;
92
+ export declare var DeleteApplication: StaticOperationSchema;
93
+ export declare var DeleteStreamGroup: StaticOperationSchema;
94
+ export declare var DisassociateApplications: StaticOperationSchema;
95
+ export declare var ExportStreamSessionFiles: StaticOperationSchema;
96
+ export declare var GetApplication: StaticOperationSchema;
97
+ export declare var GetStreamGroup: StaticOperationSchema;
98
+ export declare var GetStreamSession: StaticOperationSchema;
99
+ export declare var ListApplications: StaticOperationSchema;
100
+ export declare var ListStreamGroups: StaticOperationSchema;
101
+ export declare var ListStreamSessions: StaticOperationSchema;
102
+ export declare var ListStreamSessionsByAccount: StaticOperationSchema;
103
+ export declare var ListTagsForResource: StaticOperationSchema;
104
+ export declare var RemoveStreamGroupLocations: StaticOperationSchema;
105
+ export declare var StartStreamSession: StaticOperationSchema;
106
+ export declare var TagResource: StaticOperationSchema;
107
+ export declare var TerminateStreamSession: StaticOperationSchema;
108
+ export declare var UntagResource: StaticOperationSchema;
109
+ export declare var UpdateApplication: StaticOperationSchema;
110
+ export declare var UpdateStreamGroup: StaticOperationSchema;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-gameliftstreams",
3
3
  "description": "AWS SDK for JavaScript Gameliftstreams Client for Node.js, Browser and React Native",
4
- "version": "3.928.0",
4
+ "version": "3.930.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-gameliftstreams",
@@ -20,44 +20,43 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.928.0",
24
- "@aws-sdk/credential-provider-node": "3.928.0",
25
- "@aws-sdk/middleware-host-header": "3.922.0",
26
- "@aws-sdk/middleware-logger": "3.922.0",
27
- "@aws-sdk/middleware-recursion-detection": "3.922.0",
28
- "@aws-sdk/middleware-user-agent": "3.928.0",
29
- "@aws-sdk/region-config-resolver": "3.925.0",
30
- "@aws-sdk/types": "3.922.0",
31
- "@aws-sdk/util-endpoints": "3.922.0",
32
- "@aws-sdk/util-user-agent-browser": "3.922.0",
33
- "@aws-sdk/util-user-agent-node": "3.928.0",
34
- "@smithy/config-resolver": "^4.4.2",
35
- "@smithy/core": "^3.17.2",
36
- "@smithy/fetch-http-handler": "^5.3.5",
37
- "@smithy/hash-node": "^4.2.4",
38
- "@smithy/invalid-dependency": "^4.2.4",
39
- "@smithy/middleware-content-length": "^4.2.4",
40
- "@smithy/middleware-endpoint": "^4.3.6",
41
- "@smithy/middleware-retry": "^4.4.6",
42
- "@smithy/middleware-serde": "^4.2.4",
43
- "@smithy/middleware-stack": "^4.2.4",
44
- "@smithy/node-config-provider": "^4.3.4",
45
- "@smithy/node-http-handler": "^4.4.4",
46
- "@smithy/protocol-http": "^5.3.4",
47
- "@smithy/smithy-client": "^4.9.2",
48
- "@smithy/types": "^4.8.1",
49
- "@smithy/url-parser": "^4.2.4",
23
+ "@aws-sdk/core": "3.930.0",
24
+ "@aws-sdk/credential-provider-node": "3.930.0",
25
+ "@aws-sdk/middleware-host-header": "3.930.0",
26
+ "@aws-sdk/middleware-logger": "3.930.0",
27
+ "@aws-sdk/middleware-recursion-detection": "3.930.0",
28
+ "@aws-sdk/middleware-user-agent": "3.930.0",
29
+ "@aws-sdk/region-config-resolver": "3.930.0",
30
+ "@aws-sdk/types": "3.930.0",
31
+ "@aws-sdk/util-endpoints": "3.930.0",
32
+ "@aws-sdk/util-user-agent-browser": "3.930.0",
33
+ "@aws-sdk/util-user-agent-node": "3.930.0",
34
+ "@smithy/config-resolver": "^4.4.3",
35
+ "@smithy/core": "^3.18.2",
36
+ "@smithy/fetch-http-handler": "^5.3.6",
37
+ "@smithy/hash-node": "^4.2.5",
38
+ "@smithy/invalid-dependency": "^4.2.5",
39
+ "@smithy/middleware-content-length": "^4.2.5",
40
+ "@smithy/middleware-endpoint": "^4.3.9",
41
+ "@smithy/middleware-retry": "^4.4.9",
42
+ "@smithy/middleware-serde": "^4.2.5",
43
+ "@smithy/middleware-stack": "^4.2.5",
44
+ "@smithy/node-config-provider": "^4.3.5",
45
+ "@smithy/node-http-handler": "^4.4.5",
46
+ "@smithy/protocol-http": "^5.3.5",
47
+ "@smithy/smithy-client": "^4.9.5",
48
+ "@smithy/types": "^4.9.0",
49
+ "@smithy/url-parser": "^4.2.5",
50
50
  "@smithy/util-base64": "^4.3.0",
51
51
  "@smithy/util-body-length-browser": "^4.2.0",
52
52
  "@smithy/util-body-length-node": "^4.2.1",
53
- "@smithy/util-defaults-mode-browser": "^4.3.5",
54
- "@smithy/util-defaults-mode-node": "^4.2.8",
55
- "@smithy/util-endpoints": "^3.2.4",
56
- "@smithy/util-middleware": "^4.2.4",
57
- "@smithy/util-retry": "^4.2.4",
53
+ "@smithy/util-defaults-mode-browser": "^4.3.8",
54
+ "@smithy/util-defaults-mode-node": "^4.2.11",
55
+ "@smithy/util-endpoints": "^3.2.5",
56
+ "@smithy/util-middleware": "^4.2.5",
57
+ "@smithy/util-retry": "^4.2.5",
58
58
  "@smithy/util-utf8": "^4.2.0",
59
- "@smithy/util-waiter": "^4.2.4",
60
- "@smithy/uuid": "^1.1.0",
59
+ "@smithy/util-waiter": "^4.2.5",
61
60
  "tslib": "^2.6.2"
62
61
  },
63
62
  "devDependencies": {