@aws-sdk/client-resiliencehub 3.696.0 → 3.698.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/README.md +24 -0
- package/dist-cjs/index.js +182 -0
- package/dist-es/Resiliencehub.js +6 -0
- package/dist-es/commands/DescribeMetricsExportCommand.js +22 -0
- package/dist-es/commands/ListMetricsCommand.js +22 -0
- package/dist-es/commands/StartMetricsExportCommand.js +22 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +21 -0
- package/dist-es/pagination/ListMetricsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +92 -0
- package/dist-types/Resiliencehub.d.ts +23 -0
- package/dist-types/ResiliencehubClient.d.ts +5 -2
- package/dist-types/commands/DescribeMetricsExportCommand.d.ts +95 -0
- package/dist-types/commands/ListAppAssessmentComplianceDriftsCommand.d.ts +1 -1
- package/dist-types/commands/ListAppAssessmentResourceDriftsCommand.d.ts +1 -1
- package/dist-types/commands/ListMetricsCommand.d.ts +112 -0
- package/dist-types/commands/StartMetricsExportCommand.d.ts +98 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +239 -27
- package/dist-types/pagination/ListMetricsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
- package/dist-types/ts3.4/Resiliencehub.d.ts +53 -0
- package/dist-types/ts3.4/ResiliencehubClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/DescribeMetricsExportCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListMetricsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/StartMetricsExportCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +69 -0
- package/dist-types/ts3.4/pagination/ListMetricsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
- package/package.json +1 -1
|
@@ -137,6 +137,10 @@ import {
|
|
|
137
137
|
DescribeDraftAppVersionResourcesImportStatusCommandInput,
|
|
138
138
|
DescribeDraftAppVersionResourcesImportStatusCommandOutput,
|
|
139
139
|
} from "./commands/DescribeDraftAppVersionResourcesImportStatusCommand";
|
|
140
|
+
import {
|
|
141
|
+
DescribeMetricsExportCommandInput,
|
|
142
|
+
DescribeMetricsExportCommandOutput,
|
|
143
|
+
} from "./commands/DescribeMetricsExportCommand";
|
|
140
144
|
import {
|
|
141
145
|
DescribeResiliencyPolicyCommandInput,
|
|
142
146
|
DescribeResiliencyPolicyCommandOutput,
|
|
@@ -197,6 +201,10 @@ import {
|
|
|
197
201
|
ListAppVersionsCommandInput,
|
|
198
202
|
ListAppVersionsCommandOutput,
|
|
199
203
|
} from "./commands/ListAppVersionsCommand";
|
|
204
|
+
import {
|
|
205
|
+
ListMetricsCommandInput,
|
|
206
|
+
ListMetricsCommandOutput,
|
|
207
|
+
} from "./commands/ListMetricsCommand";
|
|
200
208
|
import {
|
|
201
209
|
ListRecommendationTemplatesCommandInput,
|
|
202
210
|
ListRecommendationTemplatesCommandOutput,
|
|
@@ -253,6 +261,10 @@ import {
|
|
|
253
261
|
StartAppAssessmentCommandInput,
|
|
254
262
|
StartAppAssessmentCommandOutput,
|
|
255
263
|
} from "./commands/StartAppAssessmentCommand";
|
|
264
|
+
import {
|
|
265
|
+
StartMetricsExportCommandInput,
|
|
266
|
+
StartMetricsExportCommandOutput,
|
|
267
|
+
} from "./commands/StartMetricsExportCommand";
|
|
256
268
|
import {
|
|
257
269
|
StartResourceGroupingRecommendationTaskCommandInput,
|
|
258
270
|
StartResourceGroupingRecommendationTaskCommandOutput,
|
|
@@ -316,6 +328,7 @@ export type ServiceInputTypes =
|
|
|
316
328
|
| DescribeAppVersionResourcesResolutionStatusCommandInput
|
|
317
329
|
| DescribeAppVersionTemplateCommandInput
|
|
318
330
|
| DescribeDraftAppVersionResourcesImportStatusCommandInput
|
|
331
|
+
| DescribeMetricsExportCommandInput
|
|
319
332
|
| DescribeResiliencyPolicyCommandInput
|
|
320
333
|
| DescribeResourceGroupingRecommendationTaskCommandInput
|
|
321
334
|
| ImportResourcesToDraftAppVersionCommandInput
|
|
@@ -331,6 +344,7 @@ export type ServiceInputTypes =
|
|
|
331
344
|
| ListAppVersionResourcesCommandInput
|
|
332
345
|
| ListAppVersionsCommandInput
|
|
333
346
|
| ListAppsCommandInput
|
|
347
|
+
| ListMetricsCommandInput
|
|
334
348
|
| ListRecommendationTemplatesCommandInput
|
|
335
349
|
| ListResiliencyPoliciesCommandInput
|
|
336
350
|
| ListResourceGroupingRecommendationsCommandInput
|
|
@@ -345,6 +359,7 @@ export type ServiceInputTypes =
|
|
|
345
359
|
| RemoveDraftAppVersionResourceMappingsCommandInput
|
|
346
360
|
| ResolveAppVersionResourcesCommandInput
|
|
347
361
|
| StartAppAssessmentCommandInput
|
|
362
|
+
| StartMetricsExportCommandInput
|
|
348
363
|
| StartResourceGroupingRecommendationTaskCommandInput
|
|
349
364
|
| TagResourceCommandInput
|
|
350
365
|
| UntagResourceCommandInput
|
|
@@ -377,6 +392,7 @@ export type ServiceOutputTypes =
|
|
|
377
392
|
| DescribeAppVersionResourcesResolutionStatusCommandOutput
|
|
378
393
|
| DescribeAppVersionTemplateCommandOutput
|
|
379
394
|
| DescribeDraftAppVersionResourcesImportStatusCommandOutput
|
|
395
|
+
| DescribeMetricsExportCommandOutput
|
|
380
396
|
| DescribeResiliencyPolicyCommandOutput
|
|
381
397
|
| DescribeResourceGroupingRecommendationTaskCommandOutput
|
|
382
398
|
| ImportResourcesToDraftAppVersionCommandOutput
|
|
@@ -392,6 +408,7 @@ export type ServiceOutputTypes =
|
|
|
392
408
|
| ListAppVersionResourcesCommandOutput
|
|
393
409
|
| ListAppVersionsCommandOutput
|
|
394
410
|
| ListAppsCommandOutput
|
|
411
|
+
| ListMetricsCommandOutput
|
|
395
412
|
| ListRecommendationTemplatesCommandOutput
|
|
396
413
|
| ListResiliencyPoliciesCommandOutput
|
|
397
414
|
| ListResourceGroupingRecommendationsCommandOutput
|
|
@@ -406,6 +423,7 @@ export type ServiceOutputTypes =
|
|
|
406
423
|
| RemoveDraftAppVersionResourceMappingsCommandOutput
|
|
407
424
|
| ResolveAppVersionResourcesCommandOutput
|
|
408
425
|
| StartAppAssessmentCommandOutput
|
|
426
|
+
| StartMetricsExportCommandOutput
|
|
409
427
|
| StartResourceGroupingRecommendationTaskCommandOutput
|
|
410
428
|
| TagResourceCommandOutput
|
|
411
429
|
| UntagResourceCommandOutput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DescribeMetricsExportRequest,
|
|
5
|
+
DescribeMetricsExportResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ResiliencehubClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../ResiliencehubClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DescribeMetricsExportCommandInput
|
|
15
|
+
extends DescribeMetricsExportRequest {}
|
|
16
|
+
export interface DescribeMetricsExportCommandOutput
|
|
17
|
+
extends DescribeMetricsExportResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DescribeMetricsExportCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DescribeMetricsExportCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DescribeMetricsExportCommandInput,
|
|
24
|
+
DescribeMetricsExportCommandOutput,
|
|
25
|
+
ResiliencehubClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: DescribeMetricsExportCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DescribeMetricsExportCommandInput,
|
|
33
|
+
DescribeMetricsExportCommandOutput,
|
|
34
|
+
ResiliencehubClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DescribeMetricsExportCommand extends DescribeMetricsExportCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DescribeMetricsExportRequest;
|
|
44
|
+
output: DescribeMetricsExportResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DescribeMetricsExportCommandInput;
|
|
48
|
+
output: DescribeMetricsExportCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { ListMetricsRequest, ListMetricsResponse } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
ResiliencehubClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../ResiliencehubClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface ListMetricsCommandInput extends ListMetricsRequest {}
|
|
12
|
+
export interface ListMetricsCommandOutput
|
|
13
|
+
extends ListMetricsResponse,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const ListMetricsCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: ListMetricsCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
ListMetricsCommandInput,
|
|
20
|
+
ListMetricsCommandOutput,
|
|
21
|
+
ResiliencehubClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
...[input]: [] | [ListMetricsCommandInput]
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
ListMetricsCommandInput,
|
|
29
|
+
ListMetricsCommandOutput,
|
|
30
|
+
ResiliencehubClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class ListMetricsCommand extends ListMetricsCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: ListMetricsRequest;
|
|
40
|
+
output: ListMetricsResponse;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: ListMetricsCommandInput;
|
|
44
|
+
output: ListMetricsCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
StartMetricsExportRequest,
|
|
5
|
+
StartMetricsExportResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ResiliencehubClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../ResiliencehubClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface StartMetricsExportCommandInput
|
|
15
|
+
extends StartMetricsExportRequest {}
|
|
16
|
+
export interface StartMetricsExportCommandOutput
|
|
17
|
+
extends StartMetricsExportResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const StartMetricsExportCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: StartMetricsExportCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
StartMetricsExportCommandInput,
|
|
24
|
+
StartMetricsExportCommandOutput,
|
|
25
|
+
ResiliencehubClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [StartMetricsExportCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
StartMetricsExportCommandInput,
|
|
33
|
+
StartMetricsExportCommandOutput,
|
|
34
|
+
ResiliencehubClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class StartMetricsExportCommand extends StartMetricsExportCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: StartMetricsExportRequest;
|
|
44
|
+
output: StartMetricsExportResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: StartMetricsExportCommandInput;
|
|
48
|
+
output: StartMetricsExportCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -21,6 +21,7 @@ export * from "./DescribeAppVersionResourceCommand";
|
|
|
21
21
|
export * from "./DescribeAppVersionResourcesResolutionStatusCommand";
|
|
22
22
|
export * from "./DescribeAppVersionTemplateCommand";
|
|
23
23
|
export * from "./DescribeDraftAppVersionResourcesImportStatusCommand";
|
|
24
|
+
export * from "./DescribeMetricsExportCommand";
|
|
24
25
|
export * from "./DescribeResiliencyPolicyCommand";
|
|
25
26
|
export * from "./DescribeResourceGroupingRecommendationTaskCommand";
|
|
26
27
|
export * from "./ImportResourcesToDraftAppVersionCommand";
|
|
@@ -36,6 +37,7 @@ export * from "./ListAppVersionResourceMappingsCommand";
|
|
|
36
37
|
export * from "./ListAppVersionResourcesCommand";
|
|
37
38
|
export * from "./ListAppVersionsCommand";
|
|
38
39
|
export * from "./ListAppsCommand";
|
|
40
|
+
export * from "./ListMetricsCommand";
|
|
39
41
|
export * from "./ListRecommendationTemplatesCommand";
|
|
40
42
|
export * from "./ListResiliencyPoliciesCommand";
|
|
41
43
|
export * from "./ListResourceGroupingRecommendationsCommand";
|
|
@@ -50,6 +52,7 @@ export * from "./RejectResourceGroupingRecommendationsCommand";
|
|
|
50
52
|
export * from "./RemoveDraftAppVersionResourceMappingsCommand";
|
|
51
53
|
export * from "./ResolveAppVersionResourcesCommand";
|
|
52
54
|
export * from "./StartAppAssessmentCommand";
|
|
55
|
+
export * from "./StartMetricsExportCommand";
|
|
53
56
|
export * from "./StartResourceGroupingRecommendationTaskCommand";
|
|
54
57
|
export * from "./TagResourceCommand";
|
|
55
58
|
export * from "./UntagResourceCommand";
|
|
@@ -781,6 +781,23 @@ export interface DescribeDraftAppVersionResourcesImportStatusResponse {
|
|
|
781
781
|
errorMessage?: string | undefined;
|
|
782
782
|
errorDetails?: ErrorDetail[] | undefined;
|
|
783
783
|
}
|
|
784
|
+
export interface DescribeMetricsExportRequest {
|
|
785
|
+
metricsExportId: string | undefined;
|
|
786
|
+
}
|
|
787
|
+
export declare const MetricsExportStatusType: {
|
|
788
|
+
readonly FAILED: "Failed";
|
|
789
|
+
readonly IN_PROGRESS: "InProgress";
|
|
790
|
+
readonly PENDING: "Pending";
|
|
791
|
+
readonly SUCCESS: "Success";
|
|
792
|
+
};
|
|
793
|
+
export type MetricsExportStatusType =
|
|
794
|
+
(typeof MetricsExportStatusType)[keyof typeof MetricsExportStatusType];
|
|
795
|
+
export interface DescribeMetricsExportResponse {
|
|
796
|
+
metricsExportId: string | undefined;
|
|
797
|
+
status: MetricsExportStatusType | undefined;
|
|
798
|
+
exportLocation?: S3Location | undefined;
|
|
799
|
+
errorMessage?: string | undefined;
|
|
800
|
+
}
|
|
784
801
|
export interface DescribeResiliencyPolicyRequest {
|
|
785
802
|
policyArn: string | undefined;
|
|
786
803
|
}
|
|
@@ -1051,6 +1068,50 @@ export interface ListAppVersionsResponse {
|
|
|
1051
1068
|
appVersions: AppVersionSummary[] | undefined;
|
|
1052
1069
|
nextToken?: string | undefined;
|
|
1053
1070
|
}
|
|
1071
|
+
export declare const ConditionOperatorType: {
|
|
1072
|
+
readonly EQUALS: "Equals";
|
|
1073
|
+
readonly GREATER_OR_EQUALS: "GreaterOrEquals";
|
|
1074
|
+
readonly GREATER_THEN: "GreaterThen";
|
|
1075
|
+
readonly LESS_OR_EQUALS: "LessOrEquals";
|
|
1076
|
+
readonly LESS_THEN: "LessThen";
|
|
1077
|
+
readonly NOT_EQUALS: "NotEquals";
|
|
1078
|
+
};
|
|
1079
|
+
export type ConditionOperatorType =
|
|
1080
|
+
(typeof ConditionOperatorType)[keyof typeof ConditionOperatorType];
|
|
1081
|
+
export interface Condition {
|
|
1082
|
+
field: string | undefined;
|
|
1083
|
+
operator: ConditionOperatorType | undefined;
|
|
1084
|
+
value?: string | undefined;
|
|
1085
|
+
}
|
|
1086
|
+
export declare const FieldAggregationType: {
|
|
1087
|
+
readonly AVG: "Avg";
|
|
1088
|
+
readonly COUNT: "Count";
|
|
1089
|
+
readonly MAX: "Max";
|
|
1090
|
+
readonly MIN: "Min";
|
|
1091
|
+
readonly SUM: "Sum";
|
|
1092
|
+
};
|
|
1093
|
+
export type FieldAggregationType =
|
|
1094
|
+
(typeof FieldAggregationType)[keyof typeof FieldAggregationType];
|
|
1095
|
+
export interface Field {
|
|
1096
|
+
name: string | undefined;
|
|
1097
|
+
aggregation?: FieldAggregationType | undefined;
|
|
1098
|
+
}
|
|
1099
|
+
export interface Sort {
|
|
1100
|
+
field: string | undefined;
|
|
1101
|
+
ascending?: boolean | undefined;
|
|
1102
|
+
}
|
|
1103
|
+
export interface ListMetricsRequest {
|
|
1104
|
+
nextToken?: string | undefined;
|
|
1105
|
+
maxResults?: number | undefined;
|
|
1106
|
+
fields?: Field[] | undefined;
|
|
1107
|
+
dataSource?: string | undefined;
|
|
1108
|
+
conditions?: Condition[] | undefined;
|
|
1109
|
+
sorts?: Sort[] | undefined;
|
|
1110
|
+
}
|
|
1111
|
+
export interface ListMetricsResponse {
|
|
1112
|
+
rows: string[][] | undefined;
|
|
1113
|
+
nextToken?: string | undefined;
|
|
1114
|
+
}
|
|
1054
1115
|
export interface ListRecommendationTemplatesRequest {
|
|
1055
1116
|
assessmentArn?: string | undefined;
|
|
1056
1117
|
reverseOrder?: boolean | undefined;
|
|
@@ -1282,6 +1343,14 @@ export interface StartAppAssessmentRequest {
|
|
|
1282
1343
|
export interface StartAppAssessmentResponse {
|
|
1283
1344
|
assessment: AppAssessment | undefined;
|
|
1284
1345
|
}
|
|
1346
|
+
export interface StartMetricsExportRequest {
|
|
1347
|
+
bucketName?: string | undefined;
|
|
1348
|
+
clientToken?: string | undefined;
|
|
1349
|
+
}
|
|
1350
|
+
export interface StartMetricsExportResponse {
|
|
1351
|
+
metricsExportId: string | undefined;
|
|
1352
|
+
status: MetricsExportStatusType | undefined;
|
|
1353
|
+
}
|
|
1285
1354
|
export interface StartResourceGroupingRecommendationTaskRequest {
|
|
1286
1355
|
appArn: string | undefined;
|
|
1287
1356
|
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListMetricsCommandInput,
|
|
4
|
+
ListMetricsCommandOutput,
|
|
5
|
+
} from "../commands/ListMetricsCommand";
|
|
6
|
+
import { ResiliencehubPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListMetrics: (
|
|
8
|
+
config: ResiliencehubPaginationConfiguration,
|
|
9
|
+
input: ListMetricsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListMetricsCommandOutput>;
|
|
@@ -11,6 +11,7 @@ export * from "./ListAppVersionResourceMappingsPaginator";
|
|
|
11
11
|
export * from "./ListAppVersionResourcesPaginator";
|
|
12
12
|
export * from "./ListAppVersionsPaginator";
|
|
13
13
|
export * from "./ListAppsPaginator";
|
|
14
|
+
export * from "./ListMetricsPaginator";
|
|
14
15
|
export * from "./ListRecommendationTemplatesPaginator";
|
|
15
16
|
export * from "./ListResiliencyPoliciesPaginator";
|
|
16
17
|
export * from "./ListResourceGroupingRecommendationsPaginator";
|
|
@@ -95,6 +95,10 @@ import {
|
|
|
95
95
|
DescribeDraftAppVersionResourcesImportStatusCommandInput,
|
|
96
96
|
DescribeDraftAppVersionResourcesImportStatusCommandOutput,
|
|
97
97
|
} from "../commands/DescribeDraftAppVersionResourcesImportStatusCommand";
|
|
98
|
+
import {
|
|
99
|
+
DescribeMetricsExportCommandInput,
|
|
100
|
+
DescribeMetricsExportCommandOutput,
|
|
101
|
+
} from "../commands/DescribeMetricsExportCommand";
|
|
98
102
|
import {
|
|
99
103
|
DescribeResiliencyPolicyCommandInput,
|
|
100
104
|
DescribeResiliencyPolicyCommandOutput,
|
|
@@ -155,6 +159,10 @@ import {
|
|
|
155
159
|
ListAppVersionsCommandInput,
|
|
156
160
|
ListAppVersionsCommandOutput,
|
|
157
161
|
} from "../commands/ListAppVersionsCommand";
|
|
162
|
+
import {
|
|
163
|
+
ListMetricsCommandInput,
|
|
164
|
+
ListMetricsCommandOutput,
|
|
165
|
+
} from "../commands/ListMetricsCommand";
|
|
158
166
|
import {
|
|
159
167
|
ListRecommendationTemplatesCommandInput,
|
|
160
168
|
ListRecommendationTemplatesCommandOutput,
|
|
@@ -211,6 +219,10 @@ import {
|
|
|
211
219
|
StartAppAssessmentCommandInput,
|
|
212
220
|
StartAppAssessmentCommandOutput,
|
|
213
221
|
} from "../commands/StartAppAssessmentCommand";
|
|
222
|
+
import {
|
|
223
|
+
StartMetricsExportCommandInput,
|
|
224
|
+
StartMetricsExportCommandOutput,
|
|
225
|
+
} from "../commands/StartMetricsExportCommand";
|
|
214
226
|
import {
|
|
215
227
|
StartResourceGroupingRecommendationTaskCommandInput,
|
|
216
228
|
StartResourceGroupingRecommendationTaskCommandOutput,
|
|
@@ -335,6 +347,10 @@ export declare const se_DescribeDraftAppVersionResourcesImportStatusCommand: (
|
|
|
335
347
|
input: DescribeDraftAppVersionResourcesImportStatusCommandInput,
|
|
336
348
|
context: __SerdeContext
|
|
337
349
|
) => Promise<__HttpRequest>;
|
|
350
|
+
export declare const se_DescribeMetricsExportCommand: (
|
|
351
|
+
input: DescribeMetricsExportCommandInput,
|
|
352
|
+
context: __SerdeContext
|
|
353
|
+
) => Promise<__HttpRequest>;
|
|
338
354
|
export declare const se_DescribeResiliencyPolicyCommand: (
|
|
339
355
|
input: DescribeResiliencyPolicyCommandInput,
|
|
340
356
|
context: __SerdeContext
|
|
@@ -395,6 +411,10 @@ export declare const se_ListAppVersionsCommand: (
|
|
|
395
411
|
input: ListAppVersionsCommandInput,
|
|
396
412
|
context: __SerdeContext
|
|
397
413
|
) => Promise<__HttpRequest>;
|
|
414
|
+
export declare const se_ListMetricsCommand: (
|
|
415
|
+
input: ListMetricsCommandInput,
|
|
416
|
+
context: __SerdeContext
|
|
417
|
+
) => Promise<__HttpRequest>;
|
|
398
418
|
export declare const se_ListRecommendationTemplatesCommand: (
|
|
399
419
|
input: ListRecommendationTemplatesCommandInput,
|
|
400
420
|
context: __SerdeContext
|
|
@@ -451,6 +471,10 @@ export declare const se_StartAppAssessmentCommand: (
|
|
|
451
471
|
input: StartAppAssessmentCommandInput,
|
|
452
472
|
context: __SerdeContext
|
|
453
473
|
) => Promise<__HttpRequest>;
|
|
474
|
+
export declare const se_StartMetricsExportCommand: (
|
|
475
|
+
input: StartMetricsExportCommandInput,
|
|
476
|
+
context: __SerdeContext
|
|
477
|
+
) => Promise<__HttpRequest>;
|
|
454
478
|
export declare const se_StartResourceGroupingRecommendationTaskCommand: (
|
|
455
479
|
input: StartResourceGroupingRecommendationTaskCommandInput,
|
|
456
480
|
context: __SerdeContext
|
|
@@ -575,6 +599,10 @@ export declare const de_DescribeDraftAppVersionResourcesImportStatusCommand: (
|
|
|
575
599
|
output: __HttpResponse,
|
|
576
600
|
context: __SerdeContext
|
|
577
601
|
) => Promise<DescribeDraftAppVersionResourcesImportStatusCommandOutput>;
|
|
602
|
+
export declare const de_DescribeMetricsExportCommand: (
|
|
603
|
+
output: __HttpResponse,
|
|
604
|
+
context: __SerdeContext
|
|
605
|
+
) => Promise<DescribeMetricsExportCommandOutput>;
|
|
578
606
|
export declare const de_DescribeResiliencyPolicyCommand: (
|
|
579
607
|
output: __HttpResponse,
|
|
580
608
|
context: __SerdeContext
|
|
@@ -635,6 +663,10 @@ export declare const de_ListAppVersionsCommand: (
|
|
|
635
663
|
output: __HttpResponse,
|
|
636
664
|
context: __SerdeContext
|
|
637
665
|
) => Promise<ListAppVersionsCommandOutput>;
|
|
666
|
+
export declare const de_ListMetricsCommand: (
|
|
667
|
+
output: __HttpResponse,
|
|
668
|
+
context: __SerdeContext
|
|
669
|
+
) => Promise<ListMetricsCommandOutput>;
|
|
638
670
|
export declare const de_ListRecommendationTemplatesCommand: (
|
|
639
671
|
output: __HttpResponse,
|
|
640
672
|
context: __SerdeContext
|
|
@@ -691,6 +723,10 @@ export declare const de_StartAppAssessmentCommand: (
|
|
|
691
723
|
output: __HttpResponse,
|
|
692
724
|
context: __SerdeContext
|
|
693
725
|
) => Promise<StartAppAssessmentCommandOutput>;
|
|
726
|
+
export declare const de_StartMetricsExportCommand: (
|
|
727
|
+
output: __HttpResponse,
|
|
728
|
+
context: __SerdeContext
|
|
729
|
+
) => Promise<StartMetricsExportCommandOutput>;
|
|
694
730
|
export declare const de_StartResourceGroupingRecommendationTaskCommand: (
|
|
695
731
|
output: __HttpResponse,
|
|
696
732
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-resiliencehub",
|
|
3
3
|
"description": "AWS SDK for JavaScript Resiliencehub Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.698.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-resiliencehub",
|