@aws-sdk/client-simspaceweaver 3.299.0 → 3.301.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.
@@ -26,6 +26,11 @@ export interface DeleteAppCommandOutput extends DeleteAppOutput, __MetadataBeare
26
26
  * import { SimSpaceWeaverClient, DeleteAppCommand } from "@aws-sdk/client-simspaceweaver"; // ES Modules import
27
27
  * // const { SimSpaceWeaverClient, DeleteAppCommand } = require("@aws-sdk/client-simspaceweaver"); // CommonJS import
28
28
  * const client = new SimSpaceWeaverClient(config);
29
+ * const input = { // DeleteAppInput
30
+ * Simulation: "STRING_VALUE", // required
31
+ * Domain: "STRING_VALUE", // required
32
+ * App: "STRING_VALUE", // required
33
+ * };
29
34
  * const command = new DeleteAppCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -30,6 +30,9 @@ export interface DeleteSimulationCommandOutput extends DeleteSimulationOutput, _
30
30
  * import { SimSpaceWeaverClient, DeleteSimulationCommand } from "@aws-sdk/client-simspaceweaver"; // ES Modules import
31
31
  * // const { SimSpaceWeaverClient, DeleteSimulationCommand } = require("@aws-sdk/client-simspaceweaver"); // CommonJS import
32
32
  * const client = new SimSpaceWeaverClient(config);
33
+ * const input = { // DeleteSimulationInput
34
+ * Simulation: "STRING_VALUE", // required
35
+ * };
33
36
  * const command = new DeleteSimulationCommand(input);
34
37
  * const response = await client.send(command);
35
38
  * ```
@@ -26,6 +26,11 @@ export interface DescribeAppCommandOutput extends DescribeAppOutput, __MetadataB
26
26
  * import { SimSpaceWeaverClient, DescribeAppCommand } from "@aws-sdk/client-simspaceweaver"; // ES Modules import
27
27
  * // const { SimSpaceWeaverClient, DescribeAppCommand } = require("@aws-sdk/client-simspaceweaver"); // CommonJS import
28
28
  * const client = new SimSpaceWeaverClient(config);
29
+ * const input = { // DescribeAppInput
30
+ * Simulation: "STRING_VALUE", // required
31
+ * Domain: "STRING_VALUE", // required
32
+ * App: "STRING_VALUE", // required
33
+ * };
29
34
  * const command = new DescribeAppCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,9 @@ export interface DescribeSimulationCommandOutput extends DescribeSimulationOutpu
26
26
  * import { SimSpaceWeaverClient, DescribeSimulationCommand } from "@aws-sdk/client-simspaceweaver"; // ES Modules import
27
27
  * // const { SimSpaceWeaverClient, DescribeSimulationCommand } = require("@aws-sdk/client-simspaceweaver"); // CommonJS import
28
28
  * const client = new SimSpaceWeaverClient(config);
29
+ * const input = { // DescribeSimulationInput
30
+ * Simulation: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DescribeSimulationCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,12 @@ export interface ListAppsCommandOutput extends ListAppsOutput, __MetadataBearer
26
26
  * import { SimSpaceWeaverClient, ListAppsCommand } from "@aws-sdk/client-simspaceweaver"; // ES Modules import
27
27
  * // const { SimSpaceWeaverClient, ListAppsCommand } = require("@aws-sdk/client-simspaceweaver"); // CommonJS import
28
28
  * const client = new SimSpaceWeaverClient(config);
29
+ * const input = { // ListAppsInput
30
+ * Simulation: "STRING_VALUE", // required
31
+ * Domain: "STRING_VALUE",
32
+ * MaxResults: Number("int"),
33
+ * NextToken: "STRING_VALUE",
34
+ * };
29
35
  * const command = new ListAppsCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,10 @@ export interface ListSimulationsCommandOutput extends ListSimulationsOutput, __M
26
26
  * import { SimSpaceWeaverClient, ListSimulationsCommand } from "@aws-sdk/client-simspaceweaver"; // ES Modules import
27
27
  * // const { SimSpaceWeaverClient, ListSimulationsCommand } = require("@aws-sdk/client-simspaceweaver"); // CommonJS import
28
28
  * const client = new SimSpaceWeaverClient(config);
29
+ * const input = { // ListSimulationsInput
30
+ * MaxResults: Number("int"),
31
+ * NextToken: "STRING_VALUE",
32
+ * };
29
33
  * const command = new ListSimulationsCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,9 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
26
26
  * import { SimSpaceWeaverClient, ListTagsForResourceCommand } from "@aws-sdk/client-simspaceweaver"; // ES Modules import
27
27
  * // const { SimSpaceWeaverClient, ListTagsForResourceCommand } = require("@aws-sdk/client-simspaceweaver"); // CommonJS import
28
28
  * const client = new SimSpaceWeaverClient(config);
29
+ * const input = { // ListTagsForResourceInput
30
+ * ResourceArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new ListTagsForResourceCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,18 @@ export interface StartAppCommandOutput extends StartAppOutput, __MetadataBearer
26
26
  * import { SimSpaceWeaverClient, StartAppCommand } from "@aws-sdk/client-simspaceweaver"; // ES Modules import
27
27
  * // const { SimSpaceWeaverClient, StartAppCommand } = require("@aws-sdk/client-simspaceweaver"); // CommonJS import
28
28
  * const client = new SimSpaceWeaverClient(config);
29
+ * const input = { // StartAppInput
30
+ * ClientToken: "STRING_VALUE",
31
+ * Simulation: "STRING_VALUE", // required
32
+ * Domain: "STRING_VALUE", // required
33
+ * Name: "STRING_VALUE", // required
34
+ * Description: "STRING_VALUE",
35
+ * LaunchOverrides: { // LaunchOverrides
36
+ * LaunchCommands: [ // LaunchCommandList
37
+ * "STRING_VALUE",
38
+ * ],
39
+ * },
40
+ * };
29
41
  * const command = new StartAppCommand(input);
30
42
  * const response = await client.send(command);
31
43
  * ```
