@aws-sdk/client-devops-guru 3.934.0 → 3.935.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +193 -192
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +192 -0
- package/dist-es/models/errors.js +119 -0
- package/dist-es/models/models_0.js +1 -311
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +400 -0
- package/dist-types/models/errors.d.ts +155 -0
- package/dist-types/models/models_0.d.ts +1 -553
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +236 -0
- package/dist-types/ts3.4/models/errors.d.ts +68 -0
- package/dist-types/ts3.4/models/models_0.d.ts +27 -302
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,13 +1,30 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
1
|
+
import {
|
|
2
|
+
AnomalySeverity,
|
|
3
|
+
AnomalyStatus,
|
|
4
|
+
AnomalyType,
|
|
5
|
+
CloudWatchMetricDataStatusCode,
|
|
6
|
+
CloudWatchMetricsStat,
|
|
7
|
+
CostEstimationServiceResourceState,
|
|
8
|
+
CostEstimationStatus,
|
|
9
|
+
EventClass,
|
|
10
|
+
EventDataSource,
|
|
11
|
+
EventSourceOptInStatus,
|
|
12
|
+
InsightFeedbackOption,
|
|
13
|
+
InsightSeverity,
|
|
14
|
+
InsightStatus,
|
|
15
|
+
InsightType,
|
|
16
|
+
Locale,
|
|
17
|
+
LogAnomalyType,
|
|
18
|
+
NotificationMessageType,
|
|
19
|
+
OptInStatus,
|
|
20
|
+
OrganizationResourceCollectionType,
|
|
21
|
+
ResourceCollectionType,
|
|
22
|
+
ResourcePermission,
|
|
23
|
+
ResourceTypeFilter,
|
|
24
|
+
ServerSideEncryptionType,
|
|
25
|
+
ServiceName,
|
|
26
|
+
UpdateResourceCollectionAction,
|
|
27
|
+
} from "./enums";
|
|
11
28
|
export interface AccountInsightHealth {
|
|
12
29
|
OpenProactiveInsights?: number | undefined;
|
|
13
30
|
OpenReactiveInsights?: number | undefined;
|
|
@@ -16,22 +33,6 @@ export interface AccountHealth {
|
|
|
16
33
|
AccountId?: string | undefined;
|
|
17
34
|
Insight?: AccountInsightHealth | undefined;
|
|
18
35
|
}
|
|
19
|
-
export declare const NotificationMessageType: {
|
|
20
|
-
readonly CLOSED_INSIGHT: "CLOSED_INSIGHT";
|
|
21
|
-
readonly NEW_ASSOCIATION: "NEW_ASSOCIATION";
|
|
22
|
-
readonly NEW_INSIGHT: "NEW_INSIGHT";
|
|
23
|
-
readonly NEW_RECOMMENDATION: "NEW_RECOMMENDATION";
|
|
24
|
-
readonly SEVERITY_UPGRADED: "SEVERITY_UPGRADED";
|
|
25
|
-
};
|
|
26
|
-
export type NotificationMessageType =
|
|
27
|
-
(typeof NotificationMessageType)[keyof typeof NotificationMessageType];
|
|
28
|
-
export declare const InsightSeverity: {
|
|
29
|
-
readonly HIGH: "HIGH";
|
|
30
|
-
readonly LOW: "LOW";
|
|
31
|
-
readonly MEDIUM: "MEDIUM";
|
|
32
|
-
};
|
|
33
|
-
export type InsightSeverity =
|
|
34
|
-
(typeof InsightSeverity)[keyof typeof InsightSeverity];
|
|
35
36
|
export interface NotificationFilterConfig {
|
|
36
37
|
Severities?: InsightSeverity[] | undefined;
|
|
37
38
|
MessageTypes?: NotificationMessageType[] | undefined;
|
|
@@ -49,97 +50,13 @@ export interface AddNotificationChannelRequest {
|
|
|
49
50
|
export interface AddNotificationChannelResponse {
|
|
50
51
|
Id: string | undefined;
|
|
51
52
|
}
|
|
52
|
-
export declare class ConflictException extends __BaseException {
|
|
53
|
-
readonly name: "ConflictException";
|
|
54
|
-
readonly $fault: "client";
|
|
55
|
-
Message: string | undefined;
|
|
56
|
-
ResourceId: string | undefined;
|
|
57
|
-
ResourceType: string | undefined;
|
|
58
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
59
|
-
}
|
|
60
|
-
export declare class InternalServerException extends __BaseException {
|
|
61
|
-
readonly name: "InternalServerException";
|
|
62
|
-
readonly $fault: "server";
|
|
63
|
-
Message: string | undefined;
|
|
64
|
-
RetryAfterSeconds?: number | undefined;
|
|
65
|
-
constructor(
|
|
66
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
67
|
-
);
|
|
68
|
-
}
|
|
69
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
70
|
-
readonly name: "ResourceNotFoundException";
|
|
71
|
-
readonly $fault: "client";
|
|
72
|
-
Message: string | undefined;
|
|
73
|
-
ResourceId: string | undefined;
|
|
74
|
-
ResourceType: string | undefined;
|
|
75
|
-
constructor(
|
|
76
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
77
|
-
);
|
|
78
|
-
}
|
|
79
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
80
|
-
readonly name: "ServiceQuotaExceededException";
|
|
81
|
-
readonly $fault: "client";
|
|
82
|
-
Message?: string | undefined;
|
|
83
|
-
constructor(
|
|
84
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
85
|
-
);
|
|
86
|
-
}
|
|
87
|
-
export declare class ThrottlingException extends __BaseException {
|
|
88
|
-
readonly name: "ThrottlingException";
|
|
89
|
-
readonly $fault: "client";
|
|
90
|
-
Message: string | undefined;
|
|
91
|
-
QuotaCode?: string | undefined;
|
|
92
|
-
ServiceCode?: string | undefined;
|
|
93
|
-
RetryAfterSeconds?: number | undefined;
|
|
94
|
-
constructor(
|
|
95
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
96
|
-
);
|
|
97
|
-
}
|
|
98
53
|
export interface ValidationExceptionField {
|
|
99
54
|
Name: string | undefined;
|
|
100
55
|
Message: string | undefined;
|
|
101
56
|
}
|
|
102
|
-
export declare const ValidationExceptionReason: {
|
|
103
|
-
readonly CANNOT_PARSE: "CANNOT_PARSE";
|
|
104
|
-
readonly FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED";
|
|
105
|
-
readonly INVALID_PARAMETER_COMBINATION: "INVALID_PARAMETER_COMBINATION";
|
|
106
|
-
readonly OTHER: "OTHER";
|
|
107
|
-
readonly PARAMETER_INCONSISTENT_WITH_SERVICE_STATE: "PARAMETER_INCONSISTENT_WITH_SERVICE_STATE";
|
|
108
|
-
readonly UNKNOWN_OPERATION: "UNKNOWN_OPERATION";
|
|
109
|
-
};
|
|
110
|
-
export type ValidationExceptionReason =
|
|
111
|
-
(typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
112
|
-
export declare class ValidationException extends __BaseException {
|
|
113
|
-
readonly name: "ValidationException";
|
|
114
|
-
readonly $fault: "client";
|
|
115
|
-
Message: string | undefined;
|
|
116
|
-
Reason?: ValidationExceptionReason | undefined;
|
|
117
|
-
Fields?: ValidationExceptionField[] | undefined;
|
|
118
|
-
constructor(
|
|
119
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
120
|
-
);
|
|
121
|
-
}
|
|
122
|
-
export declare const EventSourceOptInStatus: {
|
|
123
|
-
readonly DISABLED: "DISABLED";
|
|
124
|
-
readonly ENABLED: "ENABLED";
|
|
125
|
-
};
|
|
126
|
-
export type EventSourceOptInStatus =
|
|
127
|
-
(typeof EventSourceOptInStatus)[keyof typeof EventSourceOptInStatus];
|
|
128
57
|
export interface AmazonCodeGuruProfilerIntegration {
|
|
129
58
|
Status?: EventSourceOptInStatus | undefined;
|
|
130
59
|
}
|
|
131
|
-
export declare const LogAnomalyType: {
|
|
132
|
-
readonly BLOCK_FORMAT: "BLOCK_FORMAT";
|
|
133
|
-
readonly FORMAT: "FORMAT";
|
|
134
|
-
readonly HTTP_CODE: "HTTP_CODE";
|
|
135
|
-
readonly KEYWORD: "KEYWORD";
|
|
136
|
-
readonly KEYWORD_TOKEN: "KEYWORD_TOKEN";
|
|
137
|
-
readonly NEW_FIELD_NAME: "NEW_FIELD_NAME";
|
|
138
|
-
readonly NUMERICAL_NAN: "NUMERICAL_NAN";
|
|
139
|
-
readonly NUMERICAL_POINT: "NUMERICAL_POINT";
|
|
140
|
-
};
|
|
141
|
-
export type LogAnomalyType =
|
|
142
|
-
(typeof LogAnomalyType)[keyof typeof LogAnomalyType];
|
|
143
60
|
export interface LogAnomalyClass {
|
|
144
61
|
LogStreamName?: string | undefined;
|
|
145
62
|
LogAnomalyType?: LogAnomalyType | undefined;
|
|
@@ -167,24 +84,10 @@ export interface AnomalyResource {
|
|
|
167
84
|
Name?: string | undefined;
|
|
168
85
|
Type?: string | undefined;
|
|
169
86
|
}
|
|
170
|
-
export declare const AnomalySeverity: {
|
|
171
|
-
readonly HIGH: "HIGH";
|
|
172
|
-
readonly LOW: "LOW";
|
|
173
|
-
readonly MEDIUM: "MEDIUM";
|
|
174
|
-
};
|
|
175
|
-
export type AnomalySeverity =
|
|
176
|
-
(typeof AnomalySeverity)[keyof typeof AnomalySeverity];
|
|
177
87
|
export interface CloudWatchMetricsDimension {
|
|
178
88
|
Name?: string | undefined;
|
|
179
89
|
Value?: string | undefined;
|
|
180
90
|
}
|
|
181
|
-
export declare const CloudWatchMetricDataStatusCode: {
|
|
182
|
-
readonly COMPLETE: "Complete";
|
|
183
|
-
readonly INTERNAL_ERROR: "InternalError";
|
|
184
|
-
readonly PARTIAL_DATA: "PartialData";
|
|
185
|
-
};
|
|
186
|
-
export type CloudWatchMetricDataStatusCode =
|
|
187
|
-
(typeof CloudWatchMetricDataStatusCode)[keyof typeof CloudWatchMetricDataStatusCode];
|
|
188
91
|
export interface TimestampMetricValuePair {
|
|
189
92
|
Timestamp?: Date | undefined;
|
|
190
93
|
MetricValue?: number | undefined;
|
|
@@ -193,18 +96,6 @@ export interface CloudWatchMetricsDataSummary {
|
|
|
193
96
|
TimestampMetricValuePairList?: TimestampMetricValuePair[] | undefined;
|
|
194
97
|
StatusCode?: CloudWatchMetricDataStatusCode | undefined;
|
|
195
98
|
}
|
|
196
|
-
export declare const CloudWatchMetricsStat: {
|
|
197
|
-
readonly AVERAGE: "Average";
|
|
198
|
-
readonly MAXIMUM: "Maximum";
|
|
199
|
-
readonly MINIMUM: "Minimum";
|
|
200
|
-
readonly P50: "p50";
|
|
201
|
-
readonly P90: "p90";
|
|
202
|
-
readonly P99: "p99";
|
|
203
|
-
readonly SAMPLE_COUNT: "SampleCount";
|
|
204
|
-
readonly SUM: "Sum";
|
|
205
|
-
};
|
|
206
|
-
export type CloudWatchMetricsStat =
|
|
207
|
-
(typeof CloudWatchMetricsStat)[keyof typeof CloudWatchMetricsStat];
|
|
208
99
|
export interface CloudWatchMetricsDetail {
|
|
209
100
|
MetricName?: string | undefined;
|
|
210
101
|
Namespace?: string | undefined;
|
|
@@ -259,20 +150,10 @@ export interface AnomalySourceMetadata {
|
|
|
259
150
|
SourceResourceName?: string | undefined;
|
|
260
151
|
SourceResourceType?: string | undefined;
|
|
261
152
|
}
|
|
262
|
-
export declare const AnomalyStatus: {
|
|
263
|
-
readonly CLOSED: "CLOSED";
|
|
264
|
-
readonly ONGOING: "ONGOING";
|
|
265
|
-
};
|
|
266
|
-
export type AnomalyStatus = (typeof AnomalyStatus)[keyof typeof AnomalyStatus];
|
|
267
153
|
export interface AnomalyTimeRange {
|
|
268
154
|
StartTime: Date | undefined;
|
|
269
155
|
EndTime?: Date | undefined;
|
|
270
156
|
}
|
|
271
|
-
export declare const AnomalyType: {
|
|
272
|
-
readonly CAUSAL: "CAUSAL";
|
|
273
|
-
readonly CONTEXTUAL: "CONTEXTUAL";
|
|
274
|
-
};
|
|
275
|
-
export type AnomalyType = (typeof AnomalyType)[keyof typeof AnomalyType];
|
|
276
157
|
export interface DeleteInsightRequest {
|
|
277
158
|
Id: string | undefined;
|
|
278
159
|
}
|
|
@@ -358,15 +239,6 @@ export interface DescribeEventSourcesConfigResponse {
|
|
|
358
239
|
export interface DescribeFeedbackRequest {
|
|
359
240
|
InsightId?: string | undefined;
|
|
360
241
|
}
|
|
361
|
-
export declare const InsightFeedbackOption: {
|
|
362
|
-
readonly ALERT_TOO_SENSITIVE: "ALERT_TOO_SENSITIVE";
|
|
363
|
-
readonly DATA_INCORRECT: "DATA_INCORRECT";
|
|
364
|
-
readonly DATA_NOISY_ANOMALY: "DATA_NOISY_ANOMALY";
|
|
365
|
-
readonly RECOMMENDATION_USEFUL: "RECOMMENDATION_USEFUL";
|
|
366
|
-
readonly VALID_COLLECTION: "VALID_COLLECTION";
|
|
367
|
-
};
|
|
368
|
-
export type InsightFeedbackOption =
|
|
369
|
-
(typeof InsightFeedbackOption)[keyof typeof InsightFeedbackOption];
|
|
370
242
|
export interface InsightFeedback {
|
|
371
243
|
Id?: string | undefined;
|
|
372
244
|
Feedback?: InsightFeedbackOption | undefined;
|
|
@@ -382,11 +254,6 @@ export interface InsightTimeRange {
|
|
|
382
254
|
StartTime: Date | undefined;
|
|
383
255
|
EndTime?: Date | undefined;
|
|
384
256
|
}
|
|
385
|
-
export declare const InsightStatus: {
|
|
386
|
-
readonly CLOSED: "CLOSED";
|
|
387
|
-
readonly ONGOING: "ONGOING";
|
|
388
|
-
};
|
|
389
|
-
export type InsightStatus = (typeof InsightStatus)[keyof typeof InsightStatus];
|
|
390
257
|
export interface ProactiveInsight {
|
|
391
258
|
Id?: string | undefined;
|
|
392
259
|
Name?: string | undefined;
|
|
@@ -432,14 +299,6 @@ export interface DescribeOrganizationOverviewResponse {
|
|
|
432
299
|
ReactiveInsights: number | undefined;
|
|
433
300
|
ProactiveInsights: number | undefined;
|
|
434
301
|
}
|
|
435
|
-
export declare const OrganizationResourceCollectionType: {
|
|
436
|
-
readonly AWS_ACCOUNT: "AWS_ACCOUNT";
|
|
437
|
-
readonly AWS_CLOUD_FORMATION: "AWS_CLOUD_FORMATION";
|
|
438
|
-
readonly AWS_SERVICE: "AWS_SERVICE";
|
|
439
|
-
readonly AWS_TAGS: "AWS_TAGS";
|
|
440
|
-
};
|
|
441
|
-
export type OrganizationResourceCollectionType =
|
|
442
|
-
(typeof OrganizationResourceCollectionType)[keyof typeof OrganizationResourceCollectionType];
|
|
443
302
|
export interface DescribeOrganizationResourceCollectionHealthRequest {
|
|
444
303
|
OrganizationResourceCollectionType:
|
|
445
304
|
| OrganizationResourceCollectionType
|
|
@@ -463,34 +322,6 @@ export interface ServiceInsightHealth {
|
|
|
463
322
|
OpenProactiveInsights?: number | undefined;
|
|
464
323
|
OpenReactiveInsights?: number | undefined;
|
|
465
324
|
}
|
|
466
|
-
export declare const ServiceName: {
|
|
467
|
-
readonly API_GATEWAY: "API_GATEWAY";
|
|
468
|
-
readonly APPLICATION_ELB: "APPLICATION_ELB";
|
|
469
|
-
readonly AUTO_SCALING_GROUP: "AUTO_SCALING_GROUP";
|
|
470
|
-
readonly CLOUD_FRONT: "CLOUD_FRONT";
|
|
471
|
-
readonly DYNAMO_DB: "DYNAMO_DB";
|
|
472
|
-
readonly EC2: "EC2";
|
|
473
|
-
readonly ECS: "ECS";
|
|
474
|
-
readonly EKS: "EKS";
|
|
475
|
-
readonly ELASTIC_BEANSTALK: "ELASTIC_BEANSTALK";
|
|
476
|
-
readonly ELASTI_CACHE: "ELASTI_CACHE";
|
|
477
|
-
readonly ELB: "ELB";
|
|
478
|
-
readonly ES: "ES";
|
|
479
|
-
readonly KINESIS: "KINESIS";
|
|
480
|
-
readonly LAMBDA: "LAMBDA";
|
|
481
|
-
readonly NAT_GATEWAY: "NAT_GATEWAY";
|
|
482
|
-
readonly NETWORK_ELB: "NETWORK_ELB";
|
|
483
|
-
readonly RDS: "RDS";
|
|
484
|
-
readonly REDSHIFT: "REDSHIFT";
|
|
485
|
-
readonly ROUTE_53: "ROUTE_53";
|
|
486
|
-
readonly S3: "S3";
|
|
487
|
-
readonly SAGE_MAKER: "SAGE_MAKER";
|
|
488
|
-
readonly SNS: "SNS";
|
|
489
|
-
readonly SQS: "SQS";
|
|
490
|
-
readonly STEP_FUNCTIONS: "STEP_FUNCTIONS";
|
|
491
|
-
readonly SWF: "SWF";
|
|
492
|
-
};
|
|
493
|
-
export type ServiceName = (typeof ServiceName)[keyof typeof ServiceName];
|
|
494
325
|
export interface ServiceHealth {
|
|
495
326
|
ServiceName?: ServiceName | undefined;
|
|
496
327
|
Insight?: ServiceInsightHealth | undefined;
|
|
@@ -509,13 +340,6 @@ export interface DescribeOrganizationResourceCollectionHealthResponse {
|
|
|
509
340
|
NextToken?: string | undefined;
|
|
510
341
|
Tags?: TagHealth[] | undefined;
|
|
511
342
|
}
|
|
512
|
-
export declare const ResourceCollectionType: {
|
|
513
|
-
readonly AWS_CLOUD_FORMATION: "AWS_CLOUD_FORMATION";
|
|
514
|
-
readonly AWS_SERVICE: "AWS_SERVICE";
|
|
515
|
-
readonly AWS_TAGS: "AWS_TAGS";
|
|
516
|
-
};
|
|
517
|
-
export type ResourceCollectionType =
|
|
518
|
-
(typeof ResourceCollectionType)[keyof typeof ResourceCollectionType];
|
|
519
343
|
export interface DescribeResourceCollectionHealthRequest {
|
|
520
344
|
ResourceCollectionType: ResourceCollectionType | undefined;
|
|
521
345
|
NextToken?: string | undefined;
|
|
@@ -527,17 +351,6 @@ export interface DescribeResourceCollectionHealthResponse {
|
|
|
527
351
|
Tags?: TagHealth[] | undefined;
|
|
528
352
|
}
|
|
529
353
|
export interface DescribeServiceIntegrationRequest {}
|
|
530
|
-
export declare const OptInStatus: {
|
|
531
|
-
readonly DISABLED: "DISABLED";
|
|
532
|
-
readonly ENABLED: "ENABLED";
|
|
533
|
-
};
|
|
534
|
-
export type OptInStatus = (typeof OptInStatus)[keyof typeof OptInStatus];
|
|
535
|
-
export declare const ServerSideEncryptionType: {
|
|
536
|
-
readonly AWS_OWNED_KMS_KEY: "AWS_OWNED_KMS_KEY";
|
|
537
|
-
readonly CUSTOMER_MANAGED_KEY: "CUSTOMER_MANAGED_KEY";
|
|
538
|
-
};
|
|
539
|
-
export type ServerSideEncryptionType =
|
|
540
|
-
(typeof ServerSideEncryptionType)[keyof typeof ServerSideEncryptionType];
|
|
541
354
|
export interface KMSServerSideEncryptionIntegration {
|
|
542
355
|
KMSKeyId?: string | undefined;
|
|
543
356
|
OptInStatus?: OptInStatus | undefined;
|
|
@@ -560,12 +373,6 @@ export interface DescribeServiceIntegrationResponse {
|
|
|
560
373
|
export interface GetCostEstimationRequest {
|
|
561
374
|
NextToken?: string | undefined;
|
|
562
375
|
}
|
|
563
|
-
export declare const CostEstimationServiceResourceState: {
|
|
564
|
-
readonly ACTIVE: "ACTIVE";
|
|
565
|
-
readonly INACTIVE: "INACTIVE";
|
|
566
|
-
};
|
|
567
|
-
export type CostEstimationServiceResourceState =
|
|
568
|
-
(typeof CostEstimationServiceResourceState)[keyof typeof CostEstimationServiceResourceState];
|
|
569
376
|
export interface ServiceResourceCost {
|
|
570
377
|
Type?: string | undefined;
|
|
571
378
|
State?: CostEstimationServiceResourceState | undefined;
|
|
@@ -586,12 +393,6 @@ export interface CostEstimationResourceCollectionFilter {
|
|
|
586
393
|
| undefined;
|
|
587
394
|
Tags?: TagCostEstimationResourceCollectionFilter[] | undefined;
|
|
588
395
|
}
|
|
589
|
-
export declare const CostEstimationStatus: {
|
|
590
|
-
readonly COMPLETED: "COMPLETED";
|
|
591
|
-
readonly ONGOING: "ONGOING";
|
|
592
|
-
};
|
|
593
|
-
export type CostEstimationStatus =
|
|
594
|
-
(typeof CostEstimationStatus)[keyof typeof CostEstimationStatus];
|
|
595
396
|
export interface CostEstimationTimeRange {
|
|
596
397
|
StartTime?: Date | undefined;
|
|
597
398
|
EndTime?: Date | undefined;
|
|
@@ -687,20 +488,6 @@ export interface ListAnomalousLogGroupsResponse {
|
|
|
687
488
|
AnomalousLogGroups: AnomalousLogGroup[] | undefined;
|
|
688
489
|
NextToken?: string | undefined;
|
|
689
490
|
}
|
|
690
|
-
export declare const EventDataSource: {
|
|
691
|
-
readonly AWS_CLOUD_TRAIL: "AWS_CLOUD_TRAIL";
|
|
692
|
-
readonly AWS_CODE_DEPLOY: "AWS_CODE_DEPLOY";
|
|
693
|
-
};
|
|
694
|
-
export type EventDataSource =
|
|
695
|
-
(typeof EventDataSource)[keyof typeof EventDataSource];
|
|
696
|
-
export declare const EventClass: {
|
|
697
|
-
readonly CONFIG_CHANGE: "CONFIG_CHANGE";
|
|
698
|
-
readonly DEPLOYMENT: "DEPLOYMENT";
|
|
699
|
-
readonly INFRASTRUCTURE: "INFRASTRUCTURE";
|
|
700
|
-
readonly SCHEMA_CHANGE: "SCHEMA_CHANGE";
|
|
701
|
-
readonly SECURITY_CHANGE: "SECURITY_CHANGE";
|
|
702
|
-
};
|
|
703
|
-
export type EventClass = (typeof EventClass)[keyof typeof EventClass];
|
|
704
491
|
export interface EventTimeRange {
|
|
705
492
|
FromTime: Date | undefined;
|
|
706
493
|
ToTime: Date | undefined;
|
|
@@ -738,11 +525,6 @@ export interface ListEventsResponse {
|
|
|
738
525
|
Events: Event[] | undefined;
|
|
739
526
|
NextToken?: string | undefined;
|
|
740
527
|
}
|
|
741
|
-
export declare const InsightType: {
|
|
742
|
-
readonly PROACTIVE: "PROACTIVE";
|
|
743
|
-
readonly REACTIVE: "REACTIVE";
|
|
744
|
-
};
|
|
745
|
-
export type InsightType = (typeof InsightType)[keyof typeof InsightType];
|
|
746
528
|
export interface ListInsightsAnyStatusFilter {
|
|
747
529
|
Type: InsightType | undefined;
|
|
748
530
|
StartTimeRange: StartTimeRange | undefined;
|
|
@@ -794,43 +576,6 @@ export interface ListInsightsResponse {
|
|
|
794
576
|
ReactiveInsights?: ReactiveInsightSummary[] | undefined;
|
|
795
577
|
NextToken?: string | undefined;
|
|
796
578
|
}
|
|
797
|
-
export declare const ResourcePermission: {
|
|
798
|
-
readonly FULL_PERMISSION: "FULL_PERMISSION";
|
|
799
|
-
readonly MISSING_PERMISSION: "MISSING_PERMISSION";
|
|
800
|
-
};
|
|
801
|
-
export type ResourcePermission =
|
|
802
|
-
(typeof ResourcePermission)[keyof typeof ResourcePermission];
|
|
803
|
-
export declare const ResourceTypeFilter: {
|
|
804
|
-
readonly CLOUDFRONT_DISTRIBUTION: "CLOUDFRONT_DISTRIBUTION";
|
|
805
|
-
readonly DYNAMODB_TABLE: "DYNAMODB_TABLE";
|
|
806
|
-
readonly EC2_NAT_GATEWAY: "EC2_NAT_GATEWAY";
|
|
807
|
-
readonly ECS_CLUSTER: "ECS_CLUSTER";
|
|
808
|
-
readonly ECS_SERVICE: "ECS_SERVICE";
|
|
809
|
-
readonly EKS_CLUSTER: "EKS_CLUSTER";
|
|
810
|
-
readonly ELASTICACHE_CACHE_CLUSTER: "ELASTICACHE_CACHE_CLUSTER";
|
|
811
|
-
readonly ELASTICSEARCH_DOMAIN: "ELASTICSEARCH_DOMAIN";
|
|
812
|
-
readonly ELASTIC_BEANSTALK_ENVIRONMENT: "ELASTIC_BEANSTALK_ENVIRONMENT";
|
|
813
|
-
readonly ELASTIC_LOAD_BALANCER_LOAD_BALANCER: "ELASTIC_LOAD_BALANCER_LOAD_BALANCER";
|
|
814
|
-
readonly ELASTIC_LOAD_BALANCING_V2_LOAD_BALANCER: "ELASTIC_LOAD_BALANCING_V2_LOAD_BALANCER";
|
|
815
|
-
readonly ELASTIC_LOAD_BALANCING_V2_TARGET_GROUP: "ELASTIC_LOAD_BALANCING_V2_TARGET_GROUP";
|
|
816
|
-
readonly KINESIS_STREAM: "KINESIS_STREAM";
|
|
817
|
-
readonly LAMBDA_FUNCTION: "LAMBDA_FUNCTION";
|
|
818
|
-
readonly LOG_GROUPS: "LOG_GROUPS";
|
|
819
|
-
readonly OPEN_SEARCH_SERVICE_DOMAIN: "OPEN_SEARCH_SERVICE_DOMAIN";
|
|
820
|
-
readonly RDS_DB_CLUSTER: "RDS_DB_CLUSTER";
|
|
821
|
-
readonly RDS_DB_INSTANCE: "RDS_DB_INSTANCE";
|
|
822
|
-
readonly REDSHIFT_CLUSTER: "REDSHIFT_CLUSTER";
|
|
823
|
-
readonly ROUTE53_HEALTH_CHECK: "ROUTE53_HEALTH_CHECK";
|
|
824
|
-
readonly ROUTE53_HOSTED_ZONE: "ROUTE53_HOSTED_ZONE";
|
|
825
|
-
readonly S3_BUCKET: "S3_BUCKET";
|
|
826
|
-
readonly SAGEMAKER_ENDPOINT: "SAGEMAKER_ENDPOINT";
|
|
827
|
-
readonly SNS_TOPIC: "SNS_TOPIC";
|
|
828
|
-
readonly SQS_QUEUE: "SQS_QUEUE";
|
|
829
|
-
readonly STEP_FUNCTIONS_ACTIVITY: "STEP_FUNCTIONS_ACTIVITY";
|
|
830
|
-
readonly STEP_FUNCTIONS_STATE_MACHINE: "STEP_FUNCTIONS_STATE_MACHINE";
|
|
831
|
-
};
|
|
832
|
-
export type ResourceTypeFilter =
|
|
833
|
-
(typeof ResourceTypeFilter)[keyof typeof ResourceTypeFilter];
|
|
834
579
|
export interface ListMonitoredResourcesFilters {
|
|
835
580
|
ResourcePermission: ResourcePermission | undefined;
|
|
836
581
|
ResourceTypeFilters: ResourceTypeFilter[] | undefined;
|
|
@@ -897,20 +642,6 @@ export interface ListOrganizationInsightsResponse {
|
|
|
897
642
|
ReactiveInsights?: ReactiveOrganizationInsightSummary[] | undefined;
|
|
898
643
|
NextToken?: string | undefined;
|
|
899
644
|
}
|
|
900
|
-
export declare const Locale: {
|
|
901
|
-
readonly DE_DE: "DE_DE";
|
|
902
|
-
readonly EN_GB: "EN_GB";
|
|
903
|
-
readonly EN_US: "EN_US";
|
|
904
|
-
readonly ES_ES: "ES_ES";
|
|
905
|
-
readonly FR_FR: "FR_FR";
|
|
906
|
-
readonly IT_IT: "IT_IT";
|
|
907
|
-
readonly JA_JP: "JA_JP";
|
|
908
|
-
readonly KO_KR: "KO_KR";
|
|
909
|
-
readonly PT_BR: "PT_BR";
|
|
910
|
-
readonly ZH_CN: "ZH_CN";
|
|
911
|
-
readonly ZH_TW: "ZH_TW";
|
|
912
|
-
};
|
|
913
|
-
export type Locale = (typeof Locale)[keyof typeof Locale];
|
|
914
645
|
export interface ListRecommendationsRequest {
|
|
915
646
|
InsightId: string | undefined;
|
|
916
647
|
NextToken?: string | undefined;
|
|
@@ -1010,12 +741,6 @@ export interface UpdateEventSourcesConfigRequest {
|
|
|
1010
741
|
EventSources?: EventSourcesConfig | undefined;
|
|
1011
742
|
}
|
|
1012
743
|
export interface UpdateEventSourcesConfigResponse {}
|
|
1013
|
-
export declare const UpdateResourceCollectionAction: {
|
|
1014
|
-
readonly ADD: "ADD";
|
|
1015
|
-
readonly REMOVE: "REMOVE";
|
|
1016
|
-
};
|
|
1017
|
-
export type UpdateResourceCollectionAction =
|
|
1018
|
-
(typeof UpdateResourceCollectionAction)[keyof typeof UpdateResourceCollectionAction];
|
|
1019
744
|
export interface UpdateCloudFormationCollectionFilter {
|
|
1020
745
|
StackNames?: string[] | undefined;
|
|
1021
746
|
}
|
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.935.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-devops-guru",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.935.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.935.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.930.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.933.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.935.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
30
30
|
"@aws-sdk/types": "3.930.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.930.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.935.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
-
"@smithy/core": "^3.18.
|
|
35
|
+
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
37
|
"@smithy/hash-node": "^4.2.5",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
43
43
|
"@smithy/middleware-stack": "^4.2.5",
|
|
44
44
|
"@smithy/node-config-provider": "^4.3.5",
|
|
45
45
|
"@smithy/node-http-handler": "^4.4.5",
|
|
46
46
|
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
47
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
48
48
|
"@smithy/types": "^4.9.0",
|
|
49
49
|
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
55
55
|
"@smithy/util-endpoints": "^3.2.5",
|
|
56
56
|
"@smithy/util-middleware": "^4.2.5",
|
|
57
57
|
"@smithy/util-retry": "^4.2.5",
|
package/dist-es/models/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|