@aws-sdk/client-devops-guru 3.300.0 → 3.303.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/models/models_0.js +188 -213
- package/dist-es/models/models_0.js +188 -213
- package/dist-types/commands/AddNotificationChannelCommand.d.ts +6 -6
- package/dist-types/commands/DeleteInsightCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAccountOverviewCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAnomalyCommand.d.ts +1 -1
- package/dist-types/commands/DescribeFeedbackCommand.d.ts +1 -1
- package/dist-types/commands/DescribeInsightCommand.d.ts +1 -1
- package/dist-types/commands/DescribeOrganizationHealthCommand.d.ts +3 -3
- package/dist-types/commands/DescribeOrganizationOverviewCommand.d.ts +3 -3
- package/dist-types/commands/DescribeOrganizationResourceCollectionHealthCommand.d.ts +3 -3
- package/dist-types/commands/DescribeResourceCollectionHealthCommand.d.ts +1 -1
- package/dist-types/commands/GetCostEstimationCommand.d.ts +1 -1
- package/dist-types/commands/GetResourceCollectionCommand.d.ts +1 -1
- package/dist-types/commands/ListAnomaliesForInsightCommand.d.ts +5 -5
- package/dist-types/commands/ListAnomalousLogGroupsCommand.d.ts +1 -1
- package/dist-types/commands/ListEventsCommand.d.ts +9 -9
- package/dist-types/commands/ListInsightsCommand.d.ts +7 -7
- package/dist-types/commands/ListMonitoredResourcesCommand.d.ts +3 -3
- package/dist-types/commands/ListNotificationChannelsCommand.d.ts +1 -1
- package/dist-types/commands/ListOrganizationInsightsCommand.d.ts +9 -9
- package/dist-types/commands/ListRecommendationsCommand.d.ts +1 -1
- package/dist-types/commands/PutFeedbackCommand.d.ts +2 -2
- package/dist-types/commands/RemoveNotificationChannelCommand.d.ts +1 -1
- package/dist-types/commands/SearchInsightsCommand.d.ts +13 -13
- package/dist-types/commands/SearchOrganizationInsightsCommand.d.ts +14 -14
- package/dist-types/commands/StartCostEstimationCommand.d.ts +7 -7
- package/dist-types/commands/UpdateEventSourcesConfigCommand.d.ts +3 -3
- package/dist-types/commands/UpdateResourceCollectionCommand.d.ts +7 -7
- package/dist-types/commands/UpdateServiceIntegrationCommand.d.ts +4 -4
- package/dist-types/models/models_0.d.ts +313 -188
- package/dist-types/ts3.4/models/models_0.d.ts +230 -188
- package/package.json +34 -34
|
@@ -12,20 +12,18 @@ export class AccessDeniedException extends __BaseException {
|
|
|
12
12
|
this.Message = opts.Message;
|
|
13
13
|
}
|
|
14
14
|
}
|
|
15
|
-
export
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
InsightSeverity["MEDIUM"] = "MEDIUM";
|
|
28
|
-
})(InsightSeverity || (InsightSeverity = {}));
|
|
15
|
+
export const NotificationMessageType = {
|
|
16
|
+
CLOSED_INSIGHT: "CLOSED_INSIGHT",
|
|
17
|
+
NEW_ASSOCIATION: "NEW_ASSOCIATION",
|
|
18
|
+
NEW_INSIGHT: "NEW_INSIGHT",
|
|
19
|
+
NEW_RECOMMENDATION: "NEW_RECOMMENDATION",
|
|
20
|
+
SEVERITY_UPGRADED: "SEVERITY_UPGRADED",
|
|
21
|
+
};
|
|
22
|
+
export const InsightSeverity = {
|
|
23
|
+
HIGH: "HIGH",
|
|
24
|
+
LOW: "LOW",
|
|
25
|
+
MEDIUM: "MEDIUM",
|
|
26
|
+
};
|
|
29
27
|
export class ConflictException extends __BaseException {
|
|
30
28
|
constructor(opts) {
|
|
31
29
|
super({
|
|
@@ -99,15 +97,14 @@ export class ThrottlingException extends __BaseException {
|
|
|
99
97
|
this.RetryAfterSeconds = opts.RetryAfterSeconds;
|
|
100
98
|
}
|
|
101
99
|
}
|
|
102
|
-
export
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
})(ValidationExceptionReason || (ValidationExceptionReason = {}));
|
|
100
|
+
export const ValidationExceptionReason = {
|
|
101
|
+
CANNOT_PARSE: "CANNOT_PARSE",
|
|
102
|
+
FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED",
|
|
103
|
+
INVALID_PARAMETER_COMBINATION: "INVALID_PARAMETER_COMBINATION",
|
|
104
|
+
OTHER: "OTHER",
|
|
105
|
+
PARAMETER_INCONSISTENT_WITH_SERVICE_STATE: "PARAMETER_INCONSISTENT_WITH_SERVICE_STATE",
|
|
106
|
+
UNKNOWN_OPERATION: "UNKNOWN_OPERATION",
|
|
107
|
+
};
|
|
111
108
|
export class ValidationException extends __BaseException {
|
|
112
109
|
constructor(opts) {
|
|
113
110
|
super({
|
|
@@ -123,193 +120,171 @@ export class ValidationException extends __BaseException {
|
|
|
123
120
|
this.Fields = opts.Fields;
|
|
124
121
|
}
|
|
125
122
|
}
|
|
126
|
-
export
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
}
|
|
175
|
-
export
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
}
|
|
229
|
-
export
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
}
|
|
244
|
-
export
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
ResourceTypeFilter["STEP_FUNCTIONS_ACTIVITY"] = "STEP_FUNCTIONS_ACTIVITY";
|
|
295
|
-
ResourceTypeFilter["STEP_FUNCTIONS_STATE_MACHINE"] = "STEP_FUNCTIONS_STATE_MACHINE";
|
|
296
|
-
})(ResourceTypeFilter || (ResourceTypeFilter = {}));
|
|
297
|
-
export var Locale;
|
|
298
|
-
(function (Locale) {
|
|
299
|
-
Locale["DE_DE"] = "DE_DE";
|
|
300
|
-
Locale["EN_GB"] = "EN_GB";
|
|
301
|
-
Locale["EN_US"] = "EN_US";
|
|
302
|
-
Locale["ES_ES"] = "ES_ES";
|
|
303
|
-
Locale["FR_FR"] = "FR_FR";
|
|
304
|
-
Locale["IT_IT"] = "IT_IT";
|
|
305
|
-
Locale["JA_JP"] = "JA_JP";
|
|
306
|
-
Locale["KO_KR"] = "KO_KR";
|
|
307
|
-
Locale["PT_BR"] = "PT_BR";
|
|
308
|
-
Locale["ZH_CN"] = "ZH_CN";
|
|
309
|
-
Locale["ZH_TW"] = "ZH_TW";
|
|
310
|
-
})(Locale || (Locale = {}));
|
|
311
|
-
export var UpdateResourceCollectionAction;
|
|
312
|
-
(function (UpdateResourceCollectionAction) {
|
|
313
|
-
UpdateResourceCollectionAction["ADD"] = "ADD";
|
|
314
|
-
UpdateResourceCollectionAction["REMOVE"] = "REMOVE";
|
|
315
|
-
})(UpdateResourceCollectionAction || (UpdateResourceCollectionAction = {}));
|
|
123
|
+
export const EventSourceOptInStatus = {
|
|
124
|
+
DISABLED: "DISABLED",
|
|
125
|
+
ENABLED: "ENABLED",
|
|
126
|
+
};
|
|
127
|
+
export const LogAnomalyType = {
|
|
128
|
+
BLOCK_FORMAT: "BLOCK_FORMAT",
|
|
129
|
+
FORMAT: "FORMAT",
|
|
130
|
+
HTTP_CODE: "HTTP_CODE",
|
|
131
|
+
KEYWORD: "KEYWORD",
|
|
132
|
+
KEYWORD_TOKEN: "KEYWORD_TOKEN",
|
|
133
|
+
NEW_FIELD_NAME: "NEW_FIELD_NAME",
|
|
134
|
+
NUMERICAL_NAN: "NUMERICAL_NAN",
|
|
135
|
+
NUMERICAL_POINT: "NUMERICAL_POINT",
|
|
136
|
+
};
|
|
137
|
+
export const AnomalySeverity = {
|
|
138
|
+
HIGH: "HIGH",
|
|
139
|
+
LOW: "LOW",
|
|
140
|
+
MEDIUM: "MEDIUM",
|
|
141
|
+
};
|
|
142
|
+
export const CloudWatchMetricDataStatusCode = {
|
|
143
|
+
COMPLETE: "Complete",
|
|
144
|
+
INTERNAL_ERROR: "InternalError",
|
|
145
|
+
PARTIAL_DATA: "PartialData",
|
|
146
|
+
};
|
|
147
|
+
export const CloudWatchMetricsStat = {
|
|
148
|
+
AVERAGE: "Average",
|
|
149
|
+
MAXIMUM: "Maximum",
|
|
150
|
+
MINIMUM: "Minimum",
|
|
151
|
+
P50: "p50",
|
|
152
|
+
P90: "p90",
|
|
153
|
+
P99: "p99",
|
|
154
|
+
SAMPLE_COUNT: "SampleCount",
|
|
155
|
+
SUM: "Sum",
|
|
156
|
+
};
|
|
157
|
+
export const AnomalyStatus = {
|
|
158
|
+
CLOSED: "CLOSED",
|
|
159
|
+
ONGOING: "ONGOING",
|
|
160
|
+
};
|
|
161
|
+
export const AnomalyType = {
|
|
162
|
+
CAUSAL: "CAUSAL",
|
|
163
|
+
CONTEXTUAL: "CONTEXTUAL",
|
|
164
|
+
};
|
|
165
|
+
export const InsightFeedbackOption = {
|
|
166
|
+
ALERT_TOO_SENSITIVE: "ALERT_TOO_SENSITIVE",
|
|
167
|
+
DATA_INCORRECT: "DATA_INCORRECT",
|
|
168
|
+
DATA_NOISY_ANOMALY: "DATA_NOISY_ANOMALY",
|
|
169
|
+
RECOMMENDATION_USEFUL: "RECOMMENDATION_USEFUL",
|
|
170
|
+
VALID_COLLECTION: "VALID_COLLECTION",
|
|
171
|
+
};
|
|
172
|
+
export const InsightStatus = {
|
|
173
|
+
CLOSED: "CLOSED",
|
|
174
|
+
ONGOING: "ONGOING",
|
|
175
|
+
};
|
|
176
|
+
export const OrganizationResourceCollectionType = {
|
|
177
|
+
AWS_ACCOUNT: "AWS_ACCOUNT",
|
|
178
|
+
AWS_CLOUD_FORMATION: "AWS_CLOUD_FORMATION",
|
|
179
|
+
AWS_SERVICE: "AWS_SERVICE",
|
|
180
|
+
AWS_TAGS: "AWS_TAGS",
|
|
181
|
+
};
|
|
182
|
+
export const ServiceName = {
|
|
183
|
+
API_GATEWAY: "API_GATEWAY",
|
|
184
|
+
APPLICATION_ELB: "APPLICATION_ELB",
|
|
185
|
+
AUTO_SCALING_GROUP: "AUTO_SCALING_GROUP",
|
|
186
|
+
CLOUD_FRONT: "CLOUD_FRONT",
|
|
187
|
+
DYNAMO_DB: "DYNAMO_DB",
|
|
188
|
+
EC2: "EC2",
|
|
189
|
+
ECS: "ECS",
|
|
190
|
+
EKS: "EKS",
|
|
191
|
+
ELASTIC_BEANSTALK: "ELASTIC_BEANSTALK",
|
|
192
|
+
ELASTI_CACHE: "ELASTI_CACHE",
|
|
193
|
+
ELB: "ELB",
|
|
194
|
+
ES: "ES",
|
|
195
|
+
KINESIS: "KINESIS",
|
|
196
|
+
LAMBDA: "LAMBDA",
|
|
197
|
+
NAT_GATEWAY: "NAT_GATEWAY",
|
|
198
|
+
NETWORK_ELB: "NETWORK_ELB",
|
|
199
|
+
RDS: "RDS",
|
|
200
|
+
REDSHIFT: "REDSHIFT",
|
|
201
|
+
ROUTE_53: "ROUTE_53",
|
|
202
|
+
S3: "S3",
|
|
203
|
+
SAGE_MAKER: "SAGE_MAKER",
|
|
204
|
+
SNS: "SNS",
|
|
205
|
+
SQS: "SQS",
|
|
206
|
+
STEP_FUNCTIONS: "STEP_FUNCTIONS",
|
|
207
|
+
SWF: "SWF",
|
|
208
|
+
};
|
|
209
|
+
export const ResourceCollectionType = {
|
|
210
|
+
AWS_CLOUD_FORMATION: "AWS_CLOUD_FORMATION",
|
|
211
|
+
AWS_SERVICE: "AWS_SERVICE",
|
|
212
|
+
AWS_TAGS: "AWS_TAGS",
|
|
213
|
+
};
|
|
214
|
+
export const OptInStatus = {
|
|
215
|
+
DISABLED: "DISABLED",
|
|
216
|
+
ENABLED: "ENABLED",
|
|
217
|
+
};
|
|
218
|
+
export const CostEstimationServiceResourceState = {
|
|
219
|
+
ACTIVE: "ACTIVE",
|
|
220
|
+
INACTIVE: "INACTIVE",
|
|
221
|
+
};
|
|
222
|
+
export const CostEstimationStatus = {
|
|
223
|
+
COMPLETED: "COMPLETED",
|
|
224
|
+
ONGOING: "ONGOING",
|
|
225
|
+
};
|
|
226
|
+
export const EventDataSource = {
|
|
227
|
+
AWS_CLOUD_TRAIL: "AWS_CLOUD_TRAIL",
|
|
228
|
+
AWS_CODE_DEPLOY: "AWS_CODE_DEPLOY",
|
|
229
|
+
};
|
|
230
|
+
export const EventClass = {
|
|
231
|
+
CONFIG_CHANGE: "CONFIG_CHANGE",
|
|
232
|
+
DEPLOYMENT: "DEPLOYMENT",
|
|
233
|
+
INFRASTRUCTURE: "INFRASTRUCTURE",
|
|
234
|
+
SCHEMA_CHANGE: "SCHEMA_CHANGE",
|
|
235
|
+
SECURITY_CHANGE: "SECURITY_CHANGE",
|
|
236
|
+
};
|
|
237
|
+
export const InsightType = {
|
|
238
|
+
PROACTIVE: "PROACTIVE",
|
|
239
|
+
REACTIVE: "REACTIVE",
|
|
240
|
+
};
|
|
241
|
+
export const ResourcePermission = {
|
|
242
|
+
FULL_PERMISSION: "FULL_PERMISSION",
|
|
243
|
+
MISSING_PERMISSION: "MISSING_PERMISSION",
|
|
244
|
+
};
|
|
245
|
+
export const ResourceTypeFilter = {
|
|
246
|
+
CLOUDFRONT_DISTRIBUTION: "CLOUDFRONT_DISTRIBUTION",
|
|
247
|
+
DYNAMODB_TABLE: "DYNAMODB_TABLE",
|
|
248
|
+
EC2_NAT_GATEWAY: "EC2_NAT_GATEWAY",
|
|
249
|
+
ECS_CLUSTER: "ECS_CLUSTER",
|
|
250
|
+
ECS_SERVICE: "ECS_SERVICE",
|
|
251
|
+
EKS_CLUSTER: "EKS_CLUSTER",
|
|
252
|
+
ELASTICACHE_CACHE_CLUSTER: "ELASTICACHE_CACHE_CLUSTER",
|
|
253
|
+
ELASTICSEARCH_DOMAIN: "ELASTICSEARCH_DOMAIN",
|
|
254
|
+
ELASTIC_BEANSTALK_ENVIRONMENT: "ELASTIC_BEANSTALK_ENVIRONMENT",
|
|
255
|
+
ELASTIC_LOAD_BALANCER_LOAD_BALANCER: "ELASTIC_LOAD_BALANCER_LOAD_BALANCER",
|
|
256
|
+
ELASTIC_LOAD_BALANCING_V2_LOAD_BALANCER: "ELASTIC_LOAD_BALANCING_V2_LOAD_BALANCER",
|
|
257
|
+
ELASTIC_LOAD_BALANCING_V2_TARGET_GROUP: "ELASTIC_LOAD_BALANCING_V2_TARGET_GROUP",
|
|
258
|
+
KINESIS_STREAM: "KINESIS_STREAM",
|
|
259
|
+
LAMBDA_FUNCTION: "LAMBDA_FUNCTION",
|
|
260
|
+
LOG_GROUPS: "LOG_GROUPS",
|
|
261
|
+
OPEN_SEARCH_SERVICE_DOMAIN: "OPEN_SEARCH_SERVICE_DOMAIN",
|
|
262
|
+
RDS_DB_CLUSTER: "RDS_DB_CLUSTER",
|
|
263
|
+
RDS_DB_INSTANCE: "RDS_DB_INSTANCE",
|
|
264
|
+
REDSHIFT_CLUSTER: "REDSHIFT_CLUSTER",
|
|
265
|
+
ROUTE53_HEALTH_CHECK: "ROUTE53_HEALTH_CHECK",
|
|
266
|
+
ROUTE53_HOSTED_ZONE: "ROUTE53_HOSTED_ZONE",
|
|
267
|
+
S3_BUCKET: "S3_BUCKET",
|
|
268
|
+
SAGEMAKER_ENDPOINT: "SAGEMAKER_ENDPOINT",
|
|
269
|
+
SNS_TOPIC: "SNS_TOPIC",
|
|
270
|
+
SQS_QUEUE: "SQS_QUEUE",
|
|
271
|
+
STEP_FUNCTIONS_ACTIVITY: "STEP_FUNCTIONS_ACTIVITY",
|
|
272
|
+
STEP_FUNCTIONS_STATE_MACHINE: "STEP_FUNCTIONS_STATE_MACHINE",
|
|
273
|
+
};
|
|
274
|
+
export const Locale = {
|
|
275
|
+
DE_DE: "DE_DE",
|
|
276
|
+
EN_GB: "EN_GB",
|
|
277
|
+
EN_US: "EN_US",
|
|
278
|
+
ES_ES: "ES_ES",
|
|
279
|
+
FR_FR: "FR_FR",
|
|
280
|
+
IT_IT: "IT_IT",
|
|
281
|
+
JA_JP: "JA_JP",
|
|
282
|
+
KO_KR: "KO_KR",
|
|
283
|
+
PT_BR: "PT_BR",
|
|
284
|
+
ZH_CN: "ZH_CN",
|
|
285
|
+
ZH_TW: "ZH_TW",
|
|
286
|
+
};
|
|
287
|
+
export const UpdateResourceCollectionAction = {
|
|
288
|
+
ADD: "ADD",
|
|
289
|
+
REMOVE: "REMOVE",
|
|
290
|
+
};
|
|
@@ -35,16 +35,16 @@ export interface AddNotificationChannelCommandOutput extends AddNotificationChan
|
|
|
35
35
|
* import { DevOpsGuruClient, AddNotificationChannelCommand } from "@aws-sdk/client-devops-guru"; // ES Modules import
|
|
36
36
|
* // const { DevOpsGuruClient, AddNotificationChannelCommand } = require("@aws-sdk/client-devops-guru"); // CommonJS import
|
|
37
37
|
* const client = new DevOpsGuruClient(config);
|
|
38
|
-
* const input = {
|
|
39
|
-
* Config: {
|
|
40
|
-
* Sns: {
|
|
38
|
+
* const input = { // AddNotificationChannelRequest
|
|
39
|
+
* Config: { // NotificationChannelConfig
|
|
40
|
+
* Sns: { // SnsChannelConfig
|
|
41
41
|
* TopicArn: "STRING_VALUE",
|
|
42
42
|
* },
|
|
43
|
-
* Filters: {
|
|
44
|
-
* Severities: [
|
|
43
|
+
* Filters: { // NotificationFilterConfig
|
|
44
|
+
* Severities: [ // InsightSeverities
|
|
45
45
|
* "LOW" || "MEDIUM" || "HIGH",
|
|
46
46
|
* ],
|
|
47
|
-
* MessageTypes: [
|
|
47
|
+
* MessageTypes: [ // NotificationMessageTypes
|
|
48
48
|
* "NEW_INSIGHT" || "CLOSED_INSIGHT" || "NEW_ASSOCIATION" || "SEVERITY_UPGRADED" || "NEW_RECOMMENDATION",
|
|
49
49
|
* ],
|
|
50
50
|
* },
|
|
@@ -26,7 +26,7 @@ export interface DeleteInsightCommandOutput extends DeleteInsightResponse, __Met
|
|
|
26
26
|
* import { DevOpsGuruClient, DeleteInsightCommand } from "@aws-sdk/client-devops-guru"; // ES Modules import
|
|
27
27
|
* // const { DevOpsGuruClient, DeleteInsightCommand } = require("@aws-sdk/client-devops-guru"); // CommonJS import
|
|
28
28
|
* const client = new DevOpsGuruClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteInsightRequest
|
|
30
30
|
* Id: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteInsightCommand(input);
|
|
@@ -28,7 +28,7 @@ export interface DescribeAccountOverviewCommandOutput extends DescribeAccountOve
|
|
|
28
28
|
* import { DevOpsGuruClient, DescribeAccountOverviewCommand } from "@aws-sdk/client-devops-guru"; // ES Modules import
|
|
29
29
|
* // const { DevOpsGuruClient, DescribeAccountOverviewCommand } = require("@aws-sdk/client-devops-guru"); // CommonJS import
|
|
30
30
|
* const client = new DevOpsGuruClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // DescribeAccountOverviewRequest
|
|
32
32
|
* FromTime: new Date("TIMESTAMP"), // required
|
|
33
33
|
* ToTime: new Date("TIMESTAMP"),
|
|
34
34
|
* };
|
|
@@ -26,7 +26,7 @@ export interface DescribeAnomalyCommandOutput extends DescribeAnomalyResponse, _
|
|
|
26
26
|
* import { DevOpsGuruClient, DescribeAnomalyCommand } from "@aws-sdk/client-devops-guru"; // ES Modules import
|
|
27
27
|
* // const { DevOpsGuruClient, DescribeAnomalyCommand } = require("@aws-sdk/client-devops-guru"); // CommonJS import
|
|
28
28
|
* const client = new DevOpsGuruClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeAnomalyRequest
|
|
30
30
|
* Id: "STRING_VALUE", // required
|
|
31
31
|
* AccountId: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -27,7 +27,7 @@ export interface DescribeFeedbackCommandOutput extends DescribeFeedbackResponse,
|
|
|
27
27
|
* import { DevOpsGuruClient, DescribeFeedbackCommand } from "@aws-sdk/client-devops-guru"; // ES Modules import
|
|
28
28
|
* // const { DevOpsGuruClient, DescribeFeedbackCommand } = require("@aws-sdk/client-devops-guru"); // CommonJS import
|
|
29
29
|
* const client = new DevOpsGuruClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // DescribeFeedbackRequest
|
|
31
31
|
* InsightId: "STRING_VALUE",
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DescribeFeedbackCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DescribeInsightCommandOutput extends DescribeInsightResponse, _
|
|
|
26
26
|
* import { DevOpsGuruClient, DescribeInsightCommand } from "@aws-sdk/client-devops-guru"; // ES Modules import
|
|
27
27
|
* // const { DevOpsGuruClient, DescribeInsightCommand } = require("@aws-sdk/client-devops-guru"); // CommonJS import
|
|
28
28
|
* const client = new DevOpsGuruClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeInsightRequest
|
|
30
30
|
* Id: "STRING_VALUE", // required
|
|
31
31
|
* AccountId: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -27,11 +27,11 @@ export interface DescribeOrganizationHealthCommandOutput extends DescribeOrganiz
|
|
|
27
27
|
* import { DevOpsGuruClient, DescribeOrganizationHealthCommand } from "@aws-sdk/client-devops-guru"; // ES Modules import
|
|
28
28
|
* // const { DevOpsGuruClient, DescribeOrganizationHealthCommand } = require("@aws-sdk/client-devops-guru"); // CommonJS import
|
|
29
29
|
* const client = new DevOpsGuruClient(config);
|
|
30
|
-
* const input = {
|
|
31
|
-
* AccountIds: [
|
|
30
|
+
* const input = { // DescribeOrganizationHealthRequest
|
|
31
|
+
* AccountIds: [ // AccountIdList
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
|
-
* OrganizationalUnitIds: [
|
|
34
|
+
* OrganizationalUnitIds: [ // OrganizationalUnitIdList
|
|
35
35
|
* "STRING_VALUE",
|
|
36
36
|
* ],
|
|
37
37
|
* };
|
|
@@ -27,13 +27,13 @@ export interface DescribeOrganizationOverviewCommandOutput extends DescribeOrgan
|
|
|
27
27
|
* import { DevOpsGuruClient, DescribeOrganizationOverviewCommand } from "@aws-sdk/client-devops-guru"; // ES Modules import
|
|
28
28
|
* // const { DevOpsGuruClient, DescribeOrganizationOverviewCommand } = require("@aws-sdk/client-devops-guru"); // CommonJS import
|
|
29
29
|
* const client = new DevOpsGuruClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // DescribeOrganizationOverviewRequest
|
|
31
31
|
* FromTime: new Date("TIMESTAMP"), // required
|
|
32
32
|
* ToTime: new Date("TIMESTAMP"),
|
|
33
|
-
* AccountIds: [
|
|
33
|
+
* AccountIds: [ // AccountIdList
|
|
34
34
|
* "STRING_VALUE",
|
|
35
35
|
* ],
|
|
36
|
-
* OrganizationalUnitIds: [
|
|
36
|
+
* OrganizationalUnitIds: [ // OrganizationalUnitIdList
|
|
37
37
|
* "STRING_VALUE",
|
|
38
38
|
* ],
|
|
39
39
|
* };
|
|
@@ -28,12 +28,12 @@ export interface DescribeOrganizationResourceCollectionHealthCommandOutput exten
|
|
|
28
28
|
* import { DevOpsGuruClient, DescribeOrganizationResourceCollectionHealthCommand } from "@aws-sdk/client-devops-guru"; // ES Modules import
|
|
29
29
|
* // const { DevOpsGuruClient, DescribeOrganizationResourceCollectionHealthCommand } = require("@aws-sdk/client-devops-guru"); // CommonJS import
|
|
30
30
|
* const client = new DevOpsGuruClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // DescribeOrganizationResourceCollectionHealthRequest
|
|
32
32
|
* OrganizationResourceCollectionType: "AWS_CLOUD_FORMATION" || "AWS_SERVICE" || "AWS_ACCOUNT" || "AWS_TAGS", // required
|
|
33
|
-
* AccountIds: [
|
|
33
|
+
* AccountIds: [ // AccountIdList
|
|
34
34
|
* "STRING_VALUE",
|
|
35
35
|
* ],
|
|
36
|
-
* OrganizationalUnitIds: [
|
|
36
|
+
* OrganizationalUnitIds: [ // OrganizationalUnitIdList
|
|
37
37
|
* "STRING_VALUE",
|
|
38
38
|
* ],
|
|
39
39
|
* NextToken: "STRING_VALUE",
|
|
@@ -30,7 +30,7 @@ export interface DescribeResourceCollectionHealthCommandOutput extends DescribeR
|
|
|
30
30
|
* import { DevOpsGuruClient, DescribeResourceCollectionHealthCommand } from "@aws-sdk/client-devops-guru"; // ES Modules import
|
|
31
31
|
* // const { DevOpsGuruClient, DescribeResourceCollectionHealthCommand } = require("@aws-sdk/client-devops-guru"); // CommonJS import
|
|
32
32
|
* const client = new DevOpsGuruClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // DescribeResourceCollectionHealthRequest
|
|
34
34
|
* ResourceCollectionType: "AWS_CLOUD_FORMATION" || "AWS_SERVICE" || "AWS_TAGS", // required
|
|
35
35
|
* NextToken: "STRING_VALUE",
|
|
36
36
|
* };
|
|
@@ -30,7 +30,7 @@ export interface GetCostEstimationCommandOutput extends GetCostEstimationRespons
|
|
|
30
30
|
* import { DevOpsGuruClient, GetCostEstimationCommand } from "@aws-sdk/client-devops-guru"; // ES Modules import
|
|
31
31
|
* // const { DevOpsGuruClient, GetCostEstimationCommand } = require("@aws-sdk/client-devops-guru"); // CommonJS import
|
|
32
32
|
* const client = new DevOpsGuruClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // GetCostEstimationRequest
|
|
34
34
|
* NextToken: "STRING_VALUE",
|
|
35
35
|
* };
|
|
36
36
|
* const command = new GetCostEstimationCommand(input);
|
|
@@ -29,7 +29,7 @@ export interface GetResourceCollectionCommandOutput extends GetResourceCollectio
|
|
|
29
29
|
* import { DevOpsGuruClient, GetResourceCollectionCommand } from "@aws-sdk/client-devops-guru"; // ES Modules import
|
|
30
30
|
* // const { DevOpsGuruClient, GetResourceCollectionCommand } = require("@aws-sdk/client-devops-guru"); // CommonJS import
|
|
31
31
|
* const client = new DevOpsGuruClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // GetResourceCollectionRequest
|
|
33
33
|
* ResourceCollectionType: "AWS_CLOUD_FORMATION" || "AWS_SERVICE" || "AWS_TAGS", // required
|
|
34
34
|
* NextToken: "STRING_VALUE",
|
|
35
35
|
* };
|
|
@@ -27,18 +27,18 @@ export interface ListAnomaliesForInsightCommandOutput extends ListAnomaliesForIn
|
|
|
27
27
|
* import { DevOpsGuruClient, ListAnomaliesForInsightCommand } from "@aws-sdk/client-devops-guru"; // ES Modules import
|
|
28
28
|
* // const { DevOpsGuruClient, ListAnomaliesForInsightCommand } = require("@aws-sdk/client-devops-guru"); // CommonJS import
|
|
29
29
|
* const client = new DevOpsGuruClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListAnomaliesForInsightRequest
|
|
31
31
|
* InsightId: "STRING_VALUE", // required
|
|
32
|
-
* StartTimeRange: {
|
|
32
|
+
* StartTimeRange: { // StartTimeRange
|
|
33
33
|
* FromTime: new Date("TIMESTAMP"),
|
|
34
34
|
* ToTime: new Date("TIMESTAMP"),
|
|
35
35
|
* },
|
|
36
36
|
* MaxResults: Number("int"),
|
|
37
37
|
* NextToken: "STRING_VALUE",
|
|
38
38
|
* AccountId: "STRING_VALUE",
|
|
39
|
-
* Filters: {
|
|
40
|
-
* ServiceCollection: {
|
|
41
|
-
* ServiceNames: [
|
|
39
|
+
* Filters: { // ListAnomaliesForInsightFilters
|
|
40
|
+
* ServiceCollection: { // ServiceCollection
|
|
41
|
+
* ServiceNames: [ // ServiceNames
|
|
42
42
|
* "API_GATEWAY" || "APPLICATION_ELB" || "AUTO_SCALING_GROUP" || "CLOUD_FRONT" || "DYNAMO_DB" || "EC2" || "ECS" || "EKS" || "ELASTIC_BEANSTALK" || "ELASTI_CACHE" || "ELB" || "ES" || "KINESIS" || "LAMBDA" || "NAT_GATEWAY" || "NETWORK_ELB" || "RDS" || "REDSHIFT" || "ROUTE_53" || "S3" || "SAGE_MAKER" || "SNS" || "SQS" || "STEP_FUNCTIONS" || "SWF",
|
|
43
43
|
* ],
|
|
44
44
|
* },
|
|
@@ -28,7 +28,7 @@ export interface ListAnomalousLogGroupsCommandOutput extends ListAnomalousLogGro
|
|
|
28
28
|
* import { DevOpsGuruClient, ListAnomalousLogGroupsCommand } from "@aws-sdk/client-devops-guru"; // ES Modules import
|
|
29
29
|
* // const { DevOpsGuruClient, ListAnomalousLogGroupsCommand } = require("@aws-sdk/client-devops-guru"); // CommonJS import
|
|
30
30
|
* const client = new DevOpsGuruClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // ListAnomalousLogGroupsRequest
|
|
32
32
|
* InsightId: "STRING_VALUE", // required
|
|
33
33
|
* MaxResults: Number("int"),
|
|
34
34
|
* NextToken: "STRING_VALUE",
|