@@ -26,6 +26,9 @@ export interface StartClockCommandOutput extends StartClockOutput, __MetadataBea
26
26
  * import { SimSpaceWeaverClient, StartClockCommand } from "@aws-sdk/client-simspaceweaver"; // ES Modules import
27
27
  * // const { SimSpaceWeaverClient, StartClockCommand } = require("@aws-sdk/client-simspaceweaver"); // CommonJS import
28
28
  * const client = new SimSpaceWeaverClient(config);
29
+ * const input = { // StartClockInput
30
+ * Simulation: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new StartClockCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,20 @@ export interface StartSimulationCommandOutput extends StartSimulationOutput, __M
26
26
  * import { SimSpaceWeaverClient, StartSimulationCommand } from "@aws-sdk/client-simspaceweaver"; // ES Modules import
27
27
  * // const { SimSpaceWeaverClient, StartSimulationCommand } = require("@aws-sdk/client-simspaceweaver"); // CommonJS import
28
28
  * const client = new SimSpaceWeaverClient(config);
29
+ * const input = { // StartSimulationInput
30
+ * ClientToken: "STRING_VALUE",
31
+ * Name: "STRING_VALUE", // required
32
+ * Description: "STRING_VALUE",
33
+ * RoleArn: "STRING_VALUE", // required
34
+ * SchemaS3Location: { // S3Location
35
+ * BucketName: "STRING_VALUE",
36
+ * ObjectKey: "STRING_VALUE",
37
+ * },
38
+ * MaximumDuration: "STRING_VALUE",
39
+ * Tags: { // TagMap
40
+ * "<keys>": "STRING_VALUE",
41
+ * },
42
+ * };
29
43
  * const command = new StartSimulationCommand(input);
30
44
  * const response = await client.send(command);
31
45
  * ```
@@ -26,6 +26,11 @@ export interface StopAppCommandOutput extends StopAppOutput, __MetadataBearer {
26
26
  * import { SimSpaceWeaverClient, StopAppCommand } from "@aws-sdk/client-simspaceweaver"; // ES Modules import
27
27
  * // const { SimSpaceWeaverClient, StopAppCommand } = require("@aws-sdk/client-simspaceweaver"); // CommonJS import
28
28
  * const client = new SimSpaceWeaverClient(config);
29
+ * const input = { // StopAppInput
30
+ * Simulation: "STRING_VALUE", // required
31
+ * Domain: "STRING_VALUE", // required
32
+ * App: "STRING_VALUE", // required
33
+ * };
29
34
  * const command = new StopAppCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,9 @@ export interface StopClockCommandOutput extends StopClockOutput, __MetadataBeare
26
26
  * import { SimSpaceWeaverClient, StopClockCommand } from "@aws-sdk/client-simspaceweaver"; // ES Modules import
27
27
  * // const { SimSpaceWeaverClient, StopClockCommand } = require("@aws-sdk/client-simspaceweaver"); // CommonJS import
28
28
  * const client = new SimSpaceWeaverClient(config);
29
+ * const input = { // StopClockInput
30
+ * Simulation: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new StopClockCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -31,6 +31,9 @@ export interface StopSimulationCommandOutput extends StopSimulationOutput, __Met
31
31
  * import { SimSpaceWeaverClient, StopSimulationCommand } from "@aws-sdk/client-simspaceweaver"; // ES Modules import
32
32
  * // const { SimSpaceWeaverClient, StopSimulationCommand } = require("@aws-sdk/client-simspaceweaver"); // CommonJS import
33
33
  * const client = new SimSpaceWeaverClient(config);
34
+ * const input = { // StopSimulationInput
35
+ * Simulation: "STRING_VALUE", // required
36
+ * };
34
37
  * const command = new StopSimulationCommand(input);
35
38
  * const response = await client.send(command);
36
39
  * ```
@@ -27,6 +27,12 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
27
27
  * import { SimSpaceWeaverClient, TagResourceCommand } from "@aws-sdk/client-simspaceweaver"; // ES Modules import
28
28
  * // const { SimSpaceWeaverClient, TagResourceCommand } = require("@aws-sdk/client-simspaceweaver"); // CommonJS import
29
29
  * const client = new SimSpaceWeaverClient(config);
30
+ * const input = { // TagResourceInput
31
+ * ResourceArn: "STRING_VALUE", // required
32
+ * Tags: { // TagMap // required
33
+ * "<keys>": "STRING_VALUE",
34
+ * },
35
+ * };
30
36
  * const command = new TagResourceCommand(input);
31
37
  * const response = await client.send(command);
32
38
  * ```
@@ -27,6 +27,12 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
27
27
  * import { SimSpaceWeaverClient, UntagResourceCommand } from "@aws-sdk/client-simspaceweaver"; // ES Modules import
28
28
  * // const { SimSpaceWeaverClient, UntagResourceCommand } = require("@aws-sdk/client-simspaceweaver"); // CommonJS import
29
29
  * const client = new SimSpaceWeaverClient(config);
30
+ * const input = { // UntagResourceInput
31
+ * ResourceArn: "STRING_VALUE", // required
32
+ * TagKeys: [ // TagKeyList // required
33
+ * "STRING_VALUE",
34
+ * ],
35
+ * };
30
36
  * const command = new UntagResourceCommand(input);
31
37
  * const response = await client.send(command);
32
38
  * ```
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-simspaceweaver",
3
3
  "description": "AWS SDK for JavaScript Simspaceweaver Client for Node.js, Browser and React Native",
4
- "version": "3.299.0",
4
+ "version": "3.301.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.299.0",
25
- "@aws-sdk/config-resolver": "3.299.0",
26
- "@aws-sdk/credential-provider-node": "3.299.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
+ "@aws-sdk/config-resolver": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.301.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",
@@ -32,12 +32,12 @@
32
32
  "@aws-sdk/middleware-host-header": "3.296.0",
33
33
  "@aws-sdk/middleware-logger": "3.296.0",
34
34
  "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.296.0",
35
+ "@aws-sdk/middleware-retry": "3.300.0",
36
36
  "@aws-sdk/middleware-serde": "3.296.0",
37
37
  "@aws-sdk/middleware-signing": "3.299.0",
38
38
  "@aws-sdk/middleware-stack": "3.296.0",
39
39
  "@aws-sdk/middleware-user-agent": "3.299.0",
40
- "@aws-sdk/node-config-provider": "3.296.0",
40
+ "@aws-sdk/node-config-provider": "3.300.0",
41
41
  "@aws-sdk/node-http-handler": "3.296.0",
42
42
  "@aws-sdk/protocol-http": "3.296.0",
43
43
  "@aws-sdk/smithy-client": "3.296.0",
@@ -47,11 +47,11 @@
47
47
  "@aws-sdk/util-body-length-browser": "3.295.0",
48
48
  "@aws-sdk/util-body-length-node": "3.295.0",
49
49
  "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.299.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
51
  "@aws-sdk/util-endpoints": "3.296.0",
52
52
  "@aws-sdk/util-retry": "3.296.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.299.0",
54
- "@aws-sdk/util-user-agent-node": "3.299.0",
54
+ "@aws-sdk/util-user-agent-node": "3.300.0",
55
55
  "@aws-sdk/util-utf8": "3.295.0",
56
56
  "tslib": "^2.5.0",
57
57
  "uuid": "^8.3.2"