@aws-sdk/client-simspaceweaver 3.295.0 → 3.297.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-types/SimSpaceWeaver.d.ts +16 -0
- package/dist-types/SimSpaceWeaverClient.d.ts +24 -4
- package/dist-types/commands/DeleteAppCommand.d.ts +16 -0
- package/dist-types/commands/DeleteSimulationCommand.d.ts +16 -0
- package/dist-types/commands/DescribeAppCommand.d.ts +16 -0
- package/dist-types/commands/DescribeSimulationCommand.d.ts +16 -0
- package/dist-types/commands/ListAppsCommand.d.ts +16 -0
- package/dist-types/commands/ListSimulationsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/StartAppCommand.d.ts +16 -0
- package/dist-types/commands/StartClockCommand.d.ts +16 -0
- package/dist-types/commands/StartSimulationCommand.d.ts +16 -0
- package/dist-types/commands/StopAppCommand.d.ts +16 -0
- package/dist-types/commands/StopClockCommand.d.ts +16 -0
- package/dist-types/commands/StopSimulationCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/models/SimSpaceWeaverServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +130 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListAppsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListSimulationsPaginator.d.ts +3 -0
- package/package.json +29 -29
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { SimSpaceWeaverServiceException as __BaseException } from "./SimSpaceWeaverServiceException";
|
|
3
3
|
/**
|
|
4
|
+
* @public
|
|
4
5
|
* <p/>
|
|
5
6
|
*/
|
|
6
7
|
export declare class AccessDeniedException extends __BaseException {
|
|
@@ -13,6 +14,7 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
13
14
|
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
14
15
|
}
|
|
15
16
|
/**
|
|
17
|
+
* @public
|
|
16
18
|
* <p>A collection of TCP/UDP ports for a custom or service app.</p>
|
|
17
19
|
*/
|
|
18
20
|
export interface SimulationAppPortMapping {
|
|
@@ -30,6 +32,9 @@ export interface SimulationAppPortMapping {
|
|
|
30
32
|
*/
|
|
31
33
|
Actual?: number;
|
|
32
34
|
}
|
|
35
|
+
/**
|
|
36
|
+
* @public
|
|
37
|
+
*/
|
|
33
38
|
export declare enum ClockStatus {
|
|
34
39
|
STARTED = "STARTED",
|
|
35
40
|
STARTING = "STARTING",
|
|
@@ -37,12 +42,16 @@ export declare enum ClockStatus {
|
|
|
37
42
|
STOPPING = "STOPPING",
|
|
38
43
|
UNKNOWN = "UNKNOWN"
|
|
39
44
|
}
|
|
45
|
+
/**
|
|
46
|
+
* @public
|
|
47
|
+
*/
|
|
40
48
|
export declare enum ClockTargetStatus {
|
|
41
49
|
STARTED = "STARTED",
|
|
42
50
|
STOPPED = "STOPPED",
|
|
43
51
|
UNKNOWN = "UNKNOWN"
|
|
44
52
|
}
|
|
45
53
|
/**
|
|
54
|
+
* @public
|
|
46
55
|
* <p>The Amazon CloudWatch Logs log group for the simulation. For more information about log groups, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/Working-with-log-groups-and-streams.html">Working with log
|
|
47
56
|
* groups and log streams</a> in the <i>Amazon CloudWatch Logs User Guide</i>.</p>
|
|
48
57
|
*/
|
|
@@ -56,6 +65,7 @@ export interface CloudWatchLogsLogGroup {
|
|
|
56
65
|
LogGroupArn?: string;
|
|
57
66
|
}
|
|
58
67
|
/**
|
|
68
|
+
* @public
|
|
59
69
|
* <p/>
|
|
60
70
|
*/
|
|
61
71
|
export declare class ConflictException extends __BaseException {
|
|
@@ -67,6 +77,9 @@ export declare class ConflictException extends __BaseException {
|
|
|
67
77
|
*/
|
|
68
78
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
69
79
|
}
|
|
80
|
+
/**
|
|
81
|
+
* @public
|
|
82
|
+
*/
|
|
70
83
|
export interface DeleteAppInput {
|
|
71
84
|
/**
|
|
72
85
|
* <p>The name of the simulation of the app.</p>
|
|
@@ -81,9 +94,13 @@ export interface DeleteAppInput {
|
|
|
81
94
|
*/
|
|
82
95
|
App: string | undefined;
|
|
83
96
|
}
|
|
97
|
+
/**
|
|
98
|
+
* @public
|
|
99
|
+
*/
|
|
84
100
|
export interface DeleteAppOutput {
|
|
85
101
|
}
|
|
86
102
|
/**
|
|
103
|
+
* @public
|
|
87
104
|
* <p/>
|
|
88
105
|
*/
|
|
89
106
|
export declare class InternalServerException extends __BaseException {
|
|
@@ -96,6 +113,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
96
113
|
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
97
114
|
}
|
|
98
115
|
/**
|
|
116
|
+
* @public
|
|
99
117
|
* <p/>
|
|
100
118
|
*/
|
|
101
119
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
@@ -108,6 +126,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
108
126
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
109
127
|
}
|
|
110
128
|
/**
|
|
129
|
+
* @public
|
|
111
130
|
* <p/>
|
|
112
131
|
*/
|
|
113
132
|
export declare class ValidationException extends __BaseException {
|
|
@@ -119,14 +138,23 @@ export declare class ValidationException extends __BaseException {
|
|
|
119
138
|
*/
|
|
120
139
|
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
121
140
|
}
|
|
141
|
+
/**
|
|
142
|
+
* @public
|
|
143
|
+
*/
|
|
122
144
|
export interface DeleteSimulationInput {
|
|
123
145
|
/**
|
|
124
146
|
* <p>The name of the simulation.</p>
|
|
125
147
|
*/
|
|
126
148
|
Simulation: string | undefined;
|
|
127
149
|
}
|
|
150
|
+
/**
|
|
151
|
+
* @public
|
|
152
|
+
*/
|
|
128
153
|
export interface DeleteSimulationOutput {
|
|
129
154
|
}
|
|
155
|
+
/**
|
|
156
|
+
* @public
|
|
157
|
+
*/
|
|
130
158
|
export interface DescribeAppInput {
|
|
131
159
|
/**
|
|
132
160
|
* <p>The name of the simulation of the app.</p>
|
|
@@ -142,6 +170,7 @@ export interface DescribeAppInput {
|
|
|
142
170
|
App: string | undefined;
|
|
143
171
|
}
|
|
144
172
|
/**
|
|
173
|
+
* @public
|
|
145
174
|
* <p>Information about the network endpoint that you can use to connect to your custom or
|
|
146
175
|
* service app.</p>
|
|
147
176
|
*/
|
|
@@ -158,6 +187,7 @@ export interface SimulationAppEndpointInfo {
|
|
|
158
187
|
IngressPortMappings?: SimulationAppPortMapping[];
|
|
159
188
|
}
|
|
160
189
|
/**
|
|
190
|
+
* @public
|
|
161
191
|
* <p>Options that apply when the app starts. These optiAons override default behavior.</p>
|
|
162
192
|
*/
|
|
163
193
|
export interface LaunchOverrides {
|
|
@@ -167,6 +197,9 @@ export interface LaunchOverrides {
|
|
|
167
197
|
*/
|
|
168
198
|
LaunchCommands?: string[];
|
|
169
199
|
}
|
|
200
|
+
/**
|
|
201
|
+
* @public
|
|
202
|
+
*/
|
|
170
203
|
export declare enum SimulationAppStatus {
|
|
171
204
|
ERROR = "ERROR",
|
|
172
205
|
STARTED = "STARTED",
|
|
@@ -175,11 +208,17 @@ export declare enum SimulationAppStatus {
|
|
|
175
208
|
STOPPING = "STOPPING",
|
|
176
209
|
UNKNOWN = "UNKNOWN"
|
|
177
210
|
}
|
|
211
|
+
/**
|
|
212
|
+
* @public
|
|
213
|
+
*/
|
|
178
214
|
export declare enum SimulationAppTargetStatus {
|
|
179
215
|
STARTED = "STARTED",
|
|
180
216
|
STOPPED = "STOPPED",
|
|
181
217
|
UNKNOWN = "UNKNOWN"
|
|
182
218
|
}
|
|
219
|
+
/**
|
|
220
|
+
* @public
|
|
221
|
+
*/
|
|
183
222
|
export interface DescribeAppOutput {
|
|
184
223
|
/**
|
|
185
224
|
* <p>The name of the app.</p>
|
|
@@ -214,6 +253,9 @@ export interface DescribeAppOutput {
|
|
|
214
253
|
*/
|
|
215
254
|
EndpointInfo?: SimulationAppEndpointInfo;
|
|
216
255
|
}
|
|
256
|
+
/**
|
|
257
|
+
* @public
|
|
258
|
+
*/
|
|
217
259
|
export interface DescribeSimulationInput {
|
|
218
260
|
/**
|
|
219
261
|
* <p>The name of the simulation.</p>
|
|
@@ -221,6 +263,7 @@ export interface DescribeSimulationInput {
|
|
|
221
263
|
Simulation: string | undefined;
|
|
222
264
|
}
|
|
223
265
|
/**
|
|
266
|
+
* @public
|
|
224
267
|
* <p>Status information about the simulation clock.</p>
|
|
225
268
|
*/
|
|
226
269
|
export interface SimulationClock {
|
|
@@ -233,6 +276,9 @@ export interface SimulationClock {
|
|
|
233
276
|
*/
|
|
234
277
|
TargetStatus?: ClockTargetStatus | string;
|
|
235
278
|
}
|
|
279
|
+
/**
|
|
280
|
+
* @public
|
|
281
|
+
*/
|
|
236
282
|
export declare enum LifecycleManagementStrategy {
|
|
237
283
|
ByRequest = "ByRequest",
|
|
238
284
|
BySpatialSubdivision = "BySpatialSubdivision",
|
|
@@ -240,6 +286,7 @@ export declare enum LifecycleManagementStrategy {
|
|
|
240
286
|
Unknown = "Unknown"
|
|
241
287
|
}
|
|
242
288
|
/**
|
|
289
|
+
* @public
|
|
243
290
|
* <p>A collection of app instances that run the same executable app code and have the same
|
|
244
291
|
* launch options and commands.</p>
|
|
245
292
|
* <p>For more information about domains, see <a href="https://docs.aws.amazon.com/simspaceweaver/latest/userguide/what-is_key-concepts.html">Key concepts</a>
|
|
@@ -279,6 +326,7 @@ export interface Domain {
|
|
|
279
326
|
Lifecycle?: LifecycleManagementStrategy | string;
|
|
280
327
|
}
|
|
281
328
|
/**
|
|
329
|
+
* @public
|
|
282
330
|
* <p>A collection of additional state information, such as
|
|
283
331
|
* domain and clock configuration.</p>
|
|
284
332
|
*/
|
|
@@ -297,6 +345,7 @@ export interface LiveSimulationState {
|
|
|
297
345
|
Clocks?: SimulationClock[];
|
|
298
346
|
}
|
|
299
347
|
/**
|
|
348
|
+
* @public
|
|
300
349
|
* <p>The location where SimSpace Weaver sends simulation log data.</p>
|
|
301
350
|
*/
|
|
302
351
|
export interface LogDestination {
|
|
@@ -307,6 +356,7 @@ export interface LogDestination {
|
|
|
307
356
|
CloudWatchLogsLogGroup?: CloudWatchLogsLogGroup;
|
|
308
357
|
}
|
|
309
358
|
/**
|
|
359
|
+
* @public
|
|
310
360
|
* <p>The logging configuration for a simulation.</p>
|
|
311
361
|
*/
|
|
312
362
|
export interface LoggingConfiguration {
|
|
@@ -316,6 +366,7 @@ export interface LoggingConfiguration {
|
|
|
316
366
|
Destinations?: LogDestination[];
|
|
317
367
|
}
|
|
318
368
|
/**
|
|
369
|
+
* @public
|
|
319
370
|
* <p>A location in Amazon Simple Storage Service (Amazon S3) where SimSpace Weaver stores simulation data, such as your app zip
|
|
320
371
|
* files and schema file. For more information about Amazon S3, see the <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/Welcome.html">
|
|
321
372
|
* <i>Amazon Simple Storage Service User Guide</i>
|
|
@@ -336,6 +387,9 @@ export interface S3Location {
|
|
|
336
387
|
*/
|
|
337
388
|
ObjectKey?: string;
|
|
338
389
|
}
|
|
390
|
+
/**
|
|
391
|
+
* @public
|
|
392
|
+
*/
|
|
339
393
|
export declare enum SimulationStatus {
|
|
340
394
|
DELETED = "DELETED",
|
|
341
395
|
DELETING = "DELETING",
|
|
@@ -346,12 +400,18 @@ export declare enum SimulationStatus {
|
|
|
346
400
|
STOPPING = "STOPPING",
|
|
347
401
|
UNKNOWN = "UNKNOWN"
|
|
348
402
|
}
|
|
403
|
+
/**
|
|
404
|
+
* @public
|
|
405
|
+
*/
|
|
349
406
|
export declare enum SimulationTargetStatus {
|
|
350
407
|
DELETED = "DELETED",
|
|
351
408
|
STARTED = "STARTED",
|
|
352
409
|
STOPPED = "STOPPED",
|
|
353
410
|
UNKNOWN = "UNKNOWN"
|
|
354
411
|
}
|
|
412
|
+
/**
|
|
413
|
+
* @public
|
|
414
|
+
*/
|
|
355
415
|
export interface DescribeSimulationOutput {
|
|
356
416
|
/**
|
|
357
417
|
* <p>The name of the simulation.</p>
|
|
@@ -419,6 +479,9 @@ export interface DescribeSimulationOutput {
|
|
|
419
479
|
*/
|
|
420
480
|
MaximumDuration?: string;
|
|
421
481
|
}
|
|
482
|
+
/**
|
|
483
|
+
* @public
|
|
484
|
+
*/
|
|
422
485
|
export interface ListAppsInput {
|
|
423
486
|
/**
|
|
424
487
|
* <p>The name of the simulation that you want to list apps for.</p>
|
|
@@ -442,6 +505,7 @@ export interface ListAppsInput {
|
|
|
442
505
|
NextToken?: string;
|
|
443
506
|
}
|
|
444
507
|
/**
|
|
508
|
+
* @public
|
|
445
509
|
* <p>A collection of metadata about an app.</p>
|
|
446
510
|
*/
|
|
447
511
|
export interface SimulationAppMetadata {
|
|
@@ -467,6 +531,9 @@ export interface SimulationAppMetadata {
|
|
|
467
531
|
*/
|
|
468
532
|
TargetStatus?: SimulationAppTargetStatus | string;
|
|
469
533
|
}
|
|
534
|
+
/**
|
|
535
|
+
* @public
|
|
536
|
+
*/
|
|
470
537
|
export interface ListAppsOutput {
|
|
471
538
|
/**
|
|
472
539
|
* <p>The list of apps for the given simulation and domain.</p>
|
|
@@ -481,6 +548,9 @@ export interface ListAppsOutput {
|
|
|
481
548
|
*/
|
|
482
549
|
NextToken?: string;
|
|
483
550
|
}
|
|
551
|
+
/**
|
|
552
|
+
* @public
|
|
553
|
+
*/
|
|
484
554
|
export interface ListSimulationsInput {
|
|
485
555
|
/**
|
|
486
556
|
* <p>The maximum number of simulations to list.</p>
|
|
@@ -496,6 +566,7 @@ export interface ListSimulationsInput {
|
|
|
496
566
|
NextToken?: string;
|
|
497
567
|
}
|
|
498
568
|
/**
|
|
569
|
+
* @public
|
|
499
570
|
* <p>A collection of data about the simulation.</p>
|
|
500
571
|
*/
|
|
501
572
|
export interface SimulationMetadata {
|
|
@@ -522,6 +593,9 @@ export interface SimulationMetadata {
|
|
|
522
593
|
*/
|
|
523
594
|
TargetStatus?: SimulationTargetStatus | string;
|
|
524
595
|
}
|
|
596
|
+
/**
|
|
597
|
+
* @public
|
|
598
|
+
*/
|
|
525
599
|
export interface ListSimulationsOutput {
|
|
526
600
|
/**
|
|
527
601
|
* <p>The list of simulations.</p>
|
|
@@ -536,6 +610,9 @@ export interface ListSimulationsOutput {
|
|
|
536
610
|
*/
|
|
537
611
|
NextToken?: string;
|
|
538
612
|
}
|
|
613
|
+
/**
|
|
614
|
+
* @public
|
|
615
|
+
*/
|
|
539
616
|
export interface ListTagsForResourceInput {
|
|
540
617
|
/**
|
|
541
618
|
* <p>The Amazon Resource Name (ARN) of the resource. For more information about ARNs, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a>
|
|
@@ -543,6 +620,9 @@ export interface ListTagsForResourceInput {
|
|
|
543
620
|
*/
|
|
544
621
|
ResourceArn: string | undefined;
|
|
545
622
|
}
|
|
623
|
+
/**
|
|
624
|
+
* @public
|
|
625
|
+
*/
|
|
546
626
|
export interface ListTagsForResourceOutput {
|
|
547
627
|
/**
|
|
548
628
|
* <p>The list of tags for the resource.</p>
|
|
@@ -550,6 +630,7 @@ export interface ListTagsForResourceOutput {
|
|
|
550
630
|
Tags?: Record<string, string>;
|
|
551
631
|
}
|
|
552
632
|
/**
|
|
633
|
+
* @public
|
|
553
634
|
* <p/>
|
|
554
635
|
*/
|
|
555
636
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
@@ -561,6 +642,9 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
561
642
|
*/
|
|
562
643
|
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
563
644
|
}
|
|
645
|
+
/**
|
|
646
|
+
* @public
|
|
647
|
+
*/
|
|
564
648
|
export interface StartAppInput {
|
|
565
649
|
/**
|
|
566
650
|
* <p>A value that you provide to ensure that repeated calls to this
|
|
@@ -589,6 +673,9 @@ export interface StartAppInput {
|
|
|
589
673
|
*/
|
|
590
674
|
LaunchOverrides?: LaunchOverrides;
|
|
591
675
|
}
|
|
676
|
+
/**
|
|
677
|
+
* @public
|
|
678
|
+
*/
|
|
592
679
|
export interface StartAppOutput {
|
|
593
680
|
/**
|
|
594
681
|
* <p>The name of the app.</p>
|
|
@@ -603,14 +690,23 @@ export interface StartAppOutput {
|
|
|
603
690
|
*/
|
|
604
691
|
Simulation?: string;
|
|
605
692
|
}
|
|
693
|
+
/**
|
|
694
|
+
* @public
|
|
695
|
+
*/
|
|
606
696
|
export interface StartClockInput {
|
|
607
697
|
/**
|
|
608
698
|
* <p>The name of the simulation.</p>
|
|
609
699
|
*/
|
|
610
700
|
Simulation: string | undefined;
|
|
611
701
|
}
|
|
702
|
+
/**
|
|
703
|
+
* @public
|
|
704
|
+
*/
|
|
612
705
|
export interface StartClockOutput {
|
|
613
706
|
}
|
|
707
|
+
/**
|
|
708
|
+
* @public
|
|
709
|
+
*/
|
|
614
710
|
export interface StartSimulationInput {
|
|
615
711
|
/**
|
|
616
712
|
* <p>A value that you provide to ensure that repeated calls to this
|
|
@@ -653,6 +749,9 @@ export interface StartSimulationInput {
|
|
|
653
749
|
*/
|
|
654
750
|
Tags?: Record<string, string>;
|
|
655
751
|
}
|
|
752
|
+
/**
|
|
753
|
+
* @public
|
|
754
|
+
*/
|
|
656
755
|
export interface StartSimulationOutput {
|
|
657
756
|
/**
|
|
658
757
|
* <p>The Amazon Resource Name (ARN) of the simulation. For more information about ARNs, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a>
|
|
@@ -669,6 +768,9 @@ export interface StartSimulationOutput {
|
|
|
669
768
|
*/
|
|
670
769
|
CreationTime?: Date;
|
|
671
770
|
}
|
|
771
|
+
/**
|
|
772
|
+
* @public
|
|
773
|
+
*/
|
|
672
774
|
export interface StopAppInput {
|
|
673
775
|
/**
|
|
674
776
|
* <p>The name of the simulation of the app.</p>
|
|
@@ -683,24 +785,42 @@ export interface StopAppInput {
|
|
|
683
785
|
*/
|
|
684
786
|
App: string | undefined;
|
|
685
787
|
}
|
|
788
|
+
/**
|
|
789
|
+
* @public
|
|
790
|
+
*/
|
|
686
791
|
export interface StopAppOutput {
|
|
687
792
|
}
|
|
793
|
+
/**
|
|
794
|
+
* @public
|
|
795
|
+
*/
|
|
688
796
|
export interface StopClockInput {
|
|
689
797
|
/**
|
|
690
798
|
* <p>The name of the simulation.</p>
|
|
691
799
|
*/
|
|
692
800
|
Simulation: string | undefined;
|
|
693
801
|
}
|
|
802
|
+
/**
|
|
803
|
+
* @public
|
|
804
|
+
*/
|
|
694
805
|
export interface StopClockOutput {
|
|
695
806
|
}
|
|
807
|
+
/**
|
|
808
|
+
* @public
|
|
809
|
+
*/
|
|
696
810
|
export interface StopSimulationInput {
|
|
697
811
|
/**
|
|
698
812
|
* <p>The name of the simulation.</p>
|
|
699
813
|
*/
|
|
700
814
|
Simulation: string | undefined;
|
|
701
815
|
}
|
|
816
|
+
/**
|
|
817
|
+
* @public
|
|
818
|
+
*/
|
|
702
819
|
export interface StopSimulationOutput {
|
|
703
820
|
}
|
|
821
|
+
/**
|
|
822
|
+
* @public
|
|
823
|
+
*/
|
|
704
824
|
export interface TagResourceInput {
|
|
705
825
|
/**
|
|
706
826
|
* <p>The Amazon Resource Name (ARN) of the resource that you want to add tags to.
|
|
@@ -713,9 +833,13 @@ export interface TagResourceInput {
|
|
|
713
833
|
*/
|
|
714
834
|
Tags: Record<string, string> | undefined;
|
|
715
835
|
}
|
|
836
|
+
/**
|
|
837
|
+
* @public
|
|
838
|
+
*/
|
|
716
839
|
export interface TagResourceOutput {
|
|
717
840
|
}
|
|
718
841
|
/**
|
|
842
|
+
* @public
|
|
719
843
|
* <p/>
|
|
720
844
|
*/
|
|
721
845
|
export declare class TooManyTagsException extends __BaseException {
|
|
@@ -727,6 +851,9 @@ export declare class TooManyTagsException extends __BaseException {
|
|
|
727
851
|
*/
|
|
728
852
|
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
729
853
|
}
|
|
854
|
+
/**
|
|
855
|
+
* @public
|
|
856
|
+
*/
|
|
730
857
|
export interface UntagResourceInput {
|
|
731
858
|
/**
|
|
732
859
|
* <p>The Amazon Resource Name (ARN) of the resource that you want to remove tags from.
|
|
@@ -739,6 +866,9 @@ export interface UntagResourceInput {
|
|
|
739
866
|
*/
|
|
740
867
|
TagKeys: string[] | undefined;
|
|
741
868
|
}
|
|
869
|
+
/**
|
|
870
|
+
* @public
|
|
871
|
+
*/
|
|
742
872
|
export interface UntagResourceOutput {
|
|
743
873
|
}
|
|
744
874
|
/**
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
2
|
import { SimSpaceWeaverClient } from "../SimSpaceWeaverClient";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
3
6
|
export interface SimSpaceWeaverPaginationConfiguration extends PaginationConfiguration {
|
|
4
7
|
client: SimSpaceWeaverClient;
|
|
5
8
|
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListAppsCommandInput, ListAppsCommandOutput } from "../commands/ListAppsCommand";
|
|
3
3
|
import { SimSpaceWeaverPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListApps(config: SimSpaceWeaverPaginationConfiguration, input: ListAppsCommandInput, ...additionalArguments: any): Paginator<ListAppsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListSimulationsCommandInput, ListSimulationsCommandOutput } from "../commands/ListSimulationsCommand";
|
|
3
3
|
import { SimSpaceWeaverPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListSimulations(config: SimSpaceWeaverPaginationConfiguration, input: ListSimulationsCommandInput, ...additionalArguments: any): Paginator<ListSimulationsCommandOutput>;
|
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.297.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",
|
|
@@ -20,37 +20,37 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
27
|
-
"@aws-sdk/hash-node": "3.
|
|
28
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
-
"@aws-sdk/middleware-serde": "3.
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
-
"@aws-sdk/middleware-stack": "3.
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.297.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.296.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.297.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
27
|
+
"@aws-sdk/hash-node": "3.296.0",
|
|
28
|
+
"@aws-sdk/invalid-dependency": "3.296.0",
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.296.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.296.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.296.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.296.0",
|
|
33
|
+
"@aws-sdk/middleware-recursion-detection": "3.296.0",
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.296.0",
|
|
35
|
+
"@aws-sdk/middleware-serde": "3.296.0",
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.296.0",
|
|
37
|
+
"@aws-sdk/middleware-stack": "3.296.0",
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.296.0",
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.296.0",
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.296.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.296.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.296.0",
|
|
43
|
+
"@aws-sdk/types": "3.296.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.296.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.295.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.295.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.295.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.296.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.296.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.296.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.296.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.296.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.296.0",
|
|
54
54
|
"@aws-sdk/util-utf8": "3.295.0",
|
|
55
55
|
"tslib": "^2.5.0",
|
|
56
56
|
"uuid": "^8.3.2"
|