@aws-sdk/client-simspaceweaver 3.325.0 → 3.327.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/commands/CreateSnapshotCommand.d.ts +4 -0
- package/dist-types/commands/DeleteAppCommand.d.ts +4 -0
- package/dist-types/commands/DeleteSimulationCommand.d.ts +4 -0
- package/dist-types/commands/DescribeAppCommand.d.ts +25 -0
- package/dist-types/commands/DescribeSimulationCommand.d.ts +47 -0
- package/dist-types/commands/ListAppsCommand.d.ts +15 -0
- package/dist-types/commands/ListSimulationsCommand.d.ts +15 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
- package/dist-types/commands/StartAppCommand.d.ts +8 -0
- package/dist-types/commands/StartClockCommand.d.ts +4 -0
- package/dist-types/commands/StartSimulationCommand.d.ts +8 -0
- package/dist-types/commands/StopAppCommand.d.ts +4 -0
- package/dist-types/commands/StopClockCommand.d.ts +4 -0
- package/dist-types/commands/StopSimulationCommand.d.ts +4 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/package.json +7 -7
|
@@ -90,6 +90,8 @@ export interface CreateSnapshotCommandOutput extends CreateSnapshotOutput, __Met
|
|
|
90
90
|
* };
|
|
91
91
|
* const command = new CreateSnapshotCommand(input);
|
|
92
92
|
* const response = await client.send(command);
|
|
93
|
+
* // {};
|
|
94
|
+
*
|
|
93
95
|
* ```
|
|
94
96
|
*
|
|
95
97
|
* @param CreateSnapshotCommandInput - {@link CreateSnapshotCommandInput}
|
|
@@ -113,6 +115,8 @@ export interface CreateSnapshotCommandOutput extends CreateSnapshotOutput, __Met
|
|
|
113
115
|
* @throws {@link ValidationException} (client fault)
|
|
114
116
|
* <p/>
|
|
115
117
|
*
|
|
118
|
+
* @throws {@link SimSpaceWeaverServiceException}
|
|
119
|
+
* <p>Base exception class for all service exceptions from SimSpaceWeaver service.</p>
|
|
116
120
|
*
|
|
117
121
|
*/
|
|
118
122
|
export declare class CreateSnapshotCommand extends $Command<CreateSnapshotCommandInput, CreateSnapshotCommandOutput, SimSpaceWeaverClientResolvedConfig> {
|
|
@@ -33,6 +33,8 @@ export interface DeleteAppCommandOutput extends DeleteAppOutput, __MetadataBeare
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DeleteAppCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // {};
|
|
37
|
+
*
|
|
36
38
|
* ```
|
|
37
39
|
*
|
|
38
40
|
* @param DeleteAppCommandInput - {@link DeleteAppCommandInput}
|
|
@@ -56,6 +58,8 @@ export interface DeleteAppCommandOutput extends DeleteAppOutput, __MetadataBeare
|
|
|
56
58
|
* @throws {@link ValidationException} (client fault)
|
|
57
59
|
* <p/>
|
|
58
60
|
*
|
|
61
|
+
* @throws {@link SimSpaceWeaverServiceException}
|
|
62
|
+
* <p>Base exception class for all service exceptions from SimSpaceWeaver service.</p>
|
|
59
63
|
*
|
|
60
64
|
*/
|
|
61
65
|
export declare class DeleteAppCommand extends $Command<DeleteAppCommandInput, DeleteAppCommandOutput, SimSpaceWeaverClientResolvedConfig> {
|
|
@@ -35,6 +35,8 @@ export interface DeleteSimulationCommandOutput extends DeleteSimulationOutput, _
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new DeleteSimulationCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // {};
|
|
39
|
+
*
|
|
38
40
|
* ```
|
|
39
41
|
*
|
|
40
42
|
* @param DeleteSimulationCommandInput - {@link DeleteSimulationCommandInput}
|
|
@@ -58,6 +60,8 @@ export interface DeleteSimulationCommandOutput extends DeleteSimulationOutput, _
|
|
|
58
60
|
* @throws {@link ValidationException} (client fault)
|
|
59
61
|
* <p/>
|
|
60
62
|
*
|
|
63
|
+
* @throws {@link SimSpaceWeaverServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from SimSpaceWeaver service.</p>
|
|
61
65
|
*
|
|
62
66
|
*/
|
|
63
67
|
export declare class DeleteSimulationCommand extends $Command<DeleteSimulationCommandInput, DeleteSimulationCommandOutput, SimSpaceWeaverClientResolvedConfig> {
|
|
@@ -33,6 +33,29 @@ export interface DescribeAppCommandOutput extends DescribeAppOutput, __MetadataB
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DescribeAppCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // DescribeAppOutput
|
|
37
|
+
* // Name: "STRING_VALUE",
|
|
38
|
+
* // Simulation: "STRING_VALUE",
|
|
39
|
+
* // Domain: "STRING_VALUE",
|
|
40
|
+
* // Status: "STRING_VALUE",
|
|
41
|
+
* // TargetStatus: "STRING_VALUE",
|
|
42
|
+
* // LaunchOverrides: { // LaunchOverrides
|
|
43
|
+
* // LaunchCommands: [ // LaunchCommandList
|
|
44
|
+
* // "STRING_VALUE",
|
|
45
|
+
* // ],
|
|
46
|
+
* // },
|
|
47
|
+
* // Description: "STRING_VALUE",
|
|
48
|
+
* // EndpointInfo: { // SimulationAppEndpointInfo
|
|
49
|
+
* // Address: "STRING_VALUE",
|
|
50
|
+
* // IngressPortMappings: [ // AppPortMappings
|
|
51
|
+
* // { // SimulationAppPortMapping
|
|
52
|
+
* // Declared: Number("int"),
|
|
53
|
+
* // Actual: Number("int"),
|
|
54
|
+
* // },
|
|
55
|
+
* // ],
|
|
56
|
+
* // },
|
|
57
|
+
* // };
|
|
58
|
+
*
|
|
36
59
|
* ```
|
|
37
60
|
*
|
|
38
61
|
* @param DescribeAppCommandInput - {@link DescribeAppCommandInput}
|
|
@@ -53,6 +76,8 @@ export interface DescribeAppCommandOutput extends DescribeAppOutput, __MetadataB
|
|
|
53
76
|
* @throws {@link ValidationException} (client fault)
|
|
54
77
|
* <p/>
|
|
55
78
|
*
|
|
79
|
+
* @throws {@link SimSpaceWeaverServiceException}
|
|
80
|
+
* <p>Base exception class for all service exceptions from SimSpaceWeaver service.</p>
|
|
56
81
|
*
|
|
57
82
|
*/
|
|
58
83
|
export declare class DescribeAppCommand extends $Command<DescribeAppCommandInput, DescribeAppCommandOutput, SimSpaceWeaverClientResolvedConfig> {
|
|
@@ -31,6 +31,51 @@ export interface DescribeSimulationCommandOutput extends DescribeSimulationOutpu
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeSimulationCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DescribeSimulationOutput
|
|
35
|
+
* // Name: "STRING_VALUE",
|
|
36
|
+
* // ExecutionId: "STRING_VALUE",
|
|
37
|
+
* // Arn: "STRING_VALUE",
|
|
38
|
+
* // Description: "STRING_VALUE",
|
|
39
|
+
* // RoleArn: "STRING_VALUE",
|
|
40
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
41
|
+
* // Status: "STRING_VALUE",
|
|
42
|
+
* // TargetStatus: "STRING_VALUE",
|
|
43
|
+
* // SchemaS3Location: { // S3Location
|
|
44
|
+
* // BucketName: "STRING_VALUE",
|
|
45
|
+
* // ObjectKey: "STRING_VALUE",
|
|
46
|
+
* // },
|
|
47
|
+
* // SchemaError: "STRING_VALUE",
|
|
48
|
+
* // LoggingConfiguration: { // LoggingConfiguration
|
|
49
|
+
* // Destinations: [ // LogDestinations
|
|
50
|
+
* // { // LogDestination
|
|
51
|
+
* // CloudWatchLogsLogGroup: { // CloudWatchLogsLogGroup
|
|
52
|
+
* // LogGroupArn: "STRING_VALUE",
|
|
53
|
+
* // },
|
|
54
|
+
* // },
|
|
55
|
+
* // ],
|
|
56
|
+
* // },
|
|
57
|
+
* // LiveSimulationState: { // LiveSimulationState
|
|
58
|
+
* // Domains: [ // DomainList
|
|
59
|
+
* // { // Domain
|
|
60
|
+
* // Name: "STRING_VALUE",
|
|
61
|
+
* // Lifecycle: "STRING_VALUE",
|
|
62
|
+
* // },
|
|
63
|
+
* // ],
|
|
64
|
+
* // Clocks: [ // SimulationClockList
|
|
65
|
+
* // { // SimulationClock
|
|
66
|
+
* // Status: "STRING_VALUE",
|
|
67
|
+
* // TargetStatus: "STRING_VALUE",
|
|
68
|
+
* // },
|
|
69
|
+
* // ],
|
|
70
|
+
* // },
|
|
71
|
+
* // MaximumDuration: "STRING_VALUE",
|
|
72
|
+
* // SnapshotS3Location: {
|
|
73
|
+
* // BucketName: "STRING_VALUE",
|
|
74
|
+
* // ObjectKey: "STRING_VALUE",
|
|
75
|
+
* // },
|
|
76
|
+
* // StartError: "STRING_VALUE",
|
|
77
|
+
* // };
|
|
78
|
+
*
|
|
34
79
|
* ```
|
|
35
80
|
*
|
|
36
81
|
* @param DescribeSimulationCommandInput - {@link DescribeSimulationCommandInput}
|
|
@@ -51,6 +96,8 @@ export interface DescribeSimulationCommandOutput extends DescribeSimulationOutpu
|
|
|
51
96
|
* @throws {@link ValidationException} (client fault)
|
|
52
97
|
* <p/>
|
|
53
98
|
*
|
|
99
|
+
* @throws {@link SimSpaceWeaverServiceException}
|
|
100
|
+
* <p>Base exception class for all service exceptions from SimSpaceWeaver service.</p>
|
|
54
101
|
*
|
|
55
102
|
*/
|
|
56
103
|
export declare class DescribeSimulationCommand extends $Command<DescribeSimulationCommandInput, DescribeSimulationCommandOutput, SimSpaceWeaverClientResolvedConfig> {
|
|
@@ -34,6 +34,19 @@ export interface ListAppsCommandOutput extends ListAppsOutput, __MetadataBearer
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ListAppsCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ListAppsOutput
|
|
38
|
+
* // Apps: [ // SimulationAppList
|
|
39
|
+
* // { // SimulationAppMetadata
|
|
40
|
+
* // Name: "STRING_VALUE",
|
|
41
|
+
* // Simulation: "STRING_VALUE",
|
|
42
|
+
* // Domain: "STRING_VALUE",
|
|
43
|
+
* // Status: "STRING_VALUE",
|
|
44
|
+
* // TargetStatus: "STRING_VALUE",
|
|
45
|
+
* // },
|
|
46
|
+
* // ],
|
|
47
|
+
* // NextToken: "STRING_VALUE",
|
|
48
|
+
* // };
|
|
49
|
+
*
|
|
37
50
|
* ```
|
|
38
51
|
*
|
|
39
52
|
* @param ListAppsCommandInput - {@link ListAppsCommandInput}
|
|
@@ -54,6 +67,8 @@ export interface ListAppsCommandOutput extends ListAppsOutput, __MetadataBearer
|
|
|
54
67
|
* @throws {@link ValidationException} (client fault)
|
|
55
68
|
* <p/>
|
|
56
69
|
*
|
|
70
|
+
* @throws {@link SimSpaceWeaverServiceException}
|
|
71
|
+
* <p>Base exception class for all service exceptions from SimSpaceWeaver service.</p>
|
|
57
72
|
*
|
|
58
73
|
*/
|
|
59
74
|
export declare class ListAppsCommand extends $Command<ListAppsCommandInput, ListAppsCommandOutput, SimSpaceWeaverClientResolvedConfig> {
|
|
@@ -32,6 +32,19 @@ export interface ListSimulationsCommandOutput extends ListSimulationsOutput, __M
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListSimulationsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListSimulationsOutput
|
|
36
|
+
* // Simulations: [ // SimulationList
|
|
37
|
+
* // { // SimulationMetadata
|
|
38
|
+
* // Name: "STRING_VALUE",
|
|
39
|
+
* // Arn: "STRING_VALUE",
|
|
40
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
41
|
+
* // Status: "STRING_VALUE",
|
|
42
|
+
* // TargetStatus: "STRING_VALUE",
|
|
43
|
+
* // },
|
|
44
|
+
* // ],
|
|
45
|
+
* // NextToken: "STRING_VALUE",
|
|
46
|
+
* // };
|
|
47
|
+
*
|
|
35
48
|
* ```
|
|
36
49
|
*
|
|
37
50
|
* @param ListSimulationsCommandInput - {@link ListSimulationsCommandInput}
|
|
@@ -49,6 +62,8 @@ export interface ListSimulationsCommandOutput extends ListSimulationsOutput, __M
|
|
|
49
62
|
* @throws {@link ValidationException} (client fault)
|
|
50
63
|
* <p/>
|
|
51
64
|
*
|
|
65
|
+
* @throws {@link SimSpaceWeaverServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from SimSpaceWeaver service.</p>
|
|
52
67
|
*
|
|
53
68
|
*/
|
|
54
69
|
export declare class ListSimulationsCommand extends $Command<ListSimulationsCommandInput, ListSimulationsCommandOutput, SimSpaceWeaverClientResolvedConfig> {
|
|
@@ -31,6 +31,12 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // ListTagsForResourceOutput
|
|
35
|
+
* // Tags: { // TagMap
|
|
36
|
+
* // "<keys>": "STRING_VALUE",
|
|
37
|
+
* // },
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
34
40
|
* ```
|
|
35
41
|
*
|
|
36
42
|
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
@@ -45,6 +51,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
|
|
|
45
51
|
* @throws {@link ValidationException} (client fault)
|
|
46
52
|
* <p/>
|
|
47
53
|
*
|
|
54
|
+
* @throws {@link SimSpaceWeaverServiceException}
|
|
55
|
+
* <p>Base exception class for all service exceptions from SimSpaceWeaver service.</p>
|
|
48
56
|
*
|
|
49
57
|
*/
|
|
50
58
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, SimSpaceWeaverClientResolvedConfig> {
|
|
@@ -40,6 +40,12 @@ export interface StartAppCommandOutput extends StartAppOutput, __MetadataBearer
|
|
|
40
40
|
* };
|
|
41
41
|
* const command = new StartAppCommand(input);
|
|
42
42
|
* const response = await client.send(command);
|
|
43
|
+
* // { // StartAppOutput
|
|
44
|
+
* // Name: "STRING_VALUE",
|
|
45
|
+
* // Domain: "STRING_VALUE",
|
|
46
|
+
* // Simulation: "STRING_VALUE",
|
|
47
|
+
* // };
|
|
48
|
+
*
|
|
43
49
|
* ```
|
|
44
50
|
*
|
|
45
51
|
* @param StartAppCommandInput - {@link StartAppCommandInput}
|
|
@@ -63,6 +69,8 @@ export interface StartAppCommandOutput extends StartAppOutput, __MetadataBearer
|
|
|
63
69
|
* @throws {@link ValidationException} (client fault)
|
|
64
70
|
* <p/>
|
|
65
71
|
*
|
|
72
|
+
* @throws {@link SimSpaceWeaverServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from SimSpaceWeaver service.</p>
|
|
66
74
|
*
|
|
67
75
|
*/
|
|
68
76
|
export declare class StartAppCommand extends $Command<StartAppCommandInput, StartAppCommandOutput, SimSpaceWeaverClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface StartClockCommandOutput extends StartClockOutput, __MetadataBea
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new StartClockCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param StartClockCommandInput - {@link StartClockCommandInput}
|
|
@@ -54,6 +56,8 @@ export interface StartClockCommandOutput extends StartClockOutput, __MetadataBea
|
|
|
54
56
|
* @throws {@link ValidationException} (client fault)
|
|
55
57
|
* <p/>
|
|
56
58
|
*
|
|
59
|
+
* @throws {@link SimSpaceWeaverServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from SimSpaceWeaver service.</p>
|
|
57
61
|
*
|
|
58
62
|
*/
|
|
59
63
|
export declare class StartClockCommand extends $Command<StartClockCommandInput, StartClockCommandOutput, SimSpaceWeaverClientResolvedConfig> {
|
|
@@ -51,6 +51,12 @@ export interface StartSimulationCommandOutput extends StartSimulationOutput, __M
|
|
|
51
51
|
* };
|
|
52
52
|
* const command = new StartSimulationCommand(input);
|
|
53
53
|
* const response = await client.send(command);
|
|
54
|
+
* // { // StartSimulationOutput
|
|
55
|
+
* // Arn: "STRING_VALUE",
|
|
56
|
+
* // ExecutionId: "STRING_VALUE",
|
|
57
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
58
|
+
* // };
|
|
59
|
+
*
|
|
54
60
|
* ```
|
|
55
61
|
*
|
|
56
62
|
* @param StartSimulationCommandInput - {@link StartSimulationCommandInput}
|
|
@@ -74,6 +80,8 @@ export interface StartSimulationCommandOutput extends StartSimulationOutput, __M
|
|
|
74
80
|
* @throws {@link ValidationException} (client fault)
|
|
75
81
|
* <p/>
|
|
76
82
|
*
|
|
83
|
+
* @throws {@link SimSpaceWeaverServiceException}
|
|
84
|
+
* <p>Base exception class for all service exceptions from SimSpaceWeaver service.</p>
|
|
77
85
|
*
|
|
78
86
|
*/
|
|
79
87
|
export declare class StartSimulationCommand extends $Command<StartSimulationCommandInput, StartSimulationCommandOutput, SimSpaceWeaverClientResolvedConfig> {
|
|
@@ -33,6 +33,8 @@ export interface StopAppCommandOutput extends StopAppOutput, __MetadataBearer {
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new StopAppCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // {};
|
|
37
|
+
*
|
|
36
38
|
* ```
|
|
37
39
|
*
|
|
38
40
|
* @param StopAppCommandInput - {@link StopAppCommandInput}
|
|
@@ -56,6 +58,8 @@ export interface StopAppCommandOutput extends StopAppOutput, __MetadataBearer {
|
|
|
56
58
|
* @throws {@link ValidationException} (client fault)
|
|
57
59
|
* <p/>
|
|
58
60
|
*
|
|
61
|
+
* @throws {@link SimSpaceWeaverServiceException}
|
|
62
|
+
* <p>Base exception class for all service exceptions from SimSpaceWeaver service.</p>
|
|
59
63
|
*
|
|
60
64
|
*/
|
|
61
65
|
export declare class StopAppCommand extends $Command<StopAppCommandInput, StopAppCommandOutput, SimSpaceWeaverClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface StopClockCommandOutput extends StopClockOutput, __MetadataBeare
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new StopClockCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param StopClockCommandInput - {@link StopClockCommandInput}
|
|
@@ -54,6 +56,8 @@ export interface StopClockCommandOutput extends StopClockOutput, __MetadataBeare
|
|
|
54
56
|
* @throws {@link ValidationException} (client fault)
|
|
55
57
|
* <p/>
|
|
56
58
|
*
|
|
59
|
+
* @throws {@link SimSpaceWeaverServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from SimSpaceWeaver service.</p>
|
|
57
61
|
*
|
|
58
62
|
*/
|
|
59
63
|
export declare class StopClockCommand extends $Command<StopClockCommandInput, StopClockCommandOutput, SimSpaceWeaverClientResolvedConfig> {
|
|
@@ -35,6 +35,8 @@ export interface StopSimulationCommandOutput extends StopSimulationOutput, __Met
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new StopSimulationCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // {};
|
|
39
|
+
*
|
|
38
40
|
* ```
|
|
39
41
|
*
|
|
40
42
|
* @param StopSimulationCommandInput - {@link StopSimulationCommandInput}
|
|
@@ -58,6 +60,8 @@ export interface StopSimulationCommandOutput extends StopSimulationOutput, __Met
|
|
|
58
60
|
* @throws {@link ValidationException} (client fault)
|
|
59
61
|
* <p/>
|
|
60
62
|
*
|
|
63
|
+
* @throws {@link SimSpaceWeaverServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from SimSpaceWeaver service.</p>
|
|
61
65
|
*
|
|
62
66
|
*/
|
|
63
67
|
export declare class StopSimulationCommand extends $Command<StopSimulationCommandInput, StopSimulationCommandOutput, SimSpaceWeaverClientResolvedConfig> {
|
|
@@ -35,6 +35,8 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new TagResourceCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // {};
|
|
39
|
+
*
|
|
38
40
|
* ```
|
|
39
41
|
*
|
|
40
42
|
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
@@ -52,6 +54,8 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
|
|
|
52
54
|
* @throws {@link ValidationException} (client fault)
|
|
53
55
|
* <p/>
|
|
54
56
|
*
|
|
57
|
+
* @throws {@link SimSpaceWeaverServiceException}
|
|
58
|
+
* <p>Base exception class for all service exceptions from SimSpaceWeaver service.</p>
|
|
55
59
|
*
|
|
56
60
|
*/
|
|
57
61
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, SimSpaceWeaverClientResolvedConfig> {
|
|
@@ -35,6 +35,8 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new UntagResourceCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // {};
|
|
39
|
+
*
|
|
38
40
|
* ```
|
|
39
41
|
*
|
|
40
42
|
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
@@ -49,6 +51,8 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
|
|
|
49
51
|
* @throws {@link ValidationException} (client fault)
|
|
50
52
|
* <p/>
|
|
51
53
|
*
|
|
54
|
+
* @throws {@link SimSpaceWeaverServiceException}
|
|
55
|
+
* <p>Base exception class for all service exceptions from SimSpaceWeaver service.</p>
|
|
52
56
|
*
|
|
53
57
|
*/
|
|
54
58
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, SimSpaceWeaverClientResolvedConfig> {
|
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.327.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.
|
|
24
|
+
"@aws-sdk/client-sts": "3.327.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.327.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.325.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.325.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.325.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.327.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.325.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.325.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.325.0",
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.327.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.321.1",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.325.0",
|
|
50
50
|
"@aws-sdk/util-defaults-mode-node": "3.325.0",
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.327.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.327.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|
|
54
54
|
"@aws-sdk/util-user-agent-node": "3.310.0",
|
|
55
55
|
"@aws-sdk/util-utf8": "3.310.0",
|