@aws-sdk/client-simspaceweaver 3.300.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.
- package/dist-types/commands/DeleteAppCommand.d.ts +1 -1
- package/dist-types/commands/DeleteSimulationCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAppCommand.d.ts +1 -1
- package/dist-types/commands/DescribeSimulationCommand.d.ts +1 -1
- package/dist-types/commands/ListAppsCommand.d.ts +1 -1
- package/dist-types/commands/ListSimulationsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/StartAppCommand.d.ts +3 -3
- package/dist-types/commands/StartClockCommand.d.ts +1 -1
- package/dist-types/commands/StartSimulationCommand.d.ts +3 -3
- package/dist-types/commands/StopAppCommand.d.ts +1 -1
- package/dist-types/commands/StopClockCommand.d.ts +1 -1
- package/dist-types/commands/StopSimulationCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/package.json +3 -3
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DeleteAppInput
|
|
30
30
|
* Simulation: "STRING_VALUE", // required
|
|
31
31
|
* Domain: "STRING_VALUE", // required
|
|
32
32
|
* App: "STRING_VALUE", // required
|
|
@@ -30,7 +30,7 @@ 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 = {
|
|
33
|
+
* const input = { // DeleteSimulationInput
|
|
34
34
|
* Simulation: "STRING_VALUE", // required
|
|
35
35
|
* };
|
|
36
36
|
* const command = new DeleteSimulationCommand(input);
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DescribeAppInput
|
|
30
30
|
* Simulation: "STRING_VALUE", // required
|
|
31
31
|
* Domain: "STRING_VALUE", // required
|
|
32
32
|
* App: "STRING_VALUE", // required
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DescribeSimulationInput
|
|
30
30
|
* Simulation: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeSimulationCommand(input);
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListAppsInput
|
|
30
30
|
* Simulation: "STRING_VALUE", // required
|
|
31
31
|
* Domain: "STRING_VALUE",
|
|
32
32
|
* MaxResults: Number("int"),
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListSimulationsInput
|
|
30
30
|
* MaxResults: Number("int"),
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListTagsForResourceInput
|
|
30
30
|
* ResourceArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
@@ -26,14 +26,14 @@ 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 = {
|
|
29
|
+
* const input = { // StartAppInput
|
|
30
30
|
* ClientToken: "STRING_VALUE",
|
|
31
31
|
* Simulation: "STRING_VALUE", // required
|
|
32
32
|
* Domain: "STRING_VALUE", // required
|
|
33
33
|
* Name: "STRING_VALUE", // required
|
|
34
34
|
* Description: "STRING_VALUE",
|
|
35
|
-
* LaunchOverrides: {
|
|
36
|
-
* LaunchCommands: [
|
|
35
|
+
* LaunchOverrides: { // LaunchOverrides
|
|
36
|
+
* LaunchCommands: [ // LaunchCommandList
|
|
37
37
|
* "STRING_VALUE",
|
|
38
38
|
* ],
|
|
39
39
|
* },
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // StartClockInput
|
|
30
30
|
* Simulation: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new StartClockCommand(input);
|
|
@@ -26,17 +26,17 @@ 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 = {
|
|
29
|
+
* const input = { // StartSimulationInput
|
|
30
30
|
* ClientToken: "STRING_VALUE",
|
|
31
31
|
* Name: "STRING_VALUE", // required
|
|
32
32
|
* Description: "STRING_VALUE",
|
|
33
33
|
* RoleArn: "STRING_VALUE", // required
|
|
34
|
-
* SchemaS3Location: {
|
|
34
|
+
* SchemaS3Location: { // S3Location
|
|
35
35
|
* BucketName: "STRING_VALUE",
|
|
36
36
|
* ObjectKey: "STRING_VALUE",
|
|
37
37
|
* },
|
|
38
38
|
* MaximumDuration: "STRING_VALUE",
|
|
39
|
-
* Tags: {
|
|
39
|
+
* Tags: { // TagMap
|
|
40
40
|
* "<keys>": "STRING_VALUE",
|
|
41
41
|
* },
|
|
42
42
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // StopAppInput
|
|
30
30
|
* Simulation: "STRING_VALUE", // required
|
|
31
31
|
* Domain: "STRING_VALUE", // required
|
|
32
32
|
* App: "STRING_VALUE", // required
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // StopClockInput
|
|
30
30
|
* Simulation: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new StopClockCommand(input);
|
|
@@ -31,7 +31,7 @@ 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 = {
|
|
34
|
+
* const input = { // StopSimulationInput
|
|
35
35
|
* Simulation: "STRING_VALUE", // required
|
|
36
36
|
* };
|
|
37
37
|
* const command = new StopSimulationCommand(input);
|
|
@@ -27,9 +27,9 @@ 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 = {
|
|
30
|
+
* const input = { // TagResourceInput
|
|
31
31
|
* ResourceArn: "STRING_VALUE", // required
|
|
32
|
-
* Tags: { // required
|
|
32
|
+
* Tags: { // TagMap // required
|
|
33
33
|
* "<keys>": "STRING_VALUE",
|
|
34
34
|
* },
|
|
35
35
|
* };
|
|
@@ -27,9 +27,9 @@ 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 = {
|
|
30
|
+
* const input = { // UntagResourceInput
|
|
31
31
|
* ResourceArn: "STRING_VALUE", // required
|
|
32
|
-
* TagKeys: [ // required
|
|
32
|
+
* TagKeys: [ // TagKeyList // required
|
|
33
33
|
* "STRING_VALUE",
|
|
34
34
|
* ],
|
|
35
35
|
* };
|
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.
|
|
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.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
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",
|