@aws-sdk/client-gameliftstreams 3.952.0 → 3.954.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 (58) hide show
  1. package/dist-cjs/index.js +338 -210
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/AddStreamGroupLocationsCommand.js +2 -2
  4. package/dist-es/commands/AssociateApplicationsCommand.js +2 -2
  5. package/dist-es/commands/CreateApplicationCommand.js +2 -2
  6. package/dist-es/commands/CreateStreamGroupCommand.js +2 -2
  7. package/dist-es/commands/CreateStreamSessionConnectionCommand.js +2 -2
  8. package/dist-es/commands/DeleteApplicationCommand.js +2 -2
  9. package/dist-es/commands/DeleteStreamGroupCommand.js +2 -2
  10. package/dist-es/commands/DisassociateApplicationsCommand.js +2 -2
  11. package/dist-es/commands/ExportStreamSessionFilesCommand.js +2 -2
  12. package/dist-es/commands/GetApplicationCommand.js +2 -2
  13. package/dist-es/commands/GetStreamGroupCommand.js +2 -2
  14. package/dist-es/commands/GetStreamSessionCommand.js +2 -2
  15. package/dist-es/commands/ListApplicationsCommand.js +2 -2
  16. package/dist-es/commands/ListStreamGroupsCommand.js +2 -2
  17. package/dist-es/commands/ListStreamSessionsByAccountCommand.js +2 -2
  18. package/dist-es/commands/ListStreamSessionsCommand.js +2 -2
  19. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  20. package/dist-es/commands/RemoveStreamGroupLocationsCommand.js +2 -2
  21. package/dist-es/commands/StartStreamSessionCommand.js +2 -2
  22. package/dist-es/commands/TagResourceCommand.js +2 -2
  23. package/dist-es/commands/TerminateStreamSessionCommand.js +2 -2
  24. package/dist-es/commands/UntagResourceCommand.js +2 -2
  25. package/dist-es/commands/UpdateApplicationCommand.js +2 -2
  26. package/dist-es/commands/UpdateStreamGroupCommand.js +2 -2
  27. package/dist-es/index.js +1 -0
  28. package/dist-es/models/enums.js +7 -0
  29. package/dist-es/runtimeConfig.shared.js +6 -1
  30. package/dist-es/schemas/schemas_0.js +212 -177
  31. package/dist-types/GameLiftStreamsClient.d.ts +1 -10
  32. package/dist-types/commands/AddStreamGroupLocationsCommand.d.ts +4 -0
  33. package/dist-types/commands/CreateStreamGroupCommand.d.ts +7 -3
  34. package/dist-types/commands/GetStreamGroupCommand.d.ts +3 -1
  35. package/dist-types/commands/GetStreamSessionCommand.d.ts +3 -0
  36. package/dist-types/commands/ListStreamGroupsCommand.d.ts +1 -1
  37. package/dist-types/commands/ListStreamSessionsByAccountCommand.d.ts +1 -0
  38. package/dist-types/commands/ListStreamSessionsCommand.d.ts +1 -0
  39. package/dist-types/commands/StartStreamSessionCommand.d.ts +6 -0
  40. package/dist-types/commands/UpdateStreamGroupCommand.d.ts +6 -2
  41. package/dist-types/index.d.ts +1 -0
  42. package/dist-types/models/enums.d.ts +7 -0
  43. package/dist-types/models/models_0.d.ts +65 -12
  44. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  45. package/dist-types/runtimeConfig.d.ts +6 -2
  46. package/dist-types/runtimeConfig.native.d.ts +6 -2
  47. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  48. package/dist-types/schemas/schemas_0.d.ts +87 -104
  49. package/dist-types/ts3.4/GameLiftStreamsClient.d.ts +0 -4
  50. package/dist-types/ts3.4/index.d.ts +1 -0
  51. package/dist-types/ts3.4/models/enums.d.ts +7 -0
  52. package/dist-types/ts3.4/models/models_0.d.ts +11 -0
  53. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  54. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  55. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  56. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  57. package/dist-types/ts3.4/schemas/schemas_0.d.ts +86 -105
  58. package/package.json +35 -35
@@ -26,7 +26,12 @@ const getRuntimeConfig = (config) => {
26
26
  },
27
27
  ],
