aws-sdk-devopsguru 1.13.0 → 1.17.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-devopsguru/client.rb +705 -53
- data/lib/aws-sdk-devopsguru/client_api.rb +396 -1
- data/lib/aws-sdk-devopsguru/types.rb +2119 -251
- data/lib/aws-sdk-devopsguru.rb +1 -1
- metadata +2 -2
@@ -30,6 +30,52 @@ module Aws::DevOpsGuru
|
|
30
30
|
include Aws::Structure
|
31
31
|
end
|
32
32
|
|
33
|
+
# Returns the number of open reactive insights, the number of open
|
34
|
+
# proactive insights, and the number of metrics analyzed in your Amazon
|
35
|
+
# Web Services account. Use these numbers to gauge the health of
|
36
|
+
# operations in your Amazon Web Services account.
|
37
|
+
#
|
38
|
+
# @!attribute [rw] account_id
|
39
|
+
# The ID of the Amazon Web Services account.
|
40
|
+
# @return [String]
|
41
|
+
#
|
42
|
+
# @!attribute [rw] insight
|
43
|
+
# Information about the health of the Amazon Web Services resources in
|
44
|
+
# your account, including the number of open proactive, open reactive
|
45
|
+
# insights, and the Mean Time to Recover (MTTR) of closed insights.
|
46
|
+
# @return [Types::AccountInsightHealth]
|
47
|
+
#
|
48
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/AccountHealth AWS API Documentation
|
49
|
+
#
|
50
|
+
class AccountHealth < Struct.new(
|
51
|
+
:account_id,
|
52
|
+
:insight)
|
53
|
+
SENSITIVE = []
|
54
|
+
include Aws::Structure
|
55
|
+
end
|
56
|
+
|
57
|
+
# Information about the number of open reactive and proactive insights
|
58
|
+
# that can be used to gauge the health of your system.
|
59
|
+
#
|
60
|
+
# @!attribute [rw] open_proactive_insights
|
61
|
+
# An integer that specifies the number of open proactive insights in
|
62
|
+
# your Amazon Web Services account.
|
63
|
+
# @return [Integer]
|
64
|
+
#
|
65
|
+
# @!attribute [rw] open_reactive_insights
|
66
|
+
# An integer that specifies the number of open reactive insights in
|
67
|
+
# your Amazon Web Services account.
|
68
|
+
# @return [Integer]
|
69
|
+
#
|
70
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/AccountInsightHealth AWS API Documentation
|
71
|
+
#
|
72
|
+
class AccountInsightHealth < Struct.new(
|
73
|
+
:open_proactive_insights,
|
74
|
+
:open_reactive_insights)
|
75
|
+
SENSITIVE = []
|
76
|
+
include Aws::Structure
|
77
|
+
end
|
78
|
+
|
33
79
|
# @note When making an API call, you may pass AddNotificationChannelRequest
|
34
80
|
# data as a hash:
|
35
81
|
#
|
@@ -89,20 +135,49 @@ module Aws::DevOpsGuru
|
|
89
135
|
include Aws::Structure
|
90
136
|
end
|
91
137
|
|
138
|
+
# The Amazon Web Services resources in which DevOps Guru detected
|
139
|
+
# unusual behavior that resulted in the generation of an anomaly. When
|
140
|
+
# DevOps Guru detects multiple related anomalies, it creates and insight
|
141
|
+
# with details about the anomalous behavior and suggestions about how to
|
142
|
+
# correct the problem.
|
143
|
+
#
|
144
|
+
# @!attribute [rw] name
|
145
|
+
# The name of the Amazon Web Services resource.
|
146
|
+
# @return [String]
|
147
|
+
#
|
148
|
+
# @!attribute [rw] type
|
149
|
+
# The type of the Amazon Web Services resource.
|
150
|
+
# @return [String]
|
151
|
+
#
|
152
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/AnomalyResource AWS API Documentation
|
153
|
+
#
|
154
|
+
class AnomalyResource < Struct.new(
|
155
|
+
:name,
|
156
|
+
:type)
|
157
|
+
SENSITIVE = []
|
158
|
+
include Aws::Structure
|
159
|
+
end
|
160
|
+
|
92
161
|
# Details about the source of the anomalous operational data that
|
93
|
-
# triggered the anomaly.
|
94
|
-
# metrics.
|
162
|
+
# triggered the anomaly.
|
95
163
|
#
|
96
164
|
# @!attribute [rw] cloud_watch_metrics
|
97
|
-
# An array of `CloudWatchMetricsDetail`
|
98
|
-
# information about
|
165
|
+
# An array of `CloudWatchMetricsDetail` objects that contain
|
166
|
+
# information about analyzed CloudWatch metrics that show anomalous
|
99
167
|
# behavior.
|
100
168
|
# @return [Array<Types::CloudWatchMetricsDetail>]
|
101
169
|
#
|
170
|
+
# @!attribute [rw] performance_insights_metrics
|
171
|
+
# An array of `PerformanceInsightsMetricsDetail` objects that contain
|
172
|
+
# information about analyzed Performance Insights metrics that show
|
173
|
+
# anomalous behavior.
|
174
|
+
# @return [Array<Types::PerformanceInsightsMetricsDetail>]
|
175
|
+
#
|
102
176
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/AnomalySourceDetails AWS API Documentation
|
103
177
|
#
|
104
178
|
class AnomalySourceDetails < Struct.new(
|
105
|
-
:cloud_watch_metrics
|
179
|
+
:cloud_watch_metrics,
|
180
|
+
:performance_insights_metrics)
|
106
181
|
SENSITIVE = []
|
107
182
|
include Aws::Structure
|
108
183
|
end
|
@@ -129,10 +204,10 @@ module Aws::DevOpsGuru
|
|
129
204
|
include Aws::Structure
|
130
205
|
end
|
131
206
|
|
132
|
-
# Information about
|
133
|
-
# stacks to specify which
|
134
|
-
# more information, see [Stacks][1] in the
|
135
|
-
# Guide*.
|
207
|
+
# Information about Amazon Web Services CloudFormation stacks. You can
|
208
|
+
# use up to 500 stacks to specify which Amazon Web Services resources in
|
209
|
+
# your account to analyze. For more information, see [Stacks][1] in the
|
210
|
+
# *Amazon Web Services CloudFormation User Guide*.
|
136
211
|
#
|
137
212
|
#
|
138
213
|
#
|
@@ -157,10 +232,10 @@ module Aws::DevOpsGuru
|
|
157
232
|
include Aws::Structure
|
158
233
|
end
|
159
234
|
|
160
|
-
# Information about
|
161
|
-
# stacks to specify which
|
162
|
-
# more information, see [Stacks][1] in the
|
163
|
-
# Guide*.
|
235
|
+
# Information about Amazon Web Services CloudFormation stacks. You can
|
236
|
+
# use up to 500 stacks to specify which Amazon Web Services resources in
|
237
|
+
# your account to analyze. For more information, see [Stacks][1] in the
|
238
|
+
# *Amazon Web Services CloudFormation User Guide*.
|
164
239
|
#
|
165
240
|
#
|
166
241
|
#
|
@@ -178,11 +253,12 @@ module Aws::DevOpsGuru
|
|
178
253
|
include Aws::Structure
|
179
254
|
end
|
180
255
|
|
181
|
-
# Information about an
|
182
|
-
# cost estimate for DevOps Guru to analyze
|
183
|
-
# number of stacks you can specify for a
|
184
|
-
# estimate created is for the cost to analyze
|
185
|
-
# by the stack. For more
|
256
|
+
# Information about an Amazon Web Services CloudFormation stack used to
|
257
|
+
# create a monthly cost estimate for DevOps Guru to analyze Amazon Web
|
258
|
+
# Services resources. The maximum number of stacks you can specify for a
|
259
|
+
# cost estimate is one. The estimate created is for the cost to analyze
|
260
|
+
# the Amazon Web Services resources defined by the stack. For more
|
261
|
+
# information, see [Stacks][1] in the *Amazon Web Services
|
186
262
|
# CloudFormation User Guide*.
|
187
263
|
#
|
188
264
|
#
|
@@ -208,18 +284,20 @@ module Aws::DevOpsGuru
|
|
208
284
|
include Aws::Structure
|
209
285
|
end
|
210
286
|
|
211
|
-
# Information about the health of
|
212
|
-
# specified by an
|
287
|
+
# Information about the health of Amazon Web Services resources in your
|
288
|
+
# account that are specified by an Amazon Web Services CloudFormation
|
289
|
+
# stack.
|
213
290
|
#
|
214
291
|
# @!attribute [rw] stack_name
|
215
292
|
# The name of the CloudFormation stack.
|
216
293
|
# @return [String]
|
217
294
|
#
|
218
295
|
# @!attribute [rw] insight
|
219
|
-
# Information about the health of the
|
220
|
-
# that are specified by an
|
221
|
-
# number of open proactive, open
|
222
|
-
# to Recover (MTTR) of closed
|
296
|
+
# Information about the health of the Amazon Web Services resources in
|
297
|
+
# your account that are specified by an Amazon Web Services
|
298
|
+
# CloudFormation stack, including the number of open proactive, open
|
299
|
+
# reactive insights, and the Mean Time to Recover (MTTR) of closed
|
300
|
+
# insights.
|
223
301
|
# @return [Types::InsightHealth]
|
224
302
|
#
|
225
303
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/CloudFormationHealth AWS API Documentation
|
@@ -231,6 +309,28 @@ module Aws::DevOpsGuru
|
|
231
309
|
include Aws::Structure
|
232
310
|
end
|
233
311
|
|
312
|
+
# Contains information about the analyzed metrics that displayed
|
313
|
+
# anomalous behavior.
|
314
|
+
#
|
315
|
+
# @!attribute [rw] timestamp_metric_value_pair_list
|
316
|
+
# This is a list of Amazon CloudWatch metric values at given
|
317
|
+
# timestamp.
|
318
|
+
# @return [Array<Types::TimestampMetricValuePair>]
|
319
|
+
#
|
320
|
+
# @!attribute [rw] status_code
|
321
|
+
# This is an enum of the status showing whether the metric value pair
|
322
|
+
# list has partial or complete data, or if there was an error.
|
323
|
+
# @return [String]
|
324
|
+
#
|
325
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/CloudWatchMetricsDataSummary AWS API Documentation
|
326
|
+
#
|
327
|
+
class CloudWatchMetricsDataSummary < Struct.new(
|
328
|
+
:timestamp_metric_value_pair_list,
|
329
|
+
:status_code)
|
330
|
+
SENSITIVE = []
|
331
|
+
include Aws::Structure
|
332
|
+
end
|
333
|
+
|
234
334
|
# Information about an Amazon CloudWatch metric.
|
235
335
|
#
|
236
336
|
# @!attribute [rw] metric_name
|
@@ -266,6 +366,10 @@ module Aws::DevOpsGuru
|
|
266
366
|
# of seconds.
|
267
367
|
# @return [Integer]
|
268
368
|
#
|
369
|
+
# @!attribute [rw] metric_data_summary
|
370
|
+
# This object returns anomaly metric data.
|
371
|
+
# @return [Types::CloudWatchMetricsDataSummary]
|
372
|
+
#
|
269
373
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/CloudWatchMetricsDetail AWS API Documentation
|
270
374
|
#
|
271
375
|
class CloudWatchMetricsDetail < Struct.new(
|
@@ -274,12 +378,13 @@ module Aws::DevOpsGuru
|
|
274
378
|
:dimensions,
|
275
379
|
:stat,
|
276
380
|
:unit,
|
277
|
-
:period
|
381
|
+
:period,
|
382
|
+
:metric_data_summary)
|
278
383
|
SENSITIVE = []
|
279
384
|
include Aws::Structure
|
280
385
|
end
|
281
386
|
|
282
|
-
# The dimension of
|
387
|
+
# The dimension of am Amazon CloudWatch metric that is used when DevOps
|
283
388
|
# Guru analyzes the resources in your account for operational problems
|
284
389
|
# and anomalous behavior. A dimension is a name/value pair that is part
|
285
390
|
# of the identity of a metric. A metric can have up to 10 dimensions.
|
@@ -313,11 +418,13 @@ module Aws::DevOpsGuru
|
|
313
418
|
# @return [String]
|
314
419
|
#
|
315
420
|
# @!attribute [rw] resource_id
|
316
|
-
# The ID of the
|
421
|
+
# The ID of the Amazon Web Services resource in which a conflict
|
422
|
+
# occurred.
|
317
423
|
# @return [String]
|
318
424
|
#
|
319
425
|
# @!attribute [rw] resource_type
|
320
|
-
# The type of the
|
426
|
+
# The type of the Amazon Web Services resource in which a conflict
|
427
|
+
# occurred.
|
321
428
|
# @return [String]
|
322
429
|
#
|
323
430
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ConflictException AWS API Documentation
|
@@ -330,10 +437,10 @@ module Aws::DevOpsGuru
|
|
330
437
|
include Aws::Structure
|
331
438
|
end
|
332
439
|
|
333
|
-
# Information about a filter used to specify which
|
334
|
-
# analyzed to create a monthly DevOps Guru cost estimate.
|
335
|
-
# information, see [Estimate your Amazon DevOps Guru costs][1]
|
336
|
-
# [Amazon DevOps Guru pricing][2].
|
440
|
+
# Information about a filter used to specify which Amazon Web Services
|
441
|
+
# resources are analyzed to create a monthly DevOps Guru cost estimate.
|
442
|
+
# For more information, see [Estimate your Amazon DevOps Guru costs][1]
|
443
|
+
# and [Amazon DevOps Guru pricing][2].
|
337
444
|
#
|
338
445
|
#
|
339
446
|
#
|
@@ -347,17 +454,64 @@ module Aws::DevOpsGuru
|
|
347
454
|
# cloud_formation: {
|
348
455
|
# stack_names: ["StackName"],
|
349
456
|
# },
|
457
|
+
# tags: [
|
458
|
+
# {
|
459
|
+
# app_boundary_key: "AppBoundaryKey", # required
|
460
|
+
# tag_values: ["TagValue"], # required
|
461
|
+
# },
|
462
|
+
# ],
|
350
463
|
# }
|
351
464
|
#
|
352
465
|
# @!attribute [rw] cloud_formation
|
353
466
|
# An object that specifies the CloudFormation stack that defines the
|
354
|
-
#
|
467
|
+
# Amazon Web Services resources used to create a monthly estimate for
|
468
|
+
# DevOps Guru.
|
355
469
|
# @return [Types::CloudFormationCostEstimationResourceCollectionFilter]
|
356
470
|
#
|
471
|
+
# @!attribute [rw] tags
|
472
|
+
# The Amazon Web Services tags used to filter the resource collection
|
473
|
+
# that is used for a cost estimate.
|
474
|
+
#
|
475
|
+
# Tags help you identify and organize your Amazon Web Services
|
476
|
+
# resources. Many Amazon Web Services services support tagging, so you
|
477
|
+
# can assign the same tag to resources from different services to
|
478
|
+
# indicate that the resources are related. For example, you can assign
|
479
|
+
# the same tag to an Amazon DynamoDB table resource that you assign to
|
480
|
+
# an Lambda function. For more information about using tags, see the
|
481
|
+
# [Tagging best practices][1] whitepaper.
|
482
|
+
#
|
483
|
+
# Each Amazon Web Services tag has two parts.
|
484
|
+
#
|
485
|
+
# * A tag *key* (for example, `CostCenter`, `Environment`, `Project`,
|
486
|
+
# or `Secret`). Tag *keys* are case-sensitive.
|
487
|
+
#
|
488
|
+
# * An optional field known as a tag *value* (for example,
|
489
|
+
# `111122223333`, `Production`, or a team name). Omitting the tag
|
490
|
+
# *value* is the same as using an empty string. Like tag *keys*, tag
|
491
|
+
# *values* are case-sensitive.
|
492
|
+
#
|
493
|
+
# Together these are known as *key*-*value* pairs.
|
494
|
+
#
|
495
|
+
# The string used for a *key* in a tag that you use to define your
|
496
|
+
# resource coverage must begin with the prefix `Devops-guru-`. The tag
|
497
|
+
# *key* might be `Devops-guru-deployment-application` or
|
498
|
+
# `Devops-guru-rds-application`. While *keys* are case-sensitive, the
|
499
|
+
# case of *key* characters don't matter to DevOps Guru. For example,
|
500
|
+
# DevOps Guru works with a *key* named `devops-guru-rds` and a *key*
|
501
|
+
# named `DevOps-Guru-RDS`. Possible *key*/*value* pairs in your
|
502
|
+
# application might be `Devops-Guru-production-application/RDS` or
|
503
|
+
# `Devops-Guru-production-application/containers`.
|
504
|
+
#
|
505
|
+
#
|
506
|
+
#
|
507
|
+
# [1]: https://d1.awsstatic.com/whitepapers/aws-tagging-best-practices.pdf
|
508
|
+
# @return [Array<Types::TagCostEstimationResourceCollectionFilter>]
|
509
|
+
#
|
357
510
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/CostEstimationResourceCollectionFilter AWS API Documentation
|
358
511
|
#
|
359
512
|
class CostEstimationResourceCollectionFilter < Struct.new(
|
360
|
-
:cloud_formation
|
513
|
+
:cloud_formation,
|
514
|
+
:tags)
|
361
515
|
SENSITIVE = []
|
362
516
|
include Aws::Structure
|
363
517
|
end
|
@@ -389,22 +543,22 @@ module Aws::DevOpsGuru
|
|
389
543
|
|
390
544
|
# @!attribute [rw] open_reactive_insights
|
391
545
|
# An integer that specifies the number of open reactive insights in
|
392
|
-
# your
|
546
|
+
# your Amazon Web Services account.
|
393
547
|
# @return [Integer]
|
394
548
|
#
|
395
549
|
# @!attribute [rw] open_proactive_insights
|
396
550
|
# An integer that specifies the number of open proactive insights in
|
397
|
-
# your
|
551
|
+
# your Amazon Web Services account.
|
398
552
|
# @return [Integer]
|
399
553
|
#
|
400
554
|
# @!attribute [rw] metrics_analyzed
|
401
555
|
# An integer that specifies the number of metrics that have been
|
402
|
-
# analyzed in your
|
556
|
+
# analyzed in your Amazon Web Services account.
|
403
557
|
# @return [Integer]
|
404
558
|
#
|
405
559
|
# @!attribute [rw] resource_hours
|
406
560
|
# The number of Amazon DevOps Guru resource analysis hours billed to
|
407
|
-
# the current
|
561
|
+
# the current Amazon Web Services account in the last hour.
|
408
562
|
# @return [Integer]
|
409
563
|
#
|
410
564
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/DescribeAccountHealthResponse AWS API Documentation
|
@@ -450,12 +604,14 @@ module Aws::DevOpsGuru
|
|
450
604
|
|
451
605
|
# @!attribute [rw] reactive_insights
|
452
606
|
# An integer that specifies the number of open reactive insights in
|
453
|
-
# your
|
607
|
+
# your Amazon Web Services account that were created during the time
|
608
|
+
# range passed in.
|
454
609
|
# @return [Integer]
|
455
610
|
#
|
456
611
|
# @!attribute [rw] proactive_insights
|
457
612
|
# An integer that specifies the number of open proactive insights in
|
458
|
-
# your
|
613
|
+
# your Amazon Web Services account that were created during the time
|
614
|
+
# range passed in.
|
459
615
|
# @return [Integer]
|
460
616
|
#
|
461
617
|
# @!attribute [rw] mean_time_to_recover_in_milliseconds
|
@@ -478,26 +634,32 @@ module Aws::DevOpsGuru
|
|
478
634
|
#
|
479
635
|
# {
|
480
636
|
# id: "AnomalyId", # required
|
637
|
+
# account_id: "AwsAccountId",
|
481
638
|
# }
|
482
639
|
#
|
483
640
|
# @!attribute [rw] id
|
484
641
|
# The ID of the anomaly.
|
485
642
|
# @return [String]
|
486
643
|
#
|
644
|
+
# @!attribute [rw] account_id
|
645
|
+
# The ID of the member account.
|
646
|
+
# @return [String]
|
647
|
+
#
|
487
648
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/DescribeAnomalyRequest AWS API Documentation
|
488
649
|
#
|
489
650
|
class DescribeAnomalyRequest < Struct.new(
|
490
|
-
:id
|
651
|
+
:id,
|
652
|
+
:account_id)
|
491
653
|
SENSITIVE = []
|
492
654
|
include Aws::Structure
|
493
655
|
end
|
494
656
|
|
495
657
|
# @!attribute [rw] proactive_anomaly
|
496
|
-
# A `
|
658
|
+
# A `ProactiveAnomaly` object that represents the requested anomaly.
|
497
659
|
# @return [Types::ProactiveAnomaly]
|
498
660
|
#
|
499
661
|
# @!attribute [rw] reactive_anomaly
|
500
|
-
# A `
|
662
|
+
# A `ReactiveAnomaly` object that represents the requested anomaly.
|
501
663
|
# @return [Types::ReactiveAnomaly]
|
502
664
|
#
|
503
665
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/DescribeAnomalyResponse AWS API Documentation
|
@@ -545,16 +707,22 @@ module Aws::DevOpsGuru
|
|
545
707
|
#
|
546
708
|
# {
|
547
709
|
# id: "InsightId", # required
|
710
|
+
# account_id: "AwsAccountId",
|
548
711
|
# }
|
549
712
|
#
|
550
713
|
# @!attribute [rw] id
|
551
714
|
# The ID of the insight.
|
552
715
|
# @return [String]
|
553
716
|
#
|
717
|
+
# @!attribute [rw] account_id
|
718
|
+
# The ID of the member account in the organization.
|
719
|
+
# @return [String]
|
720
|
+
#
|
554
721
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/DescribeInsightRequest AWS API Documentation
|
555
722
|
#
|
556
723
|
class DescribeInsightRequest < Struct.new(
|
557
|
-
:id
|
724
|
+
:id,
|
725
|
+
:account_id)
|
558
726
|
SENSITIVE = []
|
559
727
|
include Aws::Structure
|
560
728
|
end
|
@@ -576,20 +744,227 @@ module Aws::DevOpsGuru
|
|
576
744
|
include Aws::Structure
|
577
745
|
end
|
578
746
|
|
747
|
+
# @note When making an API call, you may pass DescribeOrganizationHealthRequest
|
748
|
+
# data as a hash:
|
749
|
+
#
|
750
|
+
# {
|
751
|
+
# account_ids: ["AwsAccountId"],
|
752
|
+
# organizational_unit_ids: ["OrganizationalUnitId"],
|
753
|
+
# }
|
754
|
+
#
|
755
|
+
# @!attribute [rw] account_ids
|
756
|
+
# The ID of the Amazon Web Services account.
|
757
|
+
# @return [Array<String>]
|
758
|
+
#
|
759
|
+
# @!attribute [rw] organizational_unit_ids
|
760
|
+
# The ID of the organizational unit.
|
761
|
+
# @return [Array<String>]
|
762
|
+
#
|
763
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/DescribeOrganizationHealthRequest AWS API Documentation
|
764
|
+
#
|
765
|
+
class DescribeOrganizationHealthRequest < Struct.new(
|
766
|
+
:account_ids,
|
767
|
+
:organizational_unit_ids)
|
768
|
+
SENSITIVE = []
|
769
|
+
include Aws::Structure
|
770
|
+
end
|
771
|
+
|
772
|
+
# @!attribute [rw] open_reactive_insights
|
773
|
+
# An integer that specifies the number of open reactive insights in
|
774
|
+
# your Amazon Web Services account.
|
775
|
+
# @return [Integer]
|
776
|
+
#
|
777
|
+
# @!attribute [rw] open_proactive_insights
|
778
|
+
# An integer that specifies the number of open proactive insights in
|
779
|
+
# your Amazon Web Services account.
|
780
|
+
# @return [Integer]
|
781
|
+
#
|
782
|
+
# @!attribute [rw] metrics_analyzed
|
783
|
+
# An integer that specifies the number of metrics that have been
|
784
|
+
# analyzed in your organization.
|
785
|
+
# @return [Integer]
|
786
|
+
#
|
787
|
+
# @!attribute [rw] resource_hours
|
788
|
+
# The number of Amazon DevOps Guru resource analysis hours billed to
|
789
|
+
# the current Amazon Web Services account in the last hour.
|
790
|
+
# @return [Integer]
|
791
|
+
#
|
792
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/DescribeOrganizationHealthResponse AWS API Documentation
|
793
|
+
#
|
794
|
+
class DescribeOrganizationHealthResponse < Struct.new(
|
795
|
+
:open_reactive_insights,
|
796
|
+
:open_proactive_insights,
|
797
|
+
:metrics_analyzed,
|
798
|
+
:resource_hours)
|
799
|
+
SENSITIVE = []
|
800
|
+
include Aws::Structure
|
801
|
+
end
|
802
|
+
|
803
|
+
# @note When making an API call, you may pass DescribeOrganizationOverviewRequest
|
804
|
+
# data as a hash:
|
805
|
+
#
|
806
|
+
# {
|
807
|
+
# from_time: Time.now, # required
|
808
|
+
# to_time: Time.now,
|
809
|
+
# account_ids: ["AwsAccountId"],
|
810
|
+
# organizational_unit_ids: ["OrganizationalUnitId"],
|
811
|
+
# }
|
812
|
+
#
|
813
|
+
# @!attribute [rw] from_time
|
814
|
+
# The start of the time range passed in. The start time granularity is
|
815
|
+
# at the day level. The floor of the start time is used. Returned
|
816
|
+
# information occurred after this day.
|
817
|
+
# @return [Time]
|
818
|
+
#
|
819
|
+
# @!attribute [rw] to_time
|
820
|
+
# The end of the time range passed in. The start time granularity is
|
821
|
+
# at the day level. The floor of the start time is used. Returned
|
822
|
+
# information occurred before this day. If this is not specified, then
|
823
|
+
# the current day is used.
|
824
|
+
# @return [Time]
|
825
|
+
#
|
826
|
+
# @!attribute [rw] account_ids
|
827
|
+
# The ID of the Amazon Web Services account.
|
828
|
+
# @return [Array<String>]
|
829
|
+
#
|
830
|
+
# @!attribute [rw] organizational_unit_ids
|
831
|
+
# The ID of the organizational unit.
|
832
|
+
# @return [Array<String>]
|
833
|
+
#
|
834
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/DescribeOrganizationOverviewRequest AWS API Documentation
|
835
|
+
#
|
836
|
+
class DescribeOrganizationOverviewRequest < Struct.new(
|
837
|
+
:from_time,
|
838
|
+
:to_time,
|
839
|
+
:account_ids,
|
840
|
+
:organizational_unit_ids)
|
841
|
+
SENSITIVE = []
|
842
|
+
include Aws::Structure
|
843
|
+
end
|
844
|
+
|
845
|
+
# @!attribute [rw] reactive_insights
|
846
|
+
# An integer that specifies the number of open reactive insights in
|
847
|
+
# your Amazon Web Services account.
|
848
|
+
# @return [Integer]
|
849
|
+
#
|
850
|
+
# @!attribute [rw] proactive_insights
|
851
|
+
# An integer that specifies the number of open proactive insights in
|
852
|
+
# your Amazon Web Services account.
|
853
|
+
# @return [Integer]
|
854
|
+
#
|
855
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/DescribeOrganizationOverviewResponse AWS API Documentation
|
856
|
+
#
|
857
|
+
class DescribeOrganizationOverviewResponse < Struct.new(
|
858
|
+
:reactive_insights,
|
859
|
+
:proactive_insights)
|
860
|
+
SENSITIVE = []
|
861
|
+
include Aws::Structure
|
862
|
+
end
|
863
|
+
|
864
|
+
# @note When making an API call, you may pass DescribeOrganizationResourceCollectionHealthRequest
|
865
|
+
# data as a hash:
|
866
|
+
#
|
867
|
+
# {
|
868
|
+
# organization_resource_collection_type: "AWS_CLOUD_FORMATION", # required, accepts AWS_CLOUD_FORMATION, AWS_SERVICE, AWS_ACCOUNT
|
869
|
+
# account_ids: ["AwsAccountId"],
|
870
|
+
# organizational_unit_ids: ["OrganizationalUnitId"],
|
871
|
+
# next_token: "UuidNextToken",
|
872
|
+
# max_results: 1,
|
873
|
+
# }
|
874
|
+
#
|
875
|
+
# @!attribute [rw] organization_resource_collection_type
|
876
|
+
# An Amazon Web Services resource collection type. This type specifies
|
877
|
+
# how analyzed Amazon Web Services resources are defined. The two
|
878
|
+
# types of Amazon Web Services resource collections supported are
|
879
|
+
# Amazon Web Services CloudFormation stacks and Amazon Web Services
|
880
|
+
# resources that contain the same Amazon Web Services tag. DevOps Guru
|
881
|
+
# can be configured to analyze the Amazon Web Services resources that
|
882
|
+
# are defined in the stacks or that are tagged using the same tag
|
883
|
+
# *key*. You can specify up to 500 Amazon Web Services CloudFormation
|
884
|
+
# stacks.
|
885
|
+
# @return [String]
|
886
|
+
#
|
887
|
+
# @!attribute [rw] account_ids
|
888
|
+
# The ID of the Amazon Web Services account.
|
889
|
+
# @return [Array<String>]
|
890
|
+
#
|
891
|
+
# @!attribute [rw] organizational_unit_ids
|
892
|
+
# The ID of the organizational unit.
|
893
|
+
# @return [Array<String>]
|
894
|
+
#
|
895
|
+
# @!attribute [rw] next_token
|
896
|
+
# The pagination token to use to retrieve the next page of results for
|
897
|
+
# this operation. If this value is null, it retrieves the first page.
|
898
|
+
# @return [String]
|
899
|
+
#
|
900
|
+
# @!attribute [rw] max_results
|
901
|
+
# The maximum number of results to return with a single call. To
|
902
|
+
# retrieve the remaining results, make another call with the returned
|
903
|
+
# `nextToken` value.
|
904
|
+
# @return [Integer]
|
905
|
+
#
|
906
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/DescribeOrganizationResourceCollectionHealthRequest AWS API Documentation
|
907
|
+
#
|
908
|
+
class DescribeOrganizationResourceCollectionHealthRequest < Struct.new(
|
909
|
+
:organization_resource_collection_type,
|
910
|
+
:account_ids,
|
911
|
+
:organizational_unit_ids,
|
912
|
+
:next_token,
|
913
|
+
:max_results)
|
914
|
+
SENSITIVE = []
|
915
|
+
include Aws::Structure
|
916
|
+
end
|
917
|
+
|
918
|
+
# @!attribute [rw] cloud_formation
|
919
|
+
# The returned `CloudFormationHealthOverview` object that contains an
|
920
|
+
# `InsightHealthOverview` object with the requested system health
|
921
|
+
# information.
|
922
|
+
# @return [Array<Types::CloudFormationHealth>]
|
923
|
+
#
|
924
|
+
# @!attribute [rw] service
|
925
|
+
# An array of `ServiceHealth` objects that describes the health of the
|
926
|
+
# Amazon Web Services services associated with the resources in the
|
927
|
+
# collection.
|
928
|
+
# @return [Array<Types::ServiceHealth>]
|
929
|
+
#
|
930
|
+
# @!attribute [rw] account
|
931
|
+
# The name of the organization's account.
|
932
|
+
# @return [Array<Types::AccountHealth>]
|
933
|
+
#
|
934
|
+
# @!attribute [rw] next_token
|
935
|
+
# The pagination token to use to retrieve the next page of results for
|
936
|
+
# this operation. If there are no more pages, this value is null.
|
937
|
+
# @return [String]
|
938
|
+
#
|
939
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/DescribeOrganizationResourceCollectionHealthResponse AWS API Documentation
|
940
|
+
#
|
941
|
+
class DescribeOrganizationResourceCollectionHealthResponse < Struct.new(
|
942
|
+
:cloud_formation,
|
943
|
+
:service,
|
944
|
+
:account,
|
945
|
+
:next_token)
|
946
|
+
SENSITIVE = []
|
947
|
+
include Aws::Structure
|
948
|
+
end
|
949
|
+
|
579
950
|
# @note When making an API call, you may pass DescribeResourceCollectionHealthRequest
|
580
951
|
# data as a hash:
|
581
952
|
#
|
582
953
|
# {
|
583
|
-
# resource_collection_type: "AWS_CLOUD_FORMATION", # required, accepts AWS_CLOUD_FORMATION, AWS_SERVICE
|
954
|
+
# resource_collection_type: "AWS_CLOUD_FORMATION", # required, accepts AWS_CLOUD_FORMATION, AWS_SERVICE, AWS_TAGS
|
584
955
|
# next_token: "UuidNextToken",
|
585
956
|
# }
|
586
957
|
#
|
587
958
|
# @!attribute [rw] resource_collection_type
|
588
|
-
# An
|
589
|
-
#
|
590
|
-
#
|
591
|
-
#
|
592
|
-
#
|
959
|
+
# An Amazon Web Services resource collection type. This type specifies
|
960
|
+
# how analyzed Amazon Web Services resources are defined. The two
|
961
|
+
# types of Amazon Web Services resource collections supported are
|
962
|
+
# Amazon Web Services CloudFormation stacks and Amazon Web Services
|
963
|
+
# resources that contain the same Amazon Web Services tag. DevOps Guru
|
964
|
+
# can be configured to analyze the Amazon Web Services resources that
|
965
|
+
# are defined in the stacks or that are tagged using the same tag
|
966
|
+
# *key*. You can specify up to 500 Amazon Web Services CloudFormation
|
967
|
+
# stacks.
|
593
968
|
# @return [String]
|
594
969
|
#
|
595
970
|
# @!attribute [rw] next_token
|
@@ -614,7 +989,8 @@ module Aws::DevOpsGuru
|
|
614
989
|
#
|
615
990
|
# @!attribute [rw] service
|
616
991
|
# An array of `ServiceHealth` objects that describes the health of the
|
617
|
-
#
|
992
|
+
# Amazon Web Services services associated with the resources in the
|
993
|
+
# collection.
|
618
994
|
# @return [Array<Types::ServiceHealth>]
|
619
995
|
#
|
620
996
|
# @!attribute [rw] next_token
|
@@ -622,12 +998,52 @@ module Aws::DevOpsGuru
|
|
622
998
|
# this operation. If there are no more pages, this value is null.
|
623
999
|
# @return [String]
|
624
1000
|
#
|
1001
|
+
# @!attribute [rw] tags
|
1002
|
+
# The Amazon Web Services tags that are used by resources in the
|
1003
|
+
# resource collection.
|
1004
|
+
#
|
1005
|
+
# Tags help you identify and organize your Amazon Web Services
|
1006
|
+
# resources. Many Amazon Web Services services support tagging, so you
|
1007
|
+
# can assign the same tag to resources from different services to
|
1008
|
+
# indicate that the resources are related. For example, you can assign
|
1009
|
+
# the same tag to an Amazon DynamoDB table resource that you assign to
|
1010
|
+
# an Lambda function. For more information about using tags, see the
|
1011
|
+
# [Tagging best practices][1] whitepaper.
|
1012
|
+
#
|
1013
|
+
# Each Amazon Web Services tag has two parts.
|
1014
|
+
#
|
1015
|
+
# * A tag *key* (for example, `CostCenter`, `Environment`, `Project`,
|
1016
|
+
# or `Secret`). Tag *keys* are case-sensitive.
|
1017
|
+
#
|
1018
|
+
# * An optional field known as a tag *value* (for example,
|
1019
|
+
# `111122223333`, `Production`, or a team name). Omitting the tag
|
1020
|
+
# *value* is the same as using an empty string. Like tag *keys*, tag
|
1021
|
+
# *values* are case-sensitive.
|
1022
|
+
#
|
1023
|
+
# Together these are known as *key*-*value* pairs.
|
1024
|
+
#
|
1025
|
+
# The string used for a *key* in a tag that you use to define your
|
1026
|
+
# resource coverage must begin with the prefix `Devops-guru-`. The tag
|
1027
|
+
# *key* might be `Devops-guru-deployment-application` or
|
1028
|
+
# `Devops-guru-rds-application`. While *keys* are case-sensitive, the
|
1029
|
+
# case of *key* characters don't matter to DevOps Guru. For example,
|
1030
|
+
# DevOps Guru works with a *key* named `devops-guru-rds` and a *key*
|
1031
|
+
# named `DevOps-Guru-RDS`. Possible *key*/*value* pairs in your
|
1032
|
+
# application might be `Devops-Guru-production-application/RDS` or
|
1033
|
+
# `Devops-Guru-production-application/containers`.
|
1034
|
+
#
|
1035
|
+
#
|
1036
|
+
#
|
1037
|
+
# [1]: https://d1.awsstatic.com/whitepapers/aws-tagging-best-practices.pdf
|
1038
|
+
# @return [Array<Types::TagHealth>]
|
1039
|
+
#
|
625
1040
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/DescribeResourceCollectionHealthResponse AWS API Documentation
|
626
1041
|
#
|
627
1042
|
class DescribeResourceCollectionHealthResponse < Struct.new(
|
628
1043
|
:cloud_formation,
|
629
1044
|
:service,
|
630
|
-
:next_token
|
1045
|
+
:next_token,
|
1046
|
+
:tags)
|
631
1047
|
SENSITIVE = []
|
632
1048
|
include Aws::Structure
|
633
1049
|
end
|
@@ -639,8 +1055,8 @@ module Aws::DevOpsGuru
|
|
639
1055
|
class DescribeServiceIntegrationRequest < Aws::EmptyStructure; end
|
640
1056
|
|
641
1057
|
# @!attribute [rw] service_integration
|
642
|
-
# Information about the integration of DevOps Guru with another
|
643
|
-
# service, such as
|
1058
|
+
# Information about the integration of DevOps Guru with another Amazon
|
1059
|
+
# Web Services service, such as Amazon Web Services Systems Manager.
|
644
1060
|
# @return [Types::ServiceIntegrationConfig]
|
645
1061
|
#
|
646
1062
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/DescribeServiceIntegrationResponse AWS API Documentation
|
@@ -679,16 +1095,20 @@ module Aws::DevOpsGuru
|
|
679
1095
|
include Aws::Structure
|
680
1096
|
end
|
681
1097
|
|
682
|
-
# An
|
683
|
-
# DevOps Guru to find anomalous
|
684
|
-
# improve your operational
|
1098
|
+
# An Amazon Web Services resource event. Amazon Web Services resource
|
1099
|
+
# events and metrics are analyzed by DevOps Guru to find anomalous
|
1100
|
+
# behavior and provide recommendations to improve your operational
|
1101
|
+
# solutions.
|
685
1102
|
#
|
686
1103
|
# @!attribute [rw] resource_collection
|
687
|
-
# A collection of
|
688
|
-
#
|
689
|
-
#
|
690
|
-
#
|
691
|
-
#
|
1104
|
+
# A collection of Amazon Web Services resources supported by DevOps
|
1105
|
+
# Guru. The two types of Amazon Web Services resource collections
|
1106
|
+
# supported are Amazon Web Services CloudFormation stacks and Amazon
|
1107
|
+
# Web Services resources that contain the same Amazon Web Services
|
1108
|
+
# tag. DevOps Guru can be configured to analyze the Amazon Web
|
1109
|
+
# Services resources that are defined in the stacks or that are tagged
|
1110
|
+
# using the same tag *key*. You can specify up to 500 Amazon Web
|
1111
|
+
# Services CloudFormation stacks.
|
692
1112
|
# @return [Types::ResourceCollection]
|
693
1113
|
#
|
694
1114
|
# @!attribute [rw] id
|
@@ -700,7 +1120,7 @@ module Aws::DevOpsGuru
|
|
700
1120
|
# @return [Time]
|
701
1121
|
#
|
702
1122
|
# @!attribute [rw] event_source
|
703
|
-
# The
|
1123
|
+
# The Amazon Web Services source that emitted the event.
|
704
1124
|
# @return [String]
|
705
1125
|
#
|
706
1126
|
# @!attribute [rw] name
|
@@ -738,9 +1158,10 @@ module Aws::DevOpsGuru
|
|
738
1158
|
include Aws::Structure
|
739
1159
|
end
|
740
1160
|
|
741
|
-
# The
|
742
|
-
# metrics are analyzed by DevOps Guru to
|
743
|
-
# provide recommendations to improve your
|
1161
|
+
# The Amazon Web Services resource that emitted an event. Amazon Web
|
1162
|
+
# Services resource events and metrics are analyzed by DevOps Guru to
|
1163
|
+
# find anomalous behavior and provide recommendations to improve your
|
1164
|
+
# operational solutions.
|
744
1165
|
#
|
745
1166
|
# @!attribute [rw] type
|
746
1167
|
# The type of resource that emitted an event.
|
@@ -765,9 +1186,10 @@ module Aws::DevOpsGuru
|
|
765
1186
|
include Aws::Structure
|
766
1187
|
end
|
767
1188
|
|
768
|
-
# The time range during which an
|
769
|
-
# and metrics are analyzed by DevOps
|
770
|
-
# provide recommendations to improve
|
1189
|
+
# The time range during which an Amazon Web Services event occurred.
|
1190
|
+
# Amazon Web Services resource events and metrics are analyzed by DevOps
|
1191
|
+
# Guru to find anomalous behavior and provide recommendations to improve
|
1192
|
+
# your operational solutions.
|
771
1193
|
#
|
772
1194
|
# @note When making an API call, you may pass EventTimeRange
|
773
1195
|
# data as a hash:
|
@@ -815,8 +1237,8 @@ module Aws::DevOpsGuru
|
|
815
1237
|
end
|
816
1238
|
|
817
1239
|
# @!attribute [rw] resource_collection
|
818
|
-
# The collection of the
|
819
|
-
# DevOps Guru cost estimate.
|
1240
|
+
# The collection of the Amazon Web Services resources used to create
|
1241
|
+
# your monthly DevOps Guru cost estimate.
|
820
1242
|
# @return [Types::CostEstimationResourceCollectionFilter]
|
821
1243
|
#
|
822
1244
|
# @!attribute [rw] status
|
@@ -827,7 +1249,8 @@ module Aws::DevOpsGuru
|
|
827
1249
|
#
|
828
1250
|
# @!attribute [rw] costs
|
829
1251
|
# An array of `ResourceCost` objects that each contains details about
|
830
|
-
# the monthly cost estimate to analyze one of your
|
1252
|
+
# the monthly cost estimate to analyze one of your Amazon Web Services
|
1253
|
+
# resources.
|
831
1254
|
# @return [Array<Types::ServiceResourceCost>]
|
832
1255
|
#
|
833
1256
|
# @!attribute [rw] time_range
|
@@ -835,9 +1258,9 @@ module Aws::DevOpsGuru
|
|
835
1258
|
# @return [Types::CostEstimationTimeRange]
|
836
1259
|
#
|
837
1260
|
# @!attribute [rw] total_cost
|
838
|
-
# The estimated monthly cost to analyze the
|
839
|
-
# is the sum of the estimated costs to analyze
|
840
|
-
# `Costs` object in this response.
|
1261
|
+
# The estimated monthly cost to analyze the Amazon Web Services
|
1262
|
+
# resources. This value is the sum of the estimated costs to analyze
|
1263
|
+
# each resource in the `Costs` object in this response.
|
841
1264
|
# @return [Float]
|
842
1265
|
#
|
843
1266
|
# @!attribute [rw] next_token
|
@@ -862,13 +1285,14 @@ module Aws::DevOpsGuru
|
|
862
1285
|
# data as a hash:
|
863
1286
|
#
|
864
1287
|
# {
|
865
|
-
# resource_collection_type: "AWS_CLOUD_FORMATION", # required, accepts AWS_CLOUD_FORMATION, AWS_SERVICE
|
1288
|
+
# resource_collection_type: "AWS_CLOUD_FORMATION", # required, accepts AWS_CLOUD_FORMATION, AWS_SERVICE, AWS_TAGS
|
866
1289
|
# next_token: "UuidNextToken",
|
867
1290
|
# }
|
868
1291
|
#
|
869
1292
|
# @!attribute [rw] resource_collection_type
|
870
|
-
# The type of
|
871
|
-
# is `CLOUD_FORMATION` for
|
1293
|
+
# The type of Amazon Web Services resource collections to return. The
|
1294
|
+
# one valid value is `CLOUD_FORMATION` for Amazon Web Services
|
1295
|
+
# CloudFormation stacks.
|
872
1296
|
# @return [String]
|
873
1297
|
#
|
874
1298
|
# @!attribute [rw] next_token
|
@@ -886,10 +1310,13 @@ module Aws::DevOpsGuru
|
|
886
1310
|
end
|
887
1311
|
|
888
1312
|
# @!attribute [rw] resource_collection
|
889
|
-
# The requested list of
|
890
|
-
#
|
891
|
-
#
|
892
|
-
#
|
1313
|
+
# The requested list of Amazon Web Services resource collections. The
|
1314
|
+
# two types of Amazon Web Services resource collections supported are
|
1315
|
+
# Amazon Web Services CloudFormation stacks and Amazon Web Services
|
1316
|
+
# resources that contain the same Amazon Web Services tag. DevOps Guru
|
1317
|
+
# can be configured to analyze the Amazon Web Services resources that
|
1318
|
+
# are defined in the stacks or that are tagged using the same tag
|
1319
|
+
# *key*. You can specify up to 500 Amazon Web Services CloudFormation
|
893
1320
|
# stacks.
|
894
1321
|
# @return [Types::ResourceCollectionFilter]
|
895
1322
|
#
|
@@ -1009,6 +1436,7 @@ module Aws::DevOpsGuru
|
|
1009
1436
|
# },
|
1010
1437
|
# max_results: 1,
|
1011
1438
|
# next_token: "UuidNextToken",
|
1439
|
+
# account_id: "AwsAccountId",
|
1012
1440
|
# }
|
1013
1441
|
#
|
1014
1442
|
# @!attribute [rw] insight_id
|
@@ -1032,13 +1460,18 @@ module Aws::DevOpsGuru
|
|
1032
1460
|
# this operation. If this value is null, it retrieves the first page.
|
1033
1461
|
# @return [String]
|
1034
1462
|
#
|
1463
|
+
# @!attribute [rw] account_id
|
1464
|
+
# The ID of the Amazon Web Services account.
|
1465
|
+
# @return [String]
|
1466
|
+
#
|
1035
1467
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ListAnomaliesForInsightRequest AWS API Documentation
|
1036
1468
|
#
|
1037
1469
|
class ListAnomaliesForInsightRequest < Struct.new(
|
1038
1470
|
:insight_id,
|
1039
1471
|
:start_time_range,
|
1040
1472
|
:max_results,
|
1041
|
-
:next_token
|
1473
|
+
:next_token,
|
1474
|
+
:account_id)
|
1042
1475
|
SENSITIVE = []
|
1043
1476
|
include Aws::Structure
|
1044
1477
|
end
|
@@ -1087,6 +1520,12 @@ module Aws::DevOpsGuru
|
|
1087
1520
|
# cloud_formation: {
|
1088
1521
|
# stack_names: ["StackName"],
|
1089
1522
|
# },
|
1523
|
+
# tags: [
|
1524
|
+
# {
|
1525
|
+
# app_boundary_key: "AppBoundaryKey", # required
|
1526
|
+
# tag_values: ["TagValue"], # required
|
1527
|
+
# },
|
1528
|
+
# ],
|
1090
1529
|
# },
|
1091
1530
|
# }
|
1092
1531
|
#
|
@@ -1106,7 +1545,8 @@ module Aws::DevOpsGuru
|
|
1106
1545
|
# @return [String]
|
1107
1546
|
#
|
1108
1547
|
# @!attribute [rw] event_source
|
1109
|
-
# The
|
1548
|
+
# The Amazon Web Services source that emitted the events you want to
|
1549
|
+
# filter for.
|
1110
1550
|
# @return [String]
|
1111
1551
|
#
|
1112
1552
|
# @!attribute [rw] data_source
|
@@ -1115,11 +1555,14 @@ module Aws::DevOpsGuru
|
|
1115
1555
|
# @return [String]
|
1116
1556
|
#
|
1117
1557
|
# @!attribute [rw] resource_collection
|
1118
|
-
# A collection of
|
1119
|
-
#
|
1120
|
-
#
|
1121
|
-
#
|
1122
|
-
#
|
1558
|
+
# A collection of Amazon Web Services resources supported by DevOps
|
1559
|
+
# Guru. The two types of Amazon Web Services resource collections
|
1560
|
+
# supported are Amazon Web Services CloudFormation stacks and Amazon
|
1561
|
+
# Web Services resources that contain the same Amazon Web Services
|
1562
|
+
# tag. DevOps Guru can be configured to analyze the Amazon Web
|
1563
|
+
# Services resources that are defined in the stacks or that are tagged
|
1564
|
+
# using the same tag *key*. You can specify up to 500 Amazon Web
|
1565
|
+
# Services CloudFormation stacks.
|
1123
1566
|
# @return [Types::ResourceCollection]
|
1124
1567
|
#
|
1125
1568
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ListEventsFilters AWS API Documentation
|
@@ -1152,10 +1595,17 @@ module Aws::DevOpsGuru
|
|
1152
1595
|
# cloud_formation: {
|
1153
1596
|
# stack_names: ["StackName"],
|
1154
1597
|
# },
|
1598
|
+
# tags: [
|
1599
|
+
# {
|
1600
|
+
# app_boundary_key: "AppBoundaryKey", # required
|
1601
|
+
# tag_values: ["TagValue"], # required
|
1602
|
+
# },
|
1603
|
+
# ],
|
1155
1604
|
# },
|
1156
1605
|
# },
|
1157
1606
|
# max_results: 1,
|
1158
1607
|
# next_token: "UuidNextToken",
|
1608
|
+
# account_id: "AwsAccountId",
|
1159
1609
|
# }
|
1160
1610
|
#
|
1161
1611
|
# @!attribute [rw] filters
|
@@ -1173,12 +1623,17 @@ module Aws::DevOpsGuru
|
|
1173
1623
|
# this operation. If this value is null, it retrieves the first page.
|
1174
1624
|
# @return [String]
|
1175
1625
|
#
|
1626
|
+
# @!attribute [rw] account_id
|
1627
|
+
# The ID of the Amazon Web Services account.
|
1628
|
+
# @return [String]
|
1629
|
+
#
|
1176
1630
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ListEventsRequest AWS API Documentation
|
1177
1631
|
#
|
1178
1632
|
class ListEventsRequest < Struct.new(
|
1179
1633
|
:filters,
|
1180
1634
|
:max_results,
|
1181
|
-
:next_token
|
1635
|
+
:next_token,
|
1636
|
+
:account_id)
|
1182
1637
|
SENSITIVE = []
|
1183
1638
|
include Aws::Structure
|
1184
1639
|
end
|
@@ -1448,20 +1903,110 @@ module Aws::DevOpsGuru
|
|
1448
1903
|
include Aws::Structure
|
1449
1904
|
end
|
1450
1905
|
|
1451
|
-
# @note When making an API call, you may pass
|
1906
|
+
# @note When making an API call, you may pass ListOrganizationInsightsRequest
|
1452
1907
|
# data as a hash:
|
1453
1908
|
#
|
1454
1909
|
# {
|
1455
|
-
#
|
1456
|
-
#
|
1457
|
-
#
|
1458
|
-
#
|
1459
|
-
#
|
1460
|
-
#
|
1461
|
-
#
|
1462
|
-
#
|
1463
|
-
#
|
1464
|
-
#
|
1910
|
+
# status_filter: { # required
|
1911
|
+
# ongoing: {
|
1912
|
+
# type: "REACTIVE", # required, accepts REACTIVE, PROACTIVE
|
1913
|
+
# },
|
1914
|
+
# closed: {
|
1915
|
+
# type: "REACTIVE", # required, accepts REACTIVE, PROACTIVE
|
1916
|
+
# end_time_range: { # required
|
1917
|
+
# from_time: Time.now,
|
1918
|
+
# to_time: Time.now,
|
1919
|
+
# },
|
1920
|
+
# },
|
1921
|
+
# any: {
|
1922
|
+
# type: "REACTIVE", # required, accepts REACTIVE, PROACTIVE
|
1923
|
+
# start_time_range: { # required
|
1924
|
+
# from_time: Time.now,
|
1925
|
+
# to_time: Time.now,
|
1926
|
+
# },
|
1927
|
+
# },
|
1928
|
+
# },
|
1929
|
+
# max_results: 1,
|
1930
|
+
# account_ids: ["AwsAccountId"],
|
1931
|
+
# organizational_unit_ids: ["OrganizationalUnitId"],
|
1932
|
+
# next_token: "UuidNextToken",
|
1933
|
+
# }
|
1934
|
+
#
|
1935
|
+
# @!attribute [rw] status_filter
|
1936
|
+
# A filter used by `ListInsights` to specify which insights to return.
|
1937
|
+
# @return [Types::ListInsightsStatusFilter]
|
1938
|
+
#
|
1939
|
+
# @!attribute [rw] max_results
|
1940
|
+
# The maximum number of results to return with a single call. To
|
1941
|
+
# retrieve the remaining results, make another call with the returned
|
1942
|
+
# `nextToken` value.
|
1943
|
+
# @return [Integer]
|
1944
|
+
#
|
1945
|
+
# @!attribute [rw] account_ids
|
1946
|
+
# The ID of the Amazon Web Services account.
|
1947
|
+
# @return [Array<String>]
|
1948
|
+
#
|
1949
|
+
# @!attribute [rw] organizational_unit_ids
|
1950
|
+
# The ID of the organizational unit.
|
1951
|
+
# @return [Array<String>]
|
1952
|
+
#
|
1953
|
+
# @!attribute [rw] next_token
|
1954
|
+
# The pagination token to use to retrieve the next page of results for
|
1955
|
+
# this operation. If this value is null, it retrieves the first page.
|
1956
|
+
# @return [String]
|
1957
|
+
#
|
1958
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ListOrganizationInsightsRequest AWS API Documentation
|
1959
|
+
#
|
1960
|
+
class ListOrganizationInsightsRequest < Struct.new(
|
1961
|
+
:status_filter,
|
1962
|
+
:max_results,
|
1963
|
+
:account_ids,
|
1964
|
+
:organizational_unit_ids,
|
1965
|
+
:next_token)
|
1966
|
+
SENSITIVE = []
|
1967
|
+
include Aws::Structure
|
1968
|
+
end
|
1969
|
+
|
1970
|
+
# @!attribute [rw] proactive_insights
|
1971
|
+
# An integer that specifies the number of open proactive insights in
|
1972
|
+
# your Amazon Web Services account.
|
1973
|
+
# @return [Array<Types::ProactiveOrganizationInsightSummary>]
|
1974
|
+
#
|
1975
|
+
# @!attribute [rw] reactive_insights
|
1976
|
+
# An integer that specifies the number of open reactive insights in
|
1977
|
+
# your Amazon Web Services account.
|
1978
|
+
# @return [Array<Types::ReactiveOrganizationInsightSummary>]
|
1979
|
+
#
|
1980
|
+
# @!attribute [rw] next_token
|
1981
|
+
# The pagination token to use to retrieve the next page of results for
|
1982
|
+
# this operation. If there are no more pages, this value is null.
|
1983
|
+
# @return [String]
|
1984
|
+
#
|
1985
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ListOrganizationInsightsResponse AWS API Documentation
|
1986
|
+
#
|
1987
|
+
class ListOrganizationInsightsResponse < Struct.new(
|
1988
|
+
:proactive_insights,
|
1989
|
+
:reactive_insights,
|
1990
|
+
:next_token)
|
1991
|
+
SENSITIVE = []
|
1992
|
+
include Aws::Structure
|
1993
|
+
end
|
1994
|
+
|
1995
|
+
# @note When making an API call, you may pass ListRecommendationsRequest
|
1996
|
+
# data as a hash:
|
1997
|
+
#
|
1998
|
+
# {
|
1999
|
+
# insight_id: "InsightId", # required
|
2000
|
+
# next_token: "UuidNextToken",
|
2001
|
+
# locale: "DE_DE", # accepts DE_DE, EN_US, EN_GB, ES_ES, FR_FR, IT_IT, JA_JP, KO_KR, PT_BR, ZH_CN, ZH_TW
|
2002
|
+
# account_id: "AwsAccountId",
|
2003
|
+
# }
|
2004
|
+
#
|
2005
|
+
# @!attribute [rw] insight_id
|
2006
|
+
# The ID of the requested insight.
|
2007
|
+
# @return [String]
|
2008
|
+
#
|
2009
|
+
# @!attribute [rw] next_token
|
1465
2010
|
# The pagination token to use to retrieve the next page of results for
|
1466
2011
|
# this operation. If this value is null, it retrieves the first page.
|
1467
2012
|
# @return [String]
|
@@ -1470,12 +2015,17 @@ module Aws::DevOpsGuru
|
|
1470
2015
|
# A locale that specifies the language to use for recommendations.
|
1471
2016
|
# @return [String]
|
1472
2017
|
#
|
2018
|
+
# @!attribute [rw] account_id
|
2019
|
+
# The ID of the Amazon Web Services account.
|
2020
|
+
# @return [String]
|
2021
|
+
#
|
1473
2022
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ListRecommendationsRequest AWS API Documentation
|
1474
2023
|
#
|
1475
2024
|
class ListRecommendationsRequest < Struct.new(
|
1476
2025
|
:insight_id,
|
1477
2026
|
:next_token,
|
1478
|
-
:locale
|
2027
|
+
:locale,
|
2028
|
+
:account_id)
|
1479
2029
|
SENSITIVE = []
|
1480
2030
|
include Aws::Structure
|
1481
2031
|
end
|
@@ -1509,10 +2059,11 @@ module Aws::DevOpsGuru
|
|
1509
2059
|
# notifications using Amazon SNS in your account. For more information,
|
1510
2060
|
# see [Permissions for cross account Amazon SNS topics][1].
|
1511
2061
|
#
|
1512
|
-
# If you use an Amazon SNS topic that is encrypted by an
|
1513
|
-
# Management Service customer-managed key (CMK), then you
|
1514
|
-
# permissions to the CMK. For more information, see
|
1515
|
-
# KMS–encrypted Amazon SNS
|
2062
|
+
# If you use an Amazon SNS topic that is encrypted by an Amazon Web
|
2063
|
+
# Services Key Management Service customer-managed key (CMK), then you
|
2064
|
+
# must add permissions to the CMK. For more information, see
|
2065
|
+
# [Permissions for Amazon Web Services KMS–encrypted Amazon SNS
|
2066
|
+
# topics][2].
|
1516
2067
|
#
|
1517
2068
|
#
|
1518
2069
|
#
|
@@ -1561,10 +2112,11 @@ module Aws::DevOpsGuru
|
|
1561
2112
|
# information, see [Permissions for cross account Amazon SNS
|
1562
2113
|
# topics][1].
|
1563
2114
|
#
|
1564
|
-
# If you use an Amazon SNS topic that is encrypted by an
|
1565
|
-
# Management Service customer-managed key (CMK), then you
|
1566
|
-
# permissions to the CMK. For more information, see
|
1567
|
-
#
|
2115
|
+
# If you use an Amazon SNS topic that is encrypted by an Amazon Web
|
2116
|
+
# Services Key Management Service customer-managed key (CMK), then you
|
2117
|
+
# must add permissions to the CMK. For more information, see
|
2118
|
+
# [Permissions for Amazon Web Services KMS–encrypted Amazon SNS
|
2119
|
+
# topics][2].
|
1568
2120
|
#
|
1569
2121
|
#
|
1570
2122
|
#
|
@@ -1581,11 +2133,12 @@ module Aws::DevOpsGuru
|
|
1581
2133
|
end
|
1582
2134
|
|
1583
2135
|
# Information about whether DevOps Guru is configured to create an
|
1584
|
-
# OpsItem in
|
2136
|
+
# OpsItem in Amazon Web Services Systems Manager OpsCenter for each
|
2137
|
+
# created insight.
|
1585
2138
|
#
|
1586
2139
|
# @!attribute [rw] opt_in_status
|
1587
|
-
# Specifies if DevOps Guru is enabled to create an
|
1588
|
-
# OpsItem for each created insight.
|
2140
|
+
# Specifies if DevOps Guru is enabled to create an Amazon Web Services
|
2141
|
+
# Systems Manager OpsItem for each created insight.
|
1589
2142
|
# @return [String]
|
1590
2143
|
#
|
1591
2144
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/OpsCenterIntegration AWS API Documentation
|
@@ -1597,7 +2150,8 @@ module Aws::DevOpsGuru
|
|
1597
2150
|
end
|
1598
2151
|
|
1599
2152
|
# Information about whether DevOps Guru is configured to create an
|
1600
|
-
# OpsItem in
|
2153
|
+
# OpsItem in Amazon Web Services Systems Manager OpsCenter for each
|
2154
|
+
# created insight.
|
1601
2155
|
#
|
1602
2156
|
# @note When making an API call, you may pass OpsCenterIntegrationConfig
|
1603
2157
|
# data as a hash:
|
@@ -1607,8 +2161,8 @@ module Aws::DevOpsGuru
|
|
1607
2161
|
# }
|
1608
2162
|
#
|
1609
2163
|
# @!attribute [rw] opt_in_status
|
1610
|
-
# Specifies if DevOps Guru is enabled to create an
|
1611
|
-
# OpsItem for each created insight.
|
2164
|
+
# Specifies if DevOps Guru is enabled to create an Amazon Web Services
|
2165
|
+
# Systems Manager OpsItem for each created insight.
|
1612
2166
|
# @return [String]
|
1613
2167
|
#
|
1614
2168
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/OpsCenterIntegrationConfig AWS API Documentation
|
@@ -1619,6 +2173,378 @@ module Aws::DevOpsGuru
|
|
1619
2173
|
include Aws::Structure
|
1620
2174
|
end
|
1621
2175
|
|
2176
|
+
# A logical grouping of Performance Insights metrics for a related
|
2177
|
+
# subject area. For example, the `db.sql` dimension group consists of
|
2178
|
+
# the following dimensions: `db.sql.id`, `db.sql.db_id`,
|
2179
|
+
# `db.sql.statement`, and `db.sql.tokenized_id`.
|
2180
|
+
#
|
2181
|
+
# <note markdown="1"> Each response element returns a maximum of 500 bytes. For larger
|
2182
|
+
# elements, such as SQL statements, only the first 500 bytes are
|
2183
|
+
# returned.
|
2184
|
+
#
|
2185
|
+
# </note>
|
2186
|
+
#
|
2187
|
+
# Amazon RDS Performance Insights enables you to monitor and explore
|
2188
|
+
# different dimensions of database load based on data captured from a
|
2189
|
+
# running DB instance. DB load is measured as average active sessions.
|
2190
|
+
# Performance Insights provides the data to API consumers as a
|
2191
|
+
# two-dimensional time-series dataset. The time dimension provides DB
|
2192
|
+
# load data for each time point in the queried time range. Each time
|
2193
|
+
# point decomposes overall load in relation to the requested dimensions,
|
2194
|
+
# measured at that time point. Examples include SQL, Wait event, User,
|
2195
|
+
# and Host.
|
2196
|
+
#
|
2197
|
+
# * To learn more about Performance Insights and Amazon Aurora DB
|
2198
|
+
# instances, go to the [ Amazon Aurora User Guide][1].
|
2199
|
+
#
|
2200
|
+
# * To learn more about Performance Insights and Amazon RDS DB
|
2201
|
+
# instances, go to the [ Amazon RDS User Guide][2].
|
2202
|
+
#
|
2203
|
+
#
|
2204
|
+
#
|
2205
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_PerfInsights.html
|
2206
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.html
|
2207
|
+
#
|
2208
|
+
# @!attribute [rw] group
|
2209
|
+
# The name of the dimension group. Its valid values are:
|
2210
|
+
#
|
2211
|
+
# * `db` - The name of the database to which the client is connected
|
2212
|
+
# (only Aurora PostgreSQL, Amazon RDS PostgreSQL, Aurora MySQL,
|
2213
|
+
# Amazon RDS MySQL, and MariaDB)
|
2214
|
+
#
|
2215
|
+
# * `db.application` - The name of the application that is connected
|
2216
|
+
# to the database (only Aurora PostgreSQL and RDS PostgreSQL)
|
2217
|
+
#
|
2218
|
+
# * `db.host` - The host name of the connected client (all engines)
|
2219
|
+
#
|
2220
|
+
# * `db.session_type` - The type of the current session (only Aurora
|
2221
|
+
# PostgreSQL and RDS PostgreSQL)
|
2222
|
+
#
|
2223
|
+
# * `db.sql` - The SQL that is currently executing (all engines)
|
2224
|
+
#
|
2225
|
+
# * `db.sql_tokenized` - The SQL digest (all engines)
|
2226
|
+
#
|
2227
|
+
# * `db.wait_event` - The event for which the database backend is
|
2228
|
+
# waiting (all engines)
|
2229
|
+
#
|
2230
|
+
# * `db.wait_event_type` - The type of event for which the database
|
2231
|
+
# backend is waiting (all engines)
|
2232
|
+
#
|
2233
|
+
# * `db.user` - The user logged in to the database (all engines)
|
2234
|
+
# @return [String]
|
2235
|
+
#
|
2236
|
+
# @!attribute [rw] dimensions
|
2237
|
+
# A list of specific dimensions from a dimension group. If this
|
2238
|
+
# parameter is not present, then it signifies that all of the
|
2239
|
+
# dimensions in the group were requested or are present in the
|
2240
|
+
# response.
|
2241
|
+
#
|
2242
|
+
# Valid values for elements in the `Dimensions` array are:
|
2243
|
+
#
|
2244
|
+
# * `db.application.name` - The name of the application that is
|
2245
|
+
# connected to the database (only Aurora PostgreSQL and RDS
|
2246
|
+
# PostgreSQL)
|
2247
|
+
#
|
2248
|
+
# * `db.host.id` - The host ID of the connected client (all engines)
|
2249
|
+
#
|
2250
|
+
# * `db.host.name` - The host name of the connected client (all
|
2251
|
+
# engines)
|
2252
|
+
#
|
2253
|
+
# * `db.name` - The name of the database to which the client is
|
2254
|
+
# connected (only Aurora PostgreSQL, Amazon RDS PostgreSQL, Aurora
|
2255
|
+
# MySQL, Amazon RDS MySQL, and MariaDB)
|
2256
|
+
#
|
2257
|
+
# * `db.session_type.name` - The type of the current session (only
|
2258
|
+
# Aurora PostgreSQL and RDS PostgreSQL)
|
2259
|
+
#
|
2260
|
+
# * `db.sql.id` - The SQL ID generated by Performance Insights (all
|
2261
|
+
# engines)
|
2262
|
+
#
|
2263
|
+
# * `db.sql.db_id` - The SQL ID generated by the database (all
|
2264
|
+
# engines)
|
2265
|
+
#
|
2266
|
+
# * `db.sql.statement` - The SQL text that is being executed (all
|
2267
|
+
# engines)
|
2268
|
+
#
|
2269
|
+
# * `db.sql.tokenized_id`
|
2270
|
+
#
|
2271
|
+
# * `db.sql_tokenized.id` - The SQL digest ID generated by Performance
|
2272
|
+
# Insights (all engines)
|
2273
|
+
#
|
2274
|
+
# * `db.sql_tokenized.db_id` - SQL digest ID generated by the database
|
2275
|
+
# (all engines)
|
2276
|
+
#
|
2277
|
+
# * `db.sql_tokenized.statement` - The SQL digest text (all engines)
|
2278
|
+
#
|
2279
|
+
# * `db.user.id` - The ID of the user logged in to the database (all
|
2280
|
+
# engines)
|
2281
|
+
#
|
2282
|
+
# * `db.user.name` - The name of the user logged in to the database
|
2283
|
+
# (all engines)
|
2284
|
+
#
|
2285
|
+
# * `db.wait_event.name` - The event for which the backend is waiting
|
2286
|
+
# (all engines)
|
2287
|
+
#
|
2288
|
+
# * `db.wait_event.type` - The type of event for which the backend is
|
2289
|
+
# waiting (all engines)
|
2290
|
+
#
|
2291
|
+
# * `db.wait_event_type.name` - The name of the event type for which
|
2292
|
+
# the backend is waiting (all engines)
|
2293
|
+
# @return [Array<String>]
|
2294
|
+
#
|
2295
|
+
# @!attribute [rw] limit
|
2296
|
+
# The maximum number of items to fetch for this dimension group.
|
2297
|
+
# @return [Integer]
|
2298
|
+
#
|
2299
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/PerformanceInsightsMetricDimensionGroup AWS API Documentation
|
2300
|
+
#
|
2301
|
+
class PerformanceInsightsMetricDimensionGroup < Struct.new(
|
2302
|
+
:group,
|
2303
|
+
:dimensions,
|
2304
|
+
:limit)
|
2305
|
+
SENSITIVE = []
|
2306
|
+
include Aws::Structure
|
2307
|
+
end
|
2308
|
+
|
2309
|
+
# A single query to be processed. Use these parameters to query the
|
2310
|
+
# Performance Insights `GetResourceMetrics` API to retrieve the metrics
|
2311
|
+
# for an anomaly. For more information, see ` GetResourceMetrics ` in
|
2312
|
+
# the *Amazon RDS Performance Insights API Reference*.
|
2313
|
+
#
|
2314
|
+
# Amazon RDS Performance Insights enables you to monitor and explore
|
2315
|
+
# different dimensions of database load based on data captured from a
|
2316
|
+
# running DB instance. DB load is measured as average active sessions.
|
2317
|
+
# Performance Insights provides the data to API consumers as a
|
2318
|
+
# two-dimensional time-series dataset. The time dimension provides DB
|
2319
|
+
# load data for each time point in the queried time range. Each time
|
2320
|
+
# point decomposes overall load in relation to the requested dimensions,
|
2321
|
+
# measured at that time point. Examples include SQL, Wait event, User,
|
2322
|
+
# and Host.
|
2323
|
+
#
|
2324
|
+
# * To learn more about Performance Insights and Amazon Aurora DB
|
2325
|
+
# instances, go to the [ Amazon Aurora User Guide][1].
|
2326
|
+
#
|
2327
|
+
# * To learn more about Performance Insights and Amazon RDS DB
|
2328
|
+
# instances, go to the [ Amazon RDS User Guide][2].
|
2329
|
+
#
|
2330
|
+
#
|
2331
|
+
#
|
2332
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_PerfInsights.html
|
2333
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.html
|
2334
|
+
#
|
2335
|
+
# @!attribute [rw] metric
|
2336
|
+
# The name of the meteric used used when querying an Performance
|
2337
|
+
# Insights `GetResourceMetrics` API for anomaly metrics.
|
2338
|
+
#
|
2339
|
+
# Valid values for `Metric` are:
|
2340
|
+
#
|
2341
|
+
# * `db.load.avg` - a scaled representation of the number of active
|
2342
|
+
# sessions for the database engine.
|
2343
|
+
#
|
2344
|
+
# * `db.sampledload.avg` - the raw number of active sessions for the
|
2345
|
+
# database engine.
|
2346
|
+
#
|
2347
|
+
# If the number of active sessions is less than an internal
|
2348
|
+
# Performance Insights threshold, `db.load.avg` and
|
2349
|
+
# `db.sampledload.avg` are the same value. If the number of active
|
2350
|
+
# sessions is greater than the internal threshold, Performance
|
2351
|
+
# Insights samples the active sessions, with `db.load.avg` showing the
|
2352
|
+
# scaled values, `db.sampledload.avg` showing the raw values, and
|
2353
|
+
# `db.sampledload.avg` less than `db.load.avg`. For most use cases,
|
2354
|
+
# you can query `db.load.avg` only.
|
2355
|
+
# @return [String]
|
2356
|
+
#
|
2357
|
+
# @!attribute [rw] group_by
|
2358
|
+
# The specification for how to aggregate the data points from a
|
2359
|
+
# Performance Insights `GetResourceMetrics` API query. The Performance
|
2360
|
+
# Insights query returns all of the dimensions within that group,
|
2361
|
+
# unless you provide the names of specific dimensions within that
|
2362
|
+
# group. You can also request that Performance Insights return a
|
2363
|
+
# limited number of values for a dimension.
|
2364
|
+
# @return [Types::PerformanceInsightsMetricDimensionGroup]
|
2365
|
+
#
|
2366
|
+
# @!attribute [rw] filter
|
2367
|
+
# One or more filters to apply to a Performance Insights
|
2368
|
+
# `GetResourceMetrics` API query. Restrictions:
|
2369
|
+
#
|
2370
|
+
# * Any number of filters by the same dimension, as specified in the
|
2371
|
+
# `GroupBy` parameter.
|
2372
|
+
#
|
2373
|
+
# * A single filter for any other dimension in this dimension group.
|
2374
|
+
# @return [Hash<String,String>]
|
2375
|
+
#
|
2376
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/PerformanceInsightsMetricQuery AWS API Documentation
|
2377
|
+
#
|
2378
|
+
class PerformanceInsightsMetricQuery < Struct.new(
|
2379
|
+
:metric,
|
2380
|
+
:group_by,
|
2381
|
+
:filter)
|
2382
|
+
SENSITIVE = []
|
2383
|
+
include Aws::Structure
|
2384
|
+
end
|
2385
|
+
|
2386
|
+
# Details about Performance Insights metrics.
|
2387
|
+
#
|
2388
|
+
# Amazon RDS Performance Insights enables you to monitor and explore
|
2389
|
+
# different dimensions of database load based on data captured from a
|
2390
|
+
# running DB instance. DB load is measured as average active sessions.
|
2391
|
+
# Performance Insights provides the data to API consumers as a
|
2392
|
+
# two-dimensional time-series dataset. The time dimension provides DB
|
2393
|
+
# load data for each time point in the queried time range. Each time
|
2394
|
+
# point decomposes overall load in relation to the requested dimensions,
|
2395
|
+
# measured at that time point. Examples include SQL, Wait event, User,
|
2396
|
+
# and Host.
|
2397
|
+
#
|
2398
|
+
# * To learn more about Performance Insights and Amazon Aurora DB
|
2399
|
+
# instances, go to the [ Amazon Aurora User Guide][1].
|
2400
|
+
#
|
2401
|
+
# * To learn more about Performance Insights and Amazon RDS DB
|
2402
|
+
# instances, go to the [ Amazon RDS User Guide][2].
|
2403
|
+
#
|
2404
|
+
#
|
2405
|
+
#
|
2406
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_PerfInsights.html
|
2407
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.html
|
2408
|
+
#
|
2409
|
+
# @!attribute [rw] metric_display_name
|
2410
|
+
# The name used for a specific Performance Insights metric.
|
2411
|
+
# @return [String]
|
2412
|
+
#
|
2413
|
+
# @!attribute [rw] unit
|
2414
|
+
# The unit of measure for a metric. For example, a session or a
|
2415
|
+
# process.
|
2416
|
+
# @return [String]
|
2417
|
+
#
|
2418
|
+
# @!attribute [rw] metric_query
|
2419
|
+
# A single query to be processed for the metric. For more information,
|
2420
|
+
# see ` PerformanceInsightsMetricQuery `.
|
2421
|
+
# @return [Types::PerformanceInsightsMetricQuery]
|
2422
|
+
#
|
2423
|
+
# @!attribute [rw] reference_data
|
2424
|
+
# For more information, see ` PerformanceInsightsReferenceData `.
|
2425
|
+
# @return [Array<Types::PerformanceInsightsReferenceData>]
|
2426
|
+
#
|
2427
|
+
# @!attribute [rw] stats_at_anomaly
|
2428
|
+
# The metric statistics during the anomalous period detected by DevOps
|
2429
|
+
# Guru;
|
2430
|
+
# @return [Array<Types::PerformanceInsightsStat>]
|
2431
|
+
#
|
2432
|
+
# @!attribute [rw] stats_at_baseline
|
2433
|
+
# Typical metric statistics that are not considered anomalous. When
|
2434
|
+
# DevOps Guru analyzes metrics, it compares them to `StatsAtBaseline`
|
2435
|
+
# to help determine if they are anomalous.
|
2436
|
+
# @return [Array<Types::PerformanceInsightsStat>]
|
2437
|
+
#
|
2438
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/PerformanceInsightsMetricsDetail AWS API Documentation
|
2439
|
+
#
|
2440
|
+
class PerformanceInsightsMetricsDetail < Struct.new(
|
2441
|
+
:metric_display_name,
|
2442
|
+
:unit,
|
2443
|
+
:metric_query,
|
2444
|
+
:reference_data,
|
2445
|
+
:stats_at_anomaly,
|
2446
|
+
:stats_at_baseline)
|
2447
|
+
SENSITIVE = []
|
2448
|
+
include Aws::Structure
|
2449
|
+
end
|
2450
|
+
|
2451
|
+
# Reference scalar values and other metrics that DevOps Guru displays on
|
2452
|
+
# a graph in its console along with the actual metrics it analyzed.
|
2453
|
+
# Compare these reference values to your actual metrics to help you
|
2454
|
+
# understand anomalous behavior that DevOps Guru detected.
|
2455
|
+
#
|
2456
|
+
# @!attribute [rw] reference_scalar
|
2457
|
+
# A scalar value DevOps Guru for a metric that DevOps Guru compares to
|
2458
|
+
# actual metric values. This reference value is used to determine if
|
2459
|
+
# an actual metric value should be considered anomalous.
|
2460
|
+
# @return [Types::PerformanceInsightsReferenceScalar]
|
2461
|
+
#
|
2462
|
+
# @!attribute [rw] reference_metric
|
2463
|
+
# A metric that DevOps Guru compares to actual metric values. This
|
2464
|
+
# reference metric is used to determine if an actual metric should be
|
2465
|
+
# considered anomalous.
|
2466
|
+
# @return [Types::PerformanceInsightsReferenceMetric]
|
2467
|
+
#
|
2468
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/PerformanceInsightsReferenceComparisonValues AWS API Documentation
|
2469
|
+
#
|
2470
|
+
class PerformanceInsightsReferenceComparisonValues < Struct.new(
|
2471
|
+
:reference_scalar,
|
2472
|
+
:reference_metric)
|
2473
|
+
SENSITIVE = []
|
2474
|
+
include Aws::Structure
|
2475
|
+
end
|
2476
|
+
|
2477
|
+
# Reference data used to evaluate Performance Insights to determine if
|
2478
|
+
# its performance is anomalous or not.
|
2479
|
+
#
|
2480
|
+
# @!attribute [rw] name
|
2481
|
+
# The name of the reference data.
|
2482
|
+
# @return [String]
|
2483
|
+
#
|
2484
|
+
# @!attribute [rw] comparison_values
|
2485
|
+
# The specific reference values used to evaluate the Performance
|
2486
|
+
# Insights. For more information, see `
|
2487
|
+
# PerformanceInsightsReferenceComparisonValues `.
|
2488
|
+
# @return [Types::PerformanceInsightsReferenceComparisonValues]
|
2489
|
+
#
|
2490
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/PerformanceInsightsReferenceData AWS API Documentation
|
2491
|
+
#
|
2492
|
+
class PerformanceInsightsReferenceData < Struct.new(
|
2493
|
+
:name,
|
2494
|
+
:comparison_values)
|
2495
|
+
SENSITIVE = []
|
2496
|
+
include Aws::Structure
|
2497
|
+
end
|
2498
|
+
|
2499
|
+
# Information about a reference metric used to evaluate Performance
|
2500
|
+
# Insights.
|
2501
|
+
#
|
2502
|
+
# @!attribute [rw] metric_query
|
2503
|
+
# A query to be processed on the metric.
|
2504
|
+
# @return [Types::PerformanceInsightsMetricQuery]
|
2505
|
+
#
|
2506
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/PerformanceInsightsReferenceMetric AWS API Documentation
|
2507
|
+
#
|
2508
|
+
class PerformanceInsightsReferenceMetric < Struct.new(
|
2509
|
+
:metric_query)
|
2510
|
+
SENSITIVE = []
|
2511
|
+
include Aws::Structure
|
2512
|
+
end
|
2513
|
+
|
2514
|
+
# A reference value to compare Performance Insights metrics against to
|
2515
|
+
# determine if the metrics demonstrate anomalous behavior.
|
2516
|
+
#
|
2517
|
+
# @!attribute [rw] value
|
2518
|
+
# The reference value.
|
2519
|
+
# @return [Float]
|
2520
|
+
#
|
2521
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/PerformanceInsightsReferenceScalar AWS API Documentation
|
2522
|
+
#
|
2523
|
+
class PerformanceInsightsReferenceScalar < Struct.new(
|
2524
|
+
:value)
|
2525
|
+
SENSITIVE = []
|
2526
|
+
include Aws::Structure
|
2527
|
+
end
|
2528
|
+
|
2529
|
+
# A statistic in a Performance Insights collection.
|
2530
|
+
#
|
2531
|
+
# @!attribute [rw] type
|
2532
|
+
# The statistic type.
|
2533
|
+
# @return [String]
|
2534
|
+
#
|
2535
|
+
# @!attribute [rw] value
|
2536
|
+
# The value of the statistic.
|
2537
|
+
# @return [Float]
|
2538
|
+
#
|
2539
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/PerformanceInsightsStat AWS API Documentation
|
2540
|
+
#
|
2541
|
+
class PerformanceInsightsStat < Struct.new(
|
2542
|
+
:type,
|
2543
|
+
:value)
|
2544
|
+
SENSITIVE = []
|
2545
|
+
include Aws::Structure
|
2546
|
+
end
|
2547
|
+
|
1622
2548
|
# The time range during which anomalous behavior in a proactive anomaly
|
1623
2549
|
# or an insight is expected to occur.
|
1624
2550
|
#
|
@@ -1649,7 +2575,14 @@ module Aws::DevOpsGuru
|
|
1649
2575
|
# @return [String]
|
1650
2576
|
#
|
1651
2577
|
# @!attribute [rw] severity
|
1652
|
-
# The severity of
|
2578
|
+
# The severity of the anomaly. The severity of anomalies that generate
|
2579
|
+
# an insight determine that insight's severity. For more information,
|
2580
|
+
# see [Understanding insight severities][1] in the *Amazon DevOps Guru
|
2581
|
+
# User Guide*.
|
2582
|
+
#
|
2583
|
+
#
|
2584
|
+
#
|
2585
|
+
# [1]: https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities
|
1653
2586
|
# @return [String]
|
1654
2587
|
#
|
1655
2588
|
# @!attribute [rw] status
|
@@ -1668,7 +2601,7 @@ module Aws::DevOpsGuru
|
|
1668
2601
|
# @return [Types::AnomalyTimeRange]
|
1669
2602
|
#
|
1670
2603
|
# @!attribute [rw] anomaly_reported_time_range
|
1671
|
-
#
|
2604
|
+
# An `AnomalyReportedTimeRange` object that specifies the time range
|
1672
2605
|
# between when the anomaly is opened and the time when it is closed.
|
1673
2606
|
# @return [Types::AnomalyReportedTimeRange]
|
1674
2607
|
#
|
@@ -1689,11 +2622,14 @@ module Aws::DevOpsGuru
|
|
1689
2622
|
# @return [String]
|
1690
2623
|
#
|
1691
2624
|
# @!attribute [rw] resource_collection
|
1692
|
-
# A collection of
|
1693
|
-
#
|
1694
|
-
#
|
1695
|
-
#
|
1696
|
-
#
|
2625
|
+
# A collection of Amazon Web Services resources supported by DevOps
|
2626
|
+
# Guru. The two types of Amazon Web Services resource collections
|
2627
|
+
# supported are Amazon Web Services CloudFormation stacks and Amazon
|
2628
|
+
# Web Services resources that contain the same Amazon Web Services
|
2629
|
+
# tag. DevOps Guru can be configured to analyze the Amazon Web
|
2630
|
+
# Services resources that are defined in the stacks or that are tagged
|
2631
|
+
# using the same tag *key*. You can specify up to 500 Amazon Web
|
2632
|
+
# Services CloudFormation stacks.
|
1697
2633
|
# @return [Types::ResourceCollection]
|
1698
2634
|
#
|
1699
2635
|
# @!attribute [rw] limit
|
@@ -1728,7 +2664,14 @@ module Aws::DevOpsGuru
|
|
1728
2664
|
# @return [String]
|
1729
2665
|
#
|
1730
2666
|
# @!attribute [rw] severity
|
1731
|
-
# The severity of the anomaly.
|
2667
|
+
# The severity of the anomaly. The severity of anomalies that generate
|
2668
|
+
# an insight determine that insight's severity. For more information,
|
2669
|
+
# see [Understanding insight severities][1] in the *Amazon DevOps Guru
|
2670
|
+
# User Guide*.
|
2671
|
+
#
|
2672
|
+
#
|
2673
|
+
#
|
2674
|
+
# [1]: https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities
|
1732
2675
|
# @return [String]
|
1733
2676
|
#
|
1734
2677
|
# @!attribute [rw] status
|
@@ -1747,7 +2690,7 @@ module Aws::DevOpsGuru
|
|
1747
2690
|
# @return [Types::AnomalyTimeRange]
|
1748
2691
|
#
|
1749
2692
|
# @!attribute [rw] anomaly_reported_time_range
|
1750
|
-
#
|
2693
|
+
# An `AnomalyReportedTimeRange` object that specifies the time range
|
1751
2694
|
# between when the anomaly is opened and the time when it is closed.
|
1752
2695
|
# @return [Types::AnomalyReportedTimeRange]
|
1753
2696
|
#
|
@@ -1768,11 +2711,14 @@ module Aws::DevOpsGuru
|
|
1768
2711
|
# @return [String]
|
1769
2712
|
#
|
1770
2713
|
# @!attribute [rw] resource_collection
|
1771
|
-
# A collection of
|
1772
|
-
#
|
1773
|
-
#
|
1774
|
-
#
|
1775
|
-
#
|
2714
|
+
# A collection of Amazon Web Services resources supported by DevOps
|
2715
|
+
# Guru. The two types of Amazon Web Services resource collections
|
2716
|
+
# supported are Amazon Web Services CloudFormation stacks and Amazon
|
2717
|
+
# Web Services resources that contain the same Amazon Web Services
|
2718
|
+
# tag. DevOps Guru can be configured to analyze the Amazon Web
|
2719
|
+
# Services resources that are defined in the stacks or that are tagged
|
2720
|
+
# using the same tag *key*. You can specify up to 500 Amazon Web
|
2721
|
+
# Services CloudFormation stacks.
|
1776
2722
|
# @return [Types::ResourceCollection]
|
1777
2723
|
#
|
1778
2724
|
# @!attribute [rw] limit
|
@@ -1811,7 +2757,13 @@ module Aws::DevOpsGuru
|
|
1811
2757
|
# @return [String]
|
1812
2758
|
#
|
1813
2759
|
# @!attribute [rw] severity
|
1814
|
-
# The severity of the
|
2760
|
+
# The severity of the insight. For more information, see
|
2761
|
+
# [Understanding insight severities][1] in the *Amazon DevOps Guru
|
2762
|
+
# User Guide*.
|
2763
|
+
#
|
2764
|
+
#
|
2765
|
+
#
|
2766
|
+
# [1]: https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities
|
1815
2767
|
# @return [String]
|
1816
2768
|
#
|
1817
2769
|
# @!attribute [rw] status
|
@@ -1829,17 +2781,20 @@ module Aws::DevOpsGuru
|
|
1829
2781
|
# @return [Types::PredictionTimeRange]
|
1830
2782
|
#
|
1831
2783
|
# @!attribute [rw] resource_collection
|
1832
|
-
# A collection of
|
1833
|
-
#
|
1834
|
-
#
|
1835
|
-
#
|
1836
|
-
#
|
2784
|
+
# A collection of Amazon Web Services resources supported by DevOps
|
2785
|
+
# Guru. The two types of Amazon Web Services resource collections
|
2786
|
+
# supported are Amazon Web Services CloudFormation stacks and Amazon
|
2787
|
+
# Web Services resources that contain the same Amazon Web Services
|
2788
|
+
# tag. DevOps Guru can be configured to analyze the Amazon Web
|
2789
|
+
# Services resources that are defined in the stacks or that are tagged
|
2790
|
+
# using the same tag *key*. You can specify up to 500 Amazon Web
|
2791
|
+
# Services CloudFormation stacks.
|
1837
2792
|
# @return [Types::ResourceCollection]
|
1838
2793
|
#
|
1839
2794
|
# @!attribute [rw] ssm_ops_item_id
|
1840
|
-
# The ID of the
|
1841
|
-
# You must enable the creation of OpstItems insights
|
1842
|
-
# created for each insight.
|
2795
|
+
# The ID of the Amazon Web Services System Manager OpsItem created for
|
2796
|
+
# this insight. You must enable the creation of OpstItems insights
|
2797
|
+
# before they are created for each insight.
|
1843
2798
|
# @return [String]
|
1844
2799
|
#
|
1845
2800
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ProactiveInsight AWS API Documentation
|
@@ -1869,7 +2824,13 @@ module Aws::DevOpsGuru
|
|
1869
2824
|
# @return [String]
|
1870
2825
|
#
|
1871
2826
|
# @!attribute [rw] severity
|
1872
|
-
# The severity of the
|
2827
|
+
# The severity of the insight. For more information, see
|
2828
|
+
# [Understanding insight severities][1] in the *Amazon DevOps Guru
|
2829
|
+
# User Guide*.
|
2830
|
+
#
|
2831
|
+
#
|
2832
|
+
#
|
2833
|
+
# [1]: https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities
|
1873
2834
|
# @return [String]
|
1874
2835
|
#
|
1875
2836
|
# @!attribute [rw] status
|
@@ -1887,17 +2848,25 @@ module Aws::DevOpsGuru
|
|
1887
2848
|
# @return [Types::PredictionTimeRange]
|
1888
2849
|
#
|
1889
2850
|
# @!attribute [rw] resource_collection
|
1890
|
-
# A collection of
|
1891
|
-
#
|
1892
|
-
#
|
1893
|
-
#
|
1894
|
-
#
|
2851
|
+
# A collection of Amazon Web Services resources supported by DevOps
|
2852
|
+
# Guru. The two types of Amazon Web Services resource collections
|
2853
|
+
# supported are Amazon Web Services CloudFormation stacks and Amazon
|
2854
|
+
# Web Services resources that contain the same Amazon Web Services
|
2855
|
+
# tag. DevOps Guru can be configured to analyze the Amazon Web
|
2856
|
+
# Services resources that are defined in the stacks or that are tagged
|
2857
|
+
# using the same tag *key*. You can specify up to 500 Amazon Web
|
2858
|
+
# Services CloudFormation stacks.
|
1895
2859
|
# @return [Types::ResourceCollection]
|
1896
2860
|
#
|
1897
2861
|
# @!attribute [rw] service_collection
|
1898
|
-
# A collection of the names of
|
2862
|
+
# A collection of the names of Amazon Web Services services.
|
1899
2863
|
# @return [Types::ServiceCollection]
|
1900
2864
|
#
|
2865
|
+
# @!attribute [rw] associated_resource_arns
|
2866
|
+
# The Amazon Resource Names (ARNs) of the Amazon Web Services
|
2867
|
+
# resources that generated this insight.
|
2868
|
+
# @return [Array<String>]
|
2869
|
+
#
|
1901
2870
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ProactiveInsightSummary AWS API Documentation
|
1902
2871
|
#
|
1903
2872
|
class ProactiveInsightSummary < Struct.new(
|
@@ -1908,6 +2877,82 @@ module Aws::DevOpsGuru
|
|
1908
2877
|
:insight_time_range,
|
1909
2878
|
:prediction_time_range,
|
1910
2879
|
:resource_collection,
|
2880
|
+
:service_collection,
|
2881
|
+
:associated_resource_arns)
|
2882
|
+
SENSITIVE = []
|
2883
|
+
include Aws::Structure
|
2884
|
+
end
|
2885
|
+
|
2886
|
+
# Details about a proactive insight. This object is returned by
|
2887
|
+
# `DescribeInsight`.
|
2888
|
+
#
|
2889
|
+
# @!attribute [rw] id
|
2890
|
+
# The ID of the insight summary.
|
2891
|
+
# @return [String]
|
2892
|
+
#
|
2893
|
+
# @!attribute [rw] account_id
|
2894
|
+
# The ID of the Amazon Web Services account.
|
2895
|
+
# @return [String]
|
2896
|
+
#
|
2897
|
+
# @!attribute [rw] organizational_unit_id
|
2898
|
+
# The ID of the organizational unit.
|
2899
|
+
# @return [String]
|
2900
|
+
#
|
2901
|
+
# @!attribute [rw] name
|
2902
|
+
# The name of the insight summary.
|
2903
|
+
# @return [String]
|
2904
|
+
#
|
2905
|
+
# @!attribute [rw] severity
|
2906
|
+
# An array of severity values used to search for insights. For more
|
2907
|
+
# information, see [Understanding insight severities][1] in the
|
2908
|
+
# *Amazon DevOps Guru User Guide*.
|
2909
|
+
#
|
2910
|
+
#
|
2911
|
+
#
|
2912
|
+
# [1]: https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities
|
2913
|
+
# @return [String]
|
2914
|
+
#
|
2915
|
+
# @!attribute [rw] status
|
2916
|
+
# An array of status values used to search for insights.
|
2917
|
+
# @return [String]
|
2918
|
+
#
|
2919
|
+
# @!attribute [rw] insight_time_range
|
2920
|
+
# A time ranged that specifies when the observed behavior in an
|
2921
|
+
# insight started and ended.
|
2922
|
+
# @return [Types::InsightTimeRange]
|
2923
|
+
#
|
2924
|
+
# @!attribute [rw] prediction_time_range
|
2925
|
+
# The time range during which anomalous behavior in a proactive
|
2926
|
+
# anomaly or an insight is expected to occur.
|
2927
|
+
# @return [Types::PredictionTimeRange]
|
2928
|
+
#
|
2929
|
+
# @!attribute [rw] resource_collection
|
2930
|
+
# A collection of Amazon Web Services resources supported by DevOps
|
2931
|
+
# Guru. The two types of Amazon Web Services resource collections
|
2932
|
+
# supported are Amazon Web Services CloudFormation stacks and Amazon
|
2933
|
+
# Web Services resources that contain the same Amazon Web Services
|
2934
|
+
# tag. DevOps Guru can be configured to analyze the Amazon Web
|
2935
|
+
# Services resources that are defined in the stacks or that are tagged
|
2936
|
+
# using the same tag *key*. You can specify up to 500 Amazon Web
|
2937
|
+
# Services CloudFormation stacks.
|
2938
|
+
# @return [Types::ResourceCollection]
|
2939
|
+
#
|
2940
|
+
# @!attribute [rw] service_collection
|
2941
|
+
# A collection of the names of Amazon Web Services services.
|
2942
|
+
# @return [Types::ServiceCollection]
|
2943
|
+
#
|
2944
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ProactiveOrganizationInsightSummary AWS API Documentation
|
2945
|
+
#
|
2946
|
+
class ProactiveOrganizationInsightSummary < Struct.new(
|
2947
|
+
:id,
|
2948
|
+
:account_id,
|
2949
|
+
:organizational_unit_id,
|
2950
|
+
:name,
|
2951
|
+
:severity,
|
2952
|
+
:status,
|
2953
|
+
:insight_time_range,
|
2954
|
+
:prediction_time_range,
|
2955
|
+
:resource_collection,
|
1911
2956
|
:service_collection)
|
1912
2957
|
SENSITIVE = []
|
1913
2958
|
include Aws::Structure
|
@@ -1948,7 +2993,14 @@ module Aws::DevOpsGuru
|
|
1948
2993
|
# @return [String]
|
1949
2994
|
#
|
1950
2995
|
# @!attribute [rw] severity
|
1951
|
-
# The severity of the anomaly.
|
2996
|
+
# The severity of the anomaly. The severity of anomalies that generate
|
2997
|
+
# an insight determine that insight's severity. For more information,
|
2998
|
+
# see [Understanding insight severities][1] in the *Amazon DevOps Guru
|
2999
|
+
# User Guide*.
|
3000
|
+
#
|
3001
|
+
#
|
3002
|
+
#
|
3003
|
+
# [1]: https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities
|
1952
3004
|
# @return [String]
|
1953
3005
|
#
|
1954
3006
|
# @!attribute [rw] status
|
@@ -1963,7 +3015,7 @@ module Aws::DevOpsGuru
|
|
1963
3015
|
# @return [Types::AnomalyTimeRange]
|
1964
3016
|
#
|
1965
3017
|
# @!attribute [rw] anomaly_reported_time_range
|
1966
|
-
#
|
3018
|
+
# An `AnomalyReportedTimeRange` object that specifies the time range
|
1967
3019
|
# between when the anomaly is opened and the time when it is closed.
|
1968
3020
|
# @return [Types::AnomalyReportedTimeRange]
|
1969
3021
|
#
|
@@ -1979,13 +3031,44 @@ module Aws::DevOpsGuru
|
|
1979
3031
|
# @return [String]
|
1980
3032
|
#
|
1981
3033
|
# @!attribute [rw] resource_collection
|
1982
|
-
# A collection of
|
1983
|
-
#
|
1984
|
-
#
|
1985
|
-
#
|
1986
|
-
#
|
3034
|
+
# A collection of Amazon Web Services resources supported by DevOps
|
3035
|
+
# Guru. The two types of Amazon Web Services resource collections
|
3036
|
+
# supported are Amazon Web Services CloudFormation stacks and Amazon
|
3037
|
+
# Web Services resources that contain the same Amazon Web Services
|
3038
|
+
# tag. DevOps Guru can be configured to analyze the Amazon Web
|
3039
|
+
# Services resources that are defined in the stacks or that are tagged
|
3040
|
+
# using the same tag *key*. You can specify up to 500 Amazon Web
|
3041
|
+
# Services CloudFormation stacks.
|
1987
3042
|
# @return [Types::ResourceCollection]
|
1988
3043
|
#
|
3044
|
+
# @!attribute [rw] type
|
3045
|
+
# The type of the reactive anomaly. It can be one of the following
|
3046
|
+
# types.
|
3047
|
+
#
|
3048
|
+
# * `CAUSAL` - the anomaly can cause a new insight.
|
3049
|
+
#
|
3050
|
+
# * `CONTEXTUAL` - the anomaly contains additional information about
|
3051
|
+
# an insight or its causal anomaly.
|
3052
|
+
# @return [String]
|
3053
|
+
#
|
3054
|
+
# @!attribute [rw] name
|
3055
|
+
# The name of the reactive anomaly.
|
3056
|
+
# @return [String]
|
3057
|
+
#
|
3058
|
+
# @!attribute [rw] description
|
3059
|
+
# A description of the reactive anomaly.
|
3060
|
+
# @return [String]
|
3061
|
+
#
|
3062
|
+
# @!attribute [rw] causal_anomaly_id
|
3063
|
+
# The ID of the causal anomaly that is associated with this reactive
|
3064
|
+
# anomaly. The ID of a `CAUSAL` anomaly is always `NULL`.
|
3065
|
+
# @return [String]
|
3066
|
+
#
|
3067
|
+
# @!attribute [rw] anomaly_resources
|
3068
|
+
# The Amazon Web Services resources in which anomalous behavior was
|
3069
|
+
# detected by DevOps Guru.
|
3070
|
+
# @return [Array<Types::AnomalyResource>]
|
3071
|
+
#
|
1989
3072
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ReactiveAnomaly AWS API Documentation
|
1990
3073
|
#
|
1991
3074
|
class ReactiveAnomaly < Struct.new(
|
@@ -1996,7 +3079,12 @@ module Aws::DevOpsGuru
|
|
1996
3079
|
:anomaly_reported_time_range,
|
1997
3080
|
:source_details,
|
1998
3081
|
:associated_insight_id,
|
1999
|
-
:resource_collection
|
3082
|
+
:resource_collection,
|
3083
|
+
:type,
|
3084
|
+
:name,
|
3085
|
+
:description,
|
3086
|
+
:causal_anomaly_id,
|
3087
|
+
:anomaly_resources)
|
2000
3088
|
SENSITIVE = []
|
2001
3089
|
include Aws::Structure
|
2002
3090
|
end
|
@@ -2009,7 +3097,14 @@ module Aws::DevOpsGuru
|
|
2009
3097
|
# @return [String]
|
2010
3098
|
#
|
2011
3099
|
# @!attribute [rw] severity
|
2012
|
-
# The severity of the
|
3100
|
+
# The severity of the anomaly. The severity of anomalies that generate
|
3101
|
+
# an insight determine that insight's severity. For more information,
|
3102
|
+
# see [Understanding insight severities][1] in the *Amazon DevOps Guru
|
3103
|
+
# User Guide*.
|
3104
|
+
#
|
3105
|
+
#
|
3106
|
+
#
|
3107
|
+
# [1]: https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities
|
2013
3108
|
# @return [String]
|
2014
3109
|
#
|
2015
3110
|
# @!attribute [rw] status
|
@@ -2024,7 +3119,7 @@ module Aws::DevOpsGuru
|
|
2024
3119
|
# @return [Types::AnomalyTimeRange]
|
2025
3120
|
#
|
2026
3121
|
# @!attribute [rw] anomaly_reported_time_range
|
2027
|
-
#
|
3122
|
+
# An `AnomalyReportedTimeRange` object that specifies the time range
|
2028
3123
|
# between when the anomaly is opened and the time when it is closed.
|
2029
3124
|
# @return [Types::AnomalyReportedTimeRange]
|
2030
3125
|
#
|
@@ -2040,13 +3135,44 @@ module Aws::DevOpsGuru
|
|
2040
3135
|
# @return [String]
|
2041
3136
|
#
|
2042
3137
|
# @!attribute [rw] resource_collection
|
2043
|
-
# A collection of
|
2044
|
-
#
|
2045
|
-
#
|
2046
|
-
#
|
2047
|
-
#
|
3138
|
+
# A collection of Amazon Web Services resources supported by DevOps
|
3139
|
+
# Guru. The two types of Amazon Web Services resource collections
|
3140
|
+
# supported are Amazon Web Services CloudFormation stacks and Amazon
|
3141
|
+
# Web Services resources that contain the same Amazon Web Services
|
3142
|
+
# tag. DevOps Guru can be configured to analyze the Amazon Web
|
3143
|
+
# Services resources that are defined in the stacks or that are tagged
|
3144
|
+
# using the same tag *key*. You can specify up to 500 Amazon Web
|
3145
|
+
# Services CloudFormation stacks.
|
2048
3146
|
# @return [Types::ResourceCollection]
|
2049
3147
|
#
|
3148
|
+
# @!attribute [rw] type
|
3149
|
+
# The type of the reactive anomaly. It can be one of the following
|
3150
|
+
# types.
|
3151
|
+
#
|
3152
|
+
# * `CAUSAL` - the anomaly can cause a new insight.
|
3153
|
+
#
|
3154
|
+
# * `CONTEXTUAL` - the anomaly contains additional information about
|
3155
|
+
# an insight or its causal anomaly.
|
3156
|
+
# @return [String]
|
3157
|
+
#
|
3158
|
+
# @!attribute [rw] name
|
3159
|
+
# The name of the reactive anomaly.
|
3160
|
+
# @return [String]
|
3161
|
+
#
|
3162
|
+
# @!attribute [rw] description
|
3163
|
+
# A description of the reactive anomaly.
|
3164
|
+
# @return [String]
|
3165
|
+
#
|
3166
|
+
# @!attribute [rw] causal_anomaly_id
|
3167
|
+
# The ID of the causal anomaly that is associated with this reactive
|
3168
|
+
# anomaly. The ID of a `CAUSAL` anomaly is always `NULL`.
|
3169
|
+
# @return [String]
|
3170
|
+
#
|
3171
|
+
# @!attribute [rw] anomaly_resources
|
3172
|
+
# The Amazon Web Services resources in which anomalous behavior was
|
3173
|
+
# detected by DevOps Guru.
|
3174
|
+
# @return [Array<Types::AnomalyResource>]
|
3175
|
+
#
|
2050
3176
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ReactiveAnomalySummary AWS API Documentation
|
2051
3177
|
#
|
2052
3178
|
class ReactiveAnomalySummary < Struct.new(
|
@@ -2057,7 +3183,12 @@ module Aws::DevOpsGuru
|
|
2057
3183
|
:anomaly_reported_time_range,
|
2058
3184
|
:source_details,
|
2059
3185
|
:associated_insight_id,
|
2060
|
-
:resource_collection
|
3186
|
+
:resource_collection,
|
3187
|
+
:type,
|
3188
|
+
:name,
|
3189
|
+
:description,
|
3190
|
+
:causal_anomaly_id,
|
3191
|
+
:anomaly_resources)
|
2061
3192
|
SENSITIVE = []
|
2062
3193
|
include Aws::Structure
|
2063
3194
|
end
|
@@ -2074,7 +3205,13 @@ module Aws::DevOpsGuru
|
|
2074
3205
|
# @return [String]
|
2075
3206
|
#
|
2076
3207
|
# @!attribute [rw] severity
|
2077
|
-
# The severity of
|
3208
|
+
# The severity of the insight. For more information, see
|
3209
|
+
# [Understanding insight severities][1] in the *Amazon DevOps Guru
|
3210
|
+
# User Guide*.
|
3211
|
+
#
|
3212
|
+
#
|
3213
|
+
#
|
3214
|
+
# [1]: https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities
|
2078
3215
|
# @return [String]
|
2079
3216
|
#
|
2080
3217
|
# @!attribute [rw] status
|
@@ -2087,17 +3224,20 @@ module Aws::DevOpsGuru
|
|
2087
3224
|
# @return [Types::InsightTimeRange]
|
2088
3225
|
#
|
2089
3226
|
# @!attribute [rw] resource_collection
|
2090
|
-
# A collection of
|
2091
|
-
#
|
2092
|
-
#
|
2093
|
-
#
|
2094
|
-
#
|
3227
|
+
# A collection of Amazon Web Services resources supported by DevOps
|
3228
|
+
# Guru. The two types of Amazon Web Services resource collections
|
3229
|
+
# supported are Amazon Web Services CloudFormation stacks and Amazon
|
3230
|
+
# Web Services resources that contain the same Amazon Web Services
|
3231
|
+
# tag. DevOps Guru can be configured to analyze the Amazon Web
|
3232
|
+
# Services resources that are defined in the stacks or that are tagged
|
3233
|
+
# using the same tag *key*. You can specify up to 500 Amazon Web
|
3234
|
+
# Services CloudFormation stacks.
|
2095
3235
|
# @return [Types::ResourceCollection]
|
2096
3236
|
#
|
2097
3237
|
# @!attribute [rw] ssm_ops_item_id
|
2098
|
-
# The ID of the
|
2099
|
-
# You must enable the creation of OpstItems insights
|
2100
|
-
# created for each insight.
|
3238
|
+
# The ID of the Amazon Web Services System Manager OpsItem created for
|
3239
|
+
# this insight. You must enable the creation of OpstItems insights
|
3240
|
+
# before they are created for each insight.
|
2101
3241
|
# @return [String]
|
2102
3242
|
#
|
2103
3243
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ReactiveInsight AWS API Documentation
|
@@ -2126,7 +3266,13 @@ module Aws::DevOpsGuru
|
|
2126
3266
|
# @return [String]
|
2127
3267
|
#
|
2128
3268
|
# @!attribute [rw] severity
|
2129
|
-
# The severity of
|
3269
|
+
# The severity of the insight. For more information, see
|
3270
|
+
# [Understanding insight severities][1] in the *Amazon DevOps Guru
|
3271
|
+
# User Guide*.
|
3272
|
+
#
|
3273
|
+
#
|
3274
|
+
#
|
3275
|
+
# [1]: https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities
|
2130
3276
|
# @return [String]
|
2131
3277
|
#
|
2132
3278
|
# @!attribute [rw] status
|
@@ -2139,17 +3285,25 @@ module Aws::DevOpsGuru
|
|
2139
3285
|
# @return [Types::InsightTimeRange]
|
2140
3286
|
#
|
2141
3287
|
# @!attribute [rw] resource_collection
|
2142
|
-
# A collection of
|
2143
|
-
#
|
2144
|
-
#
|
2145
|
-
#
|
2146
|
-
#
|
3288
|
+
# A collection of Amazon Web Services resources supported by DevOps
|
3289
|
+
# Guru. The two types of Amazon Web Services resource collections
|
3290
|
+
# supported are Amazon Web Services CloudFormation stacks and Amazon
|
3291
|
+
# Web Services resources that contain the same Amazon Web Services
|
3292
|
+
# tag. DevOps Guru can be configured to analyze the Amazon Web
|
3293
|
+
# Services resources that are defined in the stacks or that are tagged
|
3294
|
+
# using the same tag *key*. You can specify up to 500 Amazon Web
|
3295
|
+
# Services CloudFormation stacks.
|
2147
3296
|
# @return [Types::ResourceCollection]
|
2148
3297
|
#
|
2149
3298
|
# @!attribute [rw] service_collection
|
2150
|
-
# A collection of the names of
|
3299
|
+
# A collection of the names of Amazon Web Services services.
|
2151
3300
|
# @return [Types::ServiceCollection]
|
2152
3301
|
#
|
3302
|
+
# @!attribute [rw] associated_resource_arns
|
3303
|
+
# The Amazon Resource Names (ARNs) of the Amazon Web Services
|
3304
|
+
# resources that generated this insight.
|
3305
|
+
# @return [Array<String>]
|
3306
|
+
#
|
2153
3307
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ReactiveInsightSummary AWS API Documentation
|
2154
3308
|
#
|
2155
3309
|
class ReactiveInsightSummary < Struct.new(
|
@@ -2159,6 +3313,76 @@ module Aws::DevOpsGuru
|
|
2159
3313
|
:status,
|
2160
3314
|
:insight_time_range,
|
2161
3315
|
:resource_collection,
|
3316
|
+
:service_collection,
|
3317
|
+
:associated_resource_arns)
|
3318
|
+
SENSITIVE = []
|
3319
|
+
include Aws::Structure
|
3320
|
+
end
|
3321
|
+
|
3322
|
+
# Information about a reactive insight. This object is returned by
|
3323
|
+
# `DescribeInsight`.
|
3324
|
+
#
|
3325
|
+
# @!attribute [rw] id
|
3326
|
+
# The ID of the insight summary.
|
3327
|
+
# @return [String]
|
3328
|
+
#
|
3329
|
+
# @!attribute [rw] account_id
|
3330
|
+
# The ID of the Amazon Web Services account.
|
3331
|
+
# @return [String]
|
3332
|
+
#
|
3333
|
+
# @!attribute [rw] organizational_unit_id
|
3334
|
+
# The ID of the organizational unit.
|
3335
|
+
# @return [String]
|
3336
|
+
#
|
3337
|
+
# @!attribute [rw] name
|
3338
|
+
# The name of the insight summary.
|
3339
|
+
# @return [String]
|
3340
|
+
#
|
3341
|
+
# @!attribute [rw] severity
|
3342
|
+
# An array of severity values used to search for insights. For more
|
3343
|
+
# information, see [Understanding insight severities][1] in the
|
3344
|
+
# *Amazon DevOps Guru User Guide*.
|
3345
|
+
#
|
3346
|
+
#
|
3347
|
+
#
|
3348
|
+
# [1]: https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities
|
3349
|
+
# @return [String]
|
3350
|
+
#
|
3351
|
+
# @!attribute [rw] status
|
3352
|
+
# An array of status values used to search for insights.
|
3353
|
+
# @return [String]
|
3354
|
+
#
|
3355
|
+
# @!attribute [rw] insight_time_range
|
3356
|
+
# A time ranged that specifies when the observed behavior in an
|
3357
|
+
# insight started and ended.
|
3358
|
+
# @return [Types::InsightTimeRange]
|
3359
|
+
#
|
3360
|
+
# @!attribute [rw] resource_collection
|
3361
|
+
# A collection of Amazon Web Services resources supported by DevOps
|
3362
|
+
# Guru. The two types of Amazon Web Services resource collections
|
3363
|
+
# supported are Amazon Web Services CloudFormation stacks and Amazon
|
3364
|
+
# Web Services resources that contain the same Amazon Web Services
|
3365
|
+
# tag. DevOps Guru can be configured to analyze the Amazon Web
|
3366
|
+
# Services resources that are defined in the stacks or that are tagged
|
3367
|
+
# using the same tag *key*. You can specify up to 500 Amazon Web
|
3368
|
+
# Services CloudFormation stacks.
|
3369
|
+
# @return [Types::ResourceCollection]
|
3370
|
+
#
|
3371
|
+
# @!attribute [rw] service_collection
|
3372
|
+
# A collection of the names of Amazon Web Services services.
|
3373
|
+
# @return [Types::ServiceCollection]
|
3374
|
+
#
|
3375
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ReactiveOrganizationInsightSummary AWS API Documentation
|
3376
|
+
#
|
3377
|
+
class ReactiveOrganizationInsightSummary < Struct.new(
|
3378
|
+
:id,
|
3379
|
+
:account_id,
|
3380
|
+
:organizational_unit_id,
|
3381
|
+
:name,
|
3382
|
+
:severity,
|
3383
|
+
:status,
|
3384
|
+
:insight_time_range,
|
3385
|
+
:resource_collection,
|
2162
3386
|
:service_collection)
|
2163
3387
|
SENSITIVE = []
|
2164
3388
|
include Aws::Structure
|
@@ -2220,11 +3444,17 @@ module Aws::DevOpsGuru
|
|
2220
3444
|
# metrics.
|
2221
3445
|
# @return [Array<Types::RecommendationRelatedAnomalySourceDetail>]
|
2222
3446
|
#
|
3447
|
+
# @!attribute [rw] anomaly_id
|
3448
|
+
# The ID of an anomaly that generated the insight with this
|
3449
|
+
# recommendation.
|
3450
|
+
# @return [String]
|
3451
|
+
#
|
2223
3452
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/RecommendationRelatedAnomaly AWS API Documentation
|
2224
3453
|
#
|
2225
3454
|
class RecommendationRelatedAnomaly < Struct.new(
|
2226
3455
|
:resources,
|
2227
|
-
:source_details
|
3456
|
+
:source_details,
|
3457
|
+
:anomaly_id)
|
2228
3458
|
SENSITIVE = []
|
2229
3459
|
include Aws::Structure
|
2230
3460
|
end
|
@@ -2237,7 +3467,16 @@ module Aws::DevOpsGuru
|
|
2237
3467
|
# @return [String]
|
2238
3468
|
#
|
2239
3469
|
# @!attribute [rw] type
|
2240
|
-
# The type of the resource.
|
3470
|
+
# The type of the resource. Resource types take the same form that is
|
3471
|
+
# used by Amazon Web Services CloudFormation resource type
|
3472
|
+
# identifiers, `service-provider::service-name::data-type-name`. For
|
3473
|
+
# example, `AWS::RDS::DBCluster`. For more information, see [Amazon
|
3474
|
+
# Web Services resource and property types reference][1] in the
|
3475
|
+
# *Amazon Web Services CloudFormation User Guide*.
|
3476
|
+
#
|
3477
|
+
#
|
3478
|
+
#
|
3479
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html
|
2241
3480
|
# @return [String]
|
2242
3481
|
#
|
2243
3482
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/RecommendationRelatedAnomalyResource AWS API Documentation
|
@@ -2298,8 +3537,8 @@ module Aws::DevOpsGuru
|
|
2298
3537
|
#
|
2299
3538
|
# @!attribute [rw] resources
|
2300
3539
|
# A `ResourceCollection` object that contains arrays of the names of
|
2301
|
-
#
|
2302
|
-
# CloudFormation stacks.
|
3540
|
+
# Amazon Web Services CloudFormation stacks. You can specify up to 500
|
3541
|
+
# Amazon Web Services CloudFormation stacks.
|
2303
3542
|
# @return [Array<Types::RecommendationRelatedEventResource>]
|
2304
3543
|
#
|
2305
3544
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/RecommendationRelatedEvent AWS API Documentation
|
@@ -2311,8 +3550,8 @@ module Aws::DevOpsGuru
|
|
2311
3550
|
include Aws::Structure
|
2312
3551
|
end
|
2313
3552
|
|
2314
|
-
# Information about an
|
2315
|
-
# related to a recommendation in an insight.
|
3553
|
+
# Information about an Amazon Web Services resource that emitted and
|
3554
|
+
# event that is related to a recommendation in an insight.
|
2316
3555
|
#
|
2317
3556
|
# @!attribute [rw] name
|
2318
3557
|
# The name of the resource that emitted the event. This corresponds to
|
@@ -2356,53 +3595,143 @@ module Aws::DevOpsGuru
|
|
2356
3595
|
#
|
2357
3596
|
class RemoveNotificationChannelResponse < Aws::EmptyStructure; end
|
2358
3597
|
|
2359
|
-
# A collection of
|
2360
|
-
#
|
2361
|
-
#
|
2362
|
-
#
|
3598
|
+
# A collection of Amazon Web Services resources supported by DevOps
|
3599
|
+
# Guru. The two types of Amazon Web Services resource collections
|
3600
|
+
# supported are Amazon Web Services CloudFormation stacks and Amazon Web
|
3601
|
+
# Services resources that contain the same Amazon Web Services tag.
|
3602
|
+
# DevOps Guru can be configured to analyze the Amazon Web Services
|
3603
|
+
# resources that are defined in the stacks or that are tagged using the
|
3604
|
+
# same tag *key*. You can specify up to 500 Amazon Web Services
|
2363
3605
|
# CloudFormation stacks.
|
2364
3606
|
#
|
2365
|
-
# @note When making an API call, you may pass ResourceCollection
|
2366
|
-
# data as a hash:
|
3607
|
+
# @note When making an API call, you may pass ResourceCollection
|
3608
|
+
# data as a hash:
|
3609
|
+
#
|
3610
|
+
# {
|
3611
|
+
# cloud_formation: {
|
3612
|
+
# stack_names: ["StackName"],
|
3613
|
+
# },
|
3614
|
+
# tags: [
|
3615
|
+
# {
|
3616
|
+
# app_boundary_key: "AppBoundaryKey", # required
|
3617
|
+
# tag_values: ["TagValue"], # required
|
3618
|
+
# },
|
3619
|
+
# ],
|
3620
|
+
# }
|
3621
|
+
#
|
3622
|
+
# @!attribute [rw] cloud_formation
|
3623
|
+
# An array of the names of Amazon Web Services CloudFormation stacks.
|
3624
|
+
# The stacks define Amazon Web Services resources that DevOps Guru
|
3625
|
+
# analyzes. You can specify up to 500 Amazon Web Services
|
3626
|
+
# CloudFormation stacks.
|
3627
|
+
# @return [Types::CloudFormationCollection]
|
3628
|
+
#
|
3629
|
+
# @!attribute [rw] tags
|
3630
|
+
# The Amazon Web Services tags that are used by resources in the
|
3631
|
+
# resource collection.
|
3632
|
+
#
|
3633
|
+
# Tags help you identify and organize your Amazon Web Services
|
3634
|
+
# resources. Many Amazon Web Services services support tagging, so you
|
3635
|
+
# can assign the same tag to resources from different services to
|
3636
|
+
# indicate that the resources are related. For example, you can assign
|
3637
|
+
# the same tag to an Amazon DynamoDB table resource that you assign to
|
3638
|
+
# an Lambda function. For more information about using tags, see the
|
3639
|
+
# [Tagging best practices][1] whitepaper.
|
3640
|
+
#
|
3641
|
+
# Each Amazon Web Services tag has two parts.
|
3642
|
+
#
|
3643
|
+
# * A tag *key* (for example, `CostCenter`, `Environment`, `Project`,
|
3644
|
+
# or `Secret`). Tag *keys* are case-sensitive.
|
3645
|
+
#
|
3646
|
+
# * An optional field known as a tag *value* (for example,
|
3647
|
+
# `111122223333`, `Production`, or a team name). Omitting the tag
|
3648
|
+
# *value* is the same as using an empty string. Like tag *keys*, tag
|
3649
|
+
# *values* are case-sensitive.
|
3650
|
+
#
|
3651
|
+
# Together these are known as *key*-*value* pairs.
|
3652
|
+
#
|
3653
|
+
# The string used for a *key* in a tag that you use to define your
|
3654
|
+
# resource coverage must begin with the prefix `Devops-guru-`. The tag
|
3655
|
+
# *key* might be `Devops-guru-deployment-application` or
|
3656
|
+
# `Devops-guru-rds-application`. While *keys* are case-sensitive, the
|
3657
|
+
# case of *key* characters don't matter to DevOps Guru. For example,
|
3658
|
+
# DevOps Guru works with a *key* named `devops-guru-rds` and a *key*
|
3659
|
+
# named `DevOps-Guru-RDS`. Possible *key*/*value* pairs in your
|
3660
|
+
# application might be `Devops-Guru-production-application/RDS` or
|
3661
|
+
# `Devops-Guru-production-application/containers`.
|
3662
|
+
#
|
2367
3663
|
#
|
2368
|
-
# {
|
2369
|
-
# cloud_formation: {
|
2370
|
-
# stack_names: ["StackName"],
|
2371
|
-
# },
|
2372
|
-
# }
|
2373
3664
|
#
|
2374
|
-
#
|
2375
|
-
#
|
2376
|
-
# define AWS resources that DevOps Guru analyzes. You can specify up
|
2377
|
-
# to 500 AWS CloudFormation stacks.
|
2378
|
-
# @return [Types::CloudFormationCollection]
|
3665
|
+
# [1]: https://d1.awsstatic.com/whitepapers/aws-tagging-best-practices.pdf
|
3666
|
+
# @return [Array<Types::TagCollection>]
|
2379
3667
|
#
|
2380
3668
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ResourceCollection AWS API Documentation
|
2381
3669
|
#
|
2382
3670
|
class ResourceCollection < Struct.new(
|
2383
|
-
:cloud_formation
|
3671
|
+
:cloud_formation,
|
3672
|
+
:tags)
|
2384
3673
|
SENSITIVE = []
|
2385
3674
|
include Aws::Structure
|
2386
3675
|
end
|
2387
3676
|
|
2388
|
-
# Information about a filter used to specify which
|
2389
|
-
# analyzed for anomalous behavior by DevOps Guru.
|
3677
|
+
# Information about a filter used to specify which Amazon Web Services
|
3678
|
+
# resources are analyzed for anomalous behavior by DevOps Guru.
|
2390
3679
|
#
|
2391
3680
|
# @!attribute [rw] cloud_formation
|
2392
|
-
# Information about
|
2393
|
-
# stacks to specify which
|
2394
|
-
# For more information, see [Stacks][1] in
|
2395
|
-
# User Guide*.
|
3681
|
+
# Information about Amazon Web Services CloudFormation stacks. You can
|
3682
|
+
# use up to 500 stacks to specify which Amazon Web Services resources
|
3683
|
+
# in your account to analyze. For more information, see [Stacks][1] in
|
3684
|
+
# the *Amazon Web Services CloudFormation User Guide*.
|
2396
3685
|
#
|
2397
3686
|
#
|
2398
3687
|
#
|
2399
3688
|
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacks.html
|
2400
3689
|
# @return [Types::CloudFormationCollectionFilter]
|
2401
3690
|
#
|
3691
|
+
# @!attribute [rw] tags
|
3692
|
+
# The Amazon Web Services tags used to filter the resources in the
|
3693
|
+
# resource collection.
|
3694
|
+
#
|
3695
|
+
# Tags help you identify and organize your Amazon Web Services
|
3696
|
+
# resources. Many Amazon Web Services services support tagging, so you
|
3697
|
+
# can assign the same tag to resources from different services to
|
3698
|
+
# indicate that the resources are related. For example, you can assign
|
3699
|
+
# the same tag to an Amazon DynamoDB table resource that you assign to
|
3700
|
+
# an Lambda function. For more information about using tags, see the
|
3701
|
+
# [Tagging best practices][1] whitepaper.
|
3702
|
+
#
|
3703
|
+
# Each Amazon Web Services tag has two parts.
|
3704
|
+
#
|
3705
|
+
# * A tag *key* (for example, `CostCenter`, `Environment`, `Project`,
|
3706
|
+
# or `Secret`). Tag *keys* are case-sensitive.
|
3707
|
+
#
|
3708
|
+
# * An optional field known as a tag *value* (for example,
|
3709
|
+
# `111122223333`, `Production`, or a team name). Omitting the tag
|
3710
|
+
# *value* is the same as using an empty string. Like tag *keys*, tag
|
3711
|
+
# *values* are case-sensitive.
|
3712
|
+
#
|
3713
|
+
# Together these are known as *key*-*value* pairs.
|
3714
|
+
#
|
3715
|
+
# The string used for a *key* in a tag that you use to define your
|
3716
|
+
# resource coverage must begin with the prefix `Devops-guru-`. The tag
|
3717
|
+
# *key* might be `Devops-guru-deployment-application` or
|
3718
|
+
# `Devops-guru-rds-application`. While *keys* are case-sensitive, the
|
3719
|
+
# case of *key* characters don't matter to DevOps Guru. For example,
|
3720
|
+
# DevOps Guru works with a *key* named `devops-guru-rds` and a *key*
|
3721
|
+
# named `DevOps-Guru-RDS`. Possible *key*/*value* pairs in your
|
3722
|
+
# application might be `Devops-Guru-production-application/RDS` or
|
3723
|
+
# `Devops-Guru-production-application/containers`.
|
3724
|
+
#
|
3725
|
+
#
|
3726
|
+
#
|
3727
|
+
# [1]: https://d1.awsstatic.com/whitepapers/aws-tagging-best-practices.pdf
|
3728
|
+
# @return [Array<Types::TagCollectionFilter>]
|
3729
|
+
#
|
2402
3730
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ResourceCollectionFilter AWS API Documentation
|
2403
3731
|
#
|
2404
3732
|
class ResourceCollectionFilter < Struct.new(
|
2405
|
-
:cloud_formation
|
3733
|
+
:cloud_formation,
|
3734
|
+
:tags)
|
2406
3735
|
SENSITIVE = []
|
2407
3736
|
include Aws::Structure
|
2408
3737
|
end
|
@@ -2413,11 +3742,12 @@ module Aws::DevOpsGuru
|
|
2413
3742
|
# @return [String]
|
2414
3743
|
#
|
2415
3744
|
# @!attribute [rw] resource_id
|
2416
|
-
# The ID of the
|
3745
|
+
# The ID of the Amazon Web Services resource that could not be found.
|
2417
3746
|
# @return [String]
|
2418
3747
|
#
|
2419
3748
|
# @!attribute [rw] resource_type
|
2420
|
-
# The type of the
|
3749
|
+
# The type of the Amazon Web Services resource that could not be
|
3750
|
+
# found.
|
2421
3751
|
# @return [String]
|
2422
3752
|
#
|
2423
3753
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ResourceNotFoundException AWS API Documentation
|
@@ -2443,6 +3773,12 @@ module Aws::DevOpsGuru
|
|
2443
3773
|
# cloud_formation: {
|
2444
3774
|
# stack_names: ["StackName"],
|
2445
3775
|
# },
|
3776
|
+
# tags: [
|
3777
|
+
# {
|
3778
|
+
# app_boundary_key: "AppBoundaryKey", # required
|
3779
|
+
# tag_values: ["TagValue"], # required
|
3780
|
+
# },
|
3781
|
+
# ],
|
2446
3782
|
# },
|
2447
3783
|
# service_collection: {
|
2448
3784
|
# service_names: ["API_GATEWAY"], # accepts 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
|
@@ -2458,15 +3794,18 @@ module Aws::DevOpsGuru
|
|
2458
3794
|
# @return [Array<String>]
|
2459
3795
|
#
|
2460
3796
|
# @!attribute [rw] resource_collection
|
2461
|
-
# A collection of
|
2462
|
-
#
|
2463
|
-
#
|
2464
|
-
#
|
2465
|
-
#
|
3797
|
+
# A collection of Amazon Web Services resources supported by DevOps
|
3798
|
+
# Guru. The two types of Amazon Web Services resource collections
|
3799
|
+
# supported are Amazon Web Services CloudFormation stacks and Amazon
|
3800
|
+
# Web Services resources that contain the same Amazon Web Services
|
3801
|
+
# tag. DevOps Guru can be configured to analyze the Amazon Web
|
3802
|
+
# Services resources that are defined in the stacks or that are tagged
|
3803
|
+
# using the same tag *key*. You can specify up to 500 Amazon Web
|
3804
|
+
# Services CloudFormation stacks.
|
2466
3805
|
# @return [Types::ResourceCollection]
|
2467
3806
|
#
|
2468
3807
|
# @!attribute [rw] service_collection
|
2469
|
-
# A collection of the names of
|
3808
|
+
# A collection of the names of Amazon Web Services services.
|
2470
3809
|
# @return [Types::ServiceCollection]
|
2471
3810
|
#
|
2472
3811
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/SearchInsightsFilters AWS API Documentation
|
@@ -2495,6 +3834,12 @@ module Aws::DevOpsGuru
|
|
2495
3834
|
# cloud_formation: {
|
2496
3835
|
# stack_names: ["StackName"],
|
2497
3836
|
# },
|
3837
|
+
# tags: [
|
3838
|
+
# {
|
3839
|
+
# app_boundary_key: "AppBoundaryKey", # required
|
3840
|
+
# tag_values: ["TagValue"], # required
|
3841
|
+
# },
|
3842
|
+
# ],
|
2498
3843
|
# },
|
2499
3844
|
# service_collection: {
|
2500
3845
|
# service_names: ["API_GATEWAY"], # accepts 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
|
@@ -2566,7 +3911,166 @@ module Aws::DevOpsGuru
|
|
2566
3911
|
include Aws::Structure
|
2567
3912
|
end
|
2568
3913
|
|
2569
|
-
#
|
3914
|
+
# Filters you can use to specify which events are returned when
|
3915
|
+
# `ListEvents` is called.
|
3916
|
+
#
|
3917
|
+
# @note When making an API call, you may pass SearchOrganizationInsightsFilters
|
3918
|
+
# data as a hash:
|
3919
|
+
#
|
3920
|
+
# {
|
3921
|
+
# severities: ["LOW"], # accepts LOW, MEDIUM, HIGH
|
3922
|
+
# statuses: ["ONGOING"], # accepts ONGOING, CLOSED
|
3923
|
+
# resource_collection: {
|
3924
|
+
# cloud_formation: {
|
3925
|
+
# stack_names: ["StackName"],
|
3926
|
+
# },
|
3927
|
+
# tags: [
|
3928
|
+
# {
|
3929
|
+
# app_boundary_key: "AppBoundaryKey", # required
|
3930
|
+
# tag_values: ["TagValue"], # required
|
3931
|
+
# },
|
3932
|
+
# ],
|
3933
|
+
# },
|
3934
|
+
# service_collection: {
|
3935
|
+
# service_names: ["API_GATEWAY"], # accepts 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
|
3936
|
+
# },
|
3937
|
+
# }
|
3938
|
+
#
|
3939
|
+
# @!attribute [rw] severities
|
3940
|
+
# An array of severity values used to search for insights.
|
3941
|
+
# @return [Array<String>]
|
3942
|
+
#
|
3943
|
+
# @!attribute [rw] statuses
|
3944
|
+
# An array of status values used to search for insights.
|
3945
|
+
# @return [Array<String>]
|
3946
|
+
#
|
3947
|
+
# @!attribute [rw] resource_collection
|
3948
|
+
# A collection of Amazon Web Services resources supported by DevOps
|
3949
|
+
# Guru. The two types of Amazon Web Services resource collections
|
3950
|
+
# supported are Amazon Web Services CloudFormation stacks and Amazon
|
3951
|
+
# Web Services resources that contain the same Amazon Web Services
|
3952
|
+
# tag. DevOps Guru can be configured to analyze the Amazon Web
|
3953
|
+
# Services resources that are defined in the stacks or that are tagged
|
3954
|
+
# using the same tag *key*. You can specify up to 500 Amazon Web
|
3955
|
+
# Services CloudFormation stacks.
|
3956
|
+
# @return [Types::ResourceCollection]
|
3957
|
+
#
|
3958
|
+
# @!attribute [rw] service_collection
|
3959
|
+
# A collection of the names of Amazon Web Services services.
|
3960
|
+
# @return [Types::ServiceCollection]
|
3961
|
+
#
|
3962
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/SearchOrganizationInsightsFilters AWS API Documentation
|
3963
|
+
#
|
3964
|
+
class SearchOrganizationInsightsFilters < Struct.new(
|
3965
|
+
:severities,
|
3966
|
+
:statuses,
|
3967
|
+
:resource_collection,
|
3968
|
+
:service_collection)
|
3969
|
+
SENSITIVE = []
|
3970
|
+
include Aws::Structure
|
3971
|
+
end
|
3972
|
+
|
3973
|
+
# @note When making an API call, you may pass SearchOrganizationInsightsRequest
|
3974
|
+
# data as a hash:
|
3975
|
+
#
|
3976
|
+
# {
|
3977
|
+
# account_ids: ["AwsAccountId"], # required
|
3978
|
+
# start_time_range: { # required
|
3979
|
+
# from_time: Time.now,
|
3980
|
+
# to_time: Time.now,
|
3981
|
+
# },
|
3982
|
+
# filters: {
|
3983
|
+
# severities: ["LOW"], # accepts LOW, MEDIUM, HIGH
|
3984
|
+
# statuses: ["ONGOING"], # accepts ONGOING, CLOSED
|
3985
|
+
# resource_collection: {
|
3986
|
+
# cloud_formation: {
|
3987
|
+
# stack_names: ["StackName"],
|
3988
|
+
# },
|
3989
|
+
# tags: [
|
3990
|
+
# {
|
3991
|
+
# app_boundary_key: "AppBoundaryKey", # required
|
3992
|
+
# tag_values: ["TagValue"], # required
|
3993
|
+
# },
|
3994
|
+
# ],
|
3995
|
+
# },
|
3996
|
+
# service_collection: {
|
3997
|
+
# service_names: ["API_GATEWAY"], # accepts 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
|
3998
|
+
# },
|
3999
|
+
# },
|
4000
|
+
# max_results: 1,
|
4001
|
+
# next_token: "UuidNextToken",
|
4002
|
+
# type: "REACTIVE", # required, accepts REACTIVE, PROACTIVE
|
4003
|
+
# }
|
4004
|
+
#
|
4005
|
+
# @!attribute [rw] account_ids
|
4006
|
+
# The ID of the Amazon Web Services account.
|
4007
|
+
# @return [Array<String>]
|
4008
|
+
#
|
4009
|
+
# @!attribute [rw] start_time_range
|
4010
|
+
# A time range used to specify when the behavior of an insight or
|
4011
|
+
# anomaly started.
|
4012
|
+
# @return [Types::StartTimeRange]
|
4013
|
+
#
|
4014
|
+
# @!attribute [rw] filters
|
4015
|
+
# A `SearchOrganizationInsightsFilters` object that is used to set the
|
4016
|
+
# severity and status filters on your insight search.
|
4017
|
+
# @return [Types::SearchOrganizationInsightsFilters]
|
4018
|
+
#
|
4019
|
+
# @!attribute [rw] max_results
|
4020
|
+
# The maximum number of results to return with a single call. To
|
4021
|
+
# retrieve the remaining results, make another call with the returned
|
4022
|
+
# `nextToken` value.
|
4023
|
+
# @return [Integer]
|
4024
|
+
#
|
4025
|
+
# @!attribute [rw] next_token
|
4026
|
+
# The pagination token to use to retrieve the next page of results for
|
4027
|
+
# this operation. If this value is null, it retrieves the first page.
|
4028
|
+
# @return [String]
|
4029
|
+
#
|
4030
|
+
# @!attribute [rw] type
|
4031
|
+
# The type of insights you are searching for (`REACTIVE` or
|
4032
|
+
# `PROACTIVE`).
|
4033
|
+
# @return [String]
|
4034
|
+
#
|
4035
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/SearchOrganizationInsightsRequest AWS API Documentation
|
4036
|
+
#
|
4037
|
+
class SearchOrganizationInsightsRequest < Struct.new(
|
4038
|
+
:account_ids,
|
4039
|
+
:start_time_range,
|
4040
|
+
:filters,
|
4041
|
+
:max_results,
|
4042
|
+
:next_token,
|
4043
|
+
:type)
|
4044
|
+
SENSITIVE = []
|
4045
|
+
include Aws::Structure
|
4046
|
+
end
|
4047
|
+
|
4048
|
+
# @!attribute [rw] proactive_insights
|
4049
|
+
# An integer that specifies the number of open proactive insights in
|
4050
|
+
# your Amazon Web Services account.
|
4051
|
+
# @return [Array<Types::ProactiveInsightSummary>]
|
4052
|
+
#
|
4053
|
+
# @!attribute [rw] reactive_insights
|
4054
|
+
# An integer that specifies the number of open reactive insights in
|
4055
|
+
# your Amazon Web Services account.
|
4056
|
+
# @return [Array<Types::ReactiveInsightSummary>]
|
4057
|
+
#
|
4058
|
+
# @!attribute [rw] next_token
|
4059
|
+
# The pagination token to use to retrieve the next page of results for
|
4060
|
+
# this operation. If there are no more pages, this value is null.
|
4061
|
+
# @return [String]
|
4062
|
+
#
|
4063
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/SearchOrganizationInsightsResponse AWS API Documentation
|
4064
|
+
#
|
4065
|
+
class SearchOrganizationInsightsResponse < Struct.new(
|
4066
|
+
:proactive_insights,
|
4067
|
+
:reactive_insights,
|
4068
|
+
:next_token)
|
4069
|
+
SENSITIVE = []
|
4070
|
+
include Aws::Structure
|
4071
|
+
end
|
4072
|
+
|
4073
|
+
# A collection of the names of Amazon Web Services services.
|
2570
4074
|
#
|
2571
4075
|
# @note When making an API call, you may pass ServiceCollection
|
2572
4076
|
# data as a hash:
|
@@ -2576,7 +4080,8 @@ module Aws::DevOpsGuru
|
|
2576
4080
|
# }
|
2577
4081
|
#
|
2578
4082
|
# @!attribute [rw] service_names
|
2579
|
-
# An array of strings that each specifies the name of an
|
4083
|
+
# An array of strings that each specifies the name of an Amazon Web
|
4084
|
+
# Services service.
|
2580
4085
|
# @return [Array<String>]
|
2581
4086
|
#
|
2582
4087
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ServiceCollection AWS API Documentation
|
@@ -2587,14 +4092,14 @@ module Aws::DevOpsGuru
|
|
2587
4092
|
include Aws::Structure
|
2588
4093
|
end
|
2589
4094
|
|
2590
|
-
# Represents the health of an
|
4095
|
+
# Represents the health of an Amazon Web Services service.
|
2591
4096
|
#
|
2592
4097
|
# @!attribute [rw] service_name
|
2593
|
-
# The name of the
|
4098
|
+
# The name of the Amazon Web Services service.
|
2594
4099
|
# @return [String]
|
2595
4100
|
#
|
2596
4101
|
# @!attribute [rw] insight
|
2597
|
-
# Represents the health of an
|
4102
|
+
# Represents the health of an Amazon Web Services service. This is a
|
2598
4103
|
# `ServiceInsightHealth` that contains the number of open proactive
|
2599
4104
|
# and reactive insights for this service.
|
2600
4105
|
# @return [Types::ServiceInsightHealth]
|
@@ -2609,14 +4114,16 @@ module Aws::DevOpsGuru
|
|
2609
4114
|
end
|
2610
4115
|
|
2611
4116
|
# Contains the number of open proactive and reactive insights in an
|
2612
|
-
# analyzed
|
4117
|
+
# analyzed Amazon Web Services service.
|
2613
4118
|
#
|
2614
4119
|
# @!attribute [rw] open_proactive_insights
|
2615
|
-
# The number of open proactive insights in the
|
4120
|
+
# The number of open proactive insights in the Amazon Web Services
|
4121
|
+
# service
|
2616
4122
|
# @return [Integer]
|
2617
4123
|
#
|
2618
4124
|
# @!attribute [rw] open_reactive_insights
|
2619
|
-
# The number of open reactive insights in the
|
4125
|
+
# The number of open reactive insights in the Amazon Web Services
|
4126
|
+
# service
|
2620
4127
|
# @return [Integer]
|
2621
4128
|
#
|
2622
4129
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ServiceInsightHealth AWS API Documentation
|
@@ -2628,12 +4135,13 @@ module Aws::DevOpsGuru
|
|
2628
4135
|
include Aws::Structure
|
2629
4136
|
end
|
2630
4137
|
|
2631
|
-
# Information about the integration of DevOps Guru with another
|
2632
|
-
# service, such as
|
4138
|
+
# Information about the integration of DevOps Guru with another Amazon
|
4139
|
+
# Web Services service, such as Amazon Web Services Systems Manager.
|
2633
4140
|
#
|
2634
4141
|
# @!attribute [rw] ops_center
|
2635
4142
|
# Information about whether DevOps Guru is configured to create an
|
2636
|
-
# OpsItem in
|
4143
|
+
# OpsItem in Amazon Web Services Systems Manager OpsCenter for each
|
4144
|
+
# created insight.
|
2637
4145
|
# @return [Types::OpsCenterIntegration]
|
2638
4146
|
#
|
2639
4147
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ServiceIntegrationConfig AWS API Documentation
|
@@ -2658,8 +4166,9 @@ module Aws::DevOpsGuru
|
|
2658
4166
|
end
|
2659
4167
|
|
2660
4168
|
# An object that contains information about the estimated monthly cost
|
2661
|
-
# to analyze an
|
2662
|
-
# Amazon DevOps Guru costs][1] and [Amazon DevOps Guru
|
4169
|
+
# to analyze an Amazon Web Services resource. For more information, see
|
4170
|
+
# [Estimate your Amazon DevOps Guru costs][1] and [Amazon DevOps Guru
|
4171
|
+
# pricing][2].
|
2663
4172
|
#
|
2664
4173
|
#
|
2665
4174
|
#
|
@@ -2667,14 +4176,14 @@ module Aws::DevOpsGuru
|
|
2667
4176
|
# [2]: http://aws.amazon.com/devops-guru/pricing/
|
2668
4177
|
#
|
2669
4178
|
# @!attribute [rw] type
|
2670
|
-
# The type of the
|
4179
|
+
# The type of the Amazon Web Services resource.
|
2671
4180
|
# @return [String]
|
2672
4181
|
#
|
2673
4182
|
# @!attribute [rw] state
|
2674
4183
|
# The state of the resource. The resource is `ACTIVE` if it produces
|
2675
4184
|
# metrics, events, or logs within an hour, otherwise it is `INACTIVE`.
|
2676
|
-
# You pay for the number of active
|
2677
|
-
# each resource. Inactive resources are not charged.
|
4185
|
+
# You pay for the number of active Amazon Web Services resource hours
|
4186
|
+
# analyzed for each resource. Inactive resources are not charged.
|
2678
4187
|
# @return [String]
|
2679
4188
|
#
|
2680
4189
|
# @!attribute [rw] count
|
@@ -2719,10 +4228,11 @@ module Aws::DevOpsGuru
|
|
2719
4228
|
# notifications using Amazon SNS in your account. For more information,
|
2720
4229
|
# see [Permissions for cross account Amazon SNS topics][1].
|
2721
4230
|
#
|
2722
|
-
# If you use an Amazon SNS topic that is encrypted by an
|
2723
|
-
# Management Service customer-managed key (CMK), then you
|
2724
|
-
# permissions to the CMK. For more information, see
|
2725
|
-
# KMS–encrypted Amazon SNS
|
4231
|
+
# If you use an Amazon SNS topic that is encrypted by an Amazon Web
|
4232
|
+
# Services Key Management Service customer-managed key (CMK), then you
|
4233
|
+
# must add permissions to the CMK. For more information, see
|
4234
|
+
# [Permissions for Amazon Web Services KMS–encrypted Amazon SNS
|
4235
|
+
# topics][2].
|
2726
4236
|
#
|
2727
4237
|
#
|
2728
4238
|
#
|
@@ -2757,13 +4267,19 @@ module Aws::DevOpsGuru
|
|
2757
4267
|
# cloud_formation: {
|
2758
4268
|
# stack_names: ["StackName"],
|
2759
4269
|
# },
|
4270
|
+
# tags: [
|
4271
|
+
# {
|
4272
|
+
# app_boundary_key: "AppBoundaryKey", # required
|
4273
|
+
# tag_values: ["TagValue"], # required
|
4274
|
+
# },
|
4275
|
+
# ],
|
2760
4276
|
# },
|
2761
4277
|
# client_token: "ClientToken",
|
2762
4278
|
# }
|
2763
4279
|
#
|
2764
4280
|
# @!attribute [rw] resource_collection
|
2765
|
-
# The collection of
|
2766
|
-
# cost estimate.
|
4281
|
+
# The collection of Amazon Web Services resources used to create a
|
4282
|
+
# monthly DevOps Guru cost estimate.
|
2767
4283
|
# @return [Types::CostEstimationResourceCollectionFilter]
|
2768
4284
|
#
|
2769
4285
|
# @!attribute [rw] client_token
|
@@ -2814,6 +4330,234 @@ module Aws::DevOpsGuru
|
|
2814
4330
|
include Aws::Structure
|
2815
4331
|
end
|
2816
4332
|
|
4333
|
+
# A collection of Amazon Web Services stags.
|
4334
|
+
#
|
4335
|
+
# Tags help you identify and organize your Amazon Web Services
|
4336
|
+
# resources. Many Amazon Web Services services support tagging, so you
|
4337
|
+
# can assign the same tag to resources from different services to
|
4338
|
+
# indicate that the resources are related. For example, you can assign
|
4339
|
+
# the same tag to an Amazon DynamoDB table resource that you assign to
|
4340
|
+
# an Lambda function. For more information about using tags, see the
|
4341
|
+
# [Tagging best practices][1] whitepaper.
|
4342
|
+
#
|
4343
|
+
# Each Amazon Web Services tag has two parts.
|
4344
|
+
#
|
4345
|
+
# * A tag *key* (for example, `CostCenter`, `Environment`, `Project`, or
|
4346
|
+
# `Secret`). Tag *keys* are case-sensitive.
|
4347
|
+
#
|
4348
|
+
# * An optional field known as a tag *value* (for example,
|
4349
|
+
# `111122223333`, `Production`, or a team name). Omitting the tag
|
4350
|
+
# *value* is the same as using an empty string. Like tag *keys*, tag
|
4351
|
+
# *values* are case-sensitive.
|
4352
|
+
#
|
4353
|
+
# Together these are known as *key*-*value* pairs.
|
4354
|
+
#
|
4355
|
+
# The string used for a *key* in a tag that you use to define your
|
4356
|
+
# resource coverage must begin with the prefix `Devops-guru-`. The tag
|
4357
|
+
# *key* might be `Devops-guru-deployment-application` or
|
4358
|
+
# `Devops-guru-rds-application`. While *keys* are case-sensitive, the
|
4359
|
+
# case of *key* characters don't matter to DevOps Guru. For example,
|
4360
|
+
# DevOps Guru works with a *key* named `devops-guru-rds` and a *key*
|
4361
|
+
# named `DevOps-Guru-RDS`. Possible *key*/*value* pairs in your
|
4362
|
+
# application might be `Devops-Guru-production-application/RDS` or
|
4363
|
+
# `Devops-Guru-production-application/containers`.
|
4364
|
+
#
|
4365
|
+
#
|
4366
|
+
#
|
4367
|
+
# [1]: https://d1.awsstatic.com/whitepapers/aws-tagging-best-practices.pdf
|
4368
|
+
#
|
4369
|
+
# @note When making an API call, you may pass TagCollection
|
4370
|
+
# data as a hash:
|
4371
|
+
#
|
4372
|
+
# {
|
4373
|
+
# app_boundary_key: "AppBoundaryKey", # required
|
4374
|
+
# tag_values: ["TagValue"], # required
|
4375
|
+
# }
|
4376
|
+
#
|
4377
|
+
# @!attribute [rw] app_boundary_key
|
4378
|
+
# An Amazon Web Services tag *key* that is used to identify the Amazon
|
4379
|
+
# Web Services resources that DevOps Guru analyzes. All Amazon Web
|
4380
|
+
# Services resources in your account and Region tagged with this *key*
|
4381
|
+
# make up your DevOps Guru application and analysis boundary.
|
4382
|
+
#
|
4383
|
+
# The string used for a *key* in a tag that you use to define your
|
4384
|
+
# resource coverage must begin with the prefix `Devops-guru-`. The tag
|
4385
|
+
# *key* might be `Devops-guru-deployment-application` or
|
4386
|
+
# `Devops-guru-rds-application`. While *keys* are case-sensitive, the
|
4387
|
+
# case of *key* characters don't matter to DevOps Guru. For example,
|
4388
|
+
# DevOps Guru works with a *key* named `devops-guru-rds` and a *key*
|
4389
|
+
# named `DevOps-Guru-RDS`. Possible *key*/*value* pairs in your
|
4390
|
+
# application might be `Devops-Guru-production-application/RDS` or
|
4391
|
+
# `Devops-Guru-production-application/containers`.
|
4392
|
+
# @return [String]
|
4393
|
+
#
|
4394
|
+
# @!attribute [rw] tag_values
|
4395
|
+
# The values in an Amazon Web Services tag collection.
|
4396
|
+
#
|
4397
|
+
# The tag's *value* is an optional field used to associate a string
|
4398
|
+
# with the tag *key* (for example, `111122223333`, `Production`, or a
|
4399
|
+
# team name). The *key* and *value* are the tag's *key* pair.
|
4400
|
+
# Omitting the tag *value* is the same as using an empty string. Like
|
4401
|
+
# tag *keys*, tag *values* are case-sensitive. You can specify a
|
4402
|
+
# maximum of 256 characters for a tag value.
|
4403
|
+
# @return [Array<String>]
|
4404
|
+
#
|
4405
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/TagCollection AWS API Documentation
|
4406
|
+
#
|
4407
|
+
class TagCollection < Struct.new(
|
4408
|
+
:app_boundary_key,
|
4409
|
+
:tag_values)
|
4410
|
+
SENSITIVE = []
|
4411
|
+
include Aws::Structure
|
4412
|
+
end
|
4413
|
+
|
4414
|
+
# A collection of Amazon Web Services tags used to filter insights. This
|
4415
|
+
# is used to return insights generated from only resources that contain
|
4416
|
+
# the tags in the tag collection.
|
4417
|
+
#
|
4418
|
+
# @!attribute [rw] app_boundary_key
|
4419
|
+
# An Amazon Web Services tag *key* that is used to identify the Amazon
|
4420
|
+
# Web Services resources that DevOps Guru analyzes. All Amazon Web
|
4421
|
+
# Services resources in your account and Region tagged with this *key*
|
4422
|
+
# make up your DevOps Guru application and analysis boundary.
|
4423
|
+
#
|
4424
|
+
# The string used for a *key* in a tag that you use to define your
|
4425
|
+
# resource coverage must begin with the prefix `Devops-guru-`. The tag
|
4426
|
+
# *key* might be `Devops-guru-deployment-application` or
|
4427
|
+
# `Devops-guru-rds-application`. While *keys* are case-sensitive, the
|
4428
|
+
# case of *key* characters don't matter to DevOps Guru. For example,
|
4429
|
+
# DevOps Guru works with a *key* named `devops-guru-rds` and a *key*
|
4430
|
+
# named `DevOps-Guru-RDS`. Possible *key*/*value* pairs in your
|
4431
|
+
# application might be `Devops-Guru-production-application/RDS` or
|
4432
|
+
# `Devops-Guru-production-application/containers`.
|
4433
|
+
# @return [String]
|
4434
|
+
#
|
4435
|
+
# @!attribute [rw] tag_values
|
4436
|
+
# The values in an Amazon Web Services tag collection.
|
4437
|
+
#
|
4438
|
+
# The tag's *value* is an optional field used to associate a string
|
4439
|
+
# with the tag *key* (for example, `111122223333`, `Production`, or a
|
4440
|
+
# team name). The *key* and *value* are the tag's *key* pair.
|
4441
|
+
# Omitting the tag *value* is the same as using an empty string. Like
|
4442
|
+
# tag *keys*, tag *values* are case-sensitive. You can specify a
|
4443
|
+
# maximum of 256 characters for a tag value.
|
4444
|
+
# @return [Array<String>]
|
4445
|
+
#
|
4446
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/TagCollectionFilter AWS API Documentation
|
4447
|
+
#
|
4448
|
+
class TagCollectionFilter < Struct.new(
|
4449
|
+
:app_boundary_key,
|
4450
|
+
:tag_values)
|
4451
|
+
SENSITIVE = []
|
4452
|
+
include Aws::Structure
|
4453
|
+
end
|
4454
|
+
|
4455
|
+
# Information about a collection of Amazon Web Services resources that
|
4456
|
+
# are identified by an Amazon Web Services tag. This collection of
|
4457
|
+
# resources is used to create a monthly cost estimate for DevOps Guru to
|
4458
|
+
# analyze Amazon Web Services resources. The maximum number of tags you
|
4459
|
+
# can specify for a cost estimate is one. The estimate created is for
|
4460
|
+
# the cost to analyze the Amazon Web Services resources defined by the
|
4461
|
+
# tag. For more information, see [Stacks][1] in the *Amazon Web Services
|
4462
|
+
# CloudFormation User Guide*.
|
4463
|
+
#
|
4464
|
+
#
|
4465
|
+
#
|
4466
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacks.html
|
4467
|
+
#
|
4468
|
+
# @note When making an API call, you may pass TagCostEstimationResourceCollectionFilter
|
4469
|
+
# data as a hash:
|
4470
|
+
#
|
4471
|
+
# {
|
4472
|
+
# app_boundary_key: "AppBoundaryKey", # required
|
4473
|
+
# tag_values: ["TagValue"], # required
|
4474
|
+
# }
|
4475
|
+
#
|
4476
|
+
# @!attribute [rw] app_boundary_key
|
4477
|
+
# An Amazon Web Services tag *key* that is used to identify the Amazon
|
4478
|
+
# Web Services resources that DevOps Guru analyzes. All Amazon Web
|
4479
|
+
# Services resources in your account and Region tagged with this *key*
|
4480
|
+
# make up your DevOps Guru application and analysis boundary.
|
4481
|
+
#
|
4482
|
+
# The string used for a *key* in a tag that you use to define your
|
4483
|
+
# resource coverage must begin with the prefix `Devops-guru-`. The tag
|
4484
|
+
# *key* might be `Devops-guru-deployment-application` or
|
4485
|
+
# `Devops-guru-rds-application`. While *keys* are case-sensitive, the
|
4486
|
+
# case of *key* characters don't matter to DevOps Guru. For example,
|
4487
|
+
# DevOps Guru works with a *key* named `devops-guru-rds` and a *key*
|
4488
|
+
# named `DevOps-Guru-RDS`. Possible *key*/*value* pairs in your
|
4489
|
+
# application might be `Devops-Guru-production-application/RDS` or
|
4490
|
+
# `Devops-Guru-production-application/containers`.
|
4491
|
+
# @return [String]
|
4492
|
+
#
|
4493
|
+
# @!attribute [rw] tag_values
|
4494
|
+
# The values in an Amazon Web Services tag collection.
|
4495
|
+
#
|
4496
|
+
# The tag's *value* is an optional field used to associate a string
|
4497
|
+
# with the tag *key* (for example, `111122223333`, `Production`, or a
|
4498
|
+
# team name). The *key* and *value* are the tag's *key* pair.
|
4499
|
+
# Omitting the tag *value* is the same as using an empty string. Like
|
4500
|
+
# tag *keys*, tag *values* are case-sensitive. You can specify a
|
4501
|
+
# maximum of 256 characters for a tag value.
|
4502
|
+
# @return [Array<String>]
|
4503
|
+
#
|
4504
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/TagCostEstimationResourceCollectionFilter AWS API Documentation
|
4505
|
+
#
|
4506
|
+
class TagCostEstimationResourceCollectionFilter < Struct.new(
|
4507
|
+
:app_boundary_key,
|
4508
|
+
:tag_values)
|
4509
|
+
SENSITIVE = []
|
4510
|
+
include Aws::Structure
|
4511
|
+
end
|
4512
|
+
|
4513
|
+
# Information about the health of Amazon Web Services resources in your
|
4514
|
+
# account that are specified by an Amazon Web Services tag *key*.
|
4515
|
+
#
|
4516
|
+
# @!attribute [rw] app_boundary_key
|
4517
|
+
# An Amazon Web Services tag *key* that is used to identify the Amazon
|
4518
|
+
# Web Services resources that DevOps Guru analyzes. All Amazon Web
|
4519
|
+
# Services resources in your account and Region tagged with this *key*
|
4520
|
+
# make up your DevOps Guru application and analysis boundary.
|
4521
|
+
#
|
4522
|
+
# The string used for a *key* in a tag that you use to define your
|
4523
|
+
# resource coverage must begin with the prefix `Devops-guru-`. The tag
|
4524
|
+
# *key* might be `Devops-guru-deployment-application` or
|
4525
|
+
# `Devops-guru-rds-application`. While *keys* are case-sensitive, the
|
4526
|
+
# case of *key* characters don't matter to DevOps Guru. For example,
|
4527
|
+
# DevOps Guru works with a *key* named `devops-guru-rds` and a *key*
|
4528
|
+
# named `DevOps-Guru-RDS`. Possible *key*/*value* pairs in your
|
4529
|
+
# application might be `Devops-Guru-production-application/RDS` or
|
4530
|
+
# `Devops-Guru-production-application/containers`.
|
4531
|
+
# @return [String]
|
4532
|
+
#
|
4533
|
+
# @!attribute [rw] tag_value
|
4534
|
+
# The value in an Amazon Web Services tag.
|
4535
|
+
#
|
4536
|
+
# The tag's *value* is an optional field used to associate a string
|
4537
|
+
# with the tag *key* (for example, `111122223333`, `Production`, or a
|
4538
|
+
# team name). The *key* and *value* are the tag's *key* pair.
|
4539
|
+
# Omitting the tag *value* is the same as using an empty string. Like
|
4540
|
+
# tag *keys*, tag *values* are case-sensitive. You can specify a
|
4541
|
+
# maximum of 256 characters for a tag value.
|
4542
|
+
# @return [String]
|
4543
|
+
#
|
4544
|
+
# @!attribute [rw] insight
|
4545
|
+
# Information about the health of the Amazon Web Services resources in
|
4546
|
+
# your account that are specified by an Amazon Web Services tag,
|
4547
|
+
# including the number of open proactive, open reactive insights, and
|
4548
|
+
# the Mean Time to Recover (MTTR) of closed insights.
|
4549
|
+
# @return [Types::InsightHealth]
|
4550
|
+
#
|
4551
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/TagHealth AWS API Documentation
|
4552
|
+
#
|
4553
|
+
class TagHealth < Struct.new(
|
4554
|
+
:app_boundary_key,
|
4555
|
+
:tag_value,
|
4556
|
+
:insight)
|
4557
|
+
SENSITIVE = []
|
4558
|
+
include Aws::Structure
|
4559
|
+
end
|
4560
|
+
|
2817
4561
|
# The request was denied due to a request throttling.
|
2818
4562
|
#
|
2819
4563
|
# @!attribute [rw] message
|
@@ -2844,9 +4588,28 @@ module Aws::DevOpsGuru
|
|
2844
4588
|
include Aws::Structure
|
2845
4589
|
end
|
2846
4590
|
|
2847
|
-
#
|
2848
|
-
#
|
2849
|
-
#
|
4591
|
+
# A pair that contains metric values at the respective timestamp.
|
4592
|
+
#
|
4593
|
+
# @!attribute [rw] timestamp
|
4594
|
+
# A `Timestamp` that specifies the time the event occurred.
|
4595
|
+
# @return [Time]
|
4596
|
+
#
|
4597
|
+
# @!attribute [rw] metric_value
|
4598
|
+
# Value of the anomalous metric data point at respective Timestamp.
|
4599
|
+
# @return [Float]
|
4600
|
+
#
|
4601
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/TimestampMetricValuePair AWS API Documentation
|
4602
|
+
#
|
4603
|
+
class TimestampMetricValuePair < Struct.new(
|
4604
|
+
:timestamp,
|
4605
|
+
:metric_value)
|
4606
|
+
SENSITIVE = []
|
4607
|
+
include Aws::Structure
|
4608
|
+
end
|
4609
|
+
|
4610
|
+
# Contains the names of Amazon Web Services CloudFormation stacks used
|
4611
|
+
# to update a collection of stacks. You can specify up to 500 Amazon Web
|
4612
|
+
# Services CloudFormation stacks.
|
2850
4613
|
#
|
2851
4614
|
# @note When making an API call, you may pass UpdateCloudFormationCollectionFilter
|
2852
4615
|
# data as a hash:
|
@@ -2856,8 +4619,9 @@ module Aws::DevOpsGuru
|
|
2856
4619
|
# }
|
2857
4620
|
#
|
2858
4621
|
# @!attribute [rw] stack_names
|
2859
|
-
# An array of the names of the
|
2860
|
-
# You can specify up to 500
|
4622
|
+
# An array of the names of the Amazon Web Services CloudFormation
|
4623
|
+
# stacks to update. You can specify up to 500 Amazon Web Services
|
4624
|
+
# CloudFormation stacks.
|
2861
4625
|
# @return [Array<String>]
|
2862
4626
|
#
|
2863
4627
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/UpdateCloudFormationCollectionFilter AWS API Documentation
|
@@ -2868,7 +4632,8 @@ module Aws::DevOpsGuru
|
|
2868
4632
|
include Aws::Structure
|
2869
4633
|
end
|
2870
4634
|
|
2871
|
-
# Contains information used to update a collection of
|
4635
|
+
# Contains information used to update a collection of Amazon Web
|
4636
|
+
# Services resources.
|
2872
4637
|
#
|
2873
4638
|
# @note When making an API call, you may pass UpdateResourceCollectionFilter
|
2874
4639
|
# data as a hash:
|
@@ -2877,17 +4642,63 @@ module Aws::DevOpsGuru
|
|
2877
4642
|
# cloud_formation: {
|
2878
4643
|
# stack_names: ["StackName"],
|
2879
4644
|
# },
|
4645
|
+
# tags: [
|
4646
|
+
# {
|
4647
|
+
# app_boundary_key: "AppBoundaryKey", # required
|
4648
|
+
# tag_values: ["TagValue"], # required
|
4649
|
+
# },
|
4650
|
+
# ],
|
2880
4651
|
# }
|
2881
4652
|
#
|
2882
4653
|
# @!attribute [rw] cloud_formation
|
2883
|
-
#
|
2884
|
-
# 500
|
4654
|
+
# A collection of Amazon Web Services CloudFormation stacks. You can
|
4655
|
+
# specify up to 500 Amazon Web Services CloudFormation stacks.
|
2885
4656
|
# @return [Types::UpdateCloudFormationCollectionFilter]
|
2886
4657
|
#
|
4658
|
+
# @!attribute [rw] tags
|
4659
|
+
# The updated Amazon Web Services tags used to filter the resources in
|
4660
|
+
# the resource collection.
|
4661
|
+
#
|
4662
|
+
# Tags help you identify and organize your Amazon Web Services
|
4663
|
+
# resources. Many Amazon Web Services services support tagging, so you
|
4664
|
+
# can assign the same tag to resources from different services to
|
4665
|
+
# indicate that the resources are related. For example, you can assign
|
4666
|
+
# the same tag to an Amazon DynamoDB table resource that you assign to
|
4667
|
+
# an Lambda function. For more information about using tags, see the
|
4668
|
+
# [Tagging best practices][1] whitepaper.
|
4669
|
+
#
|
4670
|
+
# Each Amazon Web Services tag has two parts.
|
4671
|
+
#
|
4672
|
+
# * A tag *key* (for example, `CostCenter`, `Environment`, `Project`,
|
4673
|
+
# or `Secret`). Tag *keys* are case-sensitive.
|
4674
|
+
#
|
4675
|
+
# * An optional field known as a tag *value* (for example,
|
4676
|
+
# `111122223333`, `Production`, or a team name). Omitting the tag
|
4677
|
+
# *value* is the same as using an empty string. Like tag *keys*, tag
|
4678
|
+
# *values* are case-sensitive.
|
4679
|
+
#
|
4680
|
+
# Together these are known as *key*-*value* pairs.
|
4681
|
+
#
|
4682
|
+
# The string used for a *key* in a tag that you use to define your
|
4683
|
+
# resource coverage must begin with the prefix `Devops-guru-`. The tag
|
4684
|
+
# *key* might be `Devops-guru-deployment-application` or
|
4685
|
+
# `Devops-guru-rds-application`. While *keys* are case-sensitive, the
|
4686
|
+
# case of *key* characters don't matter to DevOps Guru. For example,
|
4687
|
+
# DevOps Guru works with a *key* named `devops-guru-rds` and a *key*
|
4688
|
+
# named `DevOps-Guru-RDS`. Possible *key*/*value* pairs in your
|
4689
|
+
# application might be `Devops-Guru-production-application/RDS` or
|
4690
|
+
# `Devops-Guru-production-application/containers`.
|
4691
|
+
#
|
4692
|
+
#
|
4693
|
+
#
|
4694
|
+
# [1]: https://d1.awsstatic.com/whitepapers/aws-tagging-best-practices.pdf
|
4695
|
+
# @return [Array<Types::UpdateTagCollectionFilter>]
|
4696
|
+
#
|
2887
4697
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/UpdateResourceCollectionFilter AWS API Documentation
|
2888
4698
|
#
|
2889
4699
|
class UpdateResourceCollectionFilter < Struct.new(
|
2890
|
-
:cloud_formation
|
4700
|
+
:cloud_formation,
|
4701
|
+
:tags)
|
2891
4702
|
SENSITIVE = []
|
2892
4703
|
include Aws::Structure
|
2893
4704
|
end
|
@@ -2901,6 +4712,12 @@ module Aws::DevOpsGuru
|
|
2901
4712
|
# cloud_formation: {
|
2902
4713
|
# stack_names: ["StackName"],
|
2903
4714
|
# },
|
4715
|
+
# tags: [
|
4716
|
+
# {
|
4717
|
+
# app_boundary_key: "AppBoundaryKey", # required
|
4718
|
+
# tag_values: ["TagValue"], # required
|
4719
|
+
# },
|
4720
|
+
# ],
|
2904
4721
|
# },
|
2905
4722
|
# }
|
2906
4723
|
#
|
@@ -2910,7 +4727,8 @@ module Aws::DevOpsGuru
|
|
2910
4727
|
# @return [String]
|
2911
4728
|
#
|
2912
4729
|
# @!attribute [rw] resource_collection
|
2913
|
-
# Contains information used to update a collection of
|
4730
|
+
# Contains information used to update a collection of Amazon Web
|
4731
|
+
# Services resources.
|
2914
4732
|
# @return [Types::UpdateResourceCollectionFilter]
|
2915
4733
|
#
|
2916
4734
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/UpdateResourceCollectionRequest AWS API Documentation
|
@@ -2926,8 +4744,9 @@ module Aws::DevOpsGuru
|
|
2926
4744
|
#
|
2927
4745
|
class UpdateResourceCollectionResponse < Aws::EmptyStructure; end
|
2928
4746
|
|
2929
|
-
# Information about updating the integration status of an
|
2930
|
-
# such as
|
4747
|
+
# Information about updating the integration status of an Amazon Web
|
4748
|
+
# Services service, such as Amazon Web Services Systems Manager, with
|
4749
|
+
# DevOps Guru.
|
2931
4750
|
#
|
2932
4751
|
# @note When making an API call, you may pass UpdateServiceIntegrationConfig
|
2933
4752
|
# data as a hash:
|
@@ -2940,7 +4759,8 @@ module Aws::DevOpsGuru
|
|
2940
4759
|
#
|
2941
4760
|
# @!attribute [rw] ops_center
|
2942
4761
|
# Information about whether DevOps Guru is configured to create an
|
2943
|
-
# OpsItem in
|
4762
|
+
# OpsItem in Amazon Web Services Systems Manager OpsCenter for each
|
4763
|
+
# created insight.
|
2944
4764
|
# @return [Types::OpsCenterIntegrationConfig]
|
2945
4765
|
#
|
2946
4766
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/UpdateServiceIntegrationConfig AWS API Documentation
|
@@ -2980,6 +4800,54 @@ module Aws::DevOpsGuru
|
|
2980
4800
|
#
|
2981
4801
|
class UpdateServiceIntegrationResponse < Aws::EmptyStructure; end
|
2982
4802
|
|
4803
|
+
# A new collection of Amazon Web Services resources that are defined by
|
4804
|
+
# an Amazon Web Services tag or tag *key*/*value* pair.
|
4805
|
+
#
|
4806
|
+
# @note When making an API call, you may pass UpdateTagCollectionFilter
|
4807
|
+
# data as a hash:
|
4808
|
+
#
|
4809
|
+
# {
|
4810
|
+
# app_boundary_key: "AppBoundaryKey", # required
|
4811
|
+
# tag_values: ["TagValue"], # required
|
4812
|
+
# }
|
4813
|
+
#
|
4814
|
+
# @!attribute [rw] app_boundary_key
|
4815
|
+
# An Amazon Web Services tag *key* that is used to identify the Amazon
|
4816
|
+
# Web Services resources that DevOps Guru analyzes. All Amazon Web
|
4817
|
+
# Services resources in your account and Region tagged with this *key*
|
4818
|
+
# make up your DevOps Guru application and analysis boundary.
|
4819
|
+
#
|
4820
|
+
# The string used for a *key* in a tag that you use to define your
|
4821
|
+
# resource coverage must begin with the prefix `Devops-guru-`. The tag
|
4822
|
+
# *key* might be `Devops-guru-deployment-application` or
|
4823
|
+
# `Devops-guru-rds-application`. While *keys* are case-sensitive, the
|
4824
|
+
# case of *key* characters don't matter to DevOps Guru. For example,
|
4825
|
+
# DevOps Guru works with a *key* named `devops-guru-rds` and a *key*
|
4826
|
+
# named `DevOps-Guru-RDS`. Possible *key*/*value* pairs in your
|
4827
|
+
# application might be `Devops-Guru-production-application/RDS` or
|
4828
|
+
# `Devops-Guru-production-application/containers`.
|
4829
|
+
# @return [String]
|
4830
|
+
#
|
4831
|
+
# @!attribute [rw] tag_values
|
4832
|
+
# The values in an Amazon Web Services tag collection.
|
4833
|
+
#
|
4834
|
+
# The tag's *value* is an optional field used to associate a string
|
4835
|
+
# with the tag *key* (for example, `111122223333`, `Production`, or a
|
4836
|
+
# team name). The *key* and *value* are the tag's *key* pair.
|
4837
|
+
# Omitting the tag *value* is the same as using an empty string. Like
|
4838
|
+
# tag *keys*, tag *values* are case-sensitive. You can specify a
|
4839
|
+
# maximum of 256 characters for a tag value.
|
4840
|
+
# @return [Array<String>]
|
4841
|
+
#
|
4842
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/UpdateTagCollectionFilter AWS API Documentation
|
4843
|
+
#
|
4844
|
+
class UpdateTagCollectionFilter < Struct.new(
|
4845
|
+
:app_boundary_key,
|
4846
|
+
:tag_values)
|
4847
|
+
SENSITIVE = []
|
4848
|
+
include Aws::Structure
|
4849
|
+
end
|
4850
|
+
|
2983
4851
|
# Contains information about data passed in to a field during a request
|
2984
4852
|
# that is not valid.
|
2985
4853
|
#
|