@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,328 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.StopClockOutputFilterSensitiveLog = exports.StopClockInputFilterSensitiveLog = exports.StopAppOutputFilterSensitiveLog = exports.StopAppInputFilterSensitiveLog = exports.StartSimulationOutputFilterSensitiveLog = exports.StartSimulationInputFilterSensitiveLog = exports.StartClockOutputFilterSensitiveLog = exports.StartClockInputFilterSensitiveLog = exports.StartAppOutputFilterSensitiveLog = exports.StartAppInputFilterSensitiveLog = exports.ListTagsForResourceOutputFilterSensitiveLog = exports.ListTagsForResourceInputFilterSensitiveLog = exports.ListSimulationsOutputFilterSensitiveLog = exports.SimulationMetadataFilterSensitiveLog = exports.ListSimulationsInputFilterSensitiveLog = exports.ListAppsOutputFilterSensitiveLog = exports.SimulationAppMetadataFilterSensitiveLog = exports.ListAppsInputFilterSensitiveLog = exports.DescribeSimulationOutputFilterSensitiveLog = exports.S3LocationFilterSensitiveLog = exports.LoggingConfigurationFilterSensitiveLog = exports.LogDestinationFilterSensitiveLog = exports.LiveSimulationStateFilterSensitiveLog = exports.DomainFilterSensitiveLog = exports.SimulationClockFilterSensitiveLog = exports.DescribeSimulationInputFilterSensitiveLog = exports.DescribeAppOutputFilterSensitiveLog = exports.LaunchOverridesFilterSensitiveLog = exports.SimulationAppEndpointInfoFilterSensitiveLog = exports.DescribeAppInputFilterSensitiveLog = exports.DeleteSimulationOutputFilterSensitiveLog = exports.DeleteSimulationInputFilterSensitiveLog = exports.DeleteAppOutputFilterSensitiveLog = exports.DeleteAppInputFilterSensitiveLog = exports.CloudWatchLogsLogGroupFilterSensitiveLog = exports.SimulationAppPortMappingFilterSensitiveLog = exports.TooManyTagsException = exports.ServiceQuotaExceededException = exports.SimulationTargetStatus = exports.SimulationStatus = exports.LifecycleManagementStrategy = exports.SimulationAppTargetStatus = exports.SimulationAppStatus = exports.ValidationException = exports.ResourceNotFoundException = exports.InternalServerException = exports.ConflictException = exports.ClockTargetStatus = exports.ClockStatus = exports.AccessDeniedException = void 0;
|
|
4
|
+
exports.UntagResourceOutputFilterSensitiveLog = exports.UntagResourceInputFilterSensitiveLog = exports.TagResourceOutputFilterSensitiveLog = exports.TagResourceInputFilterSensitiveLog = exports.StopSimulationOutputFilterSensitiveLog = exports.StopSimulationInputFilterSensitiveLog = void 0;
|
|
5
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
+
const SimSpaceWeaverServiceException_1 = require("./SimSpaceWeaverServiceException");
|
|
7
|
+
class AccessDeniedException extends SimSpaceWeaverServiceException_1.SimSpaceWeaverServiceException {
|
|
8
|
+
constructor(opts) {
|
|
9
|
+
super({
|
|
10
|
+
name: "AccessDeniedException",
|
|
11
|
+
$fault: "client",
|
|
12
|
+
...opts,
|
|
13
|
+
});
|
|
14
|
+
this.name = "AccessDeniedException";
|
|
15
|
+
this.$fault = "client";
|
|
16
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
17
|
+
this.Message = opts.Message;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
21
|
+
var ClockStatus;
|
|
22
|
+
(function (ClockStatus) {
|
|
23
|
+
ClockStatus["STARTED"] = "STARTED";
|
|
24
|
+
ClockStatus["STARTING"] = "STARTING";
|
|
25
|
+
ClockStatus["STOPPED"] = "STOPPED";
|
|
26
|
+
ClockStatus["STOPPING"] = "STOPPING";
|
|
27
|
+
ClockStatus["UNKNOWN"] = "UNKNOWN";
|
|
28
|
+
})(ClockStatus = exports.ClockStatus || (exports.ClockStatus = {}));
|
|
29
|
+
var ClockTargetStatus;
|
|
30
|
+
(function (ClockTargetStatus) {
|
|
31
|
+
ClockTargetStatus["STARTED"] = "STARTED";
|
|
32
|
+
ClockTargetStatus["STOPPED"] = "STOPPED";
|
|
33
|
+
ClockTargetStatus["UNKNOWN"] = "UNKNOWN";
|
|
34
|
+
})(ClockTargetStatus = exports.ClockTargetStatus || (exports.ClockTargetStatus = {}));
|
|
35
|
+
class ConflictException extends SimSpaceWeaverServiceException_1.SimSpaceWeaverServiceException {
|
|
36
|
+
constructor(opts) {
|
|
37
|
+
super({
|
|
38
|
+
name: "ConflictException",
|
|
39
|
+
$fault: "client",
|
|
40
|
+
...opts,
|
|
41
|
+
});
|
|
42
|
+
this.name = "ConflictException";
|
|
43
|
+
this.$fault = "client";
|
|
44
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
45
|
+
this.Message = opts.Message;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
exports.ConflictException = ConflictException;
|
|
49
|
+
class InternalServerException extends SimSpaceWeaverServiceException_1.SimSpaceWeaverServiceException {
|
|
50
|
+
constructor(opts) {
|
|
51
|
+
super({
|
|
52
|
+
name: "InternalServerException",
|
|
53
|
+
$fault: "server",
|
|
54
|
+
...opts,
|
|
55
|
+
});
|
|
56
|
+
this.name = "InternalServerException";
|
|
57
|
+
this.$fault = "server";
|
|
58
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
59
|
+
this.Message = opts.Message;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
exports.InternalServerException = InternalServerException;
|
|
63
|
+
class ResourceNotFoundException extends SimSpaceWeaverServiceException_1.SimSpaceWeaverServiceException {
|
|
64
|
+
constructor(opts) {
|
|
65
|
+
super({
|
|
66
|
+
name: "ResourceNotFoundException",
|
|
67
|
+
$fault: "client",
|
|
68
|
+
...opts,
|
|
69
|
+
});
|
|
70
|
+
this.name = "ResourceNotFoundException";
|
|
71
|
+
this.$fault = "client";
|
|
72
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
73
|
+
this.Message = opts.Message;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
77
|
+
class ValidationException extends SimSpaceWeaverServiceException_1.SimSpaceWeaverServiceException {
|
|
78
|
+
constructor(opts) {
|
|
79
|
+
super({
|
|
80
|
+
name: "ValidationException",
|
|
81
|
+
$fault: "client",
|
|
82
|
+
...opts,
|
|
83
|
+
});
|
|
84
|
+
this.name = "ValidationException";
|
|
85
|
+
this.$fault = "client";
|
|
86
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
87
|
+
this.Message = opts.Message;
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
exports.ValidationException = ValidationException;
|
|
91
|
+
var SimulationAppStatus;
|
|
92
|
+
(function (SimulationAppStatus) {
|
|
93
|
+
SimulationAppStatus["ERROR"] = "ERROR";
|
|
94
|
+
SimulationAppStatus["STARTED"] = "STARTED";
|
|
95
|
+
SimulationAppStatus["STARTING"] = "STARTING";
|
|
96
|
+
SimulationAppStatus["STOPPED"] = "STOPPED";
|
|
97
|
+
SimulationAppStatus["STOPPING"] = "STOPPING";
|
|
98
|
+
SimulationAppStatus["UNKNOWN"] = "UNKNOWN";
|
|
99
|
+
})(SimulationAppStatus = exports.SimulationAppStatus || (exports.SimulationAppStatus = {}));
|
|
100
|
+
var SimulationAppTargetStatus;
|
|
101
|
+
(function (SimulationAppTargetStatus) {
|
|
102
|
+
SimulationAppTargetStatus["STARTED"] = "STARTED";
|
|
103
|
+
SimulationAppTargetStatus["STOPPED"] = "STOPPED";
|
|
104
|
+
SimulationAppTargetStatus["UNKNOWN"] = "UNKNOWN";
|
|
105
|
+
})(SimulationAppTargetStatus = exports.SimulationAppTargetStatus || (exports.SimulationAppTargetStatus = {}));
|
|
106
|
+
var LifecycleManagementStrategy;
|
|
107
|
+
(function (LifecycleManagementStrategy) {
|
|
108
|
+
LifecycleManagementStrategy["ByRequest"] = "ByRequest";
|
|
109
|
+
LifecycleManagementStrategy["BySpatialSubdivision"] = "BySpatialSubdivision";
|
|
110
|
+
LifecycleManagementStrategy["PerWorker"] = "PerWorker";
|
|
111
|
+
LifecycleManagementStrategy["Unknown"] = "Unknown";
|
|
112
|
+
})(LifecycleManagementStrategy = exports.LifecycleManagementStrategy || (exports.LifecycleManagementStrategy = {}));
|
|
113
|
+
var SimulationStatus;
|
|
114
|
+
(function (SimulationStatus) {
|
|
115
|
+
SimulationStatus["DELETED"] = "DELETED";
|
|
116
|
+
SimulationStatus["DELETING"] = "DELETING";
|
|
117
|
+
SimulationStatus["FAILED"] = "FAILED";
|
|
118
|
+
SimulationStatus["STARTED"] = "STARTED";
|
|
119
|
+
SimulationStatus["STARTING"] = "STARTING";
|
|
120
|
+
SimulationStatus["STOPPED"] = "STOPPED";
|
|
121
|
+
SimulationStatus["STOPPING"] = "STOPPING";
|
|
122
|
+
SimulationStatus["UNKNOWN"] = "UNKNOWN";
|
|
123
|
+
})(SimulationStatus = exports.SimulationStatus || (exports.SimulationStatus = {}));
|
|
124
|
+
var SimulationTargetStatus;
|
|
125
|
+
(function (SimulationTargetStatus) {
|
|
126
|
+
SimulationTargetStatus["DELETED"] = "DELETED";
|
|
127
|
+
SimulationTargetStatus["STARTED"] = "STARTED";
|
|
128
|
+
SimulationTargetStatus["STOPPED"] = "STOPPED";
|
|
129
|
+
SimulationTargetStatus["UNKNOWN"] = "UNKNOWN";
|
|
130
|
+
})(SimulationTargetStatus = exports.SimulationTargetStatus || (exports.SimulationTargetStatus = {}));
|
|
131
|
+
class ServiceQuotaExceededException extends SimSpaceWeaverServiceException_1.SimSpaceWeaverServiceException {
|
|
132
|
+
constructor(opts) {
|
|
133
|
+
super({
|
|
134
|
+
name: "ServiceQuotaExceededException",
|
|
135
|
+
$fault: "client",
|
|
136
|
+
...opts,
|
|
137
|
+
});
|
|
138
|
+
this.name = "ServiceQuotaExceededException";
|
|
139
|
+
this.$fault = "client";
|
|
140
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
141
|
+
this.Message = opts.Message;
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
145
|
+
class TooManyTagsException extends SimSpaceWeaverServiceException_1.SimSpaceWeaverServiceException {
|
|
146
|
+
constructor(opts) {
|
|
147
|
+
super({
|
|
148
|
+
name: "TooManyTagsException",
|
|
149
|
+
$fault: "client",
|
|
150
|
+
...opts,
|
|
151
|
+
});
|
|
152
|
+
this.name = "TooManyTagsException";
|
|
153
|
+
this.$fault = "client";
|
|
154
|
+
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
155
|
+
this.Message = opts.Message;
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
exports.TooManyTagsException = TooManyTagsException;
|
|
159
|
+
const SimulationAppPortMappingFilterSensitiveLog = (obj) => ({
|
|
160
|
+
...obj,
|
|
161
|
+
});
|
|
162
|
+
exports.SimulationAppPortMappingFilterSensitiveLog = SimulationAppPortMappingFilterSensitiveLog;
|
|
163
|
+
const CloudWatchLogsLogGroupFilterSensitiveLog = (obj) => ({
|
|
164
|
+
...obj,
|
|
165
|
+
});
|
|
166
|
+
exports.CloudWatchLogsLogGroupFilterSensitiveLog = CloudWatchLogsLogGroupFilterSensitiveLog;
|
|
167
|
+
const DeleteAppInputFilterSensitiveLog = (obj) => ({
|
|
168
|
+
...obj,
|
|
169
|
+
});
|
|
170
|
+
exports.DeleteAppInputFilterSensitiveLog = DeleteAppInputFilterSensitiveLog;
|
|
171
|
+
const DeleteAppOutputFilterSensitiveLog = (obj) => ({
|
|
172
|
+
...obj,
|
|
173
|
+
});
|
|
174
|
+
exports.DeleteAppOutputFilterSensitiveLog = DeleteAppOutputFilterSensitiveLog;
|
|
175
|
+
const DeleteSimulationInputFilterSensitiveLog = (obj) => ({
|
|
176
|
+
...obj,
|
|
177
|
+
});
|
|
178
|
+
exports.DeleteSimulationInputFilterSensitiveLog = DeleteSimulationInputFilterSensitiveLog;
|
|
179
|
+
const DeleteSimulationOutputFilterSensitiveLog = (obj) => ({
|
|
180
|
+
...obj,
|
|
181
|
+
});
|
|
182
|
+
exports.DeleteSimulationOutputFilterSensitiveLog = DeleteSimulationOutputFilterSensitiveLog;
|
|
183
|
+
const DescribeAppInputFilterSensitiveLog = (obj) => ({
|
|
184
|
+
...obj,
|
|
185
|
+
});
|
|
186
|
+
exports.DescribeAppInputFilterSensitiveLog = DescribeAppInputFilterSensitiveLog;
|
|
187
|
+
const SimulationAppEndpointInfoFilterSensitiveLog = (obj) => ({
|
|
188
|
+
...obj,
|
|
189
|
+
});
|
|
190
|
+
exports.SimulationAppEndpointInfoFilterSensitiveLog = SimulationAppEndpointInfoFilterSensitiveLog;
|
|
191
|
+
const LaunchOverridesFilterSensitiveLog = (obj) => ({
|
|
192
|
+
...obj,
|
|
193
|
+
});
|
|
194
|
+
exports.LaunchOverridesFilterSensitiveLog = LaunchOverridesFilterSensitiveLog;
|
|
195
|
+
const DescribeAppOutputFilterSensitiveLog = (obj) => ({
|
|
196
|
+
...obj,
|
|
197
|
+
});
|
|
198
|
+
exports.DescribeAppOutputFilterSensitiveLog = DescribeAppOutputFilterSensitiveLog;
|
|
199
|
+
const DescribeSimulationInputFilterSensitiveLog = (obj) => ({
|
|
200
|
+
...obj,
|
|
201
|
+
});
|
|
202
|
+
exports.DescribeSimulationInputFilterSensitiveLog = DescribeSimulationInputFilterSensitiveLog;
|
|
203
|
+
const SimulationClockFilterSensitiveLog = (obj) => ({
|
|
204
|
+
...obj,
|
|
205
|
+
});
|
|
206
|
+
exports.SimulationClockFilterSensitiveLog = SimulationClockFilterSensitiveLog;
|
|
207
|
+
const DomainFilterSensitiveLog = (obj) => ({
|
|
208
|
+
...obj,
|
|
209
|
+
});
|
|
210
|
+
exports.DomainFilterSensitiveLog = DomainFilterSensitiveLog;
|
|
211
|
+
const LiveSimulationStateFilterSensitiveLog = (obj) => ({
|
|
212
|
+
...obj,
|
|
213
|
+
});
|
|
214
|
+
exports.LiveSimulationStateFilterSensitiveLog = LiveSimulationStateFilterSensitiveLog;
|
|
215
|
+
const LogDestinationFilterSensitiveLog = (obj) => ({
|
|
216
|
+
...obj,
|
|
217
|
+
});
|
|
218
|
+
exports.LogDestinationFilterSensitiveLog = LogDestinationFilterSensitiveLog;
|
|
219
|
+
const LoggingConfigurationFilterSensitiveLog = (obj) => ({
|
|
220
|
+
...obj,
|
|
221
|
+
});
|
|
222
|
+
exports.LoggingConfigurationFilterSensitiveLog = LoggingConfigurationFilterSensitiveLog;
|
|
223
|
+
const S3LocationFilterSensitiveLog = (obj) => ({
|
|
224
|
+
...obj,
|
|
225
|
+
});
|
|
226
|
+
exports.S3LocationFilterSensitiveLog = S3LocationFilterSensitiveLog;
|
|
227
|
+
const DescribeSimulationOutputFilterSensitiveLog = (obj) => ({
|
|
228
|
+
...obj,
|
|
229
|
+
});
|
|
230
|
+
exports.DescribeSimulationOutputFilterSensitiveLog = DescribeSimulationOutputFilterSensitiveLog;
|
|
231
|
+
const ListAppsInputFilterSensitiveLog = (obj) => ({
|
|
232
|
+
...obj,
|
|
233
|
+
});
|
|
234
|
+
exports.ListAppsInputFilterSensitiveLog = ListAppsInputFilterSensitiveLog;
|
|
235
|
+
const SimulationAppMetadataFilterSensitiveLog = (obj) => ({
|
|
236
|
+
...obj,
|
|
237
|
+
});
|
|
238
|
+
exports.SimulationAppMetadataFilterSensitiveLog = SimulationAppMetadataFilterSensitiveLog;
|
|
239
|
+
const ListAppsOutputFilterSensitiveLog = (obj) => ({
|
|
240
|
+
...obj,
|
|
241
|
+
});
|
|
242
|
+
exports.ListAppsOutputFilterSensitiveLog = ListAppsOutputFilterSensitiveLog;
|
|
243
|
+
const ListSimulationsInputFilterSensitiveLog = (obj) => ({
|
|
244
|
+
...obj,
|
|
245
|
+
});
|
|
246
|
+
exports.ListSimulationsInputFilterSensitiveLog = ListSimulationsInputFilterSensitiveLog;
|
|
247
|
+
const SimulationMetadataFilterSensitiveLog = (obj) => ({
|
|
248
|
+
...obj,
|
|
249
|
+
});
|
|
250
|
+
exports.SimulationMetadataFilterSensitiveLog = SimulationMetadataFilterSensitiveLog;
|
|
251
|
+
const ListSimulationsOutputFilterSensitiveLog = (obj) => ({
|
|
252
|
+
...obj,
|
|
253
|
+
});
|
|
254
|
+
exports.ListSimulationsOutputFilterSensitiveLog = ListSimulationsOutputFilterSensitiveLog;
|
|
255
|
+
const ListTagsForResourceInputFilterSensitiveLog = (obj) => ({
|
|
256
|
+
...obj,
|
|
257
|
+
});
|
|
258
|
+
exports.ListTagsForResourceInputFilterSensitiveLog = ListTagsForResourceInputFilterSensitiveLog;
|
|
259
|
+
const ListTagsForResourceOutputFilterSensitiveLog = (obj) => ({
|
|
260
|
+
...obj,
|
|
261
|
+
});
|
|
262
|
+
exports.ListTagsForResourceOutputFilterSensitiveLog = ListTagsForResourceOutputFilterSensitiveLog;
|
|
263
|
+
const StartAppInputFilterSensitiveLog = (obj) => ({
|
|
264
|
+
...obj,
|
|
265
|
+
...(obj.ClientToken && { ClientToken: smithy_client_1.SENSITIVE_STRING }),
|
|
266
|
+
});
|
|
267
|
+
exports.StartAppInputFilterSensitiveLog = StartAppInputFilterSensitiveLog;
|
|
268
|
+
const StartAppOutputFilterSensitiveLog = (obj) => ({
|
|
269
|
+
...obj,
|
|
270
|
+
});
|
|
271
|
+
exports.StartAppOutputFilterSensitiveLog = StartAppOutputFilterSensitiveLog;
|
|
272
|
+
const StartClockInputFilterSensitiveLog = (obj) => ({
|
|
273
|
+
...obj,
|
|
274
|
+
});
|
|
275
|
+
exports.StartClockInputFilterSensitiveLog = StartClockInputFilterSensitiveLog;
|
|
276
|
+
const StartClockOutputFilterSensitiveLog = (obj) => ({
|
|
277
|
+
...obj,
|
|
278
|
+
});
|
|
279
|
+
exports.StartClockOutputFilterSensitiveLog = StartClockOutputFilterSensitiveLog;
|
|
280
|
+
const StartSimulationInputFilterSensitiveLog = (obj) => ({
|
|
281
|
+
...obj,
|
|
282
|
+
...(obj.ClientToken && { ClientToken: smithy_client_1.SENSITIVE_STRING }),
|
|
283
|
+
});
|
|
284
|
+
exports.StartSimulationInputFilterSensitiveLog = StartSimulationInputFilterSensitiveLog;
|
|
285
|
+
const StartSimulationOutputFilterSensitiveLog = (obj) => ({
|
|
286
|
+
...obj,
|
|
287
|
+
});
|
|
288
|
+
exports.StartSimulationOutputFilterSensitiveLog = StartSimulationOutputFilterSensitiveLog;
|
|
289
|
+
const StopAppInputFilterSensitiveLog = (obj) => ({
|
|
290
|
+
...obj,
|
|
291
|
+
});
|
|
292
|
+
exports.StopAppInputFilterSensitiveLog = StopAppInputFilterSensitiveLog;
|
|
293
|
+
const StopAppOutputFilterSensitiveLog = (obj) => ({
|
|
294
|
+
...obj,
|
|
295
|
+
});
|
|
296
|
+
exports.StopAppOutputFilterSensitiveLog = StopAppOutputFilterSensitiveLog;
|
|
297
|
+
const StopClockInputFilterSensitiveLog = (obj) => ({
|
|
298
|
+
...obj,
|
|
299
|
+
});
|
|
300
|
+
exports.StopClockInputFilterSensitiveLog = StopClockInputFilterSensitiveLog;
|
|
301
|
+
const StopClockOutputFilterSensitiveLog = (obj) => ({
|
|
302
|
+
...obj,
|
|
303
|
+
});
|
|
304
|
+
exports.StopClockOutputFilterSensitiveLog = StopClockOutputFilterSensitiveLog;
|
|
305
|
+
const StopSimulationInputFilterSensitiveLog = (obj) => ({
|
|
306
|
+
...obj,
|
|
307
|
+
});
|
|
308
|
+
exports.StopSimulationInputFilterSensitiveLog = StopSimulationInputFilterSensitiveLog;
|
|
309
|
+
const StopSimulationOutputFilterSensitiveLog = (obj) => ({
|
|
310
|
+
...obj,
|
|
311
|
+
});
|
|
312
|
+
exports.StopSimulationOutputFilterSensitiveLog = StopSimulationOutputFilterSensitiveLog;
|
|
313
|
+
const TagResourceInputFilterSensitiveLog = (obj) => ({
|
|
314
|
+
...obj,
|
|
315
|
+
});
|
|
316
|
+
exports.TagResourceInputFilterSensitiveLog = TagResourceInputFilterSensitiveLog;
|
|
317
|
+
const TagResourceOutputFilterSensitiveLog = (obj) => ({
|
|
318
|
+
...obj,
|
|
319
|
+
});
|
|
320
|
+
exports.TagResourceOutputFilterSensitiveLog = TagResourceOutputFilterSensitiveLog;
|
|
321
|
+
const UntagResourceInputFilterSensitiveLog = (obj) => ({
|
|
322
|
+
...obj,
|
|
323
|
+
});
|
|
324
|
+
exports.UntagResourceInputFilterSensitiveLog = UntagResourceInputFilterSensitiveLog;
|
|
325
|
+
const UntagResourceOutputFilterSensitiveLog = (obj) => ({
|
|
326
|
+
...obj,
|
|
327
|
+
});
|
|
328
|
+
exports.UntagResourceOutputFilterSensitiveLog = UntagResourceOutputFilterSensitiveLog;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.paginateListApps = void 0;
|
|
4
|
+
const ListAppsCommand_1 = require("../commands/ListAppsCommand");
|
|
5
|
+
const SimSpaceWeaver_1 = require("../SimSpaceWeaver");
|
|
6
|
+
const SimSpaceWeaverClient_1 = require("../SimSpaceWeaverClient");
|
|
7
|
+
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
|
+
return await client.send(new ListAppsCommand_1.ListAppsCommand(input), ...args);
|
|
9
|
+
};
|
|
10
|
+
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
+
return await client.listApps(input, ...args);
|
|
12
|
+
};
|
|
13
|
+
async function* paginateListApps(config, input, ...additionalArguments) {
|
|
14
|
+
let token = config.startingToken || undefined;
|
|
15
|
+
let hasNext = true;
|
|
16
|
+
let page;
|
|
17
|
+
while (hasNext) {
|
|
18
|
+
input.NextToken = token;
|
|
19
|
+
input["MaxResults"] = config.pageSize;
|
|
20
|
+
if (config.client instanceof SimSpaceWeaver_1.SimSpaceWeaver) {
|
|
21
|
+
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
22
|
+
}
|
|
23
|
+
else if (config.client instanceof SimSpaceWeaverClient_1.SimSpaceWeaverClient) {
|
|
24
|
+
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
25
|
+
}
|
|
26
|
+
else {
|
|
27
|
+
throw new Error("Invalid client, expected SimSpaceWeaver | SimSpaceWeaverClient");
|
|
28
|
+
}
|
|
29
|
+
yield page;
|
|
30
|
+
const prevToken = token;
|
|
31
|
+
token = page.NextToken;
|
|
32
|
+
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
33
|
+
}
|
|
34
|
+
return undefined;
|
|
35
|
+
}
|
|
36
|
+
exports.paginateListApps = paginateListApps;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.paginateListSimulations = void 0;
|
|
4
|
+
const ListSimulationsCommand_1 = require("../commands/ListSimulationsCommand");
|
|
5
|
+
const SimSpaceWeaver_1 = require("../SimSpaceWeaver");
|
|
6
|
+
const SimSpaceWeaverClient_1 = require("../SimSpaceWeaverClient");
|
|
7
|
+
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
|
+
return await client.send(new ListSimulationsCommand_1.ListSimulationsCommand(input), ...args);
|
|
9
|
+
};
|
|
10
|
+
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
+
return await client.listSimulations(input, ...args);
|
|
12
|
+
};
|
|
13
|
+
async function* paginateListSimulations(config, input, ...additionalArguments) {
|
|
14
|
+
let token = config.startingToken || undefined;
|
|
15
|
+
let hasNext = true;
|
|
16
|
+
let page;
|
|
17
|
+
while (hasNext) {
|
|
18
|
+
input.NextToken = token;
|
|
19
|
+
input["MaxResults"] = config.pageSize;
|
|
20
|
+
if (config.client instanceof SimSpaceWeaver_1.SimSpaceWeaver) {
|
|
21
|
+
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
22
|
+
}
|
|
23
|
+
else if (config.client instanceof SimSpaceWeaverClient_1.SimSpaceWeaverClient) {
|
|
24
|
+
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
25
|
+
}
|
|
26
|
+
else {
|
|
27
|
+
throw new Error("Invalid client, expected SimSpaceWeaver | SimSpaceWeaverClient");
|
|
28
|
+
}
|
|
29
|
+
yield page;
|
|
30
|
+
const prevToken = token;
|
|
31
|
+
token = page.NextToken;
|
|
32
|
+
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
33
|
+
}
|
|
34
|
+
return undefined;
|
|
35
|
+
}
|
|
36
|
+
exports.paginateListSimulations = paginateListSimulations;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
tslib_1.__exportStar(require("./Interfaces"), exports);
|
|
5
|
+
tslib_1.__exportStar(require("./ListAppsPaginator"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./ListSimulationsPaginator"), exports);
|