28
28
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
29
- protocol: config?.protocol ?? new protocols_1.AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.gameliftstreams" }),
29
+ protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
30
+ protocolSettings: config?.protocolSettings ?? {
31
+ defaultNamespace: "com.amazonaws.gameliftstreams",
32
+ version: "2018-05-10",
33
+ serviceTarget: "GameLiftStreams",
34
+ },
30
35
  serviceId: config?.serviceId ?? "GameLiftStreams",
31
36
  urlParser: config?.urlParser ?? url_parser_1.parseUrl,
32
37
  utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { AddStreamGroupLocations } from "../schemas/schemas_0";
4
+ import { AddStreamGroupLocations$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class AddStreamGroupLocationsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class AddStreamGroupLocationsCommand extends $Command
11
11
  })
12
12
  .s("GameLiftStreams", "AddStreamGroupLocations", {})
13
13
  .n("GameLiftStreamsClient", "AddStreamGroupLocationsCommand")
14
- .sc(AddStreamGroupLocations)
14
+ .sc(AddStreamGroupLocations$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { AssociateApplications } from "../schemas/schemas_0";
4
+ import { AssociateApplications$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class AssociateApplicationsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class AssociateApplicationsCommand extends $Command
11
11
  })
12
12
  .s("GameLiftStreams", "AssociateApplications", {})
13
13
  .n("GameLiftStreamsClient", "AssociateApplicationsCommand")
14
- .sc(AssociateApplications)
14
+ .sc(AssociateApplications$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateApplication } from "../schemas/schemas_0";
4
+ import { CreateApplication$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateApplicationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateApplicationCommand extends $Command
11
11
  })
12
12
  .s("GameLiftStreams", "CreateApplication", {})
13
13
  .n("GameLiftStreamsClient", "CreateApplicationCommand")
14
- .sc(CreateApplication)
14
+ .sc(CreateApplication$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateStreamGroup } from "../schemas/schemas_0";
4
+ import { CreateStreamGroup$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateStreamGroupCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateStreamGroupCommand extends $Command
11
11
  })
12
12
  .s("GameLiftStreams", "CreateStreamGroup", {})
13
13
  .n("GameLiftStreamsClient", "CreateStreamGroupCommand")
14
- .sc(CreateStreamGroup)
14
+ .sc(CreateStreamGroup$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateStreamSessionConnection } from "../schemas/schemas_0";
4
+ import { CreateStreamSessionConnection$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateStreamSessionConnectionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateStreamSessionConnectionCommand extends $Command
11
11
  })
12
12
  .s("GameLiftStreams", "CreateStreamSessionConnection", {})
13
13
  .n("GameLiftStreamsClient", "CreateStreamSessionConnectionCommand")
14
- .sc(CreateStreamSessionConnection)
14
+ .sc(CreateStreamSessionConnection$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteApplication } from "../schemas/schemas_0";
4
+ import { DeleteApplication$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteApplicationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteApplicationCommand extends $Command
11
11
  })
12
12
  .s("GameLiftStreams", "DeleteApplication", {})
13
13
  .n("GameLiftStreamsClient", "DeleteApplicationCommand")
14
- .sc(DeleteApplication)
14
+ .sc(DeleteApplication$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteStreamGroup } from "../schemas/schemas_0";
4
+ import { DeleteStreamGroup$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteStreamGroupCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteStreamGroupCommand extends $Command
11
11
  })
12
12
  .s("GameLiftStreams", "DeleteStreamGroup", {})
13
13
  .n("GameLiftStreamsClient", "DeleteStreamGroupCommand")
14
- .sc(DeleteStreamGroup)
14
+ .sc(DeleteStreamGroup$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DisassociateApplications } from "../schemas/schemas_0";
4
+ import { DisassociateApplications$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DisassociateApplicationsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DisassociateApplicationsCommand extends $Command
11
11
  })
12
12
  .s("GameLiftStreams", "DisassociateApplications", {})
13
13
  .n("GameLiftStreamsClient", "DisassociateApplicationsCommand")
14
- .sc(DisassociateApplications)
14
+ .sc(DisassociateApplications$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ExportStreamSessionFiles } from "../schemas/schemas_0";
4
+ import { ExportStreamSessionFiles$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ExportStreamSessionFilesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ExportStreamSessionFilesCommand extends $Command
11
11
  })
