@aws-sdk/client-devops-guru 3.43.0 → 3.44.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 +11 -0
- package/dist-cjs/models/models_0.js +96 -3
- package/dist-cjs/protocols/Aws_restJson1.js +375 -0
- package/dist-es/models/models_0.js +64 -0
- package/dist-es/protocols/Aws_restJson1.js +368 -6
- package/dist-types/DevOpsGuru.d.ts +13 -10
- package/dist-types/commands/DescribeResourceCollectionHealthCommand.d.ts +3 -2
- package/dist-types/commands/GetResourceCollectionCommand.d.ts +3 -2
- package/dist-types/commands/SearchOrganizationInsightsCommand.d.ts +4 -4
- package/dist-types/commands/UpdateResourceCollectionCommand.d.ts +3 -2
- package/dist-types/models/models_0.d.ts +1055 -68
- package/dist-types/ts3.4/models/models_0.d.ts +213 -2
- package/package.json +1 -1
|
@@ -145,7 +145,9 @@ export declare namespace ValidationExceptionField {
|
|
|
145
145
|
export declare enum ValidationExceptionReason {
|
|
146
146
|
CANNOT_PARSE = "CANNOT_PARSE",
|
|
147
147
|
FIELD_VALIDATION_FAILED = "FIELD_VALIDATION_FAILED",
|
|
148
|
+
INVALID_PARAMETER_COMBINATION = "INVALID_PARAMETER_COMBINATION",
|
|
148
149
|
OTHER = "OTHER",
|
|
150
|
+
PARAMETER_INCONSISTENT_WITH_SERVICE_STATE = "PARAMETER_INCONSISTENT_WITH_SERVICE_STATE",
|
|
149
151
|
UNKNOWN_OPERATION = "UNKNOWN_OPERATION"
|
|
150
152
|
}
|
|
151
153
|
|
|
@@ -174,6 +176,17 @@ export declare namespace AnomalyReportedTimeRange {
|
|
|
174
176
|
|
|
175
177
|
const filterSensitiveLog: (obj: AnomalyReportedTimeRange) => any;
|
|
176
178
|
}
|
|
179
|
+
|
|
180
|
+
export interface AnomalyResource {
|
|
181
|
+
|
|
182
|
+
Name?: string;
|
|
183
|
+
|
|
184
|
+
Type?: string;
|
|
185
|
+
}
|
|
186
|
+
export declare namespace AnomalyResource {
|
|
187
|
+
|
|
188
|
+
const filterSensitiveLog: (obj: AnomalyResource) => any;
|
|
189
|
+
}
|
|
177
190
|
export declare enum AnomalySeverity {
|
|
178
191
|
HIGH = "HIGH",
|
|
179
192
|
LOW = "LOW",
|
|
@@ -249,9 +262,109 @@ export declare namespace CloudWatchMetricsDetail {
|
|
|
249
262
|
const filterSensitiveLog: (obj: CloudWatchMetricsDetail) => any;
|
|
250
263
|
}
|
|
251
264
|
|
|
265
|
+
export interface PerformanceInsightsMetricDimensionGroup {
|
|
266
|
+
|
|
267
|
+
Group?: string;
|
|
268
|
+
|
|
269
|
+
Dimensions?: string[];
|
|
270
|
+
|
|
271
|
+
Limit?: number;
|
|
272
|
+
}
|
|
273
|
+
export declare namespace PerformanceInsightsMetricDimensionGroup {
|
|
274
|
+
|
|
275
|
+
const filterSensitiveLog: (obj: PerformanceInsightsMetricDimensionGroup) => any;
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
export interface PerformanceInsightsMetricQuery {
|
|
279
|
+
|
|
280
|
+
Metric?: string;
|
|
281
|
+
|
|
282
|
+
GroupBy?: PerformanceInsightsMetricDimensionGroup;
|
|
283
|
+
|
|
284
|
+
Filter?: {
|
|
285
|
+
[key: string]: string;
|
|
286
|
+
};
|
|
287
|
+
}
|
|
288
|
+
export declare namespace PerformanceInsightsMetricQuery {
|
|
289
|
+
|
|
290
|
+
const filterSensitiveLog: (obj: PerformanceInsightsMetricQuery) => any;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
export interface PerformanceInsightsReferenceMetric {
|
|
294
|
+
|
|
295
|
+
MetricQuery?: PerformanceInsightsMetricQuery;
|
|
296
|
+
}
|
|
297
|
+
export declare namespace PerformanceInsightsReferenceMetric {
|
|
298
|
+
|
|
299
|
+
const filterSensitiveLog: (obj: PerformanceInsightsReferenceMetric) => any;
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
export interface PerformanceInsightsReferenceScalar {
|
|
303
|
+
|
|
304
|
+
Value?: number;
|
|
305
|
+
}
|
|
306
|
+
export declare namespace PerformanceInsightsReferenceScalar {
|
|
307
|
+
|
|
308
|
+
const filterSensitiveLog: (obj: PerformanceInsightsReferenceScalar) => any;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
export interface PerformanceInsightsReferenceComparisonValues {
|
|
312
|
+
|
|
313
|
+
ReferenceScalar?: PerformanceInsightsReferenceScalar;
|
|
314
|
+
|
|
315
|
+
ReferenceMetric?: PerformanceInsightsReferenceMetric;
|
|
316
|
+
}
|
|
317
|
+
export declare namespace PerformanceInsightsReferenceComparisonValues {
|
|
318
|
+
|
|
319
|
+
const filterSensitiveLog: (obj: PerformanceInsightsReferenceComparisonValues) => any;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
export interface PerformanceInsightsReferenceData {
|
|
323
|
+
|
|
324
|
+
Name?: string;
|
|
325
|
+
|
|
326
|
+
ComparisonValues?: PerformanceInsightsReferenceComparisonValues;
|
|
327
|
+
}
|
|
328
|
+
export declare namespace PerformanceInsightsReferenceData {
|
|
329
|
+
|
|
330
|
+
const filterSensitiveLog: (obj: PerformanceInsightsReferenceData) => any;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
export interface PerformanceInsightsStat {
|
|
334
|
+
|
|
335
|
+
Type?: string;
|
|
336
|
+
|
|
337
|
+
Value?: number;
|
|
338
|
+
}
|
|
339
|
+
export declare namespace PerformanceInsightsStat {
|
|
340
|
+
|
|
341
|
+
const filterSensitiveLog: (obj: PerformanceInsightsStat) => any;
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
export interface PerformanceInsightsMetricsDetail {
|
|
345
|
+
|
|
346
|
+
MetricDisplayName?: string;
|
|
347
|
+
|
|
348
|
+
Unit?: string;
|
|
349
|
+
|
|
350
|
+
MetricQuery?: PerformanceInsightsMetricQuery;
|
|
351
|
+
|
|
352
|
+
ReferenceData?: PerformanceInsightsReferenceData[];
|
|
353
|
+
|
|
354
|
+
StatsAtAnomaly?: PerformanceInsightsStat[];
|
|
355
|
+
|
|
356
|
+
StatsAtBaseline?: PerformanceInsightsStat[];
|
|
357
|
+
}
|
|
358
|
+
export declare namespace PerformanceInsightsMetricsDetail {
|
|
359
|
+
|
|
360
|
+
const filterSensitiveLog: (obj: PerformanceInsightsMetricsDetail) => any;
|
|
361
|
+
}
|
|
362
|
+
|
|
252
363
|
export interface AnomalySourceDetails {
|
|
253
364
|
|
|
254
365
|
CloudWatchMetrics?: CloudWatchMetricsDetail[];
|
|
366
|
+
|
|
367
|
+
PerformanceInsightsMetrics?: PerformanceInsightsMetricsDetail[];
|
|
255
368
|
}
|
|
256
369
|
export declare namespace AnomalySourceDetails {
|
|
257
370
|
|
|
@@ -272,6 +385,10 @@ export declare namespace AnomalyTimeRange {
|
|
|
272
385
|
|
|
273
386
|
const filterSensitiveLog: (obj: AnomalyTimeRange) => any;
|
|
274
387
|
}
|
|
388
|
+
export declare enum AnomalyType {
|
|
389
|
+
CAUSAL = "CAUSAL",
|
|
390
|
+
CONTEXTUAL = "CONTEXTUAL"
|
|
391
|
+
}
|
|
275
392
|
export interface DescribeAccountHealthRequest {
|
|
276
393
|
}
|
|
277
394
|
export declare namespace DescribeAccountHealthRequest {
|
|
@@ -345,9 +462,22 @@ export declare namespace CloudFormationCollection {
|
|
|
345
462
|
const filterSensitiveLog: (obj: CloudFormationCollection) => any;
|
|
346
463
|
}
|
|
347
464
|
|
|
465
|
+
export interface TagCollection {
|
|
466
|
+
|
|
467
|
+
AppBoundaryKey: string | undefined;
|
|
468
|
+
|
|
469
|
+
TagValues: string[] | undefined;
|
|
470
|
+
}
|
|
471
|
+
export declare namespace TagCollection {
|
|
472
|
+
|
|
473
|
+
const filterSensitiveLog: (obj: TagCollection) => any;
|
|
474
|
+
}
|
|
475
|
+
|
|
348
476
|
export interface ResourceCollection {
|
|
349
477
|
|
|
350
478
|
CloudFormation?: CloudFormationCollection;
|
|
479
|
+
|
|
480
|
+
Tags?: TagCollection[];
|
|
351
481
|
}
|
|
352
482
|
export declare namespace ResourceCollection {
|
|
353
483
|
|
|
@@ -400,6 +530,16 @@ export interface ReactiveAnomaly {
|
|
|
400
530
|
AssociatedInsightId?: string;
|
|
401
531
|
|
|
402
532
|
ResourceCollection?: ResourceCollection;
|
|
533
|
+
|
|
534
|
+
Type?: AnomalyType | string;
|
|
535
|
+
|
|
536
|
+
Name?: string;
|
|
537
|
+
|
|
538
|
+
Description?: string;
|
|
539
|
+
|
|
540
|
+
CausalAnomalyId?: string;
|
|
541
|
+
|
|
542
|
+
AnomalyResources?: AnomalyResource[];
|
|
403
543
|
}
|
|
404
544
|
export declare namespace ReactiveAnomaly {
|
|
405
545
|
|
|
@@ -691,7 +831,8 @@ export declare namespace DescribeOrganizationResourceCollectionHealthResponse {
|
|
|
691
831
|
}
|
|
692
832
|
export declare enum ResourceCollectionType {
|
|
693
833
|
AWS_CLOUD_FORMATION = "AWS_CLOUD_FORMATION",
|
|
694
|
-
AWS_SERVICE = "AWS_SERVICE"
|
|
834
|
+
AWS_SERVICE = "AWS_SERVICE",
|
|
835
|
+
AWS_TAGS = "AWS_TAGS"
|
|
695
836
|
}
|
|
696
837
|
export interface DescribeResourceCollectionHealthRequest {
|
|
697
838
|
|
|
@@ -703,13 +844,28 @@ export declare namespace DescribeResourceCollectionHealthRequest {
|
|
|
703
844
|
|
|
704
845
|
const filterSensitiveLog: (obj: DescribeResourceCollectionHealthRequest) => any;
|
|
705
846
|
}
|
|
847
|
+
|
|
848
|
+
export interface TagHealth {
|
|
849
|
+
|
|
850
|
+
AppBoundaryKey?: string;
|
|
851
|
+
|
|
852
|
+
TagValue?: string;
|
|
853
|
+
|
|
854
|
+
Insight?: InsightHealth;
|
|
855
|
+
}
|
|
856
|
+
export declare namespace TagHealth {
|
|
857
|
+
|
|
858
|
+
const filterSensitiveLog: (obj: TagHealth) => any;
|
|
859
|
+
}
|
|
706
860
|
export interface DescribeResourceCollectionHealthResponse {
|
|
707
861
|
|
|
708
|
-
CloudFormation
|
|
862
|
+
CloudFormation?: CloudFormationHealth[];
|
|
709
863
|
|
|
710
864
|
Service?: ServiceHealth[];
|
|
711
865
|
|
|
712
866
|
NextToken?: string;
|
|
867
|
+
|
|
868
|
+
Tags?: TagHealth[];
|
|
713
869
|
}
|
|
714
870
|
export declare namespace DescribeResourceCollectionHealthResponse {
|
|
715
871
|
|
|
@@ -790,9 +946,22 @@ export declare namespace CloudFormationCostEstimationResourceCollectionFilter {
|
|
|
790
946
|
const filterSensitiveLog: (obj: CloudFormationCostEstimationResourceCollectionFilter) => any;
|
|
791
947
|
}
|
|
792
948
|
|
|
949
|
+
export interface TagCostEstimationResourceCollectionFilter {
|
|
950
|
+
|
|
951
|
+
AppBoundaryKey: string | undefined;
|
|
952
|
+
|
|
953
|
+
TagValues: string[] | undefined;
|
|
954
|
+
}
|
|
955
|
+
export declare namespace TagCostEstimationResourceCollectionFilter {
|
|
956
|
+
|
|
957
|
+
const filterSensitiveLog: (obj: TagCostEstimationResourceCollectionFilter) => any;
|
|
958
|
+
}
|
|
959
|
+
|
|
793
960
|
export interface CostEstimationResourceCollectionFilter {
|
|
794
961
|
|
|
795
962
|
CloudFormation?: CloudFormationCostEstimationResourceCollectionFilter;
|
|
963
|
+
|
|
964
|
+
Tags?: TagCostEstimationResourceCollectionFilter[];
|
|
796
965
|
}
|
|
797
966
|
export declare namespace CostEstimationResourceCollectionFilter {
|
|
798
967
|
|
|
@@ -851,9 +1020,22 @@ export declare namespace CloudFormationCollectionFilter {
|
|
|
851
1020
|
const filterSensitiveLog: (obj: CloudFormationCollectionFilter) => any;
|
|
852
1021
|
}
|
|
853
1022
|
|
|
1023
|
+
export interface TagCollectionFilter {
|
|
1024
|
+
|
|
1025
|
+
AppBoundaryKey: string | undefined;
|
|
1026
|
+
|
|
1027
|
+
TagValues: string[] | undefined;
|
|
1028
|
+
}
|
|
1029
|
+
export declare namespace TagCollectionFilter {
|
|
1030
|
+
|
|
1031
|
+
const filterSensitiveLog: (obj: TagCollectionFilter) => any;
|
|
1032
|
+
}
|
|
1033
|
+
|
|
854
1034
|
export interface ResourceCollectionFilter {
|
|
855
1035
|
|
|
856
1036
|
CloudFormation?: CloudFormationCollectionFilter;
|
|
1037
|
+
|
|
1038
|
+
Tags?: TagCollectionFilter[];
|
|
857
1039
|
}
|
|
858
1040
|
export declare namespace ResourceCollectionFilter {
|
|
859
1041
|
|
|
@@ -943,6 +1125,16 @@ export interface ReactiveAnomalySummary {
|
|
|
943
1125
|
AssociatedInsightId?: string;
|
|
944
1126
|
|
|
945
1127
|
ResourceCollection?: ResourceCollection;
|
|
1128
|
+
|
|
1129
|
+
Type?: AnomalyType | string;
|
|
1130
|
+
|
|
1131
|
+
Name?: string;
|
|
1132
|
+
|
|
1133
|
+
Description?: string;
|
|
1134
|
+
|
|
1135
|
+
CausalAnomalyId?: string;
|
|
1136
|
+
|
|
1137
|
+
AnomalyResources?: AnomalyResource[];
|
|
946
1138
|
}
|
|
947
1139
|
export declare namespace ReactiveAnomalySummary {
|
|
948
1140
|
|
|
@@ -1159,6 +1351,8 @@ export interface ProactiveInsightSummary {
|
|
|
1159
1351
|
ResourceCollection?: ResourceCollection;
|
|
1160
1352
|
|
|
1161
1353
|
ServiceCollection?: ServiceCollection;
|
|
1354
|
+
|
|
1355
|
+
AssociatedResourceArns?: string[];
|
|
1162
1356
|
}
|
|
1163
1357
|
export declare namespace ProactiveInsightSummary {
|
|
1164
1358
|
|
|
@@ -1180,6 +1374,8 @@ export interface ReactiveInsightSummary {
|
|
|
1180
1374
|
ResourceCollection?: ResourceCollection;
|
|
1181
1375
|
|
|
1182
1376
|
ServiceCollection?: ServiceCollection;
|
|
1377
|
+
|
|
1378
|
+
AssociatedResourceArns?: string[];
|
|
1183
1379
|
}
|
|
1184
1380
|
export declare namespace ReactiveInsightSummary {
|
|
1185
1381
|
|
|
@@ -1370,6 +1566,8 @@ export interface RecommendationRelatedAnomaly {
|
|
|
1370
1566
|
Resources?: RecommendationRelatedAnomalyResource[];
|
|
1371
1567
|
|
|
1372
1568
|
SourceDetails?: RecommendationRelatedAnomalySourceDetail[];
|
|
1569
|
+
|
|
1570
|
+
AnomalyId?: string;
|
|
1373
1571
|
}
|
|
1374
1572
|
export declare namespace RecommendationRelatedAnomaly {
|
|
1375
1573
|
|
|
@@ -1572,9 +1770,22 @@ export declare namespace UpdateCloudFormationCollectionFilter {
|
|
|
1572
1770
|
const filterSensitiveLog: (obj: UpdateCloudFormationCollectionFilter) => any;
|
|
1573
1771
|
}
|
|
1574
1772
|
|
|
1773
|
+
export interface UpdateTagCollectionFilter {
|
|
1774
|
+
|
|
1775
|
+
AppBoundaryKey: string | undefined;
|
|
1776
|
+
|
|
1777
|
+
TagValues: string[] | undefined;
|
|
1778
|
+
}
|
|
1779
|
+
export declare namespace UpdateTagCollectionFilter {
|
|
1780
|
+
|
|
1781
|
+
const filterSensitiveLog: (obj: UpdateTagCollectionFilter) => any;
|
|
1782
|
+
}
|
|
1783
|
+
|
|
1575
1784
|
export interface UpdateResourceCollectionFilter {
|
|
1576
1785
|
|
|
1577
1786
|
CloudFormation?: UpdateCloudFormationCollectionFilter;
|
|
1787
|
+
|
|
1788
|
+
Tags?: UpdateTagCollectionFilter[];
|
|
1578
1789
|
}
|
|
1579
1790
|
export declare namespace UpdateResourceCollectionFilter {
|
|
1580
1791
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-devops-guru",
|
|
3
3
|
"description": "AWS SDK for JavaScript Devops Guru Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.44.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "yarn build:cjs && yarn build:es && yarn build:types",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.json",
|