@aws-sdk/client-migration-hub-refactor-spaces 3.99.0 → 3.109.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/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,33 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.109.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.108.1...v3.109.0) (2022-06-13)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-migration-hub-refactor-spaces
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.105.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.104.0...v3.105.0) (2022-06-06)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* **clients:** support recursion detection in Lambda ([#3654](https://github.com/aws/aws-sdk-js-v3/issues/3654)) ([ecfe46e](https://github.com/aws/aws-sdk-js-v3/commit/ecfe46ea1fd8b6e3812b75b3dc6c03554fb4b3fa))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [3.100.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.99.0...v3.100.0) (2022-05-26)
|
|
26
|
+
|
|
27
|
+
**Note:** Version bump only for package @aws-sdk/client-migration-hub-refactor-spaces
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
6
33
|
# [3.99.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.98.0...v3.99.0) (2022-05-25)
|
|
7
34
|
|
|
8
35
|
**Note:** Version bump only for package @aws-sdk/client-migration-hub-refactor-spaces
|
|
@@ -5,6 +5,7 @@ const config_resolver_1 = require("@aws-sdk/config-resolver");
|
|
|
5
5
|
const middleware_content_length_1 = require("@aws-sdk/middleware-content-length");
|
|
6
6
|
const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
|
|
7
7
|
const middleware_logger_1 = require("@aws-sdk/middleware-logger");
|
|
8
|
+
const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
|
|
8
9
|
const middleware_retry_1 = require("@aws-sdk/middleware-retry");
|
|
9
10
|
const middleware_signing_1 = require("@aws-sdk/middleware-signing");
|
|
10
11
|
const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
|
|
@@ -25,6 +26,7 @@ class MigrationHubRefactorSpacesClient extends smithy_client_1.Client {
|
|
|
25
26
|
this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
|
|
26
27
|
this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
|
|
27
28
|
this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
|
|
29
|
+
this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
|
|
28
30
|
this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
|
|
29
31
|
this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
|
|
30
32
|
}
|
|
@@ -3,6 +3,7 @@ import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-re
|
|
|
3
3
|
import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
|
|
4
4
|
import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
|
|
5
5
|
import { getLoggerPlugin } from "@aws-sdk/middleware-logger";
|
|
6
|
+
import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection";
|
|
6
7
|
import { getRetryPlugin, resolveRetryConfig } from "@aws-sdk/middleware-retry";
|
|
7
8
|
import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-signing";
|
|
8
9
|
import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
|
|
@@ -25,6 +26,7 @@ var MigrationHubRefactorSpacesClient = (function (_super) {
|
|
|
25
26
|
_this.middlewareStack.use(getContentLengthPlugin(_this.config));
|
|
26
27
|
_this.middlewareStack.use(getHostHeaderPlugin(_this.config));
|
|
27
28
|
_this.middlewareStack.use(getLoggerPlugin(_this.config));
|
|
29
|
+
_this.middlewareStack.use(getRecursionDetectionPlugin(_this.config));
|
|
28
30
|
_this.middlewareStack.use(getAwsAuthPlugin(_this.config));
|
|
29
31
|
_this.middlewareStack.use(getUserAgentPlugin(_this.config));
|
|
30
32
|
return _this;
|
|
@@ -189,9 +189,7 @@ export interface ErrorResponse {
|
|
|
189
189
|
/**
|
|
190
190
|
* <p>Additional details about the error. </p>
|
|
191
191
|
*/
|
|
192
|
-
AdditionalDetails?:
|
|
193
|
-
[key: string]: string;
|
|
194
|
-
};
|
|
192
|
+
AdditionalDetails?: Record<string, string>;
|
|
195
193
|
}
|
|
196
194
|
export declare namespace ErrorResponse {
|
|
197
195
|
/**
|
|
@@ -250,9 +248,7 @@ export interface ApplicationSummary {
|
|
|
250
248
|
/**
|
|
251
249
|
* <p>The tags assigned to the application. </p>
|
|
252
250
|
*/
|
|
253
|
-
Tags?:
|
|
254
|
-
[key: string]: string;
|
|
255
|
-
};
|
|
251
|
+
Tags?: Record<string, string>;
|
|
256
252
|
/**
|
|
257
253
|
* <p>Any error associated with the application resource. </p>
|
|
258
254
|
*/
|
|
@@ -317,9 +313,7 @@ export interface CreateApplicationRequest {
|
|
|
317
313
|
/**
|
|
318
314
|
* <p>The tags to assign to the application. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key-value pair.</p>
|
|
319
315
|
*/
|
|
320
|
-
Tags?:
|
|
321
|
-
[key: string]: string;
|
|
322
|
-
};
|
|
316
|
+
Tags?: Record<string, string>;
|
|
323
317
|
/**
|
|
324
318
|
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
325
319
|
* request.</p>
|
|
@@ -383,9 +377,7 @@ export interface CreateApplicationResponse {
|
|
|
383
377
|
/**
|
|
384
378
|
* <p>The tags assigned to the application. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key-value pair. </p>
|
|
385
379
|
*/
|
|
386
|
-
Tags?:
|
|
387
|
-
[key: string]: string;
|
|
388
|
-
};
|
|
380
|
+
Tags?: Record<string, string>;
|
|
389
381
|
/**
|
|
390
382
|
* <p>A timestamp that indicates when the application was last updated. </p>
|
|
391
383
|
*/
|
|
@@ -521,9 +513,7 @@ export interface CreateEnvironmentRequest {
|
|
|
521
513
|
/**
|
|
522
514
|
* <p>The tags to assign to the environment. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key-value pair.</p>
|
|
523
515
|
*/
|
|
524
|
-
Tags?:
|
|
525
|
-
[key: string]: string;
|
|
526
|
-
};
|
|
516
|
+
Tags?: Record<string, string>;
|
|
527
517
|
/**
|
|
528
518
|
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
529
519
|
* request.</p>
|
|
@@ -574,9 +564,7 @@ export interface CreateEnvironmentResponse {
|
|
|
574
564
|
/**
|
|
575
565
|
* <p>The tags assigned to the created environment. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key-value pair..</p>
|
|
576
566
|
*/
|
|
577
|
-
Tags?:
|
|
578
|
-
[key: string]: string;
|
|
579
|
-
};
|
|
567
|
+
Tags?: Record<string, string>;
|
|
580
568
|
/**
|
|
581
569
|
* <p>A timestamp that indicates when the environment was last updated. </p>
|
|
582
570
|
*/
|
|
@@ -668,9 +656,7 @@ export interface CreateRouteRequest {
|
|
|
668
656
|
/**
|
|
669
657
|
* <p>The tags to assign to the route. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key-value pair.. </p>
|
|
670
658
|
*/
|
|
671
|
-
Tags?:
|
|
672
|
-
[key: string]: string;
|
|
673
|
-
};
|
|
659
|
+
Tags?: Record<string, string>;
|
|
674
660
|
/**
|
|
675
661
|
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
676
662
|
* request.</p>
|
|
@@ -737,9 +723,7 @@ export interface CreateRouteResponse {
|
|
|
737
723
|
/**
|
|
738
724
|
* <p>The tags assigned to the created route. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key-value pair. </p>
|
|
739
725
|
*/
|
|
740
|
-
Tags?:
|
|
741
|
-
[key: string]: string;
|
|
742
|
-
};
|
|
726
|
+
Tags?: Record<string, string>;
|
|
743
727
|
/**
|
|
744
728
|
* <p>A timestamp that indicates when the route was last updated. </p>
|
|
745
729
|
*/
|
|
@@ -834,9 +818,7 @@ export interface CreateServiceRequest {
|
|
|
834
818
|
/**
|
|
835
819
|
* <p>The tags to assign to the service. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key-value pair.. </p>
|
|
836
820
|
*/
|
|
837
|
-
Tags?:
|
|
838
|
-
[key: string]: string;
|
|
839
|
-
};
|
|
821
|
+
Tags?: Record<string, string>;
|
|
840
822
|
/**
|
|
841
823
|
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
842
824
|
* request.</p>
|
|
@@ -911,9 +893,7 @@ export interface CreateServiceResponse {
|
|
|
911
893
|
/**
|
|
912
894
|
* <p>The tags assigned to the created service. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key-value pair.. </p>
|
|
913
895
|
*/
|
|
914
|
-
Tags?:
|
|
915
|
-
[key: string]: string;
|
|
916
|
-
};
|
|
896
|
+
Tags?: Record<string, string>;
|
|
917
897
|
/**
|
|
918
898
|
* <p>A timestamp that indicates when the service was last updated. </p>
|
|
919
899
|
*/
|
|
@@ -1190,9 +1170,7 @@ export interface EnvironmentSummary {
|
|
|
1190
1170
|
/**
|
|
1191
1171
|
* <p>The tags assigned to the environment. </p>
|
|
1192
1172
|
*/
|
|
1193
|
-
Tags?:
|
|
1194
|
-
[key: string]: string;
|
|
1195
|
-
};
|
|
1173
|
+
Tags?: Record<string, string>;
|
|
1196
1174
|
/**
|
|
1197
1175
|
* <p>Any error associated with the environment resource. </p>
|
|
1198
1176
|
*/
|
|
@@ -1313,9 +1291,7 @@ export interface GetApplicationResponse {
|
|
|
1313
1291
|
/**
|
|
1314
1292
|
* <p>The tags assigned to the application. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key-value pair. </p>
|
|
1315
1293
|
*/
|
|
1316
|
-
Tags?:
|
|
1317
|
-
[key: string]: string;
|
|
1318
|
-
};
|
|
1294
|
+
Tags?: Record<string, string>;
|
|
1319
1295
|
/**
|
|
1320
1296
|
* <p>Any error associated with the application resource. </p>
|
|
1321
1297
|
*/
|
|
@@ -1383,9 +1359,7 @@ export interface GetEnvironmentResponse {
|
|
|
1383
1359
|
/**
|
|
1384
1360
|
* <p>The tags to assign to the environment. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key-value pair. </p>
|
|
1385
1361
|
*/
|
|
1386
|
-
Tags?:
|
|
1387
|
-
[key: string]: string;
|
|
1388
|
-
};
|
|
1362
|
+
Tags?: Record<string, string>;
|
|
1389
1363
|
/**
|
|
1390
1364
|
* <p>Any error associated with the environment resource. </p>
|
|
1391
1365
|
*/
|
|
@@ -1507,9 +1481,7 @@ export interface GetRouteResponse {
|
|
|
1507
1481
|
/**
|
|
1508
1482
|
* <p>A mapping of Amazon API Gateway path resources to resource IDs. </p>
|
|
1509
1483
|
*/
|
|
1510
|
-
PathResourceToId?:
|
|
1511
|
-
[key: string]: string;
|
|
1512
|
-
};
|
|
1484
|
+
PathResourceToId?: Record<string, string>;
|
|
1513
1485
|
/**
|
|
1514
1486
|
* <p>The current state of the route. </p>
|
|
1515
1487
|
*/
|
|
@@ -1517,9 +1489,7 @@ export interface GetRouteResponse {
|
|
|
1517
1489
|
/**
|
|
1518
1490
|
* <p>The tags assigned to the route. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key-value pair. </p>
|
|
1519
1491
|
*/
|
|
1520
|
-
Tags?:
|
|
1521
|
-
[key: string]: string;
|
|
1522
|
-
};
|
|
1492
|
+
Tags?: Record<string, string>;
|
|
1523
1493
|
/**
|
|
1524
1494
|
* <p>Any error associated with the route resource. </p>
|
|
1525
1495
|
*/
|
|
@@ -1653,9 +1623,7 @@ export interface GetServiceResponse {
|
|
|
1653
1623
|
/**
|
|
1654
1624
|
* <p>The tags assigned to the service. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key-value pair. </p>
|
|
1655
1625
|
*/
|
|
1656
|
-
Tags?:
|
|
1657
|
-
[key: string]: string;
|
|
1658
|
-
};
|
|
1626
|
+
Tags?: Record<string, string>;
|
|
1659
1627
|
/**
|
|
1660
1628
|
* <p>Any error associated with the service resource. </p>
|
|
1661
1629
|
*/
|
|
@@ -1889,9 +1857,7 @@ export interface RouteSummary {
|
|
|
1889
1857
|
/**
|
|
1890
1858
|
* <p>A mapping of Amazon API Gateway path resources to resource IDs. </p>
|
|
1891
1859
|
*/
|
|
1892
|
-
PathResourceToId?:
|
|
1893
|
-
[key: string]: string;
|
|
1894
|
-
};
|
|
1860
|
+
PathResourceToId?: Record<string, string>;
|
|
1895
1861
|
/**
|
|
1896
1862
|
* <p>The current state of the route. </p>
|
|
1897
1863
|
*/
|
|
@@ -1899,9 +1865,7 @@ export interface RouteSummary {
|
|
|
1899
1865
|
/**
|
|
1900
1866
|
* <p>The tags assigned to the route. </p>
|
|
1901
1867
|
*/
|
|
1902
|
-
Tags?:
|
|
1903
|
-
[key: string]: string;
|
|
1904
|
-
};
|
|
1868
|
+
Tags?: Record<string, string>;
|
|
1905
1869
|
/**
|
|
1906
1870
|
* <p>Any error associated with the route resource. </p>
|
|
1907
1871
|
*/
|
|
@@ -2045,9 +2009,7 @@ export interface ServiceSummary {
|
|
|
2045
2009
|
/**
|
|
2046
2010
|
* <p>The tags assigned to the service. </p>
|
|
2047
2011
|
*/
|
|
2048
|
-
Tags?:
|
|
2049
|
-
[key: string]: string;
|
|
2050
|
-
};
|
|
2012
|
+
Tags?: Record<string, string>;
|
|
2051
2013
|
/**
|
|
2052
2014
|
* <p>Any error associated with the service resource. </p>
|
|
2053
2015
|
*/
|
|
@@ -2099,9 +2061,7 @@ export interface ListTagsForResourceResponse {
|
|
|
2099
2061
|
/**
|
|
2100
2062
|
* <p>The list of tags assigned to the resource. </p>
|
|
2101
2063
|
*/
|
|
2102
|
-
Tags?:
|
|
2103
|
-
[key: string]: string;
|
|
2104
|
-
};
|
|
2064
|
+
Tags?: Record<string, string>;
|
|
2105
2065
|
}
|
|
2106
2066
|
export declare namespace ListTagsForResourceResponse {
|
|
2107
2067
|
/**
|
|
@@ -2142,9 +2102,7 @@ export interface TagResourceRequest {
|
|
|
2142
2102
|
/**
|
|
2143
2103
|
* <p>The new or modified tags for the resource. </p>
|
|
2144
2104
|
*/
|
|
2145
|
-
Tags:
|
|
2146
|
-
[key: string]: string;
|
|
2147
|
-
} | undefined;
|
|
2105
|
+
Tags: Record<string, string> | undefined;
|
|
2148
2106
|
}
|
|
2149
2107
|
export declare namespace TagResourceRequest {
|
|
2150
2108
|
/**
|
|
@@ -120,9 +120,7 @@ export interface ErrorResponse {
|
|
|
120
120
|
|
|
121
121
|
ResourceType?: ErrorResourceType | string;
|
|
122
122
|
|
|
123
|
-
AdditionalDetails?:
|
|
124
|
-
[key: string]: string;
|
|
125
|
-
};
|
|
123
|
+
AdditionalDetails?: Record<string, string>;
|
|
126
124
|
}
|
|
127
125
|
export declare namespace ErrorResponse {
|
|
128
126
|
|
|
@@ -154,9 +152,7 @@ export interface ApplicationSummary {
|
|
|
154
152
|
|
|
155
153
|
State?: ApplicationState | string;
|
|
156
154
|
|
|
157
|
-
Tags?:
|
|
158
|
-
[key: string]: string;
|
|
159
|
-
};
|
|
155
|
+
Tags?: Record<string, string>;
|
|
160
156
|
|
|
161
157
|
Error?: ErrorResponse;
|
|
162
158
|
|
|
@@ -192,9 +188,7 @@ export interface CreateApplicationRequest {
|
|
|
192
188
|
|
|
193
189
|
ApiGatewayProxy?: ApiGatewayProxyInput;
|
|
194
190
|
|
|
195
|
-
Tags?:
|
|
196
|
-
[key: string]: string;
|
|
197
|
-
};
|
|
191
|
+
Tags?: Record<string, string>;
|
|
198
192
|
|
|
199
193
|
ClientToken?: string;
|
|
200
194
|
}
|
|
@@ -224,9 +218,7 @@ export interface CreateApplicationResponse {
|
|
|
224
218
|
|
|
225
219
|
State?: ApplicationState | string;
|
|
226
220
|
|
|
227
|
-
Tags?:
|
|
228
|
-
[key: string]: string;
|
|
229
|
-
};
|
|
221
|
+
Tags?: Record<string, string>;
|
|
230
222
|
|
|
231
223
|
LastUpdatedTime?: Date;
|
|
232
224
|
|
|
@@ -305,9 +297,7 @@ export interface CreateEnvironmentRequest {
|
|
|
305
297
|
|
|
306
298
|
NetworkFabricType: NetworkFabricType | string | undefined;
|
|
307
299
|
|
|
308
|
-
Tags?:
|
|
309
|
-
[key: string]: string;
|
|
310
|
-
};
|
|
300
|
+
Tags?: Record<string, string>;
|
|
311
301
|
|
|
312
302
|
ClientToken?: string;
|
|
313
303
|
}
|
|
@@ -337,9 +327,7 @@ export interface CreateEnvironmentResponse {
|
|
|
337
327
|
|
|
338
328
|
State?: EnvironmentState | string;
|
|
339
329
|
|
|
340
|
-
Tags?:
|
|
341
|
-
[key: string]: string;
|
|
342
|
-
};
|
|
330
|
+
Tags?: Record<string, string>;
|
|
343
331
|
|
|
344
332
|
LastUpdatedTime?: Date;
|
|
345
333
|
|
|
@@ -392,9 +380,7 @@ export interface CreateRouteRequest {
|
|
|
392
380
|
|
|
393
381
|
UriPathRoute?: UriPathRouteInput;
|
|
394
382
|
|
|
395
|
-
Tags?:
|
|
396
|
-
[key: string]: string;
|
|
397
|
-
};
|
|
383
|
+
Tags?: Record<string, string>;
|
|
398
384
|
|
|
399
385
|
ClientToken?: string;
|
|
400
386
|
}
|
|
@@ -430,9 +416,7 @@ export interface CreateRouteResponse {
|
|
|
430
416
|
|
|
431
417
|
State?: RouteState | string;
|
|
432
418
|
|
|
433
|
-
Tags?:
|
|
434
|
-
[key: string]: string;
|
|
435
|
-
};
|
|
419
|
+
Tags?: Record<string, string>;
|
|
436
420
|
|
|
437
421
|
LastUpdatedTime?: Date;
|
|
438
422
|
|
|
@@ -484,9 +468,7 @@ export interface CreateServiceRequest {
|
|
|
484
468
|
|
|
485
469
|
LambdaEndpoint?: LambdaEndpointInput;
|
|
486
470
|
|
|
487
|
-
Tags?:
|
|
488
|
-
[key: string]: string;
|
|
489
|
-
};
|
|
471
|
+
Tags?: Record<string, string>;
|
|
490
472
|
|
|
491
473
|
ClientToken?: string;
|
|
492
474
|
}
|
|
@@ -528,9 +510,7 @@ export interface CreateServiceResponse {
|
|
|
528
510
|
|
|
529
511
|
State?: ServiceState | string;
|
|
530
512
|
|
|
531
|
-
Tags?:
|
|
532
|
-
[key: string]: string;
|
|
533
|
-
};
|
|
513
|
+
Tags?: Record<string, string>;
|
|
534
514
|
|
|
535
515
|
LastUpdatedTime?: Date;
|
|
536
516
|
|
|
@@ -687,9 +667,7 @@ export interface EnvironmentSummary {
|
|
|
687
667
|
|
|
688
668
|
State?: EnvironmentState | string;
|
|
689
669
|
|
|
690
|
-
Tags?:
|
|
691
|
-
[key: string]: string;
|
|
692
|
-
};
|
|
670
|
+
Tags?: Record<string, string>;
|
|
693
671
|
|
|
694
672
|
Error?: ErrorResponse;
|
|
695
673
|
|
|
@@ -754,9 +732,7 @@ export interface GetApplicationResponse {
|
|
|
754
732
|
|
|
755
733
|
State?: ApplicationState | string;
|
|
756
734
|
|
|
757
|
-
Tags?:
|
|
758
|
-
[key: string]: string;
|
|
759
|
-
};
|
|
735
|
+
Tags?: Record<string, string>;
|
|
760
736
|
|
|
761
737
|
Error?: ErrorResponse;
|
|
762
738
|
|
|
@@ -794,9 +770,7 @@ export interface GetEnvironmentResponse {
|
|
|
794
770
|
|
|
795
771
|
State?: EnvironmentState | string;
|
|
796
772
|
|
|
797
|
-
Tags?:
|
|
798
|
-
[key: string]: string;
|
|
799
|
-
};
|
|
773
|
+
Tags?: Record<string, string>;
|
|
800
774
|
|
|
801
775
|
Error?: ErrorResponse;
|
|
802
776
|
|
|
@@ -860,15 +834,11 @@ export interface GetRouteResponse {
|
|
|
860
834
|
|
|
861
835
|
IncludeChildPaths?: boolean;
|
|
862
836
|
|
|
863
|
-
PathResourceToId?:
|
|
864
|
-
[key: string]: string;
|
|
865
|
-
};
|
|
837
|
+
PathResourceToId?: Record<string, string>;
|
|
866
838
|
|
|
867
839
|
State?: RouteState | string;
|
|
868
840
|
|
|
869
|
-
Tags?:
|
|
870
|
-
[key: string]: string;
|
|
871
|
-
};
|
|
841
|
+
Tags?: Record<string, string>;
|
|
872
842
|
|
|
873
843
|
Error?: ErrorResponse;
|
|
874
844
|
|
|
@@ -940,9 +910,7 @@ export interface GetServiceResponse {
|
|
|
940
910
|
|
|
941
911
|
State?: ServiceState | string;
|
|
942
912
|
|
|
943
|
-
Tags?:
|
|
944
|
-
[key: string]: string;
|
|
945
|
-
};
|
|
913
|
+
Tags?: Record<string, string>;
|
|
946
914
|
|
|
947
915
|
Error?: ErrorResponse;
|
|
948
916
|
|
|
@@ -1074,15 +1042,11 @@ export interface RouteSummary {
|
|
|
1074
1042
|
|
|
1075
1043
|
IncludeChildPaths?: boolean;
|
|
1076
1044
|
|
|
1077
|
-
PathResourceToId?:
|
|
1078
|
-
[key: string]: string;
|
|
1079
|
-
};
|
|
1045
|
+
PathResourceToId?: Record<string, string>;
|
|
1080
1046
|
|
|
1081
1047
|
State?: RouteState | string;
|
|
1082
1048
|
|
|
1083
|
-
Tags?:
|
|
1084
|
-
[key: string]: string;
|
|
1085
|
-
};
|
|
1049
|
+
Tags?: Record<string, string>;
|
|
1086
1050
|
|
|
1087
1051
|
Error?: ErrorResponse;
|
|
1088
1052
|
|
|
@@ -1158,9 +1122,7 @@ export interface ServiceSummary {
|
|
|
1158
1122
|
|
|
1159
1123
|
State?: ServiceState | string;
|
|
1160
1124
|
|
|
1161
|
-
Tags?:
|
|
1162
|
-
[key: string]: string;
|
|
1163
|
-
};
|
|
1125
|
+
Tags?: Record<string, string>;
|
|
1164
1126
|
|
|
1165
1127
|
Error?: ErrorResponse;
|
|
1166
1128
|
|
|
@@ -1192,9 +1154,7 @@ export declare namespace ListTagsForResourceRequest {
|
|
|
1192
1154
|
}
|
|
1193
1155
|
export interface ListTagsForResourceResponse {
|
|
1194
1156
|
|
|
1195
|
-
Tags?:
|
|
1196
|
-
[key: string]: string;
|
|
1197
|
-
};
|
|
1157
|
+
Tags?: Record<string, string>;
|
|
1198
1158
|
}
|
|
1199
1159
|
export declare namespace ListTagsForResourceResponse {
|
|
1200
1160
|
|
|
@@ -1220,9 +1180,7 @@ export interface TagResourceRequest {
|
|
|
1220
1180
|
|
|
1221
1181
|
ResourceArn: string | undefined;
|
|
1222
1182
|
|
|
1223
|
-
Tags:
|
|
1224
|
-
[key: string]: string;
|
|
1225
|
-
} | undefined;
|
|
1183
|
+
Tags: Record<string, string> | undefined;
|
|
1226
1184
|
}
|
|
1227
1185
|
export declare namespace TagResourceRequest {
|
|
1228
1186
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-migration-hub-refactor-spaces",
|
|
3
3
|
"description": "AWS SDK for JavaScript Migration Hub Refactor Spaces Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.109.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",
|
|
@@ -18,36 +18,37 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-
|
|
31
|
-
"@aws-sdk/middleware-
|
|
32
|
-
"@aws-sdk/middleware-
|
|
33
|
-
"@aws-sdk/middleware-
|
|
34
|
-
"@aws-sdk/middleware-
|
|
35
|
-
"@aws-sdk/
|
|
36
|
-
"@aws-sdk/node-
|
|
37
|
-
"@aws-sdk/
|
|
38
|
-
"@aws-sdk/
|
|
39
|
-
"@aws-sdk/
|
|
40
|
-
"@aws-sdk/
|
|
41
|
-
"@aws-sdk/
|
|
21
|
+
"@aws-sdk/client-sts": "3.109.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.109.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.109.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.109.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.109.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.109.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.109.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.109.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.109.0",
|
|
30
|
+
"@aws-sdk/middleware-recursion-detection": "3.109.0",
|
|
31
|
+
"@aws-sdk/middleware-retry": "3.109.0",
|
|
32
|
+
"@aws-sdk/middleware-serde": "3.109.0",
|
|
33
|
+
"@aws-sdk/middleware-signing": "3.109.0",
|
|
34
|
+
"@aws-sdk/middleware-stack": "3.109.0",
|
|
35
|
+
"@aws-sdk/middleware-user-agent": "3.109.0",
|
|
36
|
+
"@aws-sdk/node-config-provider": "3.109.0",
|
|
37
|
+
"@aws-sdk/node-http-handler": "3.109.0",
|
|
38
|
+
"@aws-sdk/protocol-http": "3.109.0",
|
|
39
|
+
"@aws-sdk/smithy-client": "3.109.0",
|
|
40
|
+
"@aws-sdk/types": "3.109.0",
|
|
41
|
+
"@aws-sdk/url-parser": "3.109.0",
|
|
42
|
+
"@aws-sdk/util-base64-browser": "3.109.0",
|
|
42
43
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
43
44
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
44
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
49
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
50
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.109.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.109.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-browser": "3.109.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-node": "3.109.0",
|
|
50
|
+
"@aws-sdk/util-utf8-browser": "3.109.0",
|
|
51
|
+
"@aws-sdk/util-utf8-node": "3.109.0",
|
|
51
52
|
"tslib": "^2.3.1",
|
|
52
53
|
"uuid": "^8.3.2"
|
|
53
54
|
},
|