@aws-sdk/client-simspaceweaver 3.477.0 → 3.481.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-cjs/commands/CreateSnapshotCommand.js +18 -41
- package/dist-cjs/commands/DeleteAppCommand.js +18 -41
- package/dist-cjs/commands/DeleteSimulationCommand.js +18 -41
- package/dist-cjs/commands/DescribeAppCommand.js +18 -41
- package/dist-cjs/commands/DescribeSimulationCommand.js +18 -41
- package/dist-cjs/commands/ListAppsCommand.js +18 -41
- package/dist-cjs/commands/ListSimulationsCommand.js +18 -41
- package/dist-cjs/commands/ListTagsForResourceCommand.js +18 -41
- package/dist-cjs/commands/StartAppCommand.js +18 -41
- package/dist-cjs/commands/StartClockCommand.js +18 -41
- package/dist-cjs/commands/StartSimulationCommand.js +18 -41
- package/dist-cjs/commands/StopAppCommand.js +18 -41
- package/dist-cjs/commands/StopClockCommand.js +18 -41
- package/dist-cjs/commands/StopSimulationCommand.js +18 -41
- package/dist-cjs/commands/TagResourceCommand.js +18 -41
- package/dist-cjs/commands/UntagResourceCommand.js +18 -41
- package/dist-cjs/endpoint/EndpointParameters.js +7 -1
- package/dist-cjs/pagination/ListAppsPaginator.js +2 -24
- package/dist-cjs/pagination/ListSimulationsPaginator.js +2 -24
- package/dist-es/commands/CreateSnapshotCommand.js +18 -41
- package/dist-es/commands/DeleteAppCommand.js +18 -41
- package/dist-es/commands/DeleteSimulationCommand.js +18 -41
- package/dist-es/commands/DescribeAppCommand.js +18 -41
- package/dist-es/commands/DescribeSimulationCommand.js +18 -41
- package/dist-es/commands/ListAppsCommand.js +18 -41
- package/dist-es/commands/ListSimulationsCommand.js +18 -41
- package/dist-es/commands/ListTagsForResourceCommand.js +18 -41
- package/dist-es/commands/StartAppCommand.js +18 -41
- package/dist-es/commands/StartClockCommand.js +18 -41
- package/dist-es/commands/StartSimulationCommand.js +18 -41
- package/dist-es/commands/StopAppCommand.js +18 -41
- package/dist-es/commands/StopClockCommand.js +18 -41
- package/dist-es/commands/StopSimulationCommand.js +18 -41
- package/dist-es/commands/TagResourceCommand.js +18 -41
- package/dist-es/commands/UntagResourceCommand.js +18 -41
- package/dist-es/endpoint/EndpointParameters.js +6 -0
- package/dist-es/pagination/ListAppsPaginator.js +2 -23
- package/dist-es/pagination/ListSimulationsPaginator.js +2 -23
- package/dist-types/commands/CreateSnapshotCommand.d.ts +6 -21
- package/dist-types/commands/DeleteAppCommand.d.ts +6 -21
- package/dist-types/commands/DeleteSimulationCommand.d.ts +6 -21
- package/dist-types/commands/DescribeAppCommand.d.ts +6 -21
- package/dist-types/commands/DescribeSimulationCommand.d.ts +6 -21
- package/dist-types/commands/ListAppsCommand.d.ts +6 -21
- package/dist-types/commands/ListSimulationsCommand.d.ts +6 -21
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -21
- package/dist-types/commands/StartAppCommand.d.ts +6 -21
- package/dist-types/commands/StartClockCommand.d.ts +6 -21
- package/dist-types/commands/StartSimulationCommand.d.ts +6 -21
- package/dist-types/commands/StopAppCommand.d.ts +6 -21
- package/dist-types/commands/StopClockCommand.d.ts +6 -21
- package/dist-types/commands/StopSimulationCommand.d.ts +6 -21
- package/dist-types/commands/TagResourceCommand.d.ts +6 -21
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -21
- package/dist-types/endpoint/EndpointParameters.d.ts +18 -0
- package/dist-types/pagination/ListAppsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListSimulationsPaginator.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateSnapshotCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/DeleteAppCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/DeleteSimulationCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/DescribeAppCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/DescribeSimulationCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/ListAppsCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/ListSimulationsCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/StartAppCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/StartClockCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/StartSimulationCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/StopAppCommand.d.ts +12 -23
- package/dist-types/ts3.4/commands/StopClockCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/StopSimulationCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +14 -23
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +18 -0
- package/dist-types/ts3.4/pagination/ListAppsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListSimulationsPaginator.d.ts +3 -3
- package/package.json +11 -11
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { DescribeSimulationInput, DescribeSimulationOutput } from "../models/models_0";
|
|
5
4
|
import { ServiceInputTypes, ServiceOutputTypes, SimSpaceWeaverClientResolvedConfig } from "../SimSpaceWeaverClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface DescribeSimulationCommandInput extends DescribeSimulationInput
|
|
|
21
20
|
*/
|
|
22
21
|
export interface DescribeSimulationCommandOutput extends DescribeSimulationOutput, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const DescribeSimulationCommand_base: {
|
|
24
|
+
new (input: DescribeSimulationCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeSimulationCommandInput, DescribeSimulationCommandOutput, SimSpaceWeaverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Returns the current state of the given simulation.</p>
|
|
@@ -104,23 +107,5 @@ export interface DescribeSimulationCommandOutput extends DescribeSimulationOutpu
|
|
|
104
107
|
* <p>Base exception class for all service exceptions from SimSpaceWeaver service.</p>
|
|
105
108
|
*
|
|
106
109
|
*/
|
|
107
|
-
export declare class DescribeSimulationCommand extends
|
|
108
|
-
readonly input: DescribeSimulationCommandInput;
|
|
109
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
110
|
-
/**
|
|
111
|
-
* @public
|
|
112
|
-
*/
|
|
113
|
-
constructor(input: DescribeSimulationCommandInput);
|
|
114
|
-
/**
|
|
115
|
-
* @internal
|
|
116
|
-
*/
|
|
117
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SimSpaceWeaverClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeSimulationCommandInput, DescribeSimulationCommandOutput>;
|
|
118
|
-
/**
|
|
119
|
-
* @internal
|
|
120
|
-
*/
|
|
121
|
-
private serialize;
|
|
122
|
-
/**
|
|
123
|
-
* @internal
|
|
124
|
-
*/
|
|
125
|
-
private deserialize;
|
|
110
|
+
export declare class DescribeSimulationCommand extends DescribeSimulationCommand_base {
|
|
126
111
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { ListAppsInput, ListAppsOutput } from "../models/models_0";
|
|
5
4
|
import { ServiceInputTypes, ServiceOutputTypes, SimSpaceWeaverClientResolvedConfig } from "../SimSpaceWeaverClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface ListAppsCommandInput extends ListAppsInput {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface ListAppsCommandOutput extends ListAppsOutput, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const ListAppsCommand_base: {
|
|
24
|
+
new (input: ListAppsCommandInput): import("@smithy/smithy-client").CommandImpl<ListAppsCommandInput, ListAppsCommandOutput, SimSpaceWeaverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Lists all custom apps or service apps for the given simulation and domain.</p>
|
|
@@ -75,23 +78,5 @@ export interface ListAppsCommandOutput extends ListAppsOutput, __MetadataBearer
|
|
|
75
78
|
* <p>Base exception class for all service exceptions from SimSpaceWeaver service.</p>
|
|
76
79
|
*
|
|
77
80
|
*/
|
|
78
|
-
export declare class ListAppsCommand extends
|
|
79
|
-
readonly input: ListAppsCommandInput;
|
|
80
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
81
|
-
/**
|
|
82
|
-
* @public
|
|
83
|
-
*/
|
|
84
|
-
constructor(input: ListAppsCommandInput);
|
|
85
|
-
/**
|
|
86
|
-
* @internal
|
|
87
|
-
*/
|
|
88
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SimSpaceWeaverClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAppsCommandInput, ListAppsCommandOutput>;
|
|
89
|
-
/**
|
|
90
|
-
* @internal
|
|
91
|
-
*/
|
|
92
|
-
private serialize;
|
|
93
|
-
/**
|
|
94
|
-
* @internal
|
|
95
|
-
*/
|
|
96
|
-
private deserialize;
|
|
81
|
+
export declare class ListAppsCommand extends ListAppsCommand_base {
|
|
97
82
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { ListSimulationsInput, ListSimulationsOutput } from "../models/models_0";
|
|
5
4
|
import { ServiceInputTypes, ServiceOutputTypes, SimSpaceWeaverClientResolvedConfig } from "../SimSpaceWeaverClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface ListSimulationsCommandInput extends ListSimulationsInput {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface ListSimulationsCommandOutput extends ListSimulationsOutput, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const ListSimulationsCommand_base: {
|
|
24
|
+
new (input: ListSimulationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListSimulationsCommandInput, ListSimulationsCommandOutput, SimSpaceWeaverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Lists the SimSpace Weaver simulations in the Amazon Web Services account used to make the API call.</p>
|
|
@@ -70,23 +73,5 @@ export interface ListSimulationsCommandOutput extends ListSimulationsOutput, __M
|
|
|
70
73
|
* <p>Base exception class for all service exceptions from SimSpaceWeaver service.</p>
|
|
71
74
|
*
|
|
72
75
|
*/
|
|
73
|
-
export declare class ListSimulationsCommand extends
|
|
74
|
-
readonly input: ListSimulationsCommandInput;
|
|
75
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
76
|
-
/**
|
|
77
|
-
* @public
|
|
78
|
-
*/
|
|
79
|
-
constructor(input: ListSimulationsCommandInput);
|
|
80
|
-
/**
|
|
81
|
-
* @internal
|
|
82
|
-
*/
|
|
83
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SimSpaceWeaverClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSimulationsCommandInput, ListSimulationsCommandOutput>;
|
|
84
|
-
/**
|
|
85
|
-
* @internal
|
|
86
|
-
*/
|
|
87
|
-
private serialize;
|
|
88
|
-
/**
|
|
89
|
-
* @internal
|
|
90
|
-
*/
|
|
91
|
-
private deserialize;
|
|
76
|
+
export declare class ListSimulationsCommand extends ListSimulationsCommand_base {
|
|
92
77
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0";
|
|
5
4
|
import { ServiceInputTypes, ServiceOutputTypes, SimSpaceWeaverClientResolvedConfig } from "../SimSpaceWeaverClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface ListTagsForResourceCommandInput extends ListTagsForResourceInpu
|
|
|
21
20
|
*/
|
|
22
21
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOutput, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const ListTagsForResourceCommand_base: {
|
|
24
|
+
new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, SimSpaceWeaverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Lists all tags on a SimSpace Weaver resource.</p>
|
|
@@ -59,23 +62,5 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
|
|
|
59
62
|
* <p>Base exception class for all service exceptions from SimSpaceWeaver service.</p>
|
|
60
63
|
*
|
|
61
64
|
*/
|
|
62
|
-
export declare class ListTagsForResourceCommand extends
|
|
63
|
-
readonly input: ListTagsForResourceCommandInput;
|
|
64
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
-
/**
|
|
66
|
-
* @public
|
|
67
|
-
*/
|
|
68
|
-
constructor(input: ListTagsForResourceCommandInput);
|
|
69
|
-
/**
|
|
70
|
-
* @internal
|
|
71
|
-
*/
|
|
72
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SimSpaceWeaverClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
73
|
-
/**
|
|
74
|
-
* @internal
|
|
75
|
-
*/
|
|
76
|
-
private serialize;
|
|
77
|
-
/**
|
|
78
|
-
* @internal
|
|
79
|
-
*/
|
|
80
|
-
private deserialize;
|
|
65
|
+
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
81
66
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { StartAppInput, StartAppOutput } from "../models/models_0";
|
|
5
4
|
import { ServiceInputTypes, ServiceOutputTypes, SimSpaceWeaverClientResolvedConfig } from "../SimSpaceWeaverClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface StartAppCommandInput extends StartAppInput {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface StartAppCommandOutput extends StartAppOutput, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const StartAppCommand_base: {
|
|
24
|
+
new (input: StartAppCommandInput): import("@smithy/smithy-client").CommandImpl<StartAppCommandInput, StartAppCommandOutput, SimSpaceWeaverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Starts a custom app with the configuration specified in the simulation schema.</p>
|
|
@@ -77,23 +80,5 @@ export interface StartAppCommandOutput extends StartAppOutput, __MetadataBearer
|
|
|
77
80
|
* <p>Base exception class for all service exceptions from SimSpaceWeaver service.</p>
|
|
78
81
|
*
|
|
79
82
|
*/
|
|
80
|
-
export declare class StartAppCommand extends
|
|
81
|
-
readonly input: StartAppCommandInput;
|
|
82
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
83
|
-
/**
|
|
84
|
-
* @public
|
|
85
|
-
*/
|
|
86
|
-
constructor(input: StartAppCommandInput);
|
|
87
|
-
/**
|
|
88
|
-
* @internal
|
|
89
|
-
*/
|
|
90
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SimSpaceWeaverClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartAppCommandInput, StartAppCommandOutput>;
|
|
91
|
-
/**
|
|
92
|
-
* @internal
|
|
93
|
-
*/
|
|
94
|
-
private serialize;
|
|
95
|
-
/**
|
|
96
|
-
* @internal
|
|
97
|
-
*/
|
|
98
|
-
private deserialize;
|
|
83
|
+
export declare class StartAppCommand extends StartAppCommand_base {
|
|
99
84
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { StartClockInput, StartClockOutput } from "../models/models_0";
|
|
5
4
|
import { ServiceInputTypes, ServiceOutputTypes, SimSpaceWeaverClientResolvedConfig } from "../SimSpaceWeaverClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface StartClockCommandInput extends StartClockInput {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface StartClockCommandOutput extends StartClockOutput, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const StartClockCommand_base: {
|
|
24
|
+
new (input: StartClockCommandInput): import("@smithy/smithy-client").CommandImpl<StartClockCommandInput, StartClockCommandOutput, SimSpaceWeaverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Starts the simulation clock.</p>
|
|
@@ -64,23 +67,5 @@ export interface StartClockCommandOutput extends StartClockOutput, __MetadataBea
|
|
|
64
67
|
* <p>Base exception class for all service exceptions from SimSpaceWeaver service.</p>
|
|
65
68
|
*
|
|
66
69
|
*/
|
|
67
|
-
export declare class StartClockCommand extends
|
|
68
|
-
readonly input: StartClockCommandInput;
|
|
69
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
70
|
-
/**
|
|
71
|
-
* @public
|
|
72
|
-
*/
|
|
73
|
-
constructor(input: StartClockCommandInput);
|
|
74
|
-
/**
|
|
75
|
-
* @internal
|
|
76
|
-
*/
|
|
77
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SimSpaceWeaverClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartClockCommandInput, StartClockCommandOutput>;
|
|
78
|
-
/**
|
|
79
|
-
* @internal
|
|
80
|
-
*/
|
|
81
|
-
private serialize;
|
|
82
|
-
/**
|
|
83
|
-
* @internal
|
|
84
|
-
*/
|
|
85
|
-
private deserialize;
|
|
70
|
+
export declare class StartClockCommand extends StartClockCommand_base {
|
|
86
71
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { StartSimulationInput, StartSimulationOutput } from "../models/models_0";
|
|
5
4
|
import { ServiceInputTypes, ServiceOutputTypes, SimSpaceWeaverClientResolvedConfig } from "../SimSpaceWeaverClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface StartSimulationCommandInput extends StartSimulationInput {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface StartSimulationCommandOutput extends StartSimulationOutput, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const StartSimulationCommand_base: {
|
|
24
|
+
new (input: StartSimulationCommandInput): import("@smithy/smithy-client").CommandImpl<StartSimulationCommandInput, StartSimulationCommandOutput, SimSpaceWeaverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Starts a simulation with the given name. You must choose to start your
|
|
@@ -88,23 +91,5 @@ export interface StartSimulationCommandOutput extends StartSimulationOutput, __M
|
|
|
88
91
|
* <p>Base exception class for all service exceptions from SimSpaceWeaver service.</p>
|
|
89
92
|
*
|
|
90
93
|
*/
|
|
91
|
-
export declare class StartSimulationCommand extends
|
|
92
|
-
readonly input: StartSimulationCommandInput;
|
|
93
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
94
|
-
/**
|
|
95
|
-
* @public
|
|
96
|
-
*/
|
|
97
|
-
constructor(input: StartSimulationCommandInput);
|
|
98
|
-
/**
|
|
99
|
-
* @internal
|
|
100
|
-
*/
|
|
101
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SimSpaceWeaverClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartSimulationCommandInput, StartSimulationCommandOutput>;
|
|
102
|
-
/**
|
|
103
|
-
* @internal
|
|
104
|
-
*/
|
|
105
|
-
private serialize;
|
|
106
|
-
/**
|
|
107
|
-
* @internal
|
|
108
|
-
*/
|
|
109
|
-
private deserialize;
|
|
94
|
+
export declare class StartSimulationCommand extends StartSimulationCommand_base {
|
|
110
95
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { StopAppInput, StopAppOutput } from "../models/models_0";
|
|
5
4
|
import { ServiceInputTypes, ServiceOutputTypes, SimSpaceWeaverClientResolvedConfig } from "../SimSpaceWeaverClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface StopAppCommandInput extends StopAppInput {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface StopAppCommandOutput extends StopAppOutput, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const StopAppCommand_base: {
|
|
24
|
+
new (input: StopAppCommandInput): import("@smithy/smithy-client").CommandImpl<StopAppCommandInput, StopAppCommandOutput, SimSpaceWeaverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Stops the given custom app and shuts down all of its allocated compute resources.</p>
|
|
@@ -66,23 +69,5 @@ export interface StopAppCommandOutput extends StopAppOutput, __MetadataBearer {
|
|
|
66
69
|
* <p>Base exception class for all service exceptions from SimSpaceWeaver service.</p>
|
|
67
70
|
*
|
|
68
71
|
*/
|
|
69
|
-
export declare class StopAppCommand extends
|
|
70
|
-
readonly input: StopAppCommandInput;
|
|
71
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
72
|
-
/**
|
|
73
|
-
* @public
|
|
74
|
-
*/
|
|
75
|
-
constructor(input: StopAppCommandInput);
|
|
76
|
-
/**
|
|
77
|
-
* @internal
|
|
78
|
-
*/
|
|
79
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SimSpaceWeaverClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopAppCommandInput, StopAppCommandOutput>;
|
|
80
|
-
/**
|
|
81
|
-
* @internal
|
|
82
|
-
*/
|
|
83
|
-
private serialize;
|
|
84
|
-
/**
|
|
85
|
-
* @internal
|
|
86
|
-
*/
|
|
87
|
-
private deserialize;
|
|
72
|
+
export declare class StopAppCommand extends StopAppCommand_base {
|
|
88
73
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { StopClockInput, StopClockOutput } from "../models/models_0";
|
|
5
4
|
import { ServiceInputTypes, ServiceOutputTypes, SimSpaceWeaverClientResolvedConfig } from "../SimSpaceWeaverClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface StopClockCommandInput extends StopClockInput {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface StopClockCommandOutput extends StopClockOutput, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const StopClockCommand_base: {
|
|
24
|
+
new (input: StopClockCommandInput): import("@smithy/smithy-client").CommandImpl<StopClockCommandInput, StopClockCommandOutput, SimSpaceWeaverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Stops the simulation clock.</p>
|
|
@@ -64,23 +67,5 @@ export interface StopClockCommandOutput extends StopClockOutput, __MetadataBeare
|
|
|
64
67
|
* <p>Base exception class for all service exceptions from SimSpaceWeaver service.</p>
|
|
65
68
|
*
|
|
66
69
|
*/
|
|
67
|
-
export declare class StopClockCommand extends
|
|
68
|
-
readonly input: StopClockCommandInput;
|
|
69
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
70
|
-
/**
|
|
71
|
-
* @public
|
|
72
|
-
*/
|
|
73
|
-
constructor(input: StopClockCommandInput);
|
|
74
|
-
/**
|
|
75
|
-
* @internal
|
|
76
|
-
*/
|
|
77
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SimSpaceWeaverClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopClockCommandInput, StopClockCommandOutput>;
|
|
78
|
-
/**
|
|
79
|
-
* @internal
|
|
80
|
-
*/
|
|
81
|
-
private serialize;
|
|
82
|
-
/**
|
|
83
|
-
* @internal
|
|
84
|
-
*/
|
|
85
|
-
private deserialize;
|
|
70
|
+
export declare class StopClockCommand extends StopClockCommand_base {
|
|
86
71
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { StopSimulationInput, StopSimulationOutput } from "../models/models_0";
|
|
5
4
|
import { ServiceInputTypes, ServiceOutputTypes, SimSpaceWeaverClientResolvedConfig } from "../SimSpaceWeaverClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface StopSimulationCommandInput extends StopSimulationInput {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface StopSimulationCommandOutput extends StopSimulationOutput, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const StopSimulationCommand_base: {
|
|
24
|
+
new (input: StopSimulationCommandInput): import("@smithy/smithy-client").CommandImpl<StopSimulationCommandInput, StopSimulationCommandOutput, SimSpaceWeaverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Stops the given simulation.</p>
|
|
@@ -68,23 +71,5 @@ export interface StopSimulationCommandOutput extends StopSimulationOutput, __Met
|
|
|
68
71
|
* <p>Base exception class for all service exceptions from SimSpaceWeaver service.</p>
|
|
69
72
|
*
|
|
70
73
|
*/
|
|
71
|
-
export declare class StopSimulationCommand extends
|
|
72
|
-
readonly input: StopSimulationCommandInput;
|
|
73
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
74
|
-
/**
|
|
75
|
-
* @public
|
|
76
|
-
*/
|
|
77
|
-
constructor(input: StopSimulationCommandInput);
|
|
78
|
-
/**
|
|
79
|
-
* @internal
|
|
80
|
-
*/
|
|
81
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SimSpaceWeaverClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopSimulationCommandInput, StopSimulationCommandOutput>;
|
|
82
|
-
/**
|
|
83
|
-
* @internal
|
|
84
|
-
*/
|
|
85
|
-
private serialize;
|
|
86
|
-
/**
|
|
87
|
-
* @internal
|
|
88
|
-
*/
|
|
89
|
-
private deserialize;
|
|
74
|
+
export declare class StopSimulationCommand extends StopSimulationCommand_base {
|
|
90
75
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { TagResourceInput, TagResourceOutput } from "../models/models_0";
|
|
5
4
|
import { ServiceInputTypes, ServiceOutputTypes, SimSpaceWeaverClientResolvedConfig } from "../SimSpaceWeaverClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface TagResourceCommandInput extends TagResourceInput {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const TagResourceCommand_base: {
|
|
24
|
+
new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, SimSpaceWeaverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
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
|
|
@@ -62,23 +65,5 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
|
|
|
62
65
|
* <p>Base exception class for all service exceptions from SimSpaceWeaver service.</p>
|
|
63
66
|
*
|
|
64
67
|
*/
|
|
65
|
-
export declare class TagResourceCommand extends
|
|
66
|
-
readonly input: TagResourceCommandInput;
|
|
67
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
68
|
-
/**
|
|
69
|
-
* @public
|
|
70
|
-
*/
|
|
71
|
-
constructor(input: TagResourceCommandInput);
|
|
72
|
-
/**
|
|
73
|
-
* @internal
|
|
74
|
-
*/
|
|
75
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SimSpaceWeaverClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
76
|
-
/**
|
|
77
|
-
* @internal
|
|
78
|
-
*/
|
|
79
|
-
private serialize;
|
|
80
|
-
/**
|
|
81
|
-
* @internal
|
|
82
|
-
*/
|
|
83
|
-
private deserialize;
|
|
68
|
+
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
84
69
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { UntagResourceInput, UntagResourceOutput } from "../models/models_0";
|
|
5
4
|
import { ServiceInputTypes, ServiceOutputTypes, SimSpaceWeaverClientResolvedConfig } from "../SimSpaceWeaverClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface UntagResourceCommandInput extends UntagResourceInput {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface UntagResourceCommandOutput extends UntagResourceOutput, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const UntagResourceCommand_base: {
|
|
24
|
+
new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, SimSpaceWeaverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
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
|
|
@@ -59,23 +62,5 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
|
|
|
59
62
|
* <p>Base exception class for all service exceptions from SimSpaceWeaver service.</p>
|
|
60
63
|
*
|
|
61
64
|
*/
|
|
62
|
-
export declare class UntagResourceCommand extends
|
|
63
|
-
readonly input: UntagResourceCommandInput;
|
|
64
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
-
/**
|
|
66
|
-
* @public
|
|
67
|
-
*/
|
|
68
|
-
constructor(input: UntagResourceCommandInput);
|
|
69
|
-
/**
|
|
70
|
-
* @internal
|
|
71
|
-
*/
|
|
72
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SimSpaceWeaverClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
73
|
-
/**
|
|
74
|
-
* @internal
|
|
75
|
-
*/
|
|
76
|
-
private serialize;
|
|
77
|
-
/**
|
|
78
|
-
* @internal
|
|
79
|
-
*/
|
|
80
|
-
private deserialize;
|
|
65
|
+
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
81
66
|
}
|
|
@@ -14,6 +14,24 @@ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
|
14
14
|
export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
|
|
15
15
|
defaultSigningName: string;
|
|
16
16
|
};
|
|
17
|
+
export declare const commonParams: {
|
|
18
|
+
readonly UseFIPS: {
|
|
19
|
+
readonly type: "builtInParams";
|
|
20
|
+
readonly name: "useFipsEndpoint";
|
|
21
|
+
};
|
|
22
|
+
readonly Endpoint: {
|
|
23
|
+
readonly type: "builtInParams";
|
|
24
|
+
readonly name: "endpoint";
|
|
25
|
+
};
|
|
26
|
+
readonly Region: {
|
|
27
|
+
readonly type: "builtInParams";
|
|
28
|
+
readonly name: "region";
|
|
29
|
+
};
|
|
30
|
+
readonly UseDualStack: {
|
|
31
|
+
readonly type: "builtInParams";
|
|
32
|
+
readonly name: "useDualstackEndpoint";
|
|
33
|
+
};
|
|
34
|
+
};
|
|
17
35
|
export interface EndpointParameters extends __EndpointParameters {
|
|
18
36
|
Region?: string;
|
|
19
37
|
UseDualStack?: boolean;
|
|
@@ -4,4 +4,4 @@ import { SimSpaceWeaverPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListApps: (config: SimSpaceWeaverPaginationConfiguration, input: ListAppsCommandInput, ...rest: any[]) => Paginator<ListAppsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { SimSpaceWeaverPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListSimulations: (config: SimSpaceWeaverPaginationConfiguration, input: ListSimulationsCommandInput, ...rest: any[]) => Paginator<ListSimulationsCommandOutput>;
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import { CreateSnapshotInput, CreateSnapshotOutput } from "../models/models_0";
|
|
10
4
|
import {
|
|
11
5
|
ServiceInputTypes,
|
|
@@ -17,19 +11,16 @@ export interface CreateSnapshotCommandInput extends CreateSnapshotInput {}
|
|
|
17
11
|
export interface CreateSnapshotCommandOutput
|
|
18
12
|
extends CreateSnapshotOutput,
|
|
19
13
|
__MetadataBearer {}
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
private serialize;
|
|
34
|
-
private deserialize;
|
|
35
|
-
}
|
|
14
|
+
declare const CreateSnapshotCommand_base: {
|
|
15
|
+
new (
|
|
16
|
+
input: CreateSnapshotCommandInput
|
|
17
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
18
|
+
CreateSnapshotCommandInput,
|
|
19
|
+
CreateSnapshotCommandOutput,
|
|
20
|
+
SimSpaceWeaverClientResolvedConfig,
|
|
21
|
+
ServiceInputTypes,
|
|
22
|
+
ServiceOutputTypes
|
|
23
|
+
>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
export declare class CreateSnapshotCommand extends CreateSnapshotCommand_base {}
|