12
12
  .s("GameLiftStreams", "ExportStreamSessionFiles", {})
13
13
  .n("GameLiftStreamsClient", "ExportStreamSessionFilesCommand")
14
- .sc(ExportStreamSessionFiles)
14
+ .sc(ExportStreamSessionFiles$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetApplication } from "../schemas/schemas_0";
4
+ import { GetApplication$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetApplicationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetApplicationCommand extends $Command
11
11
  })
12
12
  .s("GameLiftStreams", "GetApplication", {})
13
13
  .n("GameLiftStreamsClient", "GetApplicationCommand")
14
- .sc(GetApplication)
14
+ .sc(GetApplication$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetStreamGroup } from "../schemas/schemas_0";
4
+ import { GetStreamGroup$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetStreamGroupCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetStreamGroupCommand extends $Command
11
11
  })
12
12
  .s("GameLiftStreams", "GetStreamGroup", {})
13
13
  .n("GameLiftStreamsClient", "GetStreamGroupCommand")
14
- .sc(GetStreamGroup)
14
+ .sc(GetStreamGroup$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetStreamSession } from "../schemas/schemas_0";
4
+ import { GetStreamSession$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetStreamSessionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetStreamSessionCommand extends $Command
11
11
  })
12
12
  .s("GameLiftStreams", "GetStreamSession", {})
13
13
  .n("GameLiftStreamsClient", "GetStreamSessionCommand")
14
- .sc(GetStreamSession)
14
+ .sc(GetStreamSession$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListApplications } from "../schemas/schemas_0";
4
+ import { ListApplications$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListApplicationsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListApplicationsCommand extends $Command
11
11
  })
12
12
  .s("GameLiftStreams", "ListApplications", {})
13
13
  .n("GameLiftStreamsClient", "ListApplicationsCommand")
14
- .sc(ListApplications)
14
+ .sc(ListApplications$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListStreamGroups } from "../schemas/schemas_0";
4
+ import { ListStreamGroups$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListStreamGroupsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListStreamGroupsCommand extends $Command
11
11
  })
12
12
  .s("GameLiftStreams", "ListStreamGroups", {})
13
13
  .n("GameLiftStreamsClient", "ListStreamGroupsCommand")
14
- .sc(ListStreamGroups)
14
+ .sc(ListStreamGroups$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListStreamSessionsByAccount } from "../schemas/schemas_0";
4
+ import { ListStreamSessionsByAccount$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListStreamSessionsByAccountCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListStreamSessionsByAccountCommand extends $Command
11
11
  })
12
12
  .s("GameLiftStreams", "ListStreamSessionsByAccount", {})
13
13
  .n("GameLiftStreamsClient", "ListStreamSessionsByAccountCommand")
14
- .sc(ListStreamSessionsByAccount)
14
+ .sc(ListStreamSessionsByAccount$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListStreamSessions } from "../schemas/schemas_0";
4
+ import { ListStreamSessions$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListStreamSessionsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListStreamSessionsCommand extends $Command
11
11
  })
12
12
  .s("GameLiftStreams", "ListStreamSessions", {})
13
13
  .n("GameLiftStreamsClient", "ListStreamSessionsCommand")
14
- .sc(ListStreamSessions)
14
+ .sc(ListStreamSessions$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListTagsForResource } from "../schemas/schemas_0";
4
+ import { ListTagsForResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListTagsForResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
11
11
  })
12
12
  .s("GameLiftStreams", "ListTagsForResource", {})
13
13
  .n("GameLiftStreamsClient", "ListTagsForResourceCommand")
14
- .sc(ListTagsForResource)
14
+ .sc(ListTagsForResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { RemoveStreamGroupLocations } from "../schemas/schemas_0";
4
+ import { RemoveStreamGroupLocations$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class RemoveStreamGroupLocationsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class RemoveStreamGroupLocationsCommand extends $Command
11
11
  })
12
12
  .s("GameLiftStreams", "RemoveStreamGroupLocations", {})
13
13
  .n("GameLiftStreamsClient", "RemoveStreamGroupLocationsCommand")
14
- .sc(RemoveStreamGroupLocations)
14
+ .sc(RemoveStreamGroupLocations$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { StartStreamSession } from "../schemas/schemas_0";
4
+ import { StartStreamSession$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class StartStreamSessionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class StartStreamSessionCommand extends $Command
11
11
  })
