@aws-sdk/client-simspaceweaver 3.948.0 → 3.953.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 (36) hide show
  1. package/dist-cjs/index.js +231 -162
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/CreateSnapshotCommand.js +2 -2
  4. package/dist-es/commands/DeleteAppCommand.js +2 -2
  5. package/dist-es/commands/DeleteSimulationCommand.js +2 -2
  6. package/dist-es/commands/DescribeAppCommand.js +2 -2
  7. package/dist-es/commands/DescribeSimulationCommand.js +2 -2
  8. package/dist-es/commands/ListAppsCommand.js +2 -2
  9. package/dist-es/commands/ListSimulationsCommand.js +2 -2
  10. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  11. package/dist-es/commands/StartAppCommand.js +2 -2
  12. package/dist-es/commands/StartClockCommand.js +2 -2
  13. package/dist-es/commands/StartSimulationCommand.js +2 -2
  14. package/dist-es/commands/StopAppCommand.js +2 -2
  15. package/dist-es/commands/StopClockCommand.js +2 -2
  16. package/dist-es/commands/StopSimulationCommand.js +2 -2
  17. package/dist-es/commands/TagResourceCommand.js +2 -2
  18. package/dist-es/commands/UntagResourceCommand.js +2 -2
  19. package/dist-es/index.js +1 -0
  20. package/dist-es/runtimeConfig.shared.js +6 -1
  21. package/dist-es/schemas/schemas_0.js +128 -128
  22. package/dist-types/SimSpaceWeaverClient.d.ts +1 -10
  23. package/dist-types/index.d.ts +1 -0
  24. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  25. package/dist-types/runtimeConfig.d.ts +6 -2
  26. package/dist-types/runtimeConfig.native.d.ts +6 -2
  27. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  28. package/dist-types/schemas/schemas_0.d.ts +70 -80
  29. package/dist-types/ts3.4/SimSpaceWeaverClient.d.ts +0 -4
  30. package/dist-types/ts3.4/index.d.ts +1 -0
  31. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  32. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  33. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  34. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  35. package/dist-types/ts3.4/schemas/schemas_0.d.ts +69 -81
  36. package/package.json +34 -34
@@ -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.simspaceweaver" }),
29
+ protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
30
+ protocolSettings: config?.protocolSettings ?? {
31
+ defaultNamespace: "com.amazonaws.simspaceweaver",
32
+ version: "2022-10-28",
33
+ serviceTarget: "SimSpaceWeaver",
34
+ },
30
35
  serviceId: config?.serviceId ?? "SimSpaceWeaver",
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 { CreateSnapshot } from "../schemas/schemas_0";
4
+ import { CreateSnapshot$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateSnapshotCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateSnapshotCommand extends $Command
11
11
  })
12
12
  .s("SimSpaceWeaver", "CreateSnapshot", {})
13
13
  .n("SimSpaceWeaverClient", "CreateSnapshotCommand")
14
- .sc(CreateSnapshot)
14
+ .sc(CreateSnapshot$)
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 { DeleteApp } from "../schemas/schemas_0";
4
+ import { DeleteApp$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteAppCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteAppCommand extends $Command
11
11
  })
12
12
  .s("SimSpaceWeaver", "DeleteApp", {})
13
13
  .n("SimSpaceWeaverClient", "DeleteAppCommand")
14
- .sc(DeleteApp)
14
+ .sc(DeleteApp$)
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 { DeleteSimulation } from "../schemas/schemas_0";
4
+ import { DeleteSimulation$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteSimulationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteSimulationCommand extends $Command
11
11
  })
12
12
  .s("SimSpaceWeaver", "DeleteSimulation", {})
13
13
  .n("SimSpaceWeaverClient", "DeleteSimulationCommand")
14
- .sc(DeleteSimulation)
14
+ .sc(DeleteSimulation$)
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 { DescribeApp } from "../schemas/schemas_0";
4
+ import { DescribeApp$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeAppCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeAppCommand extends $Command
11
11
  })
12
12
  .s("SimSpaceWeaver", "DescribeApp", {})
13
13
  .n("SimSpaceWeaverClient", "DescribeAppCommand")
14
- .sc(DescribeApp)
14
+ .sc(DescribeApp$)
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 { DescribeSimulation } from "../schemas/schemas_0";
4
+ import { DescribeSimulation$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeSimulationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeSimulationCommand extends $Command
11
11
  })
12
12
  .s("SimSpaceWeaver", "DescribeSimulation", {})
13
13
  .n("SimSpaceWeaverClient", "DescribeSimulationCommand")
