@aws-sdk/client-simspaceweaver 3.220.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/LICENSE +201 -0
- package/README.md +216 -0
- package/dist-cjs/SimSpaceWeaver.js +232 -0
- package/dist-cjs/SimSpaceWeaverClient.js +40 -0
- package/dist-cjs/commands/DeleteAppCommand.js +46 -0
- package/dist-cjs/commands/DeleteSimulationCommand.js +46 -0
- package/dist-cjs/commands/DescribeAppCommand.js +46 -0
- package/dist-cjs/commands/DescribeSimulationCommand.js +46 -0
- package/dist-cjs/commands/ListAppsCommand.js +46 -0
- package/dist-cjs/commands/ListSimulationsCommand.js +46 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +46 -0
- package/dist-cjs/commands/StartAppCommand.js +46 -0
- package/dist-cjs/commands/StartClockCommand.js +46 -0
- package/dist-cjs/commands/StartSimulationCommand.js +46 -0
- package/dist-cjs/commands/StopAppCommand.js +46 -0
- package/dist-cjs/commands/StopClockCommand.js +46 -0
- package/dist-cjs/commands/StopSimulationCommand.js +46 -0
- package/dist-cjs/commands/TagResourceCommand.js +46 -0
- package/dist-cjs/commands/UntagResourceCommand.js +46 -0
- package/dist-cjs/commands/index.js +18 -0
- package/dist-cjs/endpoint/EndpointParameters.js +12 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +312 -0
- package/dist-cjs/index.js +11 -0
- package/dist-cjs/models/SimSpaceWeaverServiceException.js +11 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +328 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListAppsPaginator.js +36 -0
- package/dist-cjs/pagination/ListSimulationsPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +6 -0
- package/dist-cjs/protocols/Aws_restJson1.js +1384 -0
- package/dist-cjs/runtimeConfig.browser.js +42 -0
- package/dist-cjs/runtimeConfig.js +50 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +18 -0
- package/dist-es/SimSpaceWeaver.js +228 -0
- package/dist-es/SimSpaceWeaverClient.js +36 -0
- package/dist-es/commands/DeleteAppCommand.js +42 -0
- package/dist-es/commands/DeleteSimulationCommand.js +42 -0
- package/dist-es/commands/DescribeAppCommand.js +42 -0
- package/dist-es/commands/DescribeSimulationCommand.js +42 -0
- package/dist-es/commands/ListAppsCommand.js +42 -0
- package/dist-es/commands/ListSimulationsCommand.js +42 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +42 -0
- package/dist-es/commands/StartAppCommand.js +42 -0
- package/dist-es/commands/StartClockCommand.js +42 -0
- package/dist-es/commands/StartSimulationCommand.js +42 -0
- package/dist-es/commands/StopAppCommand.js +42 -0
- package/dist-es/commands/StopClockCommand.js +42 -0
- package/dist-es/commands/StopSimulationCommand.js +42 -0
- package/dist-es/commands/TagResourceCommand.js +42 -0
- package/dist-es/commands/UntagResourceCommand.js +42 -0
- package/dist-es/commands/index.js +15 -0
- package/dist-es/endpoint/EndpointParameters.js +8 -0
- package/dist-es/endpoint/endpointResolver.js +8 -0
- package/dist-es/endpoint/ruleset.js +309 -0
- package/dist-es/index.js +6 -0
- package/dist-es/models/SimSpaceWeaverServiceException.js +7 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +275 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListAppsPaginator.js +32 -0
- package/dist-es/pagination/ListSimulationsPaginator.js +32 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/protocols/Aws_restJson1.js +1351 -0
- package/dist-es/runtimeConfig.browser.js +37 -0
- package/dist-es/runtimeConfig.js +45 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +14 -0
- package/dist-types/SimSpaceWeaver.d.ts +134 -0
- package/dist-types/SimSpaceWeaverClient.d.ts +167 -0
- package/dist-types/commands/DeleteAppCommand.d.ts +37 -0
- package/dist-types/commands/DeleteSimulationCommand.d.ts +41 -0
- package/dist-types/commands/DescribeAppCommand.d.ts +37 -0
- package/dist-types/commands/DescribeSimulationCommand.d.ts +37 -0
- package/dist-types/commands/ListAppsCommand.d.ts +37 -0
- package/dist-types/commands/ListSimulationsCommand.d.ts +37 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +37 -0
- package/dist-types/commands/StartAppCommand.d.ts +37 -0
- package/dist-types/commands/StartClockCommand.d.ts +37 -0
- package/dist-types/commands/StartSimulationCommand.d.ts +37 -0
- package/dist-types/commands/StopAppCommand.d.ts +37 -0
- package/dist-types/commands/StopClockCommand.d.ts +37 -0
- package/dist-types/commands/StopSimulationCommand.d.ts +42 -0
- package/dist-types/commands/TagResourceCommand.d.ts +38 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +38 -0
- package/dist-types/commands/index.d.ts +15 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/index.d.ts +6 -0
- package/dist-types/models/SimSpaceWeaverServiceException.d.ts +10 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +911 -0
- package/dist-types/pagination/Interfaces.d.ts +6 -0
- package/dist-types/pagination/ListAppsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListSimulationsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +47 -0
- package/dist-types/runtimeConfig.browser.d.ts +42 -0
- package/dist-types/runtimeConfig.d.ts +42 -0
- package/dist-types/runtimeConfig.native.d.ts +41 -0
- package/dist-types/runtimeConfig.shared.d.ts +16 -0
- package/dist-types/ts3.4/SimSpaceWeaver.d.ts +259 -0
- package/dist-types/ts3.4/SimSpaceWeaverClient.d.ts +202 -0
- package/dist-types/ts3.4/commands/DeleteAppCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/DeleteSimulationCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/DescribeAppCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/DescribeSimulationCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListAppsCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/ListSimulationsCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/StartAppCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/StartClockCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/StartSimulationCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/StopAppCommand.d.ts +32 -0
- package/dist-types/ts3.4/commands/StopClockCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/StopSimulationCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/index.d.ts +15 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +34 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +6 -0
- package/dist-types/ts3.4/models/SimSpaceWeaverServiceException.d.ts +7 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +395 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -0
- package/dist-types/ts3.4/pagination/ListAppsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSimulationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +185 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +88 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +88 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +77 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +16 -0
- package/package.json +103 -0
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import { TagResourceInput, TagResourceOutput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
SimSpaceWeaverClientResolvedConfig,
|
|
14
|
+
} from "../SimSpaceWeaverClient";
|
|
15
|
+
export interface TagResourceCommandInput extends TagResourceInput {}
|
|
16
|
+
export interface TagResourceCommandOutput
|
|
17
|
+
extends TagResourceOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class TagResourceCommand extends $Command<
|
|
20
|
+
TagResourceCommandInput,
|
|
21
|
+
TagResourceCommandOutput,
|
|
22
|
+
SimSpaceWeaverClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: TagResourceCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: TagResourceCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: SimSpaceWeaverClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import { UntagResourceInput, UntagResourceOutput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
SimSpaceWeaverClientResolvedConfig,
|
|
14
|
+
} from "../SimSpaceWeaverClient";
|
|
15
|
+
export interface UntagResourceCommandInput extends UntagResourceInput {}
|
|
16
|
+
export interface UntagResourceCommandOutput
|
|
17
|
+
extends UntagResourceOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class UntagResourceCommand extends $Command<
|
|
20
|
+
UntagResourceCommandInput,
|
|
21
|
+
UntagResourceCommandOutput,
|
|
22
|
+
SimSpaceWeaverClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: UntagResourceCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: UntagResourceCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: SimSpaceWeaverClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export * from "./DeleteAppCommand";
|
|
2
|
+
export * from "./DeleteSimulationCommand";
|
|
3
|
+
export * from "./DescribeAppCommand";
|
|
4
|
+
export * from "./DescribeSimulationCommand";
|
|
5
|
+
export * from "./ListAppsCommand";
|
|
6
|
+
export * from "./ListSimulationsCommand";
|
|
7
|
+
export * from "./ListTagsForResourceCommand";
|
|
8
|
+
export * from "./StartAppCommand";
|
|
9
|
+
export * from "./StartClockCommand";
|
|
10
|
+
export * from "./StartSimulationCommand";
|
|
11
|
+
export * from "./StopAppCommand";
|
|
12
|
+
export * from "./StopClockCommand";
|
|
13
|
+
export * from "./StopSimulationCommand";
|
|
14
|
+
export * from "./TagResourceCommand";
|
|
15
|
+
export * from "./UntagResourceCommand";
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import {
|
|
2
|
+
Endpoint,
|
|
3
|
+
EndpointParameters as __EndpointParameters,
|
|
4
|
+
EndpointV2,
|
|
5
|
+
Provider,
|
|
6
|
+
} from "@aws-sdk/types";
|
|
7
|
+
export interface ClientInputEndpointParameters {
|
|
8
|
+
region?: string | Provider<string>;
|
|
9
|
+
useDualstackEndpoint?: boolean | Provider<boolean>;
|
|
10
|
+
useFipsEndpoint?: boolean | Provider<boolean>;
|
|
11
|
+
endpoint?:
|
|
12
|
+
| string
|
|
13
|
+
| Provider<string>
|
|
14
|
+
| Endpoint
|
|
15
|
+
| Provider<Endpoint>
|
|
16
|
+
| EndpointV2
|
|
17
|
+
| Provider<EndpointV2>;
|
|
18
|
+
}
|
|
19
|
+
export declare type ClientResolvedEndpointParameters =
|
|
20
|
+
ClientInputEndpointParameters & {
|
|
21
|
+
defaultSigningName: string;
|
|
22
|
+
};
|
|
23
|
+
export declare const resolveClientEndpointParameters: <T>(
|
|
24
|
+
options: T & ClientInputEndpointParameters
|
|
25
|
+
) => T &
|
|
26
|
+
ClientInputEndpointParameters & {
|
|
27
|
+
defaultSigningName: string;
|
|
28
|
+
};
|
|
29
|
+
export interface EndpointParameters extends __EndpointParameters {
|
|
30
|
+
Region?: string;
|
|
31
|
+
UseDualStack?: boolean;
|
|
32
|
+
UseFIPS?: boolean;
|
|
33
|
+
Endpoint?: string;
|
|
34
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
export declare class SimSpaceWeaverServiceException extends __ServiceException {
|
|
6
|
+
constructor(options: __ServiceExceptionOptions);
|
|
7
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./models_0";
|
|
@@ -0,0 +1,395 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { SimSpaceWeaverServiceException as __BaseException } from "./SimSpaceWeaverServiceException";
|
|
3
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
4
|
+
readonly name: "AccessDeniedException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
Message?: string;
|
|
7
|
+
constructor(
|
|
8
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
|
+
);
|
|
10
|
+
}
|
|
11
|
+
export interface SimulationAppPortMapping {
|
|
12
|
+
Declared?: number;
|
|
13
|
+
Actual?: number;
|
|
14
|
+
}
|
|
15
|
+
export declare enum ClockStatus {
|
|
16
|
+
STARTED = "STARTED",
|
|
17
|
+
STARTING = "STARTING",
|
|
18
|
+
STOPPED = "STOPPED",
|
|
19
|
+
STOPPING = "STOPPING",
|
|
20
|
+
UNKNOWN = "UNKNOWN",
|
|
21
|
+
}
|
|
22
|
+
export declare enum ClockTargetStatus {
|
|
23
|
+
STARTED = "STARTED",
|
|
24
|
+
STOPPED = "STOPPED",
|
|
25
|
+
UNKNOWN = "UNKNOWN",
|
|
26
|
+
}
|
|
27
|
+
export interface CloudWatchLogsLogGroup {
|
|
28
|
+
LogGroupArn?: string;
|
|
29
|
+
}
|
|
30
|
+
export declare class ConflictException extends __BaseException {
|
|
31
|
+
readonly name: "ConflictException";
|
|
32
|
+
readonly $fault: "client";
|
|
33
|
+
Message?: string;
|
|
34
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
35
|
+
}
|
|
36
|
+
export interface DeleteAppInput {
|
|
37
|
+
Simulation: string | undefined;
|
|
38
|
+
Domain: string | undefined;
|
|
39
|
+
App: string | undefined;
|
|
40
|
+
}
|
|
41
|
+
export interface DeleteAppOutput {}
|
|
42
|
+
export declare class InternalServerException extends __BaseException {
|
|
43
|
+
readonly name: "InternalServerException";
|
|
44
|
+
readonly $fault: "server";
|
|
45
|
+
Message?: string;
|
|
46
|
+
constructor(
|
|
47
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
48
|
+
);
|
|
49
|
+
}
|
|
50
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
51
|
+
readonly name: "ResourceNotFoundException";
|
|
52
|
+
readonly $fault: "client";
|
|
53
|
+
Message?: string;
|
|
54
|
+
constructor(
|
|
55
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
56
|
+
);
|
|
57
|
+
}
|
|
58
|
+
export declare class ValidationException extends __BaseException {
|
|
59
|
+
readonly name: "ValidationException";
|
|
60
|
+
readonly $fault: "client";
|
|
61
|
+
Message?: string;
|
|
62
|
+
constructor(
|
|
63
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
64
|
+
);
|
|
65
|
+
}
|
|
66
|
+
export interface DeleteSimulationInput {
|
|
67
|
+
Simulation: string | undefined;
|
|
68
|
+
}
|
|
69
|
+
export interface DeleteSimulationOutput {}
|
|
70
|
+
export interface DescribeAppInput {
|
|
71
|
+
Simulation: string | undefined;
|
|
72
|
+
Domain: string | undefined;
|
|
73
|
+
App: string | undefined;
|
|
74
|
+
}
|
|
75
|
+
export interface SimulationAppEndpointInfo {
|
|
76
|
+
Address?: string;
|
|
77
|
+
IngressPortMappings?: SimulationAppPortMapping[];
|
|
78
|
+
}
|
|
79
|
+
export interface LaunchOverrides {
|
|
80
|
+
LaunchCommands?: string[];
|
|
81
|
+
}
|
|
82
|
+
export declare enum SimulationAppStatus {
|
|
83
|
+
ERROR = "ERROR",
|
|
84
|
+
STARTED = "STARTED",
|
|
85
|
+
STARTING = "STARTING",
|
|
86
|
+
STOPPED = "STOPPED",
|
|
87
|
+
STOPPING = "STOPPING",
|
|
88
|
+
UNKNOWN = "UNKNOWN",
|
|
89
|
+
}
|
|
90
|
+
export declare enum SimulationAppTargetStatus {
|
|
91
|
+
STARTED = "STARTED",
|
|
92
|
+
STOPPED = "STOPPED",
|
|
93
|
+
UNKNOWN = "UNKNOWN",
|
|
94
|
+
}
|
|
95
|
+
export interface DescribeAppOutput {
|
|
96
|
+
Name?: string;
|
|
97
|
+
Simulation?: string;
|
|
98
|
+
Domain?: string;
|
|
99
|
+
Status?: SimulationAppStatus | string;
|
|
100
|
+
TargetStatus?: SimulationAppTargetStatus | string;
|
|
101
|
+
LaunchOverrides?: LaunchOverrides;
|
|
102
|
+
Description?: string;
|
|
103
|
+
EndpointInfo?: SimulationAppEndpointInfo;
|
|
104
|
+
}
|
|
105
|
+
export interface DescribeSimulationInput {
|
|
106
|
+
Simulation: string | undefined;
|
|
107
|
+
}
|
|
108
|
+
export interface SimulationClock {
|
|
109
|
+
Status?: ClockStatus | string;
|
|
110
|
+
TargetStatus?: ClockTargetStatus | string;
|
|
111
|
+
}
|
|
112
|
+
export declare enum LifecycleManagementStrategy {
|
|
113
|
+
ByRequest = "ByRequest",
|
|
114
|
+
BySpatialSubdivision = "BySpatialSubdivision",
|
|
115
|
+
PerWorker = "PerWorker",
|
|
116
|
+
Unknown = "Unknown",
|
|
117
|
+
}
|
|
118
|
+
export interface Domain {
|
|
119
|
+
Name?: string;
|
|
120
|
+
Lifecycle?: LifecycleManagementStrategy | string;
|
|
121
|
+
}
|
|
122
|
+
export interface LiveSimulationState {
|
|
123
|
+
Domains?: Domain[];
|
|
124
|
+
Clocks?: SimulationClock[];
|
|
125
|
+
}
|
|
126
|
+
export interface LogDestination {
|
|
127
|
+
CloudWatchLogsLogGroup?: CloudWatchLogsLogGroup;
|
|
128
|
+
}
|
|
129
|
+
export interface LoggingConfiguration {
|
|
130
|
+
Destinations?: LogDestination[];
|
|
131
|
+
}
|
|
132
|
+
export interface S3Location {
|
|
133
|
+
BucketName?: string;
|
|
134
|
+
ObjectKey?: string;
|
|
135
|
+
}
|
|
136
|
+
export declare enum SimulationStatus {
|
|
137
|
+
DELETED = "DELETED",
|
|
138
|
+
DELETING = "DELETING",
|
|
139
|
+
FAILED = "FAILED",
|
|
140
|
+
STARTED = "STARTED",
|
|
141
|
+
STARTING = "STARTING",
|
|
142
|
+
STOPPED = "STOPPED",
|
|
143
|
+
STOPPING = "STOPPING",
|
|
144
|
+
UNKNOWN = "UNKNOWN",
|
|
145
|
+
}
|
|
146
|
+
export declare enum SimulationTargetStatus {
|
|
147
|
+
DELETED = "DELETED",
|
|
148
|
+
STARTED = "STARTED",
|
|
149
|
+
STOPPED = "STOPPED",
|
|
150
|
+
UNKNOWN = "UNKNOWN",
|
|
151
|
+
}
|
|
152
|
+
export interface DescribeSimulationOutput {
|
|
153
|
+
Name?: string;
|
|
154
|
+
ExecutionId?: string;
|
|
155
|
+
Arn?: string;
|
|
156
|
+
Description?: string;
|
|
157
|
+
RoleArn?: string;
|
|
158
|
+
CreationTime?: Date;
|
|
159
|
+
Status?: SimulationStatus | string;
|
|
160
|
+
TargetStatus?: SimulationTargetStatus | string;
|
|
161
|
+
SchemaS3Location?: S3Location;
|
|
162
|
+
SchemaError?: string;
|
|
163
|
+
LoggingConfiguration?: LoggingConfiguration;
|
|
164
|
+
LiveSimulationState?: LiveSimulationState;
|
|
165
|
+
MaximumDuration?: string;
|
|
166
|
+
}
|
|
167
|
+
export interface ListAppsInput {
|
|
168
|
+
Simulation: string | undefined;
|
|
169
|
+
Domain?: string;
|
|
170
|
+
MaxResults?: number;
|
|
171
|
+
NextToken?: string;
|
|
172
|
+
}
|
|
173
|
+
export interface SimulationAppMetadata {
|
|
174
|
+
Name?: string;
|
|
175
|
+
Simulation?: string;
|
|
176
|
+
Domain?: string;
|
|
177
|
+
Status?: SimulationAppStatus | string;
|
|
178
|
+
TargetStatus?: SimulationAppTargetStatus | string;
|
|
179
|
+
}
|
|
180
|
+
export interface ListAppsOutput {
|
|
181
|
+
Apps?: SimulationAppMetadata[];
|
|
182
|
+
NextToken?: string;
|
|
183
|
+
}
|
|
184
|
+
export interface ListSimulationsInput {
|
|
185
|
+
MaxResults?: number;
|
|
186
|
+
NextToken?: string;
|
|
187
|
+
}
|
|
188
|
+
export interface SimulationMetadata {
|
|
189
|
+
Name?: string;
|
|
190
|
+
Arn?: string;
|
|
191
|
+
CreationTime?: Date;
|
|
192
|
+
Status?: SimulationStatus | string;
|
|
193
|
+
TargetStatus?: SimulationTargetStatus | string;
|
|
194
|
+
}
|
|
195
|
+
export interface ListSimulationsOutput {
|
|
196
|
+
Simulations?: SimulationMetadata[];
|
|
197
|
+
NextToken?: string;
|
|
198
|
+
}
|
|
199
|
+
export interface ListTagsForResourceInput {
|
|
200
|
+
ResourceArn: string | undefined;
|
|
201
|
+
}
|
|
202
|
+
export interface ListTagsForResourceOutput {
|
|
203
|
+
Tags?: Record<string, string>;
|
|
204
|
+
}
|
|
205
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
206
|
+
readonly name: "ServiceQuotaExceededException";
|
|
207
|
+
readonly $fault: "client";
|
|
208
|
+
Message?: string;
|
|
209
|
+
constructor(
|
|
210
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
211
|
+
);
|
|
212
|
+
}
|
|
213
|
+
export interface StartAppInput {
|
|
214
|
+
ClientToken?: string;
|
|
215
|
+
Simulation: string | undefined;
|
|
216
|
+
Domain: string | undefined;
|
|
217
|
+
Name: string | undefined;
|
|
218
|
+
Description?: string;
|
|
219
|
+
LaunchOverrides?: LaunchOverrides;
|
|
220
|
+
}
|
|
221
|
+
export interface StartAppOutput {
|
|
222
|
+
Name?: string;
|
|
223
|
+
Domain?: string;
|
|
224
|
+
Simulation?: string;
|
|
225
|
+
}
|
|
226
|
+
export interface StartClockInput {
|
|
227
|
+
Simulation: string | undefined;
|
|
228
|
+
}
|
|
229
|
+
export interface StartClockOutput {}
|
|
230
|
+
export interface StartSimulationInput {
|
|
231
|
+
ClientToken?: string;
|
|
232
|
+
Name: string | undefined;
|
|
233
|
+
Description?: string;
|
|
234
|
+
RoleArn: string | undefined;
|
|
235
|
+
SchemaS3Location: S3Location | undefined;
|
|
236
|
+
MaximumDuration?: string;
|
|
237
|
+
Tags?: Record<string, string>;
|
|
238
|
+
}
|
|
239
|
+
export interface StartSimulationOutput {
|
|
240
|
+
Arn?: string;
|
|
241
|
+
ExecutionId?: string;
|
|
242
|
+
CreationTime?: Date;
|
|
243
|
+
}
|
|
244
|
+
export interface StopAppInput {
|
|
245
|
+
Simulation: string | undefined;
|
|
246
|
+
Domain: string | undefined;
|
|
247
|
+
App: string | undefined;
|
|
248
|
+
}
|
|
249
|
+
export interface StopAppOutput {}
|
|
250
|
+
export interface StopClockInput {
|
|
251
|
+
Simulation: string | undefined;
|
|
252
|
+
}
|
|
253
|
+
export interface StopClockOutput {}
|
|
254
|
+
export interface StopSimulationInput {
|
|
255
|
+
Simulation: string | undefined;
|
|
256
|
+
}
|
|
257
|
+
export interface StopSimulationOutput {}
|
|
258
|
+
export interface TagResourceInput {
|
|
259
|
+
ResourceArn: string | undefined;
|
|
260
|
+
Tags: Record<string, string> | undefined;
|
|
261
|
+
}
|
|
262
|
+
export interface TagResourceOutput {}
|
|
263
|
+
export declare class TooManyTagsException extends __BaseException {
|
|
264
|
+
readonly name: "TooManyTagsException";
|
|
265
|
+
readonly $fault: "client";
|
|
266
|
+
Message?: string;
|
|
267
|
+
constructor(
|
|
268
|
+
opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
|
|
269
|
+
);
|
|
270
|
+
}
|
|
271
|
+
export interface UntagResourceInput {
|
|
272
|
+
ResourceArn: string | undefined;
|
|
273
|
+
TagKeys: string[] | undefined;
|
|
274
|
+
}
|
|
275
|
+
export interface UntagResourceOutput {}
|
|
276
|
+
export declare const SimulationAppPortMappingFilterSensitiveLog: (
|
|
277
|
+
obj: SimulationAppPortMapping
|
|
278
|
+
) => any;
|
|
279
|
+
export declare const CloudWatchLogsLogGroupFilterSensitiveLog: (
|
|
280
|
+
obj: CloudWatchLogsLogGroup
|
|
281
|
+
) => any;
|
|
282
|
+
export declare const DeleteAppInputFilterSensitiveLog: (
|
|
283
|
+
obj: DeleteAppInput
|
|
284
|
+
) => any;
|
|
285
|
+
export declare const DeleteAppOutputFilterSensitiveLog: (
|
|
286
|
+
obj: DeleteAppOutput
|
|
287
|
+
) => any;
|
|
288
|
+
export declare const DeleteSimulationInputFilterSensitiveLog: (
|
|
289
|
+
obj: DeleteSimulationInput
|
|
290
|
+
) => any;
|
|
291
|
+
export declare const DeleteSimulationOutputFilterSensitiveLog: (
|
|
292
|
+
obj: DeleteSimulationOutput
|
|
293
|
+
) => any;
|
|
294
|
+
export declare const DescribeAppInputFilterSensitiveLog: (
|
|
295
|
+
obj: DescribeAppInput
|
|
296
|
+
) => any;
|
|
297
|
+
export declare const SimulationAppEndpointInfoFilterSensitiveLog: (
|
|
298
|
+
obj: SimulationAppEndpointInfo
|
|
299
|
+
) => any;
|
|
300
|
+
export declare const LaunchOverridesFilterSensitiveLog: (
|
|
301
|
+
obj: LaunchOverrides
|
|
302
|
+
) => any;
|
|
303
|
+
export declare const DescribeAppOutputFilterSensitiveLog: (
|
|
304
|
+
obj: DescribeAppOutput
|
|
305
|
+
) => any;
|
|
306
|
+
export declare const DescribeSimulationInputFilterSensitiveLog: (
|
|
307
|
+
obj: DescribeSimulationInput
|
|
308
|
+
) => any;
|
|
309
|
+
export declare const SimulationClockFilterSensitiveLog: (
|
|
310
|
+
obj: SimulationClock
|
|
311
|
+
) => any;
|
|
312
|
+
export declare const DomainFilterSensitiveLog: (obj: Domain) => any;
|
|
313
|
+
export declare const LiveSimulationStateFilterSensitiveLog: (
|
|
314
|
+
obj: LiveSimulationState
|
|
315
|
+
) => any;
|
|
316
|
+
export declare const LogDestinationFilterSensitiveLog: (
|
|
317
|
+
obj: LogDestination
|
|
318
|
+
) => any;
|
|
319
|
+
export declare const LoggingConfigurationFilterSensitiveLog: (
|
|
320
|
+
obj: LoggingConfiguration
|
|
321
|
+
) => any;
|
|
322
|
+
export declare const S3LocationFilterSensitiveLog: (obj: S3Location) => any;
|
|
323
|
+
export declare const DescribeSimulationOutputFilterSensitiveLog: (
|
|
324
|
+
obj: DescribeSimulationOutput
|
|
325
|
+
) => any;
|
|
326
|
+
export declare const ListAppsInputFilterSensitiveLog: (
|
|
327
|
+
obj: ListAppsInput
|
|
328
|
+
) => any;
|
|
329
|
+
export declare const SimulationAppMetadataFilterSensitiveLog: (
|
|
330
|
+
obj: SimulationAppMetadata
|
|
331
|
+
) => any;
|
|
332
|
+
export declare const ListAppsOutputFilterSensitiveLog: (
|
|
333
|
+
obj: ListAppsOutput
|
|
334
|
+
) => any;
|
|
335
|
+
export declare const ListSimulationsInputFilterSensitiveLog: (
|
|
336
|
+
obj: ListSimulationsInput
|
|
337
|
+
) => any;
|
|
338
|
+
export declare const SimulationMetadataFilterSensitiveLog: (
|
|
339
|
+
obj: SimulationMetadata
|
|
340
|
+
) => any;
|
|
341
|
+
export declare const ListSimulationsOutputFilterSensitiveLog: (
|
|
342
|
+
obj: ListSimulationsOutput
|
|
343
|
+
) => any;
|
|
344
|
+
export declare const ListTagsForResourceInputFilterSensitiveLog: (
|
|
345
|
+
obj: ListTagsForResourceInput
|
|
346
|
+
) => any;
|
|
347
|
+
export declare const ListTagsForResourceOutputFilterSensitiveLog: (
|
|
348
|
+
obj: ListTagsForResourceOutput
|
|
349
|
+
) => any;
|
|
350
|
+
export declare const StartAppInputFilterSensitiveLog: (
|
|
351
|
+
obj: StartAppInput
|
|
352
|
+
) => any;
|
|
353
|
+
export declare const StartAppOutputFilterSensitiveLog: (
|
|
354
|
+
obj: StartAppOutput
|
|
355
|
+
) => any;
|
|
356
|
+
export declare const StartClockInputFilterSensitiveLog: (
|
|
357
|
+
obj: StartClockInput
|
|
358
|
+
) => any;
|
|
359
|
+
export declare const StartClockOutputFilterSensitiveLog: (
|
|
360
|
+
obj: StartClockOutput
|
|
361
|
+
) => any;
|
|
362
|
+
export declare const StartSimulationInputFilterSensitiveLog: (
|
|
363
|
+
obj: StartSimulationInput
|
|
364
|
+
) => any;
|
|
365
|
+
export declare const StartSimulationOutputFilterSensitiveLog: (
|
|
366
|
+
obj: StartSimulationOutput
|
|
367
|
+
) => any;
|
|
368
|
+
export declare const StopAppInputFilterSensitiveLog: (obj: StopAppInput) => any;
|
|
369
|
+
export declare const StopAppOutputFilterSensitiveLog: (
|
|
370
|
+
obj: StopAppOutput
|
|
371
|
+
) => any;
|
|
372
|
+
export declare const StopClockInputFilterSensitiveLog: (
|
|
373
|
+
obj: StopClockInput
|
|
374
|
+
) => any;
|
|
375
|
+
export declare const StopClockOutputFilterSensitiveLog: (
|
|
376
|
+
obj: StopClockOutput
|
|
377
|
+
) => any;
|
|
378
|
+
export declare const StopSimulationInputFilterSensitiveLog: (
|
|
379
|
+
obj: StopSimulationInput
|
|
380
|
+
) => any;
|
|
381
|
+
export declare const StopSimulationOutputFilterSensitiveLog: (
|
|
382
|
+
obj: StopSimulationOutput
|
|
383
|
+
) => any;
|
|
384
|
+
export declare const TagResourceInputFilterSensitiveLog: (
|
|
385
|
+
obj: TagResourceInput
|
|
386
|
+
) => any;
|
|
387
|
+
export declare const TagResourceOutputFilterSensitiveLog: (
|
|
388
|
+
obj: TagResourceOutput
|
|
389
|
+
) => any;
|
|
390
|
+
export declare const UntagResourceInputFilterSensitiveLog: (
|
|
391
|
+
obj: UntagResourceInput
|
|
392
|
+
) => any;
|
|
393
|
+
export declare const UntagResourceOutputFilterSensitiveLog: (
|
|
394
|
+
obj: UntagResourceOutput
|
|
395
|
+
) => any;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { SimSpaceWeaver } from "../SimSpaceWeaver";
|
|
3
|
+
import { SimSpaceWeaverClient } from "../SimSpaceWeaverClient";
|
|
4
|
+
export interface SimSpaceWeaverPaginationConfiguration
|
|
5
|
+
extends PaginationConfiguration {
|
|
6
|
+
client: SimSpaceWeaver | SimSpaceWeaverClient;
|
|
7
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListAppsCommandInput,
|
|
4
|
+
ListAppsCommandOutput,
|
|
5
|
+
} from "../commands/ListAppsCommand";
|
|
6
|
+
import { SimSpaceWeaverPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListApps(
|
|
8
|
+
config: SimSpaceWeaverPaginationConfiguration,
|
|
9
|
+
input: ListAppsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListAppsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListSimulationsCommandInput,
|
|
4
|
+
ListSimulationsCommandOutput,
|
|
5
|
+
} from "../commands/ListSimulationsCommand";
|
|
6
|
+
import { SimSpaceWeaverPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListSimulations(
|
|
8
|
+
config: SimSpaceWeaverPaginationConfiguration,
|
|
9
|
+
input: ListSimulationsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListSimulationsCommandOutput>;
|