@aws-sdk/client-simspaceweaver 3.490.0 → 3.495.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.
Files changed (32) hide show
  1. package/dist-cjs/SimSpaceWeaver.js +1 -43
  2. package/dist-cjs/SimSpaceWeaverClient.js +1 -43
  3. package/dist-cjs/commands/CreateSnapshotCommand.js +1 -28
  4. package/dist-cjs/commands/DeleteAppCommand.js +1 -28
  5. package/dist-cjs/commands/DeleteSimulationCommand.js +1 -28
  6. package/dist-cjs/commands/DescribeAppCommand.js +1 -28
  7. package/dist-cjs/commands/DescribeSimulationCommand.js +1 -28
  8. package/dist-cjs/commands/ListAppsCommand.js +1 -28
  9. package/dist-cjs/commands/ListSimulationsCommand.js +1 -28
  10. package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -28
  11. package/dist-cjs/commands/StartAppCommand.js +1 -29
  12. package/dist-cjs/commands/StartClockCommand.js +1 -28
  13. package/dist-cjs/commands/StartSimulationCommand.js +1 -29
  14. package/dist-cjs/commands/StopAppCommand.js +1 -28
  15. package/dist-cjs/commands/StopClockCommand.js +1 -28
  16. package/dist-cjs/commands/StopSimulationCommand.js +1 -28
  17. package/dist-cjs/commands/TagResourceCommand.js +1 -28
  18. package/dist-cjs/commands/UntagResourceCommand.js +1 -28
  19. package/dist-cjs/commands/index.js +1 -19
  20. package/dist-cjs/endpoint/EndpointParameters.js +1 -18
  21. package/dist-cjs/extensionConfiguration.js +1 -2
  22. package/dist-cjs/index.js +1781 -11
  23. package/dist-cjs/models/SimSpaceWeaverServiceException.js +1 -12
  24. package/dist-cjs/models/index.js +1 -4
  25. package/dist-cjs/models/models_0.js +1 -161
  26. package/dist-cjs/pagination/Interfaces.js +1 -2
  27. package/dist-cjs/pagination/ListAppsPaginator.js +1 -7
  28. package/dist-cjs/pagination/ListSimulationsPaginator.js +1 -7
  29. package/dist-cjs/pagination/index.js +1 -6
  30. package/dist-cjs/protocols/Aws_restJson1.js +1 -1103
  31. package/dist-cjs/runtimeExtensions.js +1 -22
  32. package/package.json +40 -40