12
12
  .s("GameLiftStreams", "StartStreamSession", {})
13
13
  .n("GameLiftStreamsClient", "StartStreamSessionCommand")
14
- .sc(StartStreamSession)
14
+ .sc(StartStreamSession$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { TagResource } from "../schemas/schemas_0";
4
+ import { TagResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class TagResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
11
11
  })
12
12
  .s("GameLiftStreams", "TagResource", {})
13
13
  .n("GameLiftStreamsClient", "TagResourceCommand")
14
- .sc(TagResource)
14
+ .sc(TagResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { TerminateStreamSession } from "../schemas/schemas_0";
4
+ import { TerminateStreamSession$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class TerminateStreamSessionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class TerminateStreamSessionCommand extends $Command
11
11
  })
12
12
  .s("GameLiftStreams", "TerminateStreamSession", {})
13
13
  .n("GameLiftStreamsClient", "TerminateStreamSessionCommand")
14
- .sc(TerminateStreamSession)
14
+ .sc(TerminateStreamSession$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { UntagResource } from "../schemas/schemas_0";
4
+ import { UntagResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UntagResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
11
11
  })
12
12
  .s("GameLiftStreams", "UntagResource", {})
13
13
  .n("GameLiftStreamsClient", "UntagResourceCommand")
14
- .sc(UntagResource)
14
+ .sc(UntagResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { UpdateApplication } from "../schemas/schemas_0";
4
+ import { UpdateApplication$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateApplicationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateApplicationCommand extends $Command
11
11
  })
12
12
  .s("GameLiftStreams", "UpdateApplication", {})
13
13
  .n("GameLiftStreamsClient", "UpdateApplicationCommand")
14
- .sc(UpdateApplication)
14
+ .sc(UpdateApplication$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { UpdateStreamGroup } from "../schemas/schemas_0";
4
+ import { UpdateStreamGroup$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateStreamGroupCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateStreamGroupCommand extends $Command
11
11
  })
12
12
  .s("GameLiftStreams", "UpdateStreamGroup", {})
13
13
  .n("GameLiftStreamsClient", "UpdateStreamGroupCommand")
14
- .sc(UpdateStreamGroup)
14
+ .sc(UpdateStreamGroup$)
15
15
  .build() {
16
16
  }
package/dist-es/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from "./GameLiftStreamsClient";
2
2
  export * from "./GameLiftStreams";
3
3
  export * from "./commands";
4
+ export * from "./schemas/schemas_0";
4
5
  export * from "./pagination";
5
6
  export * from "./waiters";
6
7
  export * from "./models/enums";
@@ -31,6 +31,13 @@ export const StreamClass = {
31
31
  gen5n_high: "gen5n_high",
32
32
  gen5n_ultra: "gen5n_ultra",
33
33
  gen5n_win2022: "gen5n_win2022",
34
+ gen6n_high: "gen6n_high",
35
+ gen6n_medium: "gen6n_medium",
36
+ gen6n_pro: "gen6n_pro",
37
+ gen6n_pro_win2022: "gen6n_pro_win2022",
38
+ gen6n_small: "gen6n_small",
39
+ gen6n_ultra: "gen6n_ultra",
40
+ gen6n_ultra_win2022: "gen6n_ultra_win2022",
34
41
  };
35
42
  export const StreamGroupStatus = {
36
43
  ACTIVATING: "ACTIVATING",
@@ -23,7 +23,12 @@ export const getRuntimeConfig = (config) => {
23
23
  },
24
24
  ],
25
25
  logger: config?.logger ?? new NoOpLogger(),
26
- protocol: config?.protocol ?? new AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.gameliftstreams" }),
26
+ protocol: config?.protocol ?? AwsRestJsonProtocol,
27
+ protocolSettings: config?.protocolSettings ?? {
28
+ defaultNamespace: "com.amazonaws.gameliftstreams",
29
+ version: "2018-05-10",
30
+ serviceTarget: "GameLiftStreams",
31
+ },
27
32
  serviceId: config?.serviceId ?? "GameLiftStreams",
28
33
  urlParser: config?.urlParser ?? parseUrl,
29
34
  utf8Decoder: config?.utf8Decoder ?? fromUtf8,