aws-sdk-devopsguru 1.15.0 → 1.19.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-devopsguru/client.rb +295 -34
- data/lib/aws-sdk-devopsguru/client_api.rb +161 -2
- data/lib/aws-sdk-devopsguru/types.rb +1293 -119
- data/lib/aws-sdk-devopsguru.rb +1 -1
- metadata +4 -4
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
30
|
+
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
30
31
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
31
32
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
32
33
|
|
@@ -73,6 +74,7 @@ module Aws::DevOpsGuru
|
|
73
74
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
74
75
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
76
|
add_plugin(Aws::Plugins::HttpChecksum)
|
77
|
+
add_plugin(Aws::Plugins::DefaultsMode)
|
76
78
|
add_plugin(Aws::Plugins::SignatureV4)
|
77
79
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
78
80
|
|
@@ -119,7 +121,9 @@ module Aws::DevOpsGuru
|
|
119
121
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
122
|
# are very aggressive. Construct and pass an instance of
|
121
123
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
-
# enable retries and extended timeouts.
|
124
|
+
# enable retries and extended timeouts. Instance profile credential
|
125
|
+
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
126
|
+
# to true.
|
123
127
|
#
|
124
128
|
# @option options [required, String] :region
|
125
129
|
# The AWS region to connect to. The configured `:region` is
|
@@ -173,6 +177,10 @@ module Aws::DevOpsGuru
|
|
173
177
|
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
174
178
|
# a clock skew correction and retry requests with skewed client clocks.
|
175
179
|
#
|
180
|
+
# @option options [String] :defaults_mode ("legacy")
|
181
|
+
# See {Aws::DefaultsModeConfiguration} for a list of the
|
182
|
+
# accepted modes and the configuration defaults that are included.
|
183
|
+
#
|
176
184
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
177
185
|
# Set to true to disable SDK automatically adding host prefix
|
178
186
|
# to default service endpoint when available.
|
@@ -295,7 +303,7 @@ module Aws::DevOpsGuru
|
|
295
303
|
# seconds to wait when opening a HTTP session before raising a
|
296
304
|
# `Timeout::Error`.
|
297
305
|
#
|
298
|
-
# @option options [
|
306
|
+
# @option options [Float] :http_read_timeout (60) The default
|
299
307
|
# number of seconds to wait for response data. This value can
|
300
308
|
# safely be set per-request on the session.
|
301
309
|
#
|
@@ -311,6 +319,9 @@ module Aws::DevOpsGuru
|
|
311
319
|
# disables this behaviour. This value can safely be set per
|
312
320
|
# request on the session.
|
313
321
|
#
|
322
|
+
# @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
|
323
|
+
# in seconds.
|
324
|
+
#
|
314
325
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
315
326
|
# HTTP debug output will be sent to the `:logger`.
|
316
327
|
#
|
@@ -506,9 +517,39 @@ module Aws::DevOpsGuru
|
|
506
517
|
# resp.proactive_anomaly.source_details.cloud_watch_metrics[0].metric_data_summary.timestamp_metric_value_pair_list[0].timestamp #=> Time
|
507
518
|
# resp.proactive_anomaly.source_details.cloud_watch_metrics[0].metric_data_summary.timestamp_metric_value_pair_list[0].metric_value #=> Float
|
508
519
|
# resp.proactive_anomaly.source_details.cloud_watch_metrics[0].metric_data_summary.status_code #=> String, one of "Complete", "InternalError", "PartialData"
|
520
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics #=> Array
|
521
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics[0].metric_display_name #=> String
|
522
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics[0].unit #=> String
|
523
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics[0].metric_query.metric #=> String
|
524
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics[0].metric_query.group_by.group #=> String
|
525
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics[0].metric_query.group_by.dimensions #=> Array
|
526
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics[0].metric_query.group_by.dimensions[0] #=> String
|
527
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics[0].metric_query.group_by.limit #=> Integer
|
528
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics[0].metric_query.filter #=> Hash
|
529
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics[0].metric_query.filter["PerformanceInsightsMetricFilterKey"] #=> String
|
530
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics[0].reference_data #=> Array
|
531
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].name #=> String
|
532
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_scalar.value #=> Float
|
533
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.metric #=> String
|
534
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.group_by.group #=> String
|
535
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.group_by.dimensions #=> Array
|
536
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.group_by.dimensions[0] #=> String
|
537
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.group_by.limit #=> Integer
|
538
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.filter #=> Hash
|
539
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.filter["PerformanceInsightsMetricFilterKey"] #=> String
|
540
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics[0].stats_at_anomaly #=> Array
|
541
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics[0].stats_at_anomaly[0].type #=> String
|
542
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics[0].stats_at_anomaly[0].value #=> Float
|
543
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics[0].stats_at_baseline #=> Array
|
544
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics[0].stats_at_baseline[0].type #=> String
|
545
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics[0].stats_at_baseline[0].value #=> Float
|
509
546
|
# resp.proactive_anomaly.associated_insight_id #=> String
|
510
547
|
# resp.proactive_anomaly.resource_collection.cloud_formation.stack_names #=> Array
|
511
548
|
# resp.proactive_anomaly.resource_collection.cloud_formation.stack_names[0] #=> String
|
549
|
+
# resp.proactive_anomaly.resource_collection.tags #=> Array
|
550
|
+
# resp.proactive_anomaly.resource_collection.tags[0].app_boundary_key #=> String
|
551
|
+
# resp.proactive_anomaly.resource_collection.tags[0].tag_values #=> Array
|
552
|
+
# resp.proactive_anomaly.resource_collection.tags[0].tag_values[0] #=> String
|
512
553
|
# resp.proactive_anomaly.limit #=> Float
|
513
554
|
# resp.reactive_anomaly.id #=> String
|
514
555
|
# resp.reactive_anomaly.severity #=> String, one of "LOW", "MEDIUM", "HIGH"
|
@@ -530,9 +571,46 @@ module Aws::DevOpsGuru
|
|
530
571
|
# resp.reactive_anomaly.source_details.cloud_watch_metrics[0].metric_data_summary.timestamp_metric_value_pair_list[0].timestamp #=> Time
|
531
572
|
# resp.reactive_anomaly.source_details.cloud_watch_metrics[0].metric_data_summary.timestamp_metric_value_pair_list[0].metric_value #=> Float
|
532
573
|
# resp.reactive_anomaly.source_details.cloud_watch_metrics[0].metric_data_summary.status_code #=> String, one of "Complete", "InternalError", "PartialData"
|
574
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics #=> Array
|
575
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics[0].metric_display_name #=> String
|
576
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics[0].unit #=> String
|
577
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics[0].metric_query.metric #=> String
|
578
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics[0].metric_query.group_by.group #=> String
|
579
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics[0].metric_query.group_by.dimensions #=> Array
|
580
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics[0].metric_query.group_by.dimensions[0] #=> String
|
581
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics[0].metric_query.group_by.limit #=> Integer
|
582
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics[0].metric_query.filter #=> Hash
|
583
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics[0].metric_query.filter["PerformanceInsightsMetricFilterKey"] #=> String
|
584
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics[0].reference_data #=> Array
|
585
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].name #=> String
|
586
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_scalar.value #=> Float
|
587
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.metric #=> String
|
588
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.group_by.group #=> String
|
589
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.group_by.dimensions #=> Array
|
590
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.group_by.dimensions[0] #=> String
|
591
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.group_by.limit #=> Integer
|
592
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.filter #=> Hash
|
593
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.filter["PerformanceInsightsMetricFilterKey"] #=> String
|
594
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics[0].stats_at_anomaly #=> Array
|
595
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics[0].stats_at_anomaly[0].type #=> String
|
596
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics[0].stats_at_anomaly[0].value #=> Float
|
597
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics[0].stats_at_baseline #=> Array
|
598
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics[0].stats_at_baseline[0].type #=> String
|
599
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics[0].stats_at_baseline[0].value #=> Float
|
533
600
|
# resp.reactive_anomaly.associated_insight_id #=> String
|
534
601
|
# resp.reactive_anomaly.resource_collection.cloud_formation.stack_names #=> Array
|
535
602
|
# resp.reactive_anomaly.resource_collection.cloud_formation.stack_names[0] #=> String
|
603
|
+
# resp.reactive_anomaly.resource_collection.tags #=> Array
|
604
|
+
# resp.reactive_anomaly.resource_collection.tags[0].app_boundary_key #=> String
|
605
|
+
# resp.reactive_anomaly.resource_collection.tags[0].tag_values #=> Array
|
606
|
+
# resp.reactive_anomaly.resource_collection.tags[0].tag_values[0] #=> String
|
607
|
+
# resp.reactive_anomaly.type #=> String, one of "CAUSAL", "CONTEXTUAL"
|
608
|
+
# resp.reactive_anomaly.name #=> String
|
609
|
+
# resp.reactive_anomaly.description #=> String
|
610
|
+
# resp.reactive_anomaly.causal_anomaly_id #=> String
|
611
|
+
# resp.reactive_anomaly.anomaly_resources #=> Array
|
612
|
+
# resp.reactive_anomaly.anomaly_resources[0].name #=> String
|
613
|
+
# resp.reactive_anomaly.anomaly_resources[0].type #=> String
|
536
614
|
#
|
537
615
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/DescribeAnomaly AWS API Documentation
|
538
616
|
#
|
@@ -605,6 +683,10 @@ module Aws::DevOpsGuru
|
|
605
683
|
# resp.proactive_insight.prediction_time_range.end_time #=> Time
|
606
684
|
# resp.proactive_insight.resource_collection.cloud_formation.stack_names #=> Array
|
607
685
|
# resp.proactive_insight.resource_collection.cloud_formation.stack_names[0] #=> String
|
686
|
+
# resp.proactive_insight.resource_collection.tags #=> Array
|
687
|
+
# resp.proactive_insight.resource_collection.tags[0].app_boundary_key #=> String
|
688
|
+
# resp.proactive_insight.resource_collection.tags[0].tag_values #=> Array
|
689
|
+
# resp.proactive_insight.resource_collection.tags[0].tag_values[0] #=> String
|
608
690
|
# resp.proactive_insight.ssm_ops_item_id #=> String
|
609
691
|
# resp.reactive_insight.id #=> String
|
610
692
|
# resp.reactive_insight.name #=> String
|
@@ -614,6 +696,10 @@ module Aws::DevOpsGuru
|
|
614
696
|
# resp.reactive_insight.insight_time_range.end_time #=> Time
|
615
697
|
# resp.reactive_insight.resource_collection.cloud_formation.stack_names #=> Array
|
616
698
|
# resp.reactive_insight.resource_collection.cloud_formation.stack_names[0] #=> String
|
699
|
+
# resp.reactive_insight.resource_collection.tags #=> Array
|
700
|
+
# resp.reactive_insight.resource_collection.tags[0].app_boundary_key #=> String
|
701
|
+
# resp.reactive_insight.resource_collection.tags[0].tag_values #=> Array
|
702
|
+
# resp.reactive_insight.resource_collection.tags[0].tag_values[0] #=> String
|
617
703
|
# resp.reactive_insight.ssm_ops_item_id #=> String
|
618
704
|
#
|
619
705
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/DescribeInsight AWS API Documentation
|
@@ -719,12 +805,13 @@ module Aws::DevOpsGuru
|
|
719
805
|
#
|
720
806
|
# @option params [required, String] :organization_resource_collection_type
|
721
807
|
# An Amazon Web Services resource collection type. This type specifies
|
722
|
-
# how analyzed Amazon Web Services resources are defined. The
|
723
|
-
# of Amazon Web Services resource
|
724
|
-
# Services CloudFormation stacks
|
725
|
-
#
|
726
|
-
#
|
727
|
-
# stacks
|
808
|
+
# how analyzed Amazon Web Services resources are defined. The two types
|
809
|
+
# of Amazon Web Services resource collections supported are Amazon Web
|
810
|
+
# Services CloudFormation stacks and Amazon Web Services resources that
|
811
|
+
# contain the same Amazon Web Services tag. DevOps Guru can be
|
812
|
+
# configured to analyze the Amazon Web Services resources that are
|
813
|
+
# defined in the stacks or that are tagged using the same tag *key*. You
|
814
|
+
# can specify up to 500 Amazon Web Services CloudFormation stacks.
|
728
815
|
#
|
729
816
|
# @option params [Array<String>] :account_ids
|
730
817
|
# The ID of the Amazon Web Services account.
|
@@ -747,13 +834,14 @@ module Aws::DevOpsGuru
|
|
747
834
|
# * {Types::DescribeOrganizationResourceCollectionHealthResponse#service #service} => Array<Types::ServiceHealth>
|
748
835
|
# * {Types::DescribeOrganizationResourceCollectionHealthResponse#account #account} => Array<Types::AccountHealth>
|
749
836
|
# * {Types::DescribeOrganizationResourceCollectionHealthResponse#next_token #next_token} => String
|
837
|
+
# * {Types::DescribeOrganizationResourceCollectionHealthResponse#tags #tags} => Array<Types::TagHealth>
|
750
838
|
#
|
751
839
|
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
752
840
|
#
|
753
841
|
# @example Request syntax with placeholder values
|
754
842
|
#
|
755
843
|
# resp = client.describe_organization_resource_collection_health({
|
756
|
-
# organization_resource_collection_type: "AWS_CLOUD_FORMATION", # required, accepts AWS_CLOUD_FORMATION, AWS_SERVICE, AWS_ACCOUNT
|
844
|
+
# organization_resource_collection_type: "AWS_CLOUD_FORMATION", # required, accepts AWS_CLOUD_FORMATION, AWS_SERVICE, AWS_ACCOUNT, AWS_TAGS
|
757
845
|
# account_ids: ["AwsAccountId"],
|
758
846
|
# organizational_unit_ids: ["OrganizationalUnitId"],
|
759
847
|
# next_token: "UuidNextToken",
|
@@ -776,6 +864,12 @@ module Aws::DevOpsGuru
|
|
776
864
|
# resp.account[0].insight.open_proactive_insights #=> Integer
|
777
865
|
# resp.account[0].insight.open_reactive_insights #=> Integer
|
778
866
|
# resp.next_token #=> String
|
867
|
+
# resp.tags #=> Array
|
868
|
+
# resp.tags[0].app_boundary_key #=> String
|
869
|
+
# resp.tags[0].tag_value #=> String
|
870
|
+
# resp.tags[0].insight.open_proactive_insights #=> Integer
|
871
|
+
# resp.tags[0].insight.open_reactive_insights #=> Integer
|
872
|
+
# resp.tags[0].insight.mean_time_to_recover_in_milliseconds #=> Integer
|
779
873
|
#
|
780
874
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/DescribeOrganizationResourceCollectionHealth AWS API Documentation
|
781
875
|
#
|
@@ -789,20 +883,23 @@ module Aws::DevOpsGuru
|
|
789
883
|
# Returns the number of open proactive insights, open reactive insights,
|
790
884
|
# and the Mean Time to Recover (MTTR) for all closed insights in
|
791
885
|
# resource collections in your account. You specify the type of Amazon
|
792
|
-
# Web Services resources collection. The
|
793
|
-
# resource
|
794
|
-
# stacks
|
795
|
-
#
|
886
|
+
# Web Services resources collection. The two types of Amazon Web
|
887
|
+
# Services resource collections supported are Amazon Web Services
|
888
|
+
# CloudFormation stacks and Amazon Web Services resources that contain
|
889
|
+
# the same Amazon Web Services tag. DevOps Guru can be configured to
|
890
|
+
# analyze the Amazon Web Services resources that are defined in the
|
891
|
+
# stacks or that are tagged using the same tag *key*. You can specify up
|
796
892
|
# to 500 Amazon Web Services CloudFormation stacks.
|
797
893
|
#
|
798
894
|
# @option params [required, String] :resource_collection_type
|
799
895
|
# An Amazon Web Services resource collection type. This type specifies
|
800
|
-
# how analyzed Amazon Web Services resources are defined. The
|
801
|
-
# of Amazon Web Services resource
|
802
|
-
# Services CloudFormation stacks
|
803
|
-
#
|
804
|
-
#
|
805
|
-
# stacks
|
896
|
+
# how analyzed Amazon Web Services resources are defined. The two types
|
897
|
+
# of Amazon Web Services resource collections supported are Amazon Web
|
898
|
+
# Services CloudFormation stacks and Amazon Web Services resources that
|
899
|
+
# contain the same Amazon Web Services tag. DevOps Guru can be
|
900
|
+
# configured to analyze the Amazon Web Services resources that are
|
901
|
+
# defined in the stacks or that are tagged using the same tag *key*. You
|
902
|
+
# can specify up to 500 Amazon Web Services CloudFormation stacks.
|
806
903
|
#
|
807
904
|
# @option params [String] :next_token
|
808
905
|
# The pagination token to use to retrieve the next page of results for
|
@@ -813,13 +910,14 @@ module Aws::DevOpsGuru
|
|
813
910
|
# * {Types::DescribeResourceCollectionHealthResponse#cloud_formation #cloud_formation} => Array<Types::CloudFormationHealth>
|
814
911
|
# * {Types::DescribeResourceCollectionHealthResponse#service #service} => Array<Types::ServiceHealth>
|
815
912
|
# * {Types::DescribeResourceCollectionHealthResponse#next_token #next_token} => String
|
913
|
+
# * {Types::DescribeResourceCollectionHealthResponse#tags #tags} => Array<Types::TagHealth>
|
816
914
|
#
|
817
915
|
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
818
916
|
#
|
819
917
|
# @example Request syntax with placeholder values
|
820
918
|
#
|
821
919
|
# resp = client.describe_resource_collection_health({
|
822
|
-
# resource_collection_type: "AWS_CLOUD_FORMATION", # required, accepts AWS_CLOUD_FORMATION, AWS_SERVICE
|
920
|
+
# resource_collection_type: "AWS_CLOUD_FORMATION", # required, accepts AWS_CLOUD_FORMATION, AWS_SERVICE, AWS_TAGS
|
823
921
|
# next_token: "UuidNextToken",
|
824
922
|
# })
|
825
923
|
#
|
@@ -835,6 +933,12 @@ module Aws::DevOpsGuru
|
|
835
933
|
# resp.service[0].insight.open_proactive_insights #=> Integer
|
836
934
|
# resp.service[0].insight.open_reactive_insights #=> Integer
|
837
935
|
# resp.next_token #=> String
|
936
|
+
# resp.tags #=> Array
|
937
|
+
# resp.tags[0].app_boundary_key #=> String
|
938
|
+
# resp.tags[0].tag_value #=> String
|
939
|
+
# resp.tags[0].insight.open_proactive_insights #=> Integer
|
940
|
+
# resp.tags[0].insight.open_reactive_insights #=> Integer
|
941
|
+
# resp.tags[0].insight.mean_time_to_recover_in_milliseconds #=> Integer
|
838
942
|
#
|
839
943
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/DescribeResourceCollectionHealth AWS API Documentation
|
840
944
|
#
|
@@ -902,6 +1006,10 @@ module Aws::DevOpsGuru
|
|
902
1006
|
#
|
903
1007
|
# resp.resource_collection.cloud_formation.stack_names #=> Array
|
904
1008
|
# resp.resource_collection.cloud_formation.stack_names[0] #=> String
|
1009
|
+
# resp.resource_collection.tags #=> Array
|
1010
|
+
# resp.resource_collection.tags[0].app_boundary_key #=> String
|
1011
|
+
# resp.resource_collection.tags[0].tag_values #=> Array
|
1012
|
+
# resp.resource_collection.tags[0].tag_values[0] #=> String
|
905
1013
|
# resp.status #=> String, one of "ONGOING", "COMPLETED"
|
906
1014
|
# resp.costs #=> Array
|
907
1015
|
# resp.costs[0].type #=> String
|
@@ -924,11 +1032,13 @@ module Aws::DevOpsGuru
|
|
924
1032
|
end
|
925
1033
|
|
926
1034
|
# Returns lists Amazon Web Services resources that are of the specified
|
927
|
-
# resource collection type. The
|
928
|
-
#
|
929
|
-
#
|
930
|
-
#
|
931
|
-
#
|
1035
|
+
# resource collection type. The two types of Amazon Web Services
|
1036
|
+
# resource collections supported are Amazon Web Services CloudFormation
|
1037
|
+
# stacks and Amazon Web Services resources that contain the same Amazon
|
1038
|
+
# Web Services tag. DevOps Guru can be configured to analyze the Amazon
|
1039
|
+
# Web Services resources that are defined in the stacks or that are
|
1040
|
+
# tagged using the same tag *key*. You can specify up to 500 Amazon Web
|
1041
|
+
# Services CloudFormation stacks.
|
932
1042
|
#
|
933
1043
|
# @option params [required, String] :resource_collection_type
|
934
1044
|
# The type of Amazon Web Services resource collections to return. The
|
@@ -949,7 +1059,7 @@ module Aws::DevOpsGuru
|
|
949
1059
|
# @example Request syntax with placeholder values
|
950
1060
|
#
|
951
1061
|
# resp = client.get_resource_collection({
|
952
|
-
# resource_collection_type: "AWS_CLOUD_FORMATION", # required, accepts AWS_CLOUD_FORMATION, AWS_SERVICE
|
1062
|
+
# resource_collection_type: "AWS_CLOUD_FORMATION", # required, accepts AWS_CLOUD_FORMATION, AWS_SERVICE, AWS_TAGS
|
953
1063
|
# next_token: "UuidNextToken",
|
954
1064
|
# })
|
955
1065
|
#
|
@@ -957,6 +1067,10 @@ module Aws::DevOpsGuru
|
|
957
1067
|
#
|
958
1068
|
# resp.resource_collection.cloud_formation.stack_names #=> Array
|
959
1069
|
# resp.resource_collection.cloud_formation.stack_names[0] #=> String
|
1070
|
+
# resp.resource_collection.tags #=> Array
|
1071
|
+
# resp.resource_collection.tags[0].app_boundary_key #=> String
|
1072
|
+
# resp.resource_collection.tags[0].tag_values #=> Array
|
1073
|
+
# resp.resource_collection.tags[0].tag_values[0] #=> String
|
960
1074
|
# resp.next_token #=> String
|
961
1075
|
#
|
962
1076
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/GetResourceCollection AWS API Documentation
|
@@ -1037,9 +1151,39 @@ module Aws::DevOpsGuru
|
|
1037
1151
|
# resp.proactive_anomalies[0].source_details.cloud_watch_metrics[0].metric_data_summary.timestamp_metric_value_pair_list[0].timestamp #=> Time
|
1038
1152
|
# resp.proactive_anomalies[0].source_details.cloud_watch_metrics[0].metric_data_summary.timestamp_metric_value_pair_list[0].metric_value #=> Float
|
1039
1153
|
# resp.proactive_anomalies[0].source_details.cloud_watch_metrics[0].metric_data_summary.status_code #=> String, one of "Complete", "InternalError", "PartialData"
|
1154
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics #=> Array
|
1155
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].metric_display_name #=> String
|
1156
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].unit #=> String
|
1157
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].metric_query.metric #=> String
|
1158
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].metric_query.group_by.group #=> String
|
1159
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].metric_query.group_by.dimensions #=> Array
|
1160
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].metric_query.group_by.dimensions[0] #=> String
|
1161
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].metric_query.group_by.limit #=> Integer
|
1162
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].metric_query.filter #=> Hash
|
1163
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].metric_query.filter["PerformanceInsightsMetricFilterKey"] #=> String
|
1164
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data #=> Array
|
1165
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].name #=> String
|
1166
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_scalar.value #=> Float
|
1167
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.metric #=> String
|
1168
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.group_by.group #=> String
|
1169
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.group_by.dimensions #=> Array
|
1170
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.group_by.dimensions[0] #=> String
|
1171
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.group_by.limit #=> Integer
|
1172
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.filter #=> Hash
|
1173
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.filter["PerformanceInsightsMetricFilterKey"] #=> String
|
1174
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].stats_at_anomaly #=> Array
|
1175
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].stats_at_anomaly[0].type #=> String
|
1176
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].stats_at_anomaly[0].value #=> Float
|
1177
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].stats_at_baseline #=> Array
|
1178
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].stats_at_baseline[0].type #=> String
|
1179
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].stats_at_baseline[0].value #=> Float
|
1040
1180
|
# resp.proactive_anomalies[0].associated_insight_id #=> String
|
1041
1181
|
# resp.proactive_anomalies[0].resource_collection.cloud_formation.stack_names #=> Array
|
1042
1182
|
# resp.proactive_anomalies[0].resource_collection.cloud_formation.stack_names[0] #=> String
|
1183
|
+
# resp.proactive_anomalies[0].resource_collection.tags #=> Array
|
1184
|
+
# resp.proactive_anomalies[0].resource_collection.tags[0].app_boundary_key #=> String
|
1185
|
+
# resp.proactive_anomalies[0].resource_collection.tags[0].tag_values #=> Array
|
1186
|
+
# resp.proactive_anomalies[0].resource_collection.tags[0].tag_values[0] #=> String
|
1043
1187
|
# resp.proactive_anomalies[0].limit #=> Float
|
1044
1188
|
# resp.reactive_anomalies #=> Array
|
1045
1189
|
# resp.reactive_anomalies[0].id #=> String
|
@@ -1062,9 +1206,46 @@ module Aws::DevOpsGuru
|
|
1062
1206
|
# resp.reactive_anomalies[0].source_details.cloud_watch_metrics[0].metric_data_summary.timestamp_metric_value_pair_list[0].timestamp #=> Time
|
1063
1207
|
# resp.reactive_anomalies[0].source_details.cloud_watch_metrics[0].metric_data_summary.timestamp_metric_value_pair_list[0].metric_value #=> Float
|
1064
1208
|
# resp.reactive_anomalies[0].source_details.cloud_watch_metrics[0].metric_data_summary.status_code #=> String, one of "Complete", "InternalError", "PartialData"
|
1209
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics #=> Array
|
1210
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].metric_display_name #=> String
|
1211
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].unit #=> String
|
1212
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].metric_query.metric #=> String
|
1213
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].metric_query.group_by.group #=> String
|
1214
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].metric_query.group_by.dimensions #=> Array
|
1215
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].metric_query.group_by.dimensions[0] #=> String
|
1216
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].metric_query.group_by.limit #=> Integer
|
1217
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].metric_query.filter #=> Hash
|
1218
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].metric_query.filter["PerformanceInsightsMetricFilterKey"] #=> String
|
1219
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data #=> Array
|
1220
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].name #=> String
|
1221
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_scalar.value #=> Float
|
1222
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.metric #=> String
|
1223
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.group_by.group #=> String
|
1224
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.group_by.dimensions #=> Array
|
1225
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.group_by.dimensions[0] #=> String
|
1226
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.group_by.limit #=> Integer
|
1227
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.filter #=> Hash
|
1228
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.filter["PerformanceInsightsMetricFilterKey"] #=> String
|
1229
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].stats_at_anomaly #=> Array
|
1230
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].stats_at_anomaly[0].type #=> String
|
1231
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].stats_at_anomaly[0].value #=> Float
|
1232
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].stats_at_baseline #=> Array
|
1233
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].stats_at_baseline[0].type #=> String
|
1234
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].stats_at_baseline[0].value #=> Float
|
1065
1235
|
# resp.reactive_anomalies[0].associated_insight_id #=> String
|
1066
1236
|
# resp.reactive_anomalies[0].resource_collection.cloud_formation.stack_names #=> Array
|
1067
1237
|
# resp.reactive_anomalies[0].resource_collection.cloud_formation.stack_names[0] #=> String
|
1238
|
+
# resp.reactive_anomalies[0].resource_collection.tags #=> Array
|
1239
|
+
# resp.reactive_anomalies[0].resource_collection.tags[0].app_boundary_key #=> String
|
1240
|
+
# resp.reactive_anomalies[0].resource_collection.tags[0].tag_values #=> Array
|
1241
|
+
# resp.reactive_anomalies[0].resource_collection.tags[0].tag_values[0] #=> String
|
1242
|
+
# resp.reactive_anomalies[0].type #=> String, one of "CAUSAL", "CONTEXTUAL"
|
1243
|
+
# resp.reactive_anomalies[0].name #=> String
|
1244
|
+
# resp.reactive_anomalies[0].description #=> String
|
1245
|
+
# resp.reactive_anomalies[0].causal_anomaly_id #=> String
|
1246
|
+
# resp.reactive_anomalies[0].anomaly_resources #=> Array
|
1247
|
+
# resp.reactive_anomalies[0].anomaly_resources[0].name #=> String
|
1248
|
+
# resp.reactive_anomalies[0].anomaly_resources[0].type #=> String
|
1068
1249
|
# resp.next_token #=> String
|
1069
1250
|
#
|
1070
1251
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ListAnomaliesForInsight AWS API Documentation
|
@@ -1118,6 +1299,12 @@ module Aws::DevOpsGuru
|
|
1118
1299
|
# cloud_formation: {
|
1119
1300
|
# stack_names: ["StackName"],
|
1120
1301
|
# },
|
1302
|
+
# tags: [
|
1303
|
+
# {
|
1304
|
+
# app_boundary_key: "AppBoundaryKey", # required
|
1305
|
+
# tag_values: ["TagValue"], # required
|
1306
|
+
# },
|
1307
|
+
# ],
|
1121
1308
|
# },
|
1122
1309
|
# },
|
1123
1310
|
# max_results: 1,
|
@@ -1130,6 +1317,10 @@ module Aws::DevOpsGuru
|
|
1130
1317
|
# resp.events #=> Array
|
1131
1318
|
# resp.events[0].resource_collection.cloud_formation.stack_names #=> Array
|
1132
1319
|
# resp.events[0].resource_collection.cloud_formation.stack_names[0] #=> String
|
1320
|
+
# resp.events[0].resource_collection.tags #=> Array
|
1321
|
+
# resp.events[0].resource_collection.tags[0].app_boundary_key #=> String
|
1322
|
+
# resp.events[0].resource_collection.tags[0].tag_values #=> Array
|
1323
|
+
# resp.events[0].resource_collection.tags[0].tag_values[0] #=> String
|
1133
1324
|
# resp.events[0].id #=> String
|
1134
1325
|
# resp.events[0].time #=> Time
|
1135
1326
|
# resp.events[0].event_source #=> String
|
@@ -1215,8 +1406,14 @@ module Aws::DevOpsGuru
|
|
1215
1406
|
# resp.proactive_insights[0].prediction_time_range.end_time #=> Time
|
1216
1407
|
# resp.proactive_insights[0].resource_collection.cloud_formation.stack_names #=> Array
|
1217
1408
|
# resp.proactive_insights[0].resource_collection.cloud_formation.stack_names[0] #=> String
|
1409
|
+
# resp.proactive_insights[0].resource_collection.tags #=> Array
|
1410
|
+
# resp.proactive_insights[0].resource_collection.tags[0].app_boundary_key #=> String
|
1411
|
+
# resp.proactive_insights[0].resource_collection.tags[0].tag_values #=> Array
|
1412
|
+
# resp.proactive_insights[0].resource_collection.tags[0].tag_values[0] #=> String
|
1218
1413
|
# resp.proactive_insights[0].service_collection.service_names #=> Array
|
1219
1414
|
# resp.proactive_insights[0].service_collection.service_names[0] #=> String, one of "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"
|
1415
|
+
# resp.proactive_insights[0].associated_resource_arns #=> Array
|
1416
|
+
# resp.proactive_insights[0].associated_resource_arns[0] #=> String
|
1220
1417
|
# resp.reactive_insights #=> Array
|
1221
1418
|
# resp.reactive_insights[0].id #=> String
|
1222
1419
|
# resp.reactive_insights[0].name #=> String
|
@@ -1226,8 +1423,14 @@ module Aws::DevOpsGuru
|
|
1226
1423
|
# resp.reactive_insights[0].insight_time_range.end_time #=> Time
|
1227
1424
|
# resp.reactive_insights[0].resource_collection.cloud_formation.stack_names #=> Array
|
1228
1425
|
# resp.reactive_insights[0].resource_collection.cloud_formation.stack_names[0] #=> String
|
1426
|
+
# resp.reactive_insights[0].resource_collection.tags #=> Array
|
1427
|
+
# resp.reactive_insights[0].resource_collection.tags[0].app_boundary_key #=> String
|
1428
|
+
# resp.reactive_insights[0].resource_collection.tags[0].tag_values #=> Array
|
1429
|
+
# resp.reactive_insights[0].resource_collection.tags[0].tag_values[0] #=> String
|
1229
1430
|
# resp.reactive_insights[0].service_collection.service_names #=> Array
|
1230
1431
|
# resp.reactive_insights[0].service_collection.service_names[0] #=> String, one of "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"
|
1432
|
+
# resp.reactive_insights[0].associated_resource_arns #=> Array
|
1433
|
+
# resp.reactive_insights[0].associated_resource_arns[0] #=> String
|
1231
1434
|
# resp.next_token #=> String
|
1232
1435
|
#
|
1233
1436
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ListInsights AWS API Documentation
|
@@ -1349,6 +1552,10 @@ module Aws::DevOpsGuru
|
|
1349
1552
|
# resp.proactive_insights[0].prediction_time_range.end_time #=> Time
|
1350
1553
|
# resp.proactive_insights[0].resource_collection.cloud_formation.stack_names #=> Array
|
1351
1554
|
# resp.proactive_insights[0].resource_collection.cloud_formation.stack_names[0] #=> String
|
1555
|
+
# resp.proactive_insights[0].resource_collection.tags #=> Array
|
1556
|
+
# resp.proactive_insights[0].resource_collection.tags[0].app_boundary_key #=> String
|
1557
|
+
# resp.proactive_insights[0].resource_collection.tags[0].tag_values #=> Array
|
1558
|
+
# resp.proactive_insights[0].resource_collection.tags[0].tag_values[0] #=> String
|
1352
1559
|
# resp.proactive_insights[0].service_collection.service_names #=> Array
|
1353
1560
|
# resp.proactive_insights[0].service_collection.service_names[0] #=> String, one of "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"
|
1354
1561
|
# resp.reactive_insights #=> Array
|
@@ -1362,6 +1569,10 @@ module Aws::DevOpsGuru
|
|
1362
1569
|
# resp.reactive_insights[0].insight_time_range.end_time #=> Time
|
1363
1570
|
# resp.reactive_insights[0].resource_collection.cloud_formation.stack_names #=> Array
|
1364
1571
|
# resp.reactive_insights[0].resource_collection.cloud_formation.stack_names[0] #=> String
|
1572
|
+
# resp.reactive_insights[0].resource_collection.tags #=> Array
|
1573
|
+
# resp.reactive_insights[0].resource_collection.tags[0].app_boundary_key #=> String
|
1574
|
+
# resp.reactive_insights[0].resource_collection.tags[0].tag_values #=> Array
|
1575
|
+
# resp.reactive_insights[0].resource_collection.tags[0].tag_values[0] #=> String
|
1365
1576
|
# resp.reactive_insights[0].service_collection.service_names #=> Array
|
1366
1577
|
# resp.reactive_insights[0].service_collection.service_names[0] #=> String, one of "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"
|
1367
1578
|
# resp.next_token #=> String
|
@@ -1428,6 +1639,7 @@ module Aws::DevOpsGuru
|
|
1428
1639
|
# resp.recommendations[0].related_anomalies[0].source_details[0].cloud_watch_metrics #=> Array
|
1429
1640
|
# resp.recommendations[0].related_anomalies[0].source_details[0].cloud_watch_metrics[0].metric_name #=> String
|
1430
1641
|
# resp.recommendations[0].related_anomalies[0].source_details[0].cloud_watch_metrics[0].namespace #=> String
|
1642
|
+
# resp.recommendations[0].related_anomalies[0].anomaly_id #=> String
|
1431
1643
|
# resp.next_token #=> String
|
1432
1644
|
#
|
1433
1645
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ListRecommendations AWS API Documentation
|
@@ -1542,6 +1754,12 @@ module Aws::DevOpsGuru
|
|
1542
1754
|
# cloud_formation: {
|
1543
1755
|
# stack_names: ["StackName"],
|
1544
1756
|
# },
|
1757
|
+
# tags: [
|
1758
|
+
# {
|
1759
|
+
# app_boundary_key: "AppBoundaryKey", # required
|
1760
|
+
# tag_values: ["TagValue"], # required
|
1761
|
+
# },
|
1762
|
+
# ],
|
1545
1763
|
# },
|
1546
1764
|
# service_collection: {
|
1547
1765
|
# 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
|
@@ -1565,8 +1783,14 @@ module Aws::DevOpsGuru
|
|
1565
1783
|
# resp.proactive_insights[0].prediction_time_range.end_time #=> Time
|
1566
1784
|
# resp.proactive_insights[0].resource_collection.cloud_formation.stack_names #=> Array
|
1567
1785
|
# resp.proactive_insights[0].resource_collection.cloud_formation.stack_names[0] #=> String
|
1786
|
+
# resp.proactive_insights[0].resource_collection.tags #=> Array
|
1787
|
+
# resp.proactive_insights[0].resource_collection.tags[0].app_boundary_key #=> String
|
1788
|
+
# resp.proactive_insights[0].resource_collection.tags[0].tag_values #=> Array
|
1789
|
+
# resp.proactive_insights[0].resource_collection.tags[0].tag_values[0] #=> String
|
1568
1790
|
# resp.proactive_insights[0].service_collection.service_names #=> Array
|
1569
1791
|
# resp.proactive_insights[0].service_collection.service_names[0] #=> String, one of "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"
|
1792
|
+
# resp.proactive_insights[0].associated_resource_arns #=> Array
|
1793
|
+
# resp.proactive_insights[0].associated_resource_arns[0] #=> String
|
1570
1794
|
# resp.reactive_insights #=> Array
|
1571
1795
|
# resp.reactive_insights[0].id #=> String
|
1572
1796
|
# resp.reactive_insights[0].name #=> String
|
@@ -1576,8 +1800,14 @@ module Aws::DevOpsGuru
|
|
1576
1800
|
# resp.reactive_insights[0].insight_time_range.end_time #=> Time
|
1577
1801
|
# resp.reactive_insights[0].resource_collection.cloud_formation.stack_names #=> Array
|
1578
1802
|
# resp.reactive_insights[0].resource_collection.cloud_formation.stack_names[0] #=> String
|
1803
|
+
# resp.reactive_insights[0].resource_collection.tags #=> Array
|
1804
|
+
# resp.reactive_insights[0].resource_collection.tags[0].app_boundary_key #=> String
|
1805
|
+
# resp.reactive_insights[0].resource_collection.tags[0].tag_values #=> Array
|
1806
|
+
# resp.reactive_insights[0].resource_collection.tags[0].tag_values[0] #=> String
|
1579
1807
|
# resp.reactive_insights[0].service_collection.service_names #=> Array
|
1580
1808
|
# resp.reactive_insights[0].service_collection.service_names[0] #=> String, one of "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"
|
1809
|
+
# resp.reactive_insights[0].associated_resource_arns #=> Array
|
1810
|
+
# resp.reactive_insights[0].associated_resource_arns[0] #=> String
|
1581
1811
|
# resp.next_token #=> String
|
1582
1812
|
#
|
1583
1813
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/SearchInsights AWS API Documentation
|
@@ -1645,6 +1875,12 @@ module Aws::DevOpsGuru
|
|
1645
1875
|
# cloud_formation: {
|
1646
1876
|
# stack_names: ["StackName"],
|
1647
1877
|
# },
|
1878
|
+
# tags: [
|
1879
|
+
# {
|
1880
|
+
# app_boundary_key: "AppBoundaryKey", # required
|
1881
|
+
# tag_values: ["TagValue"], # required
|
1882
|
+
# },
|
1883
|
+
# ],
|
1648
1884
|
# },
|
1649
1885
|
# service_collection: {
|
1650
1886
|
# 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
|
@@ -1668,8 +1904,14 @@ module Aws::DevOpsGuru
|
|
1668
1904
|
# resp.proactive_insights[0].prediction_time_range.end_time #=> Time
|
1669
1905
|
# resp.proactive_insights[0].resource_collection.cloud_formation.stack_names #=> Array
|
1670
1906
|
# resp.proactive_insights[0].resource_collection.cloud_formation.stack_names[0] #=> String
|
1907
|
+
# resp.proactive_insights[0].resource_collection.tags #=> Array
|
1908
|
+
# resp.proactive_insights[0].resource_collection.tags[0].app_boundary_key #=> String
|
1909
|
+
# resp.proactive_insights[0].resource_collection.tags[0].tag_values #=> Array
|
1910
|
+
# resp.proactive_insights[0].resource_collection.tags[0].tag_values[0] #=> String
|
1671
1911
|
# resp.proactive_insights[0].service_collection.service_names #=> Array
|
1672
1912
|
# resp.proactive_insights[0].service_collection.service_names[0] #=> String, one of "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"
|
1913
|
+
# resp.proactive_insights[0].associated_resource_arns #=> Array
|
1914
|
+
# resp.proactive_insights[0].associated_resource_arns[0] #=> String
|
1673
1915
|
# resp.reactive_insights #=> Array
|
1674
1916
|
# resp.reactive_insights[0].id #=> String
|
1675
1917
|
# resp.reactive_insights[0].name #=> String
|
@@ -1679,8 +1921,14 @@ module Aws::DevOpsGuru
|
|
1679
1921
|
# resp.reactive_insights[0].insight_time_range.end_time #=> Time
|
1680
1922
|
# resp.reactive_insights[0].resource_collection.cloud_formation.stack_names #=> Array
|
1681
1923
|
# resp.reactive_insights[0].resource_collection.cloud_formation.stack_names[0] #=> String
|
1924
|
+
# resp.reactive_insights[0].resource_collection.tags #=> Array
|
1925
|
+
# resp.reactive_insights[0].resource_collection.tags[0].app_boundary_key #=> String
|
1926
|
+
# resp.reactive_insights[0].resource_collection.tags[0].tag_values #=> Array
|
1927
|
+
# resp.reactive_insights[0].resource_collection.tags[0].tag_values[0] #=> String
|
1682
1928
|
# resp.reactive_insights[0].service_collection.service_names #=> Array
|
1683
1929
|
# resp.reactive_insights[0].service_collection.service_names[0] #=> String, one of "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"
|
1930
|
+
# resp.reactive_insights[0].associated_resource_arns #=> Array
|
1931
|
+
# resp.reactive_insights[0].associated_resource_arns[0] #=> String
|
1684
1932
|
# resp.next_token #=> String
|
1685
1933
|
#
|
1686
1934
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/SearchOrganizationInsights AWS API Documentation
|
@@ -1714,6 +1962,12 @@ module Aws::DevOpsGuru
|
|
1714
1962
|
# cloud_formation: {
|
1715
1963
|
# stack_names: ["StackName"],
|
1716
1964
|
# },
|
1965
|
+
# tags: [
|
1966
|
+
# {
|
1967
|
+
# app_boundary_key: "AppBoundaryKey", # required
|
1968
|
+
# tag_values: ["TagValue"], # required
|
1969
|
+
# },
|
1970
|
+
# ],
|
1717
1971
|
# },
|
1718
1972
|
# client_token: "ClientToken",
|
1719
1973
|
# })
|
@@ -1727,13 +1981,14 @@ module Aws::DevOpsGuru
|
|
1727
1981
|
req.send_request(options)
|
1728
1982
|
end
|
1729
1983
|
|
1730
|
-
# Updates the collection of resources that DevOps Guru analyzes. The
|
1731
|
-
#
|
1732
|
-
# Web Services CloudFormation stacks
|
1733
|
-
#
|
1734
|
-
#
|
1735
|
-
#
|
1736
|
-
#
|
1984
|
+
# Updates the collection of resources that DevOps Guru analyzes. The two
|
1985
|
+
# types of Amazon Web Services resource collections supported are Amazon
|
1986
|
+
# Web Services CloudFormation stacks and Amazon Web Services resources
|
1987
|
+
# that contain the same Amazon Web Services tag. DevOps Guru can be
|
1988
|
+
# configured to analyze the Amazon Web Services resources that are
|
1989
|
+
# defined in the stacks or that are tagged using the same tag *key*. You
|
1990
|
+
# can specify up to 500 Amazon Web Services CloudFormation stacks. This
|
1991
|
+
# method also creates the IAM role required for you to use DevOps Guru.
|
1737
1992
|
#
|
1738
1993
|
# @option params [required, String] :action
|
1739
1994
|
# Specifies if the resource collection in the request is added or
|
@@ -1753,6 +2008,12 @@ module Aws::DevOpsGuru
|
|
1753
2008
|
# cloud_formation: {
|
1754
2009
|
# stack_names: ["StackName"],
|
1755
2010
|
# },
|
2011
|
+
# tags: [
|
2012
|
+
# {
|
2013
|
+
# app_boundary_key: "AppBoundaryKey", # required
|
2014
|
+
# tag_values: ["TagValue"], # required
|
2015
|
+
# },
|
2016
|
+
# ],
|
1756
2017
|
# },
|
1757
2018
|
# })
|
1758
2019
|
#
|
@@ -1809,7 +2070,7 @@ module Aws::DevOpsGuru
|
|
1809
2070
|
params: params,
|
1810
2071
|
config: config)
|
1811
2072
|
context[:gem_name] = 'aws-sdk-devopsguru'
|
1812
|
-
context[:gem_version] = '1.
|
2073
|
+
context[:gem_version] = '1.19.0'
|
1813
2074
|
Seahorse::Client::Request.new(handlers, context)
|
1814
2075
|
end
|
1815
2076
|
|