@aws-sdk/client-simspaceweaver 3.533.0 → 3.540.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 (43) hide show
  1. package/dist-cjs/endpoint/endpointResolver.js +4 -2
  2. package/dist-cjs/index.js +0 -3
  3. package/dist-es/endpoint/endpointResolver.js +3 -1
  4. package/dist-es/index.js +0 -1
  5. package/dist-types/SimSpaceWeaver.d.ts +2 -1
  6. package/dist-types/SimSpaceWeaverClient.d.ts +1 -1
  7. package/dist-types/commands/CreateSnapshotCommand.d.ts +2 -1
  8. package/dist-types/commands/DeleteAppCommand.d.ts +2 -1
  9. package/dist-types/commands/DeleteSimulationCommand.d.ts +2 -1
  10. package/dist-types/commands/DescribeAppCommand.d.ts +2 -1
  11. package/dist-types/commands/DescribeSimulationCommand.d.ts +2 -1
  12. package/dist-types/commands/ListAppsCommand.d.ts +2 -1
  13. package/dist-types/commands/ListSimulationsCommand.d.ts +2 -1
  14. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
  15. package/dist-types/commands/StartAppCommand.d.ts +2 -1
  16. package/dist-types/commands/StartClockCommand.d.ts +2 -1
  17. package/dist-types/commands/StartSimulationCommand.d.ts +2 -1
  18. package/dist-types/commands/StopAppCommand.d.ts +2 -1
  19. package/dist-types/commands/StopClockCommand.d.ts +2 -1
  20. package/dist-types/commands/StopSimulationCommand.d.ts +2 -1
  21. package/dist-types/commands/TagResourceCommand.d.ts +2 -1
  22. package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
  23. package/dist-types/index.d.ts +0 -1
  24. package/dist-types/models/models_0.d.ts +123 -123
  25. package/dist-types/ts3.4/SimSpaceWeaver.d.ts +1 -0
  26. package/dist-types/ts3.4/commands/CreateSnapshotCommand.d.ts +9 -0
  27. package/dist-types/ts3.4/commands/DeleteAppCommand.d.ts +9 -0
  28. package/dist-types/ts3.4/commands/DeleteSimulationCommand.d.ts +9 -0
  29. package/dist-types/ts3.4/commands/DescribeAppCommand.d.ts +9 -0
  30. package/dist-types/ts3.4/commands/DescribeSimulationCommand.d.ts +9 -0
  31. package/dist-types/ts3.4/commands/ListAppsCommand.d.ts +9 -0
  32. package/dist-types/ts3.4/commands/ListSimulationsCommand.d.ts +9 -0
  33. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
  34. package/dist-types/ts3.4/commands/StartAppCommand.d.ts +9 -0
  35. package/dist-types/ts3.4/commands/StartClockCommand.d.ts +9 -0
  36. package/dist-types/ts3.4/commands/StartSimulationCommand.d.ts +9 -0
  37. package/dist-types/ts3.4/commands/StopAppCommand.d.ts +7 -0
  38. package/dist-types/ts3.4/commands/StopClockCommand.d.ts +9 -0
  39. package/dist-types/ts3.4/commands/StopSimulationCommand.d.ts +9 -0
  40. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
  41. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
  42. package/dist-types/ts3.4/index.d.ts +0 -1
  43. package/package.json +40 -40
@@ -1,12 +1,14 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.defaultEndpointResolver = void 0;
4
- const util_endpoints_1 = require("@smithy/util-endpoints");
4
+ const util_endpoints_1 = require("@aws-sdk/util-endpoints");
5
+ const util_endpoints_2 = require("@smithy/util-endpoints");
5
6
  const ruleset_1 = require("./ruleset");