14
- .sc(DescribeSimulation)
14
+ .sc(DescribeSimulation$)
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 { ListApps } from "../schemas/schemas_0";
4
+ import { ListApps$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListAppsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListAppsCommand extends $Command
11
11
  })
12
12
  .s("SimSpaceWeaver", "ListApps", {})
13
13
  .n("SimSpaceWeaverClient", "ListAppsCommand")
14
- .sc(ListApps)
14
+ .sc(ListApps$)
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 { ListSimulations } from "../schemas/schemas_0";
4
+ import { ListSimulations$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListSimulationsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListSimulationsCommand extends $Command
11
11
  })
12
12
  .s("SimSpaceWeaver", "ListSimulations", {})
13
13
  .n("SimSpaceWeaverClient", "ListSimulationsCommand")
14
- .sc(ListSimulations)
14
+ .sc(ListSimulations$)
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("SimSpaceWeaver", "ListTagsForResource", {})
13
13
  .n("SimSpaceWeaverClient", "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 { StartApp } from "../schemas/schemas_0";
4
+ import { StartApp$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class StartAppCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class StartAppCommand extends $Command
11
11
  })
12
12
  .s("SimSpaceWeaver", "StartApp", {})
13
13
  .n("SimSpaceWeaverClient", "StartAppCommand")
14
- .sc(StartApp)
14
+ .sc(StartApp$)
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 { StartClock } from "../schemas/schemas_0";
4
+ import { StartClock$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class StartClockCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class StartClockCommand extends $Command
11
11
  })
12
12
  .s("SimSpaceWeaver", "StartClock", {})
13
13
  .n("SimSpaceWeaverClient", "StartClockCommand")
14
- .sc(StartClock)
14
+ .sc(StartClock$)
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 { StartSimulation } from "../schemas/schemas_0";
4
+ import { StartSimulation$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class StartSimulationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class StartSimulationCommand extends $Command
11
11
  })
12
12
  .s("SimSpaceWeaver", "StartSimulation", {})
13
13
  .n("SimSpaceWeaverClient", "StartSimulationCommand")
14
- .sc(StartSimulation)
14
+ .sc(StartSimulation$)
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 { StopApp } from "../schemas/schemas_0";
4
+ import { StopApp$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class StopAppCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class StopAppCommand extends $Command
11
11
  })
12
12
  .s("SimSpaceWeaver", "StopApp", {})
13
13
  .n("SimSpaceWeaverClient", "StopAppCommand")
14
- .sc(StopApp)
14
+ .sc(StopApp$)
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 { StopClock } from "../schemas/schemas_0";
4
+ import { StopClock$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class StopClockCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class StopClockCommand extends $Command
11
11
  })
12
12
  .s("SimSpaceWeaver", "StopClock", {})
13
13
  .n("SimSpaceWeaverClient", "StopClockCommand")
14
- .sc(StopClock)
14
+ .sc(StopClock$)
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 { StopSimulation } from "../schemas/schemas_0";
4
+ import { StopSimulation$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class StopSimulationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class StopSimulationCommand extends $Command
11
11
  })
12
12
  .s("SimSpaceWeaver", "StopSimulation", {})
13
13
  .n("SimSpaceWeaverClient", "StopSimulationCommand")
14
- .sc(StopSimulation)
14
+ .sc(StopSimulation$)
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("SimSpaceWeaver", "TagResource", {})
13
13
  .n("SimSpaceWeaverClient", "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 { 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("SimSpaceWeaver", "UntagResource", {})
13
13
  .n("SimSpaceWeaverClient", "UntagResourceCommand")
14
- .sc(UntagResource)
14
+ .sc(UntagResource$)
15
15
  .build() {
16
16
  }
package/dist-es/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from "./SimSpaceWeaverClient";
2
2
  export * from "./SimSpaceWeaver";
3
3
  export * from "./commands";
4
+ export * from "./schemas/schemas_0";
4
5
  export * from "./pagination";
5
6
  export * from "./models/enums";
6
7
  export * from "./models/errors";
@@ -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.simspaceweaver" }),
26
+ protocol: config?.protocol ?? AwsRestJsonProtocol,
27
+ protocolSettings: config?.protocolSettings ?? {
28
+ defaultNamespace: "com.amazonaws.simspaceweaver",
29
+ version: "2022-10-28",
30
+ serviceTarget: "SimSpaceWeaver",
31
+ },
27
32
  serviceId: config?.serviceId ?? "SimSpaceWeaver",
28
33
  urlParser: config?.urlParser ?? parseUrl,
29
34
  utf8Decoder: config?.utf8Decoder ?? fromUtf8,