@aws-sdk/client-simspaceweaver 3.428.0 → 3.429.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.
|
@@ -314,12 +314,12 @@ export interface DescribeAppOutput {
|
|
|
314
314
|
* @public
|
|
315
315
|
* <p>The current lifecycle state of the custom app.</p>
|
|
316
316
|
*/
|
|
317
|
-
Status?: SimulationAppStatus
|
|
317
|
+
Status?: SimulationAppStatus;
|
|
318
318
|
/**
|
|
319
319
|
* @public
|
|
320
320
|
* <p>The desired lifecycle state of the custom app.</p>
|
|
321
321
|
*/
|
|
322
|
-
TargetStatus?: SimulationAppTargetStatus
|
|
322
|
+
TargetStatus?: SimulationAppTargetStatus;
|
|
323
323
|
/**
|
|
324
324
|
* @public
|
|
325
325
|
* <p>Options that apply when the app starts. These options override default behavior.</p>
|
|
@@ -355,12 +355,12 @@ export interface SimulationClock {
|
|
|
355
355
|
* @public
|
|
356
356
|
* <p>The current status of the simulation clock.</p>
|
|
357
357
|
*/
|
|
358
|
-
Status?: ClockStatus
|
|
358
|
+
Status?: ClockStatus;
|
|
359
359
|
/**
|
|
360
360
|
* @public
|
|
361
361
|
* <p>The desired status of the simulation clock.</p>
|
|
362
362
|
*/
|
|
363
|
-
TargetStatus?: ClockTargetStatus
|
|
363
|
+
TargetStatus?: ClockTargetStatus;
|
|
364
364
|
}
|
|
365
365
|
/**
|
|
366
366
|
* @public
|
|
@@ -415,7 +415,7 @@ export interface Domain {
|
|
|
415
415
|
* </li>
|
|
416
416
|
* </ul>
|
|
417
417
|
*/
|
|
418
|
-
Lifecycle?: LifecycleManagementStrategy
|
|
418
|
+
Lifecycle?: LifecycleManagementStrategy;
|
|
419
419
|
}
|
|
420
420
|
/**
|
|
421
421
|
* @public
|
|
@@ -562,12 +562,12 @@ export interface DescribeSimulationOutput {
|
|
|
562
562
|
* @public
|
|
563
563
|
* <p>The current lifecycle state of the simulation.</p>
|
|
564
564
|
*/
|
|
565
|
-
Status?: SimulationStatus
|
|
565
|
+
Status?: SimulationStatus;
|
|
566
566
|
/**
|
|
567
567
|
* @public
|
|
568
568
|
* <p>The desired lifecycle state of the simulation.</p>
|
|
569
569
|
*/
|
|
570
|
-
TargetStatus?: SimulationTargetStatus
|
|
570
|
+
TargetStatus?: SimulationTargetStatus;
|
|
571
571
|
/**
|
|
572
572
|
* @public
|
|
573
573
|
* <p>The location of the simulation schema in Amazon Simple Storage Service (Amazon S3).
|
|
@@ -672,12 +672,12 @@ export interface SimulationAppMetadata {
|
|
|
672
672
|
* @public
|
|
673
673
|
* <p>The current status of the app.</p>
|
|
674
674
|
*/
|
|
675
|
-
Status?: SimulationAppStatus
|
|
675
|
+
Status?: SimulationAppStatus;
|
|
676
676
|
/**
|
|
677
677
|
* @public
|
|
678
678
|
* <p>The desired status of the app.</p>
|
|
679
679
|
*/
|
|
680
|
-
TargetStatus?: SimulationAppTargetStatus
|
|
680
|
+
TargetStatus?: SimulationAppTargetStatus;
|
|
681
681
|
}
|
|
682
682
|
/**
|
|
683
683
|
* @public
|
|
@@ -743,12 +743,12 @@ export interface SimulationMetadata {
|
|
|
743
743
|
* @public
|
|
744
744
|
* <p>The current status of the simulation.</p>
|
|
745
745
|
*/
|
|
746
|
-
Status?: SimulationStatus
|
|
746
|
+
Status?: SimulationStatus;
|
|
747
747
|
/**
|
|
748
748
|
* @public
|
|
749
749
|
* <p>The desired status of the simulation.</p>
|
|
750
750
|
*/
|
|
751
|
-
TargetStatus?: SimulationTargetStatus
|
|
751
|
+
TargetStatus?: SimulationTargetStatus;
|
|
752
752
|
}
|
|
753
753
|
/**
|
|
754
754
|
* @public
|
|
@@ -112,8 +112,8 @@ export interface DescribeAppOutput {
|
|
|
112
112
|
Name?: string;
|
|
113
113
|
Simulation?: string;
|
|
114
114
|
Domain?: string;
|
|
115
|
-
Status?: SimulationAppStatus
|
|
116
|
-
TargetStatus?: SimulationAppTargetStatus
|
|
115
|
+
Status?: SimulationAppStatus;
|
|
116
|
+
TargetStatus?: SimulationAppTargetStatus;
|
|
117
117
|
LaunchOverrides?: LaunchOverrides;
|
|
118
118
|
Description?: string;
|
|
119
119
|
EndpointInfo?: SimulationAppEndpointInfo;
|
|
@@ -122,8 +122,8 @@ export interface DescribeSimulationInput {
|
|
|
122
122
|
Simulation: string | undefined;
|
|
123
123
|
}
|
|
124
124
|
export interface SimulationClock {
|
|
125
|
-
Status?: ClockStatus
|
|
126
|
-
TargetStatus?: ClockTargetStatus
|
|
125
|
+
Status?: ClockStatus;
|
|
126
|
+
TargetStatus?: ClockTargetStatus;
|
|
127
127
|
}
|
|
128
128
|
export declare const LifecycleManagementStrategy: {
|
|
129
129
|
readonly ByRequest: "ByRequest";
|
|
@@ -135,7 +135,7 @@ export type LifecycleManagementStrategy =
|
|
|
135
135
|
(typeof LifecycleManagementStrategy)[keyof typeof LifecycleManagementStrategy];
|
|
136
136
|
export interface Domain {
|
|
137
137
|
Name?: string;
|
|
138
|
-
Lifecycle?: LifecycleManagementStrategy
|
|
138
|
+
Lifecycle?: LifecycleManagementStrategy;
|
|
139
139
|
}
|
|
140
140
|
export interface LiveSimulationState {
|
|
141
141
|
Domains?: Domain[];
|
|
@@ -179,8 +179,8 @@ export interface DescribeSimulationOutput {
|
|
|
179
179
|
Description?: string;
|
|
180
180
|
RoleArn?: string;
|
|
181
181
|
CreationTime?: Date;
|
|
182
|
-
Status?: SimulationStatus
|
|
183
|
-
TargetStatus?: SimulationTargetStatus
|
|
182
|
+
Status?: SimulationStatus;
|
|
183
|
+
TargetStatus?: SimulationTargetStatus;
|
|
184
184
|
SchemaS3Location?: S3Location;
|
|
185
185
|
SchemaError?: string;
|
|
186
186
|
LoggingConfiguration?: LoggingConfiguration;
|
|
@@ -199,8 +199,8 @@ export interface SimulationAppMetadata {
|
|
|
199
199
|
Name?: string;
|
|
200
200
|
Simulation?: string;
|
|
201
201
|
Domain?: string;
|
|
202
|
-
Status?: SimulationAppStatus
|
|
203
|
-
TargetStatus?: SimulationAppTargetStatus
|
|
202
|
+
Status?: SimulationAppStatus;
|
|
203
|
+
TargetStatus?: SimulationAppTargetStatus;
|
|
204
204
|
}
|
|
205
205
|
export interface ListAppsOutput {
|
|
206
206
|
Apps?: SimulationAppMetadata[];
|
|
@@ -214,8 +214,8 @@ export interface SimulationMetadata {
|
|
|
214
214
|
Name?: string;
|
|
215
215
|
Arn?: string;
|
|
216
216
|
CreationTime?: Date;
|
|
217
|
-
Status?: SimulationStatus
|
|
218
|
-
TargetStatus?: SimulationTargetStatus
|
|
217
|
+
Status?: SimulationStatus;
|
|
218
|
+
TargetStatus?: SimulationTargetStatus;
|
|
219
219
|
}
|
|
220
220
|
export interface ListSimulationsOutput {
|
|
221
221
|
Simulations?: SimulationMetadata[];
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-simspaceweaver",
|
|
3
3
|
"description": "AWS SDK for JavaScript Simspaceweaver Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.429.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.429.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.429.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.428.0",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@smithy/hash-node": "^2.0.11",
|
|
39
39
|
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
40
|
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.1.
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.1",
|
|
42
42
|
"@smithy/middleware-retry": "^2.0.16",
|
|
43
43
|
"@smithy/middleware-serde": "^2.0.11",
|
|
44
44
|
"@smithy/middleware-stack": "^2.0.5",
|