6
7
  const defaultEndpointResolver = (endpointParams, context = {}) => {
7
- return (0, util_endpoints_1.resolveEndpoint)(ruleset_1.ruleSet, {
8
+ return (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
8
9
  endpointParams: endpointParams,
9
10
  logger: context.logger,
10
11
  });
11
12
  };
12
13
  exports.defaultEndpointResolver = defaultEndpointResolver;
14
+ util_endpoints_2.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
package/dist-cjs/index.js CHANGED
@@ -1334,9 +1334,6 @@ var paginateListApps = (0, import_core.createPaginator)(SimSpaceWeaverClient, Li
1334
1334
  // src/pagination/ListSimulationsPaginator.ts
1335
1335
 
1336
1336
  var paginateListSimulations = (0, import_core.createPaginator)(SimSpaceWeaverClient, ListSimulationsCommand, "NextToken", "NextToken", "MaxResults");
1337
-
1338
- // src/index.ts
1339
- var import_util_endpoints = require("@aws-sdk/util-endpoints");
1340
1337
  // Annotate the CommonJS export names for ESM import in node:
1341
1338
 
1342
1339
  0 && (module.exports = {
@@ -1,4 +1,5 @@
1
- import { resolveEndpoint } from "@smithy/util-endpoints";
1
+ import { awsEndpointFunctions } from "@aws-sdk/util-endpoints";
2
+ import { customEndpointFunctions, resolveEndpoint } from "@smithy/util-endpoints";
2
3
  import { ruleSet } from "./ruleset";
3
4
  export const defaultEndpointResolver = (endpointParams, context = {}) => {
4
5
  return resolveEndpoint(ruleSet, {
@@ -6,3 +7,4 @@ export const defaultEndpointResolver = (endpointParams, context = {}) => {
6
7
  logger: context.logger,
7
8
  });
8
9
  };
10
+ customEndpointFunctions.aws = awsEndpointFunctions;
package/dist-es/index.js CHANGED
@@ -3,5 +3,4 @@ export * from "./SimSpaceWeaver";
3
3
  export * from "./commands";
4
4
  export * from "./pagination";
5
5
  export * from "./models";
6
- import "@aws-sdk/util-endpoints";
7
6
  export { SimSpaceWeaverServiceException } from "./models/SimSpaceWeaverServiceException";
@@ -56,6 +56,7 @@ export interface SimSpaceWeaver {
56
56
  /**
57
57
  * @see {@link ListSimulationsCommand}
58
58
  */
59
+ listSimulations(): Promise<ListSimulationsCommandOutput>;
59
60
  listSimulations(args: ListSimulationsCommandInput, options?: __HttpHandlerOptions): Promise<ListSimulationsCommandOutput>;
60
61
  listSimulations(args: ListSimulationsCommandInput, cb: (err: any, data?: ListSimulationsCommandOutput) => void): void;
61
62
  listSimulations(args: ListSimulationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSimulationsCommandOutput) => void): void;
@@ -115,7 +116,6 @@ export interface SimSpaceWeaver {
115
116
  untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
116
117
  }
117
118
  /**
118
- * @public
119
119
  * <p>SimSpace Weaver (SimSpace Weaver) is a service that you can use to build and run
120
120
  * large-scale spatial simulations in the Amazon Web Services Cloud. For example, you can create
121
121
  * crowd simulations, large real-world environments, and immersive and interactive experiences.
@@ -127,6 +127,7 @@ export interface SimSpaceWeaver {
127
127
  * <p>SimSpace Weaver also provides the SimSpace Weaver app SDK, which you use for app development. The
128
128
  * SimSpace Weaver app SDK API reference is included in the SimSpace Weaver app SDK documentation. This
129
129
  * documentation is part of the SimSpace Weaver app SDK distributable package.</p>
130
+ * @public
130
131
  */
131
132
  export declare class SimSpaceWeaver extends SimSpaceWeaverClient implements SimSpaceWeaver {
132
133
  }
@@ -167,7 +167,6 @@ export type SimSpaceWeaverClientResolvedConfigType = __SmithyResolvedConfigurati
167
167
  export interface SimSpaceWeaverClientResolvedConfig extends SimSpaceWeaverClientResolvedConfigType {
168
168
  }
169
169
  /**
170
- * @public
171
170
  * <p>SimSpace Weaver (SimSpace Weaver) is a service that you can use to build and run
172
171
  * large-scale spatial simulations in the Amazon Web Services Cloud. For example, you can create
173
172
  * crowd simulations, large real-world environments, and immersive and interactive experiences.
@@ -179,6 +178,7 @@ export interface SimSpaceWeaverClientResolvedConfig extends SimSpaceWeaverClient
179
178
  * <p>SimSpace Weaver also provides the SimSpace Weaver app SDK, which you use for app development. The
180
179
  * SimSpace Weaver app SDK API reference is included in the SimSpace Weaver app SDK documentation. This
181
180
  * documentation is part of the SimSpace Weaver app SDK distributable package.</p>
181
+ * @public
182
182
  */
183
183
  export declare class SimSpaceWeaverClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, SimSpaceWeaverClientResolvedConfig> {
184
184
  /**
@@ -22,10 +22,10 @@ export interface CreateSnapshotCommandOutput extends CreateSnapshotOutput, __Met
22
22
  }
23
23
  declare const CreateSnapshotCommand_base: {
24
24
  new (input: CreateSnapshotCommandInput): import("@smithy/smithy-client").CommandImpl<CreateSnapshotCommandInput, CreateSnapshotCommandOutput, SimSpaceWeaverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: CreateSnapshotCommandInput): import("@smithy/smithy-client").CommandImpl<CreateSnapshotCommandInput, CreateSnapshotCommandOutput, SimSpaceWeaverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Creates a snapshot of the specified simulation.
30
30
  * A snapshot is a file that contains simulation state data at a specific time.
31
31
  * The state data saved in a snapshot includes entity data from the State Fabric,
@@ -125,6 +125,7 @@ declare const CreateSnapshotCommand_base: {
125
125
  * @throws {@link SimSpaceWeaverServiceException}
126
126
  * <p>Base exception class for all service exceptions from SimSpaceWeaver service.</p>
127
127
  *
128
+ * @public
128
129
  */
129
130
  export declare class CreateSnapshotCommand extends CreateSnapshotCommand_base {
130
131
  }
@@ -22,10 +22,10 @@ export interface DeleteAppCommandOutput extends DeleteAppOutput, __MetadataBeare
22
22
  }
23
23
  declare const DeleteAppCommand_base: {
24
24
  new (input: DeleteAppCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteAppCommandInput, DeleteAppCommandOutput, SimSpaceWeaverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DeleteAppCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteAppCommandInput, DeleteAppCommandOutput, SimSpaceWeaverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Deletes the instance of the given custom app.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -68,6 +68,7 @@ declare const DeleteAppCommand_base: {
68
68
  * @throws {@link SimSpaceWeaverServiceException}
69
69
  * <p>Base exception class for all service exceptions from SimSpaceWeaver service.</p>
70
70
  *
71
+ * @public
71
72
  */
72
73
  export declare class DeleteAppCommand extends DeleteAppCommand_base {
73
74
  }
@@ -22,10 +22,10 @@ export interface DeleteSimulationCommandOutput extends DeleteSimulationOutput, _
22
22
  }
23
23
  declare const DeleteSimulationCommand_base: {
24
24
  new (input: DeleteSimulationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteSimulationCommandInput, DeleteSimulationCommandOutput, SimSpaceWeaverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DeleteSimulationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteSimulationCommandInput, DeleteSimulationCommandOutput, SimSpaceWeaverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Deletes all SimSpace Weaver resources assigned to the given simulation.</p>
30
30
  * <note>
31
31
  * <p>Your simulation uses resources in other Amazon Web Services. This API operation doesn't delete
@@ -70,6 +70,7 @@ declare const DeleteSimulationCommand_base: {
70
70
  * @throws {@link SimSpaceWeaverServiceException}
71
71
  * <p>Base exception class for all service exceptions from SimSpaceWeaver service.</p>
72
72
  *
73
+ * @public
73
74
  */
74
75
  export declare class DeleteSimulationCommand extends DeleteSimulationCommand_base {
75
76
  }
@@ -22,10 +22,10 @@ export interface DescribeAppCommandOutput extends DescribeAppOutput, __MetadataB
22
22
  }
23
23
  declare const DescribeAppCommand_base: {
24
24
  new (input: DescribeAppCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeAppCommandInput, DescribeAppCommandOutput, SimSpaceWeaverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DescribeAppCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeAppCommandInput, DescribeAppCommandOutput, SimSpaceWeaverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Returns the state of the given custom app.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -86,6 +86,7 @@ declare const DescribeAppCommand_base: {
86
86
  * @throws {@link SimSpaceWeaverServiceException}
87
87
  * <p>Base exception class for all service exceptions from SimSpaceWeaver service.</p>
88
88
  *
89
+ * @public
89
90
  */
90
91
  export declare class DescribeAppCommand extends DescribeAppCommand_base {
91
92
  }
@@ -22,10 +22,10 @@ export interface DescribeSimulationCommandOutput extends DescribeSimulationOutpu
22
22
  }
23
23
  declare const DescribeSimulationCommand_base: {
24
24
  new (input: DescribeSimulationCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeSimulationCommandInput, DescribeSimulationCommandOutput, SimSpaceWeaverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DescribeSimulationCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeSimulationCommandInput, DescribeSimulationCommandOutput, SimSpaceWeaverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Returns the current state of the given simulation.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -106,6 +106,7 @@ declare const DescribeSimulationCommand_base: {
106
106
  * @throws {@link SimSpaceWeaverServiceException}
107
107
  * <p>Base exception class for all service exceptions from SimSpaceWeaver service.</p>
108
108
  *
109
+ * @public
109
110
  */
110
111
  export declare class DescribeSimulationCommand extends DescribeSimulationCommand_base {
111
112
  }
@@ -22,10 +22,10 @@ export interface ListAppsCommandOutput extends ListAppsOutput, __MetadataBearer
22
22
  }
23
23
  declare const ListAppsCommand_base: {
24
24
  new (input: ListAppsCommandInput): import("@smithy/smithy-client").CommandImpl<ListAppsCommandInput, ListAppsCommandOutput, SimSpaceWeaverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: ListAppsCommandInput): import("@smithy/smithy-client").CommandImpl<ListAppsCommandInput, ListAppsCommandOutput, SimSpaceWeaverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Lists all custom apps or service apps for the given simulation and domain.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -77,6 +77,7 @@ declare const ListAppsCommand_base: {
77
77
  * @throws {@link SimSpaceWeaverServiceException}
78
78
  * <p>Base exception class for all service exceptions from SimSpaceWeaver service.</p>
79
79
  *
80
+ * @public
80
81
  */
81
82
  export declare class ListAppsCommand extends ListAppsCommand_base {
82
83
  }
@@ -22,10 +22,10 @@ export interface ListSimulationsCommandOutput extends ListSimulationsOutput, __M
22
22
  }
23
23
  declare const ListSimulationsCommand_base: {
24
24
  new (input: ListSimulationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListSimulationsCommandInput, ListSimulationsCommandOutput, SimSpaceWeaverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [ListSimulationsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListSimulationsCommandInput, ListSimulationsCommandOutput, SimSpaceWeaverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Lists the SimSpace Weaver simulations in the Amazon Web Services account used to make the API call.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -72,6 +72,7 @@ declare const ListSimulationsCommand_base: {
72
72
  * @throws {@link SimSpaceWeaverServiceException}
73
73
  * <p>Base exception class for all service exceptions from SimSpaceWeaver service.</p>
74
74
  *
75
+ * @public
75
76
  */
76
77
  export declare class ListSimulationsCommand extends ListSimulationsCommand_base {
77
78
  }
@@ -22,10 +22,10 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
22
22
  }
23
23
  declare const ListTagsForResourceCommand_base: {
24
24
  new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, SimSpaceWeaverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, SimSpaceWeaverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Lists all tags on a SimSpace Weaver resource.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -61,6 +61,7 @@ declare const ListTagsForResourceCommand_base: {
61
61
  * @throws {@link SimSpaceWeaverServiceException}
62
62
  * <p>Base exception class for all service exceptions from SimSpaceWeaver service.</p>
63
63
  *
64
+ * @public
64
65
  */
65
66
  export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
66
67
  }
@@ -22,10 +22,10 @@ export interface StartAppCommandOutput extends StartAppOutput, __MetadataBearer
22
22
  }
23
23
  declare const StartAppCommand_base: {
24
24
  new (input: StartAppCommandInput): import("@smithy/smithy-client").CommandImpl<StartAppCommandInput, StartAppCommandOutput, SimSpaceWeaverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: StartAppCommandInput): import("@smithy/smithy-client").CommandImpl<StartAppCommandInput, StartAppCommandOutput, SimSpaceWeaverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Starts a custom app with the configuration specified in the simulation schema.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -79,6 +79,7 @@ declare const StartAppCommand_base: {
79
79
  * @throws {@link SimSpaceWeaverServiceException}
80
80
  * <p>Base exception class for all service exceptions from SimSpaceWeaver service.</p>
81
81
  *
82
+ * @public
82
83
  */
83
84
  export declare class StartAppCommand extends StartAppCommand_base {
84
85
  }
@@ -22,10 +22,10 @@ export interface StartClockCommandOutput extends StartClockOutput, __MetadataBea
22
22
  }
23
23
  declare const StartClockCommand_base: {
24
24
  new (input: StartClockCommandInput): import("@smithy/smithy-client").CommandImpl<StartClockCommandInput, StartClockCommandOutput, SimSpaceWeaverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: StartClockCommandInput): import("@smithy/smithy-client").CommandImpl<StartClockCommandInput, StartClockCommandOutput, SimSpaceWeaverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Starts the simulation clock.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -66,6 +66,7 @@ declare const StartClockCommand_base: {
66
66
  * @throws {@link SimSpaceWeaverServiceException}
67
67
  * <p>Base exception class for all service exceptions from SimSpaceWeaver service.</p>
68
68
  *
69
+ * @public
69
70
  */
70
71
  export declare class StartClockCommand extends StartClockCommand_base {
71
72
  }
@@ -22,10 +22,10 @@ export interface StartSimulationCommandOutput extends StartSimulationOutput, __M
22
22
  }
23
23
  declare const StartSimulationCommand_base: {
24
24
  new (input: StartSimulationCommandInput): import("@smithy/smithy-client").CommandImpl<StartSimulationCommandInput, StartSimulationCommandOutput, SimSpaceWeaverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: StartSimulationCommandInput): import("@smithy/smithy-client").CommandImpl<StartSimulationCommandInput, StartSimulationCommandOutput, SimSpaceWeaverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Starts a simulation with the given name. You must choose to start your
30
30
  * simulation from a schema or from a snapshot.
31
31
  * For more information about the schema, see the <a href="https://docs.aws.amazon.com/simspaceweaver/latest/userguide/schema-reference.html">schema reference</a>
@@ -90,6 +90,7 @@ declare const StartSimulationCommand_base: {
90
90
  * @throws {@link SimSpaceWeaverServiceException}
91
91
  * <p>Base exception class for all service exceptions from SimSpaceWeaver service.</p>
92
92
  *
93
+ * @public
93
94
  */
94
95
  export declare class StartSimulationCommand extends StartSimulationCommand_base {
95
96
  }
@@ -22,10 +22,10 @@ export interface StopAppCommandOutput extends StopAppOutput, __MetadataBearer {
22
22
  }
23
23
  declare const StopAppCommand_base: {
24
24
  new (input: StopAppCommandInput): import("@smithy/smithy-client").CommandImpl<StopAppCommandInput, StopAppCommandOutput, SimSpaceWeaverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: StopAppCommandInput): import("@smithy/smithy-client").CommandImpl<StopAppCommandInput, StopAppCommandOutput, SimSpaceWeaverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Stops the given custom app and shuts down all of its allocated compute resources.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -68,6 +68,7 @@ declare const StopAppCommand_base: {
68
68
  * @throws {@link SimSpaceWeaverServiceException}
69
69
  * <p>Base exception class for all service exceptions from SimSpaceWeaver service.</p>
70
70
  *
71
+ * @public
71
72
  */
72
73
  export declare class StopAppCommand extends StopAppCommand_base {
73
74
  }
@@ -22,10 +22,10 @@ export interface StopClockCommandOutput extends StopClockOutput, __MetadataBeare
22
22
  }
23
23
  declare const StopClockCommand_base: {
24
24
  new (input: StopClockCommandInput): import("@smithy/smithy-client").CommandImpl<StopClockCommandInput, StopClockCommandOutput, SimSpaceWeaverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: StopClockCommandInput): import("@smithy/smithy-client").CommandImpl<StopClockCommandInput, StopClockCommandOutput, SimSpaceWeaverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Stops the simulation clock.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -66,6 +66,7 @@ declare const StopClockCommand_base: {
66
66
  * @throws {@link SimSpaceWeaverServiceException}
67
67
  * <p>Base exception class for all service exceptions from SimSpaceWeaver service.</p>
68
68
  *
69
+ * @public
69
70
  */
70
71
  export declare class StopClockCommand extends StopClockCommand_base {
71
72
  }
@@ -22,10 +22,10 @@ export interface StopSimulationCommandOutput extends StopSimulationOutput, __Met
22
22
  }
23
23
  declare const StopSimulationCommand_base: {
24
24
  new (input: StopSimulationCommandInput): import("@smithy/smithy-client").CommandImpl<StopSimulationCommandInput, StopSimulationCommandOutput, SimSpaceWeaverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: StopSimulationCommandInput): import("@smithy/smithy-client").CommandImpl<StopSimulationCommandInput, StopSimulationCommandOutput, SimSpaceWeaverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Stops the given simulation.</p>
30
30
  * <important>
31
31
  * <p>You can't restart a simulation after you stop it. If you want to restart a simulation, then
@@ -70,6 +70,7 @@ declare const StopSimulationCommand_base: {
70
70
  * @throws {@link SimSpaceWeaverServiceException}
71
71
  * <p>Base exception class for all service exceptions from SimSpaceWeaver service.</p>
72
72
  *
73
+ * @public
73
74
  */
74
75
  export declare class StopSimulationCommand extends StopSimulationCommand_base {
75
76
  }
@@ -22,10 +22,10 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
22
22
  }
23
23
  declare const TagResourceCommand_base: {
24
24
  new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, SimSpaceWeaverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, SimSpaceWeaverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Adds tags to a SimSpace Weaver resource. For more information about tags, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging Amazon Web Services resources</a> in the
30
30
  * <i>Amazon Web Services General Reference</i>.</p>
31
31
  * @example
@@ -64,6 +64,7 @@ declare const TagResourceCommand_base: {
64
64
  * @throws {@link SimSpaceWeaverServiceException}
65
65
  * <p>Base exception class for all service exceptions from SimSpaceWeaver service.</p>
66
66
  *
67
+ * @public
67
68
  */
68
69
  export declare class TagResourceCommand extends TagResourceCommand_base {
69
70
  }
@@ -22,10 +22,10 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
22
22
  }
23
23
  declare const UntagResourceCommand_base: {
24
24
  new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, SimSpaceWeaverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, SimSpaceWeaverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Removes tags from a SimSpace Weaver resource. For more information about tags, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging Amazon Web Services resources</a> in the
30
30
  * <i>Amazon Web Services General Reference</i>.</p>
31
31
  * @example
@@ -61,6 +61,7 @@ declare const UntagResourceCommand_base: {
61
61
  * @throws {@link SimSpaceWeaverServiceException}
62
62
  * <p>Base exception class for all service exceptions from SimSpaceWeaver service.</p>
63
63
  *
64
+ * @public
64
65
  */
65
66
  export declare class UntagResourceCommand extends UntagResourceCommand_base {
66
67
  }
@@ -21,5 +21,4 @@ export { SimSpaceWeaverExtensionConfiguration } from "./extensionConfiguration";
21
21
  export * from "./commands";
22
22
  export * from "./pagination";
23
23
  export * from "./models";
24
- import "@aws-sdk/util-endpoints";
25
24
  export { SimSpaceWeaverServiceException } from "./models/SimSpaceWeaverServiceException";