@@ -1,12 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.SimSpaceWeaverServiceException = exports.__ServiceException = void 0;
4
- const smithy_client_1 = require("@smithy/smithy-client");
5
- Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
6
- class SimSpaceWeaverServiceException extends smithy_client_1.ServiceException {
7
- constructor(options) {
8
- super(options);
9
- Object.setPrototypeOf(this, SimSpaceWeaverServiceException.prototype);
10
- }
11
- }
12
- exports.SimSpaceWeaverServiceException = SimSpaceWeaverServiceException;
1
+ module.exports = require("../index.js");
@@ -1,4 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./models_0"), exports);
1
+ module.exports = require("../index.js");
@@ -1,161 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.StartSimulationInputFilterSensitiveLog = exports.StartAppInputFilterSensitiveLog = 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
- const smithy_client_1 = require("@smithy/smithy-client");
5
- const SimSpaceWeaverServiceException_1 = require("./SimSpaceWeaverServiceException");
6
- class AccessDeniedException extends SimSpaceWeaverServiceException_1.SimSpaceWeaverServiceException {
7
- constructor(opts) {
8
- super({
9
- name: "AccessDeniedException",
10
- $fault: "client",
11
- ...opts,
12
- });
13
- this.name = "AccessDeniedException";
14
- this.$fault = "client";
15
- Object.setPrototypeOf(this, AccessDeniedException.prototype);
16
- this.Message = opts.Message;
17
- }
18
- }
19
- exports.AccessDeniedException = AccessDeniedException;
20
- exports.ClockStatus = {
21
- STARTED: "STARTED",
22
- STARTING: "STARTING",
23
- STOPPED: "STOPPED",
24
- STOPPING: "STOPPING",
25
- UNKNOWN: "UNKNOWN",
26
- };
27
- exports.ClockTargetStatus = {
28
- STARTED: "STARTED",
29
- STOPPED: "STOPPED",
30
- UNKNOWN: "UNKNOWN",
31
- };
32
- class ConflictException extends SimSpaceWeaverServiceException_1.SimSpaceWeaverServiceException {
33
- constructor(opts) {
34
- super({
35
- name: "ConflictException",
36
- $fault: "client",
37
- ...opts,
38
- });
39
- this.name = "ConflictException";
40
- this.$fault = "client";
41
- Object.setPrototypeOf(this, ConflictException.prototype);
42
- this.Message = opts.Message;
43
- }
44
- }
45
- exports.ConflictException = ConflictException;
46
- class InternalServerException extends SimSpaceWeaverServiceException_1.SimSpaceWeaverServiceException {
47
- constructor(opts) {
48
- super({
49
- name: "InternalServerException",
50
- $fault: "server",
51
- ...opts,
52
- });
53
- this.name = "InternalServerException";
54
- this.$fault = "server";
55
- Object.setPrototypeOf(this, InternalServerException.prototype);
56
- this.Message = opts.Message;
57
- }
58
- }
59
- exports.InternalServerException = InternalServerException;
60
- class ResourceNotFoundException extends SimSpaceWeaverServiceException_1.SimSpaceWeaverServiceException {
61
- constructor(opts) {
62
- super({
63
- name: "ResourceNotFoundException",
64
- $fault: "client",
65
- ...opts,
66
- });
67
- this.name = "ResourceNotFoundException";
68
- this.$fault = "client";
69
- Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
70
- this.Message = opts.Message;
71
- }
72
- }
73
- exports.ResourceNotFoundException = ResourceNotFoundException;
74
- class ValidationException extends SimSpaceWeaverServiceException_1.SimSpaceWeaverServiceException {
75
- constructor(opts) {
76
- super({
77
- name: "ValidationException",
78
- $fault: "client",
79
- ...opts,
80
- });
81
- this.name = "ValidationException";
82
- this.$fault = "client";
83
- Object.setPrototypeOf(this, ValidationException.prototype);
84
- this.Message = opts.Message;
85
- }
86
- }
87
- exports.ValidationException = ValidationException;
88
- exports.SimulationAppStatus = {
89
- ERROR: "ERROR",
90
- STARTED: "STARTED",
91
- STARTING: "STARTING",
92
- STOPPED: "STOPPED",
93
- STOPPING: "STOPPING",
94
- UNKNOWN: "UNKNOWN",
95
- };
96
- exports.SimulationAppTargetStatus = {
97
- STARTED: "STARTED",
98
- STOPPED: "STOPPED",
99
- UNKNOWN: "UNKNOWN",
100
- };
101
- exports.LifecycleManagementStrategy = {
102
- ByRequest: "ByRequest",
103
- BySpatialSubdivision: "BySpatialSubdivision",
104
- PerWorker: "PerWorker",
105
- Unknown: "Unknown",
106
- };
107
- exports.SimulationStatus = {
108
- DELETED: "DELETED",
109
- DELETING: "DELETING",
110
- FAILED: "FAILED",
111
- SNAPSHOT_IN_PROGRESS: "SNAPSHOT_IN_PROGRESS",
112
- STARTED: "STARTED",
113
- STARTING: "STARTING",
114
- STOPPED: "STOPPED",
115
- STOPPING: "STOPPING",
116
- UNKNOWN: "UNKNOWN",
117
- };
118
- exports.SimulationTargetStatus = {
119
- DELETED: "DELETED",
120
- STARTED: "STARTED",
121
- STOPPED: "STOPPED",
122
- UNKNOWN: "UNKNOWN",
123
- };
124
- class ServiceQuotaExceededException extends SimSpaceWeaverServiceException_1.SimSpaceWeaverServiceException {
125
- constructor(opts) {
126
- super({
127
- name: "ServiceQuotaExceededException",
128
- $fault: "client",
129
- ...opts,
130
- });
131
- this.name = "ServiceQuotaExceededException";
132
- this.$fault = "client";
133
- Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
134
- this.Message = opts.Message;
135
- }
136
- }
137
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
138
- class TooManyTagsException extends SimSpaceWeaverServiceException_1.SimSpaceWeaverServiceException {
139
- constructor(opts) {
140
- super({
141
- name: "TooManyTagsException",
142
- $fault: "client",
143
- ...opts,
144
- });
145
- this.name = "TooManyTagsException";
146
- this.$fault = "client";
147
- Object.setPrototypeOf(this, TooManyTagsException.prototype);
148
- this.Message = opts.Message;
149
- }
150
- }
151
- exports.TooManyTagsException = TooManyTagsException;
152
- const StartAppInputFilterSensitiveLog = (obj) => ({
153
- ...obj,
154
- ...(obj.ClientToken && { ClientToken: smithy_client_1.SENSITIVE_STRING }),
155
- });
156
- exports.StartAppInputFilterSensitiveLog = StartAppInputFilterSensitiveLog;
157
- const StartSimulationInputFilterSensitiveLog = (obj) => ({
158
- ...obj,
159
- ...(obj.ClientToken && { ClientToken: smithy_client_1.SENSITIVE_STRING }),
160
- });
161
- exports.StartSimulationInputFilterSensitiveLog = StartSimulationInputFilterSensitiveLog;
1
+ module.exports = require("../index.js");
@@ -1,2 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ module.exports = require("../index.js");
@@ -1,7 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.paginateListApps = void 0;
4
- const core_1 = require("@smithy/core");
5
- const ListAppsCommand_1 = require("../commands/ListAppsCommand");
6
- const SimSpaceWeaverClient_1 = require("../SimSpaceWeaverClient");
7
- exports.paginateListApps = (0, core_1.createPaginator)(SimSpaceWeaverClient_1.SimSpaceWeaverClient, ListAppsCommand_1.ListAppsCommand, "NextToken", "NextToken", "MaxResults");
1
+ module.exports = require("../index.js");
@@ -1,7 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.paginateListSimulations = void 0;
4
- const core_1 = require("@smithy/core");
5
- const ListSimulationsCommand_1 = require("../commands/ListSimulationsCommand");
6
- const SimSpaceWeaverClient_1 = require("../SimSpaceWeaverClient");
7
- exports.paginateListSimulations = (0, core_1.createPaginator)(SimSpaceWeaverClient_1.SimSpaceWeaverClient, ListSimulationsCommand_1.ListSimulationsCommand, "NextToken", "NextToken", "MaxResults");
1
+ module.exports = require("../index.js");
@@ -1,6 +1 @@
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);
1
+ module.exports = require("../index.js");