@aws-sdk/client-devops-guru 3.43.0 → 3.47.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.
@@ -1,10 +1,11 @@
1
- import { FetchHttpHandler } from "@aws-sdk/fetch-http-handler";
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
2
  import { DevOpsGuruClientConfig } from "./DevOpsGuruClient";
3
3
  /**
4
4
  * @internal
5
5
  */
6
6
  export declare const getRuntimeConfig: (config: DevOpsGuruClientConfig) => {
7
7
  runtime: string;
8
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
8
9
  base64Decoder: import("@aws-sdk/types").Decoder;
9
10
  base64Encoder: import("@aws-sdk/types").Encoder;
10
11
  bodyLengthChecker: (body: any) => number | undefined;
@@ -12,7 +13,7 @@ export declare const getRuntimeConfig: (config: DevOpsGuruClientConfig) => {
12
13
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
13
14
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
14
15
  region: string | import("@aws-sdk/types").Provider<any>;
15
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | FetchHttpHandler;
16
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
16
17
  retryMode: string | import("@aws-sdk/types").Provider<string>;
17
18
  sha256: import("@aws-sdk/types").HashConstructor;
18
19
  streamCollector: import("@aws-sdk/types").StreamCollector;
@@ -1,18 +1,19 @@
1
- import { NodeHttpHandler } from "@aws-sdk/node-http-handler";
1
+ import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
2
  import { DevOpsGuruClientConfig } from "./DevOpsGuruClient";
3
3
  /**
4
4
  * @internal
5
5
  */
6
6
  export declare const getRuntimeConfig: (config: DevOpsGuruClientConfig) => {
7
7
  runtime: string;
8
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
8
9
  base64Decoder: import("@aws-sdk/types").Decoder;
9
10
  base64Encoder: import("@aws-sdk/types").Encoder;
10
11
  bodyLengthChecker: (body: any) => number | undefined;
11
- credentialDefaultProvider: import("@aws-sdk/client-sts/dist-types/defaultStsRoleAssumers").DefaultCredentialProvider;
12
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
12
13
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
13
14
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
14
15
  region: string | import("@aws-sdk/types").Provider<string>;
15
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | NodeHttpHandler;
16
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
16
17
  retryMode: string | import("@aws-sdk/types").Provider<string>;
17
18
  sha256: import("@aws-sdk/types").HashConstructor;
18
19
  streamCollector: import("@aws-sdk/types").StreamCollector;
@@ -25,6 +25,7 @@ export declare const getRuntimeConfig: (config: DevOpsGuruClientConfig) => {
25
25
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
26
26
  regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
27
27
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
28
+ defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
28
29
  endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
30
  tls?: boolean | undefined;
30
31
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
@@ -4,7 +4,7 @@ import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry
4
4
  import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
5
5
  import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
6
  import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
- import { Client as __Client, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
7
+ import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
8
  import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
9
  import { AddNotificationChannelCommandInput, AddNotificationChannelCommandOutput } from "./commands/AddNotificationChannelCommand";
10
10
  import { DescribeAccountHealthCommandInput, DescribeAccountHealthCommandOutput } from "./commands/DescribeAccountHealthCommand";
@@ -77,6 +77,8 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
77
77
  regionInfoProvider?: RegionInfoProvider;
78
78
 
79
79
  defaultUserAgentProvider?: Provider<__UserAgent>;
80
+
81
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
80
82
  }
81
83
  declare type DevOpsGuruClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
82
84
 
@@ -5,10 +5,6 @@ export interface AccessDeniedException extends __SmithyException, $MetadataBeare
5
5
  $fault: "client";
6
6
  Message: string | undefined;
7
7
  }
8
- export declare namespace AccessDeniedException {
9
-
10
- const filterSensitiveLog: (obj: AccessDeniedException) => any;
11
- }
12
8
 
13
9
  export interface AccountInsightHealth {
14
10
 
@@ -75,10 +71,6 @@ export interface ConflictException extends __SmithyException, $MetadataBearer {
75
71
 
76
72
  ResourceType: string | undefined;
77
73
  }
78
- export declare namespace ConflictException {
79
-
80
- const filterSensitiveLog: (obj: ConflictException) => any;
81
- }
82
74
 
83
75
  export interface InternalServerException extends __SmithyException, $MetadataBearer {
84
76
  name: "InternalServerException";
@@ -87,10 +79,6 @@ export interface InternalServerException extends __SmithyException, $MetadataBea
87
79
 
88
80
  RetryAfterSeconds?: number;
89
81
  }
90
- export declare namespace InternalServerException {
91
-
92
- const filterSensitiveLog: (obj: InternalServerException) => any;
93
- }
94
82
 
95
83
  export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
96
84
  name: "ResourceNotFoundException";
@@ -101,20 +89,12 @@ export interface ResourceNotFoundException extends __SmithyException, $MetadataB
101
89
 
102
90
  ResourceType: string | undefined;
103
91
  }
104
- export declare namespace ResourceNotFoundException {
105
-
106
- const filterSensitiveLog: (obj: ResourceNotFoundException) => any;
107
- }
108
92
 
109
93
  export interface ServiceQuotaExceededException extends __SmithyException, $MetadataBearer {
110
94
  name: "ServiceQuotaExceededException";
111
95
  $fault: "client";
112
96
  Message?: string;
113
97
  }
114
- export declare namespace ServiceQuotaExceededException {
115
-
116
- const filterSensitiveLog: (obj: ServiceQuotaExceededException) => any;
117
- }
118
98
 
119
99
  export interface ThrottlingException extends __SmithyException, $MetadataBearer {
120
100
  name: "ThrottlingException";
@@ -127,10 +107,6 @@ export interface ThrottlingException extends __SmithyException, $MetadataBearer
127
107
 
128
108
  RetryAfterSeconds?: number;
129
109
  }
130
- export declare namespace ThrottlingException {
131
-
132
- const filterSensitiveLog: (obj: ThrottlingException) => any;
133
- }
134
110
 
135
111
  export interface ValidationExceptionField {
136
112
 
@@ -145,7 +121,9 @@ export declare namespace ValidationExceptionField {
145
121
  export declare enum ValidationExceptionReason {
146
122
  CANNOT_PARSE = "CANNOT_PARSE",
147
123
  FIELD_VALIDATION_FAILED = "FIELD_VALIDATION_FAILED",
124
+ INVALID_PARAMETER_COMBINATION = "INVALID_PARAMETER_COMBINATION",
148
125
  OTHER = "OTHER",
126
+ PARAMETER_INCONSISTENT_WITH_SERVICE_STATE = "PARAMETER_INCONSISTENT_WITH_SERVICE_STATE",
149
127
  UNKNOWN_OPERATION = "UNKNOWN_OPERATION"
150
128
  }
151
129
 
@@ -159,10 +137,6 @@ export interface ValidationException extends __SmithyException, $MetadataBearer
159
137
 
160
138
  Fields?: ValidationExceptionField[];
161
139
  }
162
- export declare namespace ValidationException {
163
-
164
- const filterSensitiveLog: (obj: ValidationException) => any;
165
- }
166
140
 
167
141
  export interface AnomalyReportedTimeRange {
168
142
 
@@ -174,6 +148,17 @@ export declare namespace AnomalyReportedTimeRange {
174
148
 
175
149
  const filterSensitiveLog: (obj: AnomalyReportedTimeRange) => any;
176
150
  }
151
+
152
+ export interface AnomalyResource {
153
+
154
+ Name?: string;
155
+
156
+ Type?: string;
157
+ }
158
+ export declare namespace AnomalyResource {
159
+
160
+ const filterSensitiveLog: (obj: AnomalyResource) => any;
161
+ }
177
162
  export declare enum AnomalySeverity {
178
163
  HIGH = "HIGH",
179
164
  LOW = "LOW",
@@ -249,9 +234,109 @@ export declare namespace CloudWatchMetricsDetail {
249
234
  const filterSensitiveLog: (obj: CloudWatchMetricsDetail) => any;
250
235
  }
251
236
 
237
+ export interface PerformanceInsightsMetricDimensionGroup {
238
+
239
+ Group?: string;
240
+
241
+ Dimensions?: string[];
242
+
243
+ Limit?: number;
244
+ }
245
+ export declare namespace PerformanceInsightsMetricDimensionGroup {
246
+
247
+ const filterSensitiveLog: (obj: PerformanceInsightsMetricDimensionGroup) => any;
248
+ }
249
+
250
+ export interface PerformanceInsightsMetricQuery {
251
+
252
+ Metric?: string;
253
+
254
+ GroupBy?: PerformanceInsightsMetricDimensionGroup;
255
+
256
+ Filter?: {
257
+ [key: string]: string;
258
+ };
259
+ }
260
+ export declare namespace PerformanceInsightsMetricQuery {
261
+
262
+ const filterSensitiveLog: (obj: PerformanceInsightsMetricQuery) => any;
263
+ }
264
+
265
+ export interface PerformanceInsightsReferenceMetric {
266
+
267
+ MetricQuery?: PerformanceInsightsMetricQuery;
268
+ }
269
+ export declare namespace PerformanceInsightsReferenceMetric {
270
+
271
+ const filterSensitiveLog: (obj: PerformanceInsightsReferenceMetric) => any;
272
+ }
273
+
274
+ export interface PerformanceInsightsReferenceScalar {
275
+
276
+ Value?: number;
277
+ }
278
+ export declare namespace PerformanceInsightsReferenceScalar {
279
+
280
+ const filterSensitiveLog: (obj: PerformanceInsightsReferenceScalar) => any;
281
+ }
282
+
283
+ export interface PerformanceInsightsReferenceComparisonValues {
284
+
285
+ ReferenceScalar?: PerformanceInsightsReferenceScalar;
286
+
287
+ ReferenceMetric?: PerformanceInsightsReferenceMetric;
288
+ }
289
+ export declare namespace PerformanceInsightsReferenceComparisonValues {
290
+
291
+ const filterSensitiveLog: (obj: PerformanceInsightsReferenceComparisonValues) => any;
292
+ }
293
+
294
+ export interface PerformanceInsightsReferenceData {
295
+
296
+ Name?: string;
297
+
298
+ ComparisonValues?: PerformanceInsightsReferenceComparisonValues;
299
+ }
300
+ export declare namespace PerformanceInsightsReferenceData {
301
+
302
+ const filterSensitiveLog: (obj: PerformanceInsightsReferenceData) => any;
303
+ }
304
+
305
+ export interface PerformanceInsightsStat {
306
+
307
+ Type?: string;
308
+
309
+ Value?: number;
310
+ }
311
+ export declare namespace PerformanceInsightsStat {
312
+
313
+ const filterSensitiveLog: (obj: PerformanceInsightsStat) => any;
314
+ }
315
+
316
+ export interface PerformanceInsightsMetricsDetail {
317
+
318
+ MetricDisplayName?: string;
319
+
320
+ Unit?: string;
321
+
322
+ MetricQuery?: PerformanceInsightsMetricQuery;
323
+
324
+ ReferenceData?: PerformanceInsightsReferenceData[];
325
+
326
+ StatsAtAnomaly?: PerformanceInsightsStat[];
327
+
328
+ StatsAtBaseline?: PerformanceInsightsStat[];
329
+ }
330
+ export declare namespace PerformanceInsightsMetricsDetail {
331
+
332
+ const filterSensitiveLog: (obj: PerformanceInsightsMetricsDetail) => any;
333
+ }
334
+
252
335
  export interface AnomalySourceDetails {
253
336
 
254
337
  CloudWatchMetrics?: CloudWatchMetricsDetail[];
338
+
339
+ PerformanceInsightsMetrics?: PerformanceInsightsMetricsDetail[];
255
340
  }
256
341
  export declare namespace AnomalySourceDetails {
257
342
 
@@ -272,6 +357,10 @@ export declare namespace AnomalyTimeRange {
272
357
 
273
358
  const filterSensitiveLog: (obj: AnomalyTimeRange) => any;
274
359
  }
360
+ export declare enum AnomalyType {
361
+ CAUSAL = "CAUSAL",
362
+ CONTEXTUAL = "CONTEXTUAL"
363
+ }
275
364
  export interface DescribeAccountHealthRequest {
276
365
  }
277
366
  export declare namespace DescribeAccountHealthRequest {
@@ -345,9 +434,22 @@ export declare namespace CloudFormationCollection {
345
434
  const filterSensitiveLog: (obj: CloudFormationCollection) => any;
346
435
  }
347
436
 
437
+ export interface TagCollection {
438
+
439
+ AppBoundaryKey: string | undefined;
440
+
441
+ TagValues: string[] | undefined;
442
+ }
443
+ export declare namespace TagCollection {
444
+
445
+ const filterSensitiveLog: (obj: TagCollection) => any;
446
+ }
447
+
348
448
  export interface ResourceCollection {
349
449
 
350
450
  CloudFormation?: CloudFormationCollection;
451
+
452
+ Tags?: TagCollection[];
351
453
  }
352
454
  export declare namespace ResourceCollection {
353
455
 
@@ -400,6 +502,16 @@ export interface ReactiveAnomaly {
400
502
  AssociatedInsightId?: string;
401
503
 
402
504
  ResourceCollection?: ResourceCollection;
505
+
506
+ Type?: AnomalyType | string;
507
+
508
+ Name?: string;
509
+
510
+ Description?: string;
511
+
512
+ CausalAnomalyId?: string;
513
+
514
+ AnomalyResources?: AnomalyResource[];
403
515
  }
404
516
  export declare namespace ReactiveAnomaly {
405
517
 
@@ -584,7 +696,8 @@ export declare namespace DescribeOrganizationOverviewResponse {
584
696
  export declare enum OrganizationResourceCollectionType {
585
697
  AWS_ACCOUNT = "AWS_ACCOUNT",
586
698
  AWS_CLOUD_FORMATION = "AWS_CLOUD_FORMATION",
587
- AWS_SERVICE = "AWS_SERVICE"
699
+ AWS_SERVICE = "AWS_SERVICE",
700
+ AWS_TAGS = "AWS_TAGS"
588
701
  }
589
702
  export interface DescribeOrganizationResourceCollectionHealthRequest {
590
703
 
@@ -675,6 +788,19 @@ export declare namespace ServiceHealth {
675
788
 
676
789
  const filterSensitiveLog: (obj: ServiceHealth) => any;
677
790
  }
791
+
792
+ export interface TagHealth {
793
+
794
+ AppBoundaryKey?: string;
795
+
796
+ TagValue?: string;
797
+
798
+ Insight?: InsightHealth;
799
+ }
800
+ export declare namespace TagHealth {
801
+
802
+ const filterSensitiveLog: (obj: TagHealth) => any;
803
+ }
678
804
  export interface DescribeOrganizationResourceCollectionHealthResponse {
679
805
 
680
806
  CloudFormation?: CloudFormationHealth[];
@@ -684,6 +810,8 @@ export interface DescribeOrganizationResourceCollectionHealthResponse {
684
810
  Account?: AccountHealth[];
685
811
 
686
812
  NextToken?: string;
813
+
814
+ Tags?: TagHealth[];
687
815
  }
688
816
  export declare namespace DescribeOrganizationResourceCollectionHealthResponse {
689
817
 
@@ -691,7 +819,8 @@ export declare namespace DescribeOrganizationResourceCollectionHealthResponse {
691
819
  }
692
820
  export declare enum ResourceCollectionType {
693
821
  AWS_CLOUD_FORMATION = "AWS_CLOUD_FORMATION",
694
- AWS_SERVICE = "AWS_SERVICE"
822
+ AWS_SERVICE = "AWS_SERVICE",
823
+ AWS_TAGS = "AWS_TAGS"
695
824
  }
696
825
  export interface DescribeResourceCollectionHealthRequest {
697
826
 
@@ -705,11 +834,13 @@ export declare namespace DescribeResourceCollectionHealthRequest {
705
834
  }
706
835
  export interface DescribeResourceCollectionHealthResponse {
707
836
 
708
- CloudFormation: CloudFormationHealth[] | undefined;
837
+ CloudFormation?: CloudFormationHealth[];
709
838
 
710
839
  Service?: ServiceHealth[];
711
840
 
712
841
  NextToken?: string;
842
+
843
+ Tags?: TagHealth[];
713
844
  }
714
845
  export declare namespace DescribeResourceCollectionHealthResponse {
715
846
 
@@ -790,9 +921,22 @@ export declare namespace CloudFormationCostEstimationResourceCollectionFilter {
790
921
  const filterSensitiveLog: (obj: CloudFormationCostEstimationResourceCollectionFilter) => any;
791
922
  }
792
923
 
924
+ export interface TagCostEstimationResourceCollectionFilter {
925
+
926
+ AppBoundaryKey: string | undefined;
927
+
928
+ TagValues: string[] | undefined;
929
+ }
930
+ export declare namespace TagCostEstimationResourceCollectionFilter {
931
+
932
+ const filterSensitiveLog: (obj: TagCostEstimationResourceCollectionFilter) => any;
933
+ }
934
+
793
935
  export interface CostEstimationResourceCollectionFilter {
794
936
 
795
937
  CloudFormation?: CloudFormationCostEstimationResourceCollectionFilter;
938
+
939
+ Tags?: TagCostEstimationResourceCollectionFilter[];
796
940
  }
797
941
  export declare namespace CostEstimationResourceCollectionFilter {
798
942
 
@@ -851,9 +995,22 @@ export declare namespace CloudFormationCollectionFilter {
851
995
  const filterSensitiveLog: (obj: CloudFormationCollectionFilter) => any;
852
996
  }
853
997
 
998
+ export interface TagCollectionFilter {
999
+
1000
+ AppBoundaryKey: string | undefined;
1001
+
1002
+ TagValues: string[] | undefined;
1003
+ }
1004
+ export declare namespace TagCollectionFilter {
1005
+
1006
+ const filterSensitiveLog: (obj: TagCollectionFilter) => any;
1007
+ }
1008
+
854
1009
  export interface ResourceCollectionFilter {
855
1010
 
856
1011
  CloudFormation?: CloudFormationCollectionFilter;
1012
+
1013
+ Tags?: TagCollectionFilter[];
857
1014
  }
858
1015
  export declare namespace ResourceCollectionFilter {
859
1016
 
@@ -943,6 +1100,16 @@ export interface ReactiveAnomalySummary {
943
1100
  AssociatedInsightId?: string;
944
1101
 
945
1102
  ResourceCollection?: ResourceCollection;
1103
+
1104
+ Type?: AnomalyType | string;
1105
+
1106
+ Name?: string;
1107
+
1108
+ Description?: string;
1109
+
1110
+ CausalAnomalyId?: string;
1111
+
1112
+ AnomalyResources?: AnomalyResource[];
946
1113
  }
947
1114
  export declare namespace ReactiveAnomalySummary {
948
1115
 
@@ -1159,6 +1326,8 @@ export interface ProactiveInsightSummary {
1159
1326
  ResourceCollection?: ResourceCollection;
1160
1327
 
1161
1328
  ServiceCollection?: ServiceCollection;
1329
+
1330
+ AssociatedResourceArns?: string[];
1162
1331
  }
1163
1332
  export declare namespace ProactiveInsightSummary {
1164
1333
 
@@ -1180,6 +1349,8 @@ export interface ReactiveInsightSummary {
1180
1349
  ResourceCollection?: ResourceCollection;
1181
1350
 
1182
1351
  ServiceCollection?: ServiceCollection;
1352
+
1353
+ AssociatedResourceArns?: string[];
1183
1354
  }
1184
1355
  export declare namespace ReactiveInsightSummary {
1185
1356
 
@@ -1370,6 +1541,8 @@ export interface RecommendationRelatedAnomaly {
1370
1541
  Resources?: RecommendationRelatedAnomalyResource[];
1371
1542
 
1372
1543
  SourceDetails?: RecommendationRelatedAnomalySourceDetail[];
1544
+
1545
+ AnomalyId?: string;
1373
1546
  }
1374
1547
  export declare namespace RecommendationRelatedAnomaly {
1375
1548
 
@@ -1572,9 +1745,22 @@ export declare namespace UpdateCloudFormationCollectionFilter {
1572
1745
  const filterSensitiveLog: (obj: UpdateCloudFormationCollectionFilter) => any;
1573
1746
  }
1574
1747
 
1748
+ export interface UpdateTagCollectionFilter {
1749
+
1750
+ AppBoundaryKey: string | undefined;
1751
+
1752
+ TagValues: string[] | undefined;
1753
+ }
1754
+ export declare namespace UpdateTagCollectionFilter {
1755
+
1756
+ const filterSensitiveLog: (obj: UpdateTagCollectionFilter) => any;
1757
+ }
1758
+
1575
1759
  export interface UpdateResourceCollectionFilter {
1576
1760
 
1577
1761
  CloudFormation?: UpdateCloudFormationCollectionFilter;
1762
+
1763
+ Tags?: UpdateTagCollectionFilter[];
1578
1764
  }
1579
1765
  export declare namespace UpdateResourceCollectionFilter {
1580
1766
 
@@ -1,8 +1,9 @@
1
- import { FetchHttpHandler } from "@aws-sdk/fetch-http-handler";
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
2
  import { DevOpsGuruClientConfig } from "./DevOpsGuruClient";
3
3
 
4
4
  export declare const getRuntimeConfig: (config: DevOpsGuruClientConfig) => {
5
5
  runtime: string;
6
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
6
7
  base64Decoder: import("@aws-sdk/types").Decoder;
7
8
  base64Encoder: import("@aws-sdk/types").Encoder;
8
9
  bodyLengthChecker: (body: any) => number | undefined;
@@ -10,7 +11,7 @@ export declare const getRuntimeConfig: (config: DevOpsGuruClientConfig) => {
10
11
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
11
12
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
12
13
  region: string | import("@aws-sdk/types").Provider<any>;
13
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | FetchHttpHandler;
14
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
14
15
  retryMode: string | import("@aws-sdk/types").Provider<string>;
15
16
  sha256: import("@aws-sdk/types").HashConstructor;
16
17
  streamCollector: import("@aws-sdk/types").StreamCollector;
@@ -1,16 +1,17 @@
1
- import { NodeHttpHandler } from "@aws-sdk/node-http-handler";
1
+ import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
2
  import { DevOpsGuruClientConfig } from "./DevOpsGuruClient";
3
3
 
4
4
  export declare const getRuntimeConfig: (config: DevOpsGuruClientConfig) => {
5
5
  runtime: string;
6
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
6
7
  base64Decoder: import("@aws-sdk/types").Decoder;
7
8
  base64Encoder: import("@aws-sdk/types").Encoder;
8
9
  bodyLengthChecker: (body: any) => number | undefined;
9
- credentialDefaultProvider: import("@aws-sdk/client-sts/dist-types/defaultStsRoleAssumers").DefaultCredentialProvider;
10
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
10
11
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
11
12
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
12
13
  region: string | import("@aws-sdk/types").Provider<string>;
13
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | NodeHttpHandler;
14
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
14
15
  retryMode: string | import("@aws-sdk/types").Provider<string>;
15
16
  sha256: import("@aws-sdk/types").HashConstructor;
16
17
  streamCollector: import("@aws-sdk/types").StreamCollector;
@@ -23,6 +23,7 @@ export declare const getRuntimeConfig: (config: DevOpsGuruClientConfig) => {
23
23
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
24
24
  regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
25
25
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
26
+ defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
26
27
  endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
27
28
  tls?: boolean | undefined;
28
29
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
package/package.json CHANGED
@@ -1,18 +1,15 @@
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.43.0",
4
+ "version": "3.47.0",
5
5
  "scripts": {
6
6
  "build": "yarn build:cjs && yarn build:es && yarn build:types",
7
- "build:cjs": "tsc -p tsconfig.json",
8
- "build:docs": "yarn clean:docs && typedoc ./",
7
+ "build:cjs": "tsc -p tsconfig.cjs.json",
8
+ "build:docs": "typedoc",
9
9
  "build:es": "tsc -p tsconfig.es.json",
10
10
  "build:types": "tsc -p tsconfig.types.json",
11
- "clean": "yarn clean:dist && yarn clean:docs",
12
- "clean:dist": "rimraf ./dist",
13
- "clean:docs": "rimraf ./docs",
14
- "downlevel-dts": "downlevel-dts dist-types dist-types/ts3.4",
15
- "test": "jest --coverage --passWithNoTests"
11
+ "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
12
+ "clean": "rimraf ./dist-*"
16
13
  },
17
14
  "main": "./dist-cjs/index.js",
18
15
  "types": "./dist-types/index.d.ts",
@@ -21,50 +18,46 @@
21
18
  "dependencies": {
22
19
  "@aws-crypto/sha256-browser": "2.0.0",
23
20
  "@aws-crypto/sha256-js": "2.0.0",
24
- "@aws-sdk/client-sts": "3.43.0",
25
- "@aws-sdk/config-resolver": "3.40.0",
26
- "@aws-sdk/credential-provider-node": "3.41.0",
27
- "@aws-sdk/fetch-http-handler": "3.40.0",
28
- "@aws-sdk/hash-node": "3.40.0",
29
- "@aws-sdk/invalid-dependency": "3.40.0",
30
- "@aws-sdk/middleware-content-length": "3.40.0",
31
- "@aws-sdk/middleware-host-header": "3.40.0",
32
- "@aws-sdk/middleware-logger": "3.40.0",
33
- "@aws-sdk/middleware-retry": "3.40.0",
34
- "@aws-sdk/middleware-serde": "3.40.0",
35
- "@aws-sdk/middleware-signing": "3.40.0",
36
- "@aws-sdk/middleware-stack": "3.40.0",
37
- "@aws-sdk/middleware-user-agent": "3.40.0",
38
- "@aws-sdk/node-config-provider": "3.40.0",
39
- "@aws-sdk/node-http-handler": "3.40.0",
40
- "@aws-sdk/protocol-http": "3.40.0",
41
- "@aws-sdk/smithy-client": "3.41.0",
42
- "@aws-sdk/types": "3.40.0",
43
- "@aws-sdk/url-parser": "3.40.0",
44
- "@aws-sdk/util-base64-browser": "3.37.0",
45
- "@aws-sdk/util-base64-node": "3.37.0",
46
- "@aws-sdk/util-body-length-browser": "3.37.0",
47
- "@aws-sdk/util-body-length-node": "3.37.0",
48
- "@aws-sdk/util-user-agent-browser": "3.40.0",
49
- "@aws-sdk/util-user-agent-node": "3.40.0",
50
- "@aws-sdk/util-utf8-browser": "3.37.0",
51
- "@aws-sdk/util-utf8-node": "3.37.0",
21
+ "@aws-sdk/client-sts": "3.47.0",
22
+ "@aws-sdk/config-resolver": "3.47.0",
23
+ "@aws-sdk/credential-provider-node": "3.47.0",
24
+ "@aws-sdk/fetch-http-handler": "3.47.0",
25
+ "@aws-sdk/hash-node": "3.47.0",
26
+ "@aws-sdk/invalid-dependency": "3.47.0",
27
+ "@aws-sdk/middleware-content-length": "3.47.0",
28
+ "@aws-sdk/middleware-host-header": "3.47.0",
29
+ "@aws-sdk/middleware-logger": "3.47.0",
30
+ "@aws-sdk/middleware-retry": "3.47.0",
31
+ "@aws-sdk/middleware-serde": "3.47.0",
32
+ "@aws-sdk/middleware-signing": "3.47.0",
33
+ "@aws-sdk/middleware-stack": "3.47.0",
34
+ "@aws-sdk/middleware-user-agent": "3.47.0",
35
+ "@aws-sdk/node-config-provider": "3.47.0",
36
+ "@aws-sdk/node-http-handler": "3.47.0",
37
+ "@aws-sdk/protocol-http": "3.47.0",
38
+ "@aws-sdk/smithy-client": "3.47.0",
39
+ "@aws-sdk/types": "3.47.0",
40
+ "@aws-sdk/url-parser": "3.47.0",
41
+ "@aws-sdk/util-base64-browser": "3.47.0",
42
+ "@aws-sdk/util-base64-node": "3.47.0",
43
+ "@aws-sdk/util-body-length-browser": "3.47.0",
44
+ "@aws-sdk/util-body-length-node": "3.47.0",
45
+ "@aws-sdk/util-defaults-mode-browser": "3.47.0",
46
+ "@aws-sdk/util-defaults-mode-node": "3.47.0",
47
+ "@aws-sdk/util-user-agent-browser": "3.47.0",
48
+ "@aws-sdk/util-user-agent-node": "3.47.0",
49
+ "@aws-sdk/util-utf8-browser": "3.47.0",
50
+ "@aws-sdk/util-utf8-node": "3.47.0",
52
51
  "tslib": "^2.3.0",
53
52
  "uuid": "^8.3.2"
54
53
  },
55
54
  "devDependencies": {
56
- "@aws-sdk/service-client-documentation-generator": "3.38.0",
55
+ "@aws-sdk/service-client-documentation-generator": "3.47.0",
57
56
  "@types/node": "^12.7.5",
58
- "@types/uuid": "^8.3.0",
59
- "downlevel-dts": "0.7.0",
60
- "jest": "^26.1.0",
61
- "rimraf": "^3.0.0",
62
- "ts-jest": "^26.4.1",
63
- "typedoc": "^0.19.2",
64
- "typescript": "~4.3.5"
57
+ "@types/uuid": "^8.3.0"
65
58
  },
66
59
  "engines": {
67
- "node": ">=10.0.0"
60
+ "node": ">=12.0.0"
68
61
  },
69
62
  "typesVersions": {
70
63
  "<4.0": {