aws-sdk-devopsguru 1.16.0 → 1.20.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 +294 -33
- 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,8 @@ 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'
|
31
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
30
32
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
31
33
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
32
34
|
|
@@ -73,6 +75,8 @@ module Aws::DevOpsGuru
|
|
73
75
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
74
76
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
77
|
add_plugin(Aws::Plugins::HttpChecksum)
|
78
|
+
add_plugin(Aws::Plugins::DefaultsMode)
|
79
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
76
80
|
add_plugin(Aws::Plugins::SignatureV4)
|
77
81
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
78
82
|
|
@@ -175,6 +179,10 @@ module Aws::DevOpsGuru
|
|
175
179
|
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
176
180
|
# a clock skew correction and retry requests with skewed client clocks.
|
177
181
|
#
|
182
|
+
# @option options [String] :defaults_mode ("legacy")
|
183
|
+
# See {Aws::DefaultsModeConfiguration} for a list of the
|
184
|
+
# accepted modes and the configuration defaults that are included.
|
185
|
+
#
|
178
186
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
179
187
|
# Set to true to disable SDK automatically adding host prefix
|
180
188
|
# to default service endpoint when available.
|
@@ -297,7 +305,7 @@ module Aws::DevOpsGuru
|
|
297
305
|
# seconds to wait when opening a HTTP session before raising a
|
298
306
|
# `Timeout::Error`.
|
299
307
|
#
|
300
|
-
# @option options [
|
308
|
+
# @option options [Float] :http_read_timeout (60) The default
|
301
309
|
# number of seconds to wait for response data. This value can
|
302
310
|
# safely be set per-request on the session.
|
303
311
|
#
|
@@ -313,6 +321,9 @@ module Aws::DevOpsGuru
|
|
313
321
|
# disables this behaviour. This value can safely be set per
|
314
322
|
# request on the session.
|
315
323
|
#
|
324
|
+
# @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
|
325
|
+
# in seconds.
|
326
|
+
#
|
316
327
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
317
328
|
# HTTP debug output will be sent to the `:logger`.
|
318
329
|
#
|
@@ -508,9 +519,39 @@ module Aws::DevOpsGuru
|
|
508
519
|
# resp.proactive_anomaly.source_details.cloud_watch_metrics[0].metric_data_summary.timestamp_metric_value_pair_list[0].timestamp #=> Time
|
509
520
|
# resp.proactive_anomaly.source_details.cloud_watch_metrics[0].metric_data_summary.timestamp_metric_value_pair_list[0].metric_value #=> Float
|
510
521
|
# resp.proactive_anomaly.source_details.cloud_watch_metrics[0].metric_data_summary.status_code #=> String, one of "Complete", "InternalError", "PartialData"
|
522
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics #=> Array
|
523
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics[0].metric_display_name #=> String
|
524
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics[0].unit #=> String
|
525
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics[0].metric_query.metric #=> String
|
526
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics[0].metric_query.group_by.group #=> String
|
527
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics[0].metric_query.group_by.dimensions #=> Array
|
528
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics[0].metric_query.group_by.dimensions[0] #=> String
|
529
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics[0].metric_query.group_by.limit #=> Integer
|
530
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics[0].metric_query.filter #=> Hash
|
531
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics[0].metric_query.filter["PerformanceInsightsMetricFilterKey"] #=> String
|
532
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics[0].reference_data #=> Array
|
533
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].name #=> String
|
534
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_scalar.value #=> Float
|
535
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.metric #=> String
|
536
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.group_by.group #=> String
|
537
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.group_by.dimensions #=> Array
|
538
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.group_by.dimensions[0] #=> String
|
539
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.group_by.limit #=> Integer
|
540
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.filter #=> Hash
|
541
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.filter["PerformanceInsightsMetricFilterKey"] #=> String
|
542
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics[0].stats_at_anomaly #=> Array
|
543
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics[0].stats_at_anomaly[0].type #=> String
|
544
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics[0].stats_at_anomaly[0].value #=> Float
|
545
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics[0].stats_at_baseline #=> Array
|
546
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics[0].stats_at_baseline[0].type #=> String
|
547
|
+
# resp.proactive_anomaly.source_details.performance_insights_metrics[0].stats_at_baseline[0].value #=> Float
|
511
548
|
# resp.proactive_anomaly.associated_insight_id #=> String
|
512
549
|
# resp.proactive_anomaly.resource_collection.cloud_formation.stack_names #=> Array
|
513
550
|
# resp.proactive_anomaly.resource_collection.cloud_formation.stack_names[0] #=> String
|
551
|
+
# resp.proactive_anomaly.resource_collection.tags #=> Array
|
552
|
+
# resp.proactive_anomaly.resource_collection.tags[0].app_boundary_key #=> String
|
553
|
+
# resp.proactive_anomaly.resource_collection.tags[0].tag_values #=> Array
|
554
|
+
# resp.proactive_anomaly.resource_collection.tags[0].tag_values[0] #=> String
|
514
555
|
# resp.proactive_anomaly.limit #=> Float
|
515
556
|
# resp.reactive_anomaly.id #=> String
|
516
557
|
# resp.reactive_anomaly.severity #=> String, one of "LOW", "MEDIUM", "HIGH"
|
@@ -532,9 +573,46 @@ module Aws::DevOpsGuru
|
|
532
573
|
# resp.reactive_anomaly.source_details.cloud_watch_metrics[0].metric_data_summary.timestamp_metric_value_pair_list[0].timestamp #=> Time
|
533
574
|
# resp.reactive_anomaly.source_details.cloud_watch_metrics[0].metric_data_summary.timestamp_metric_value_pair_list[0].metric_value #=> Float
|
534
575
|
# resp.reactive_anomaly.source_details.cloud_watch_metrics[0].metric_data_summary.status_code #=> String, one of "Complete", "InternalError", "PartialData"
|
576
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics #=> Array
|
577
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics[0].metric_display_name #=> String
|
578
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics[0].unit #=> String
|
579
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics[0].metric_query.metric #=> String
|
580
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics[0].metric_query.group_by.group #=> String
|
581
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics[0].metric_query.group_by.dimensions #=> Array
|
582
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics[0].metric_query.group_by.dimensions[0] #=> String
|
583
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics[0].metric_query.group_by.limit #=> Integer
|
584
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics[0].metric_query.filter #=> Hash
|
585
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics[0].metric_query.filter["PerformanceInsightsMetricFilterKey"] #=> String
|
586
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics[0].reference_data #=> Array
|
587
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].name #=> String
|
588
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_scalar.value #=> Float
|
589
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.metric #=> String
|
590
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.group_by.group #=> String
|
591
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.group_by.dimensions #=> Array
|
592
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.group_by.dimensions[0] #=> String
|
593
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.group_by.limit #=> Integer
|
594
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.filter #=> Hash
|
595
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.filter["PerformanceInsightsMetricFilterKey"] #=> String
|
596
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics[0].stats_at_anomaly #=> Array
|
597
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics[0].stats_at_anomaly[0].type #=> String
|
598
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics[0].stats_at_anomaly[0].value #=> Float
|
599
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics[0].stats_at_baseline #=> Array
|
600
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics[0].stats_at_baseline[0].type #=> String
|
601
|
+
# resp.reactive_anomaly.source_details.performance_insights_metrics[0].stats_at_baseline[0].value #=> Float
|
535
602
|
# resp.reactive_anomaly.associated_insight_id #=> String
|
536
603
|
# resp.reactive_anomaly.resource_collection.cloud_formation.stack_names #=> Array
|
537
604
|
# resp.reactive_anomaly.resource_collection.cloud_formation.stack_names[0] #=> String
|
605
|
+
# resp.reactive_anomaly.resource_collection.tags #=> Array
|
606
|
+
# resp.reactive_anomaly.resource_collection.tags[0].app_boundary_key #=> String
|
607
|
+
# resp.reactive_anomaly.resource_collection.tags[0].tag_values #=> Array
|
608
|
+
# resp.reactive_anomaly.resource_collection.tags[0].tag_values[0] #=> String
|
609
|
+
# resp.reactive_anomaly.type #=> String, one of "CAUSAL", "CONTEXTUAL"
|
610
|
+
# resp.reactive_anomaly.name #=> String
|
611
|
+
# resp.reactive_anomaly.description #=> String
|
612
|
+
# resp.reactive_anomaly.causal_anomaly_id #=> String
|
613
|
+
# resp.reactive_anomaly.anomaly_resources #=> Array
|
614
|
+
# resp.reactive_anomaly.anomaly_resources[0].name #=> String
|
615
|
+
# resp.reactive_anomaly.anomaly_resources[0].type #=> String
|
538
616
|
#
|
539
617
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/DescribeAnomaly AWS API Documentation
|
540
618
|
#
|
@@ -607,6 +685,10 @@ module Aws::DevOpsGuru
|
|
607
685
|
# resp.proactive_insight.prediction_time_range.end_time #=> Time
|
608
686
|
# resp.proactive_insight.resource_collection.cloud_formation.stack_names #=> Array
|
609
687
|
# resp.proactive_insight.resource_collection.cloud_formation.stack_names[0] #=> String
|
688
|
+
# resp.proactive_insight.resource_collection.tags #=> Array
|
689
|
+
# resp.proactive_insight.resource_collection.tags[0].app_boundary_key #=> String
|
690
|
+
# resp.proactive_insight.resource_collection.tags[0].tag_values #=> Array
|
691
|
+
# resp.proactive_insight.resource_collection.tags[0].tag_values[0] #=> String
|
610
692
|
# resp.proactive_insight.ssm_ops_item_id #=> String
|
611
693
|
# resp.reactive_insight.id #=> String
|
612
694
|
# resp.reactive_insight.name #=> String
|
@@ -616,6 +698,10 @@ module Aws::DevOpsGuru
|
|
616
698
|
# resp.reactive_insight.insight_time_range.end_time #=> Time
|
617
699
|
# resp.reactive_insight.resource_collection.cloud_formation.stack_names #=> Array
|
618
700
|
# resp.reactive_insight.resource_collection.cloud_formation.stack_names[0] #=> String
|
701
|
+
# resp.reactive_insight.resource_collection.tags #=> Array
|
702
|
+
# resp.reactive_insight.resource_collection.tags[0].app_boundary_key #=> String
|
703
|
+
# resp.reactive_insight.resource_collection.tags[0].tag_values #=> Array
|
704
|
+
# resp.reactive_insight.resource_collection.tags[0].tag_values[0] #=> String
|
619
705
|
# resp.reactive_insight.ssm_ops_item_id #=> String
|
620
706
|
#
|
621
707
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/DescribeInsight AWS API Documentation
|
@@ -721,12 +807,13 @@ module Aws::DevOpsGuru
|
|
721
807
|
#
|
722
808
|
# @option params [required, String] :organization_resource_collection_type
|
723
809
|
# An Amazon Web Services resource collection type. This type specifies
|
724
|
-
# how analyzed Amazon Web Services resources are defined. The
|
725
|
-
# of Amazon Web Services resource
|
726
|
-
# Services CloudFormation stacks
|
727
|
-
#
|
728
|
-
#
|
729
|
-
# stacks
|
810
|
+
# how analyzed Amazon Web Services resources are defined. The two types
|
811
|
+
# of Amazon Web Services resource collections supported are Amazon Web
|
812
|
+
# Services CloudFormation stacks and Amazon Web Services resources that
|
813
|
+
# contain the same Amazon Web Services tag. DevOps Guru can be
|
814
|
+
# configured to analyze the Amazon Web Services resources that are
|
815
|
+
# defined in the stacks or that are tagged using the same tag *key*. You
|
816
|
+
# can specify up to 500 Amazon Web Services CloudFormation stacks.
|
730
817
|
#
|
731
818
|
# @option params [Array<String>] :account_ids
|
732
819
|
# The ID of the Amazon Web Services account.
|
@@ -749,13 +836,14 @@ module Aws::DevOpsGuru
|
|
749
836
|
# * {Types::DescribeOrganizationResourceCollectionHealthResponse#service #service} => Array<Types::ServiceHealth>
|
750
837
|
# * {Types::DescribeOrganizationResourceCollectionHealthResponse#account #account} => Array<Types::AccountHealth>
|
751
838
|
# * {Types::DescribeOrganizationResourceCollectionHealthResponse#next_token #next_token} => String
|
839
|
+
# * {Types::DescribeOrganizationResourceCollectionHealthResponse#tags #tags} => Array<Types::TagHealth>
|
752
840
|
#
|
753
841
|
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
754
842
|
#
|
755
843
|
# @example Request syntax with placeholder values
|
756
844
|
#
|
757
845
|
# resp = client.describe_organization_resource_collection_health({
|
758
|
-
# organization_resource_collection_type: "AWS_CLOUD_FORMATION", # required, accepts AWS_CLOUD_FORMATION, AWS_SERVICE, AWS_ACCOUNT
|
846
|
+
# organization_resource_collection_type: "AWS_CLOUD_FORMATION", # required, accepts AWS_CLOUD_FORMATION, AWS_SERVICE, AWS_ACCOUNT, AWS_TAGS
|
759
847
|
# account_ids: ["AwsAccountId"],
|
760
848
|
# organizational_unit_ids: ["OrganizationalUnitId"],
|
761
849
|
# next_token: "UuidNextToken",
|
@@ -778,6 +866,12 @@ module Aws::DevOpsGuru
|
|
778
866
|
# resp.account[0].insight.open_proactive_insights #=> Integer
|
779
867
|
# resp.account[0].insight.open_reactive_insights #=> Integer
|
780
868
|
# resp.next_token #=> String
|
869
|
+
# resp.tags #=> Array
|
870
|
+
# resp.tags[0].app_boundary_key #=> String
|
871
|
+
# resp.tags[0].tag_value #=> String
|
872
|
+
# resp.tags[0].insight.open_proactive_insights #=> Integer
|
873
|
+
# resp.tags[0].insight.open_reactive_insights #=> Integer
|
874
|
+
# resp.tags[0].insight.mean_time_to_recover_in_milliseconds #=> Integer
|
781
875
|
#
|
782
876
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/DescribeOrganizationResourceCollectionHealth AWS API Documentation
|
783
877
|
#
|
@@ -791,20 +885,23 @@ module Aws::DevOpsGuru
|
|
791
885
|
# Returns the number of open proactive insights, open reactive insights,
|
792
886
|
# and the Mean Time to Recover (MTTR) for all closed insights in
|
793
887
|
# resource collections in your account. You specify the type of Amazon
|
794
|
-
# Web Services resources collection. The
|
795
|
-
# resource
|
796
|
-
# stacks
|
797
|
-
#
|
888
|
+
# Web Services resources collection. The two types of Amazon Web
|
889
|
+
# Services resource collections supported are Amazon Web Services
|
890
|
+
# CloudFormation stacks and Amazon Web Services resources that contain
|
891
|
+
# the same Amazon Web Services tag. DevOps Guru can be configured to
|
892
|
+
# analyze the Amazon Web Services resources that are defined in the
|
893
|
+
# stacks or that are tagged using the same tag *key*. You can specify up
|
798
894
|
# to 500 Amazon Web Services CloudFormation stacks.
|
799
895
|
#
|
800
896
|
# @option params [required, String] :resource_collection_type
|
801
897
|
# An Amazon Web Services resource collection type. This type specifies
|
802
|
-
# how analyzed Amazon Web Services resources are defined. The
|
803
|
-
# of Amazon Web Services resource
|
804
|
-
# Services CloudFormation stacks
|
805
|
-
#
|
806
|
-
#
|
807
|
-
# stacks
|
898
|
+
# how analyzed Amazon Web Services resources are defined. The two types
|
899
|
+
# of Amazon Web Services resource collections supported are Amazon Web
|
900
|
+
# Services CloudFormation stacks and Amazon Web Services resources that
|
901
|
+
# contain the same Amazon Web Services tag. DevOps Guru can be
|
902
|
+
# configured to analyze the Amazon Web Services resources that are
|
903
|
+
# defined in the stacks or that are tagged using the same tag *key*. You
|
904
|
+
# can specify up to 500 Amazon Web Services CloudFormation stacks.
|
808
905
|
#
|
809
906
|
# @option params [String] :next_token
|
810
907
|
# The pagination token to use to retrieve the next page of results for
|
@@ -815,13 +912,14 @@ module Aws::DevOpsGuru
|
|
815
912
|
# * {Types::DescribeResourceCollectionHealthResponse#cloud_formation #cloud_formation} => Array<Types::CloudFormationHealth>
|
816
913
|
# * {Types::DescribeResourceCollectionHealthResponse#service #service} => Array<Types::ServiceHealth>
|
817
914
|
# * {Types::DescribeResourceCollectionHealthResponse#next_token #next_token} => String
|
915
|
+
# * {Types::DescribeResourceCollectionHealthResponse#tags #tags} => Array<Types::TagHealth>
|
818
916
|
#
|
819
917
|
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
820
918
|
#
|
821
919
|
# @example Request syntax with placeholder values
|
822
920
|
#
|
823
921
|
# resp = client.describe_resource_collection_health({
|
824
|
-
# resource_collection_type: "AWS_CLOUD_FORMATION", # required, accepts AWS_CLOUD_FORMATION, AWS_SERVICE
|
922
|
+
# resource_collection_type: "AWS_CLOUD_FORMATION", # required, accepts AWS_CLOUD_FORMATION, AWS_SERVICE, AWS_TAGS
|
825
923
|
# next_token: "UuidNextToken",
|
826
924
|
# })
|
827
925
|
#
|
@@ -837,6 +935,12 @@ module Aws::DevOpsGuru
|
|
837
935
|
# resp.service[0].insight.open_proactive_insights #=> Integer
|
838
936
|
# resp.service[0].insight.open_reactive_insights #=> Integer
|
839
937
|
# resp.next_token #=> String
|
938
|
+
# resp.tags #=> Array
|
939
|
+
# resp.tags[0].app_boundary_key #=> String
|
940
|
+
# resp.tags[0].tag_value #=> String
|
941
|
+
# resp.tags[0].insight.open_proactive_insights #=> Integer
|
942
|
+
# resp.tags[0].insight.open_reactive_insights #=> Integer
|
943
|
+
# resp.tags[0].insight.mean_time_to_recover_in_milliseconds #=> Integer
|
840
944
|
#
|
841
945
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/DescribeResourceCollectionHealth AWS API Documentation
|
842
946
|
#
|
@@ -904,6 +1008,10 @@ module Aws::DevOpsGuru
|
|
904
1008
|
#
|
905
1009
|
# resp.resource_collection.cloud_formation.stack_names #=> Array
|
906
1010
|
# resp.resource_collection.cloud_formation.stack_names[0] #=> String
|
1011
|
+
# resp.resource_collection.tags #=> Array
|
1012
|
+
# resp.resource_collection.tags[0].app_boundary_key #=> String
|
1013
|
+
# resp.resource_collection.tags[0].tag_values #=> Array
|
1014
|
+
# resp.resource_collection.tags[0].tag_values[0] #=> String
|
907
1015
|
# resp.status #=> String, one of "ONGOING", "COMPLETED"
|
908
1016
|
# resp.costs #=> Array
|
909
1017
|
# resp.costs[0].type #=> String
|
@@ -926,11 +1034,13 @@ module Aws::DevOpsGuru
|
|
926
1034
|
end
|
927
1035
|
|
928
1036
|
# Returns lists Amazon Web Services resources that are of the specified
|
929
|
-
# resource collection type. The
|
930
|
-
#
|
931
|
-
#
|
932
|
-
#
|
933
|
-
#
|
1037
|
+
# resource collection type. The two types of Amazon Web Services
|
1038
|
+
# resource collections supported are Amazon Web Services CloudFormation
|
1039
|
+
# stacks and Amazon Web Services resources that contain the same Amazon
|
1040
|
+
# Web Services tag. DevOps Guru can be configured to analyze the Amazon
|
1041
|
+
# Web Services resources that are defined in the stacks or that are
|
1042
|
+
# tagged using the same tag *key*. You can specify up to 500 Amazon Web
|
1043
|
+
# Services CloudFormation stacks.
|
934
1044
|
#
|
935
1045
|
# @option params [required, String] :resource_collection_type
|
936
1046
|
# The type of Amazon Web Services resource collections to return. The
|
@@ -951,7 +1061,7 @@ module Aws::DevOpsGuru
|
|
951
1061
|
# @example Request syntax with placeholder values
|
952
1062
|
#
|
953
1063
|
# resp = client.get_resource_collection({
|
954
|
-
# resource_collection_type: "AWS_CLOUD_FORMATION", # required, accepts AWS_CLOUD_FORMATION, AWS_SERVICE
|
1064
|
+
# resource_collection_type: "AWS_CLOUD_FORMATION", # required, accepts AWS_CLOUD_FORMATION, AWS_SERVICE, AWS_TAGS
|
955
1065
|
# next_token: "UuidNextToken",
|
956
1066
|
# })
|
957
1067
|
#
|
@@ -959,6 +1069,10 @@ module Aws::DevOpsGuru
|
|
959
1069
|
#
|
960
1070
|
# resp.resource_collection.cloud_formation.stack_names #=> Array
|
961
1071
|
# resp.resource_collection.cloud_formation.stack_names[0] #=> String
|
1072
|
+
# resp.resource_collection.tags #=> Array
|
1073
|
+
# resp.resource_collection.tags[0].app_boundary_key #=> String
|
1074
|
+
# resp.resource_collection.tags[0].tag_values #=> Array
|
1075
|
+
# resp.resource_collection.tags[0].tag_values[0] #=> String
|
962
1076
|
# resp.next_token #=> String
|
963
1077
|
#
|
964
1078
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/GetResourceCollection AWS API Documentation
|
@@ -1039,9 +1153,39 @@ module Aws::DevOpsGuru
|
|
1039
1153
|
# resp.proactive_anomalies[0].source_details.cloud_watch_metrics[0].metric_data_summary.timestamp_metric_value_pair_list[0].timestamp #=> Time
|
1040
1154
|
# resp.proactive_anomalies[0].source_details.cloud_watch_metrics[0].metric_data_summary.timestamp_metric_value_pair_list[0].metric_value #=> Float
|
1041
1155
|
# resp.proactive_anomalies[0].source_details.cloud_watch_metrics[0].metric_data_summary.status_code #=> String, one of "Complete", "InternalError", "PartialData"
|
1156
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics #=> Array
|
1157
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].metric_display_name #=> String
|
1158
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].unit #=> String
|
1159
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].metric_query.metric #=> String
|
1160
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].metric_query.group_by.group #=> String
|
1161
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].metric_query.group_by.dimensions #=> Array
|
1162
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].metric_query.group_by.dimensions[0] #=> String
|
1163
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].metric_query.group_by.limit #=> Integer
|
1164
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].metric_query.filter #=> Hash
|
1165
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].metric_query.filter["PerformanceInsightsMetricFilterKey"] #=> String
|
1166
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data #=> Array
|
1167
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].name #=> String
|
1168
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_scalar.value #=> Float
|
1169
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.metric #=> String
|
1170
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.group_by.group #=> String
|
1171
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.group_by.dimensions #=> Array
|
1172
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.group_by.dimensions[0] #=> String
|
1173
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.group_by.limit #=> Integer
|
1174
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.filter #=> Hash
|
1175
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.filter["PerformanceInsightsMetricFilterKey"] #=> String
|
1176
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].stats_at_anomaly #=> Array
|
1177
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].stats_at_anomaly[0].type #=> String
|
1178
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].stats_at_anomaly[0].value #=> Float
|
1179
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].stats_at_baseline #=> Array
|
1180
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].stats_at_baseline[0].type #=> String
|
1181
|
+
# resp.proactive_anomalies[0].source_details.performance_insights_metrics[0].stats_at_baseline[0].value #=> Float
|
1042
1182
|
# resp.proactive_anomalies[0].associated_insight_id #=> String
|
1043
1183
|
# resp.proactive_anomalies[0].resource_collection.cloud_formation.stack_names #=> Array
|
1044
1184
|
# resp.proactive_anomalies[0].resource_collection.cloud_formation.stack_names[0] #=> String
|
1185
|
+
# resp.proactive_anomalies[0].resource_collection.tags #=> Array
|
1186
|
+
# resp.proactive_anomalies[0].resource_collection.tags[0].app_boundary_key #=> String
|
1187
|
+
# resp.proactive_anomalies[0].resource_collection.tags[0].tag_values #=> Array
|
1188
|
+
# resp.proactive_anomalies[0].resource_collection.tags[0].tag_values[0] #=> String
|
1045
1189
|
# resp.proactive_anomalies[0].limit #=> Float
|
1046
1190
|
# resp.reactive_anomalies #=> Array
|
1047
1191
|
# resp.reactive_anomalies[0].id #=> String
|
@@ -1064,9 +1208,46 @@ module Aws::DevOpsGuru
|
|
1064
1208
|
# resp.reactive_anomalies[0].source_details.cloud_watch_metrics[0].metric_data_summary.timestamp_metric_value_pair_list[0].timestamp #=> Time
|
1065
1209
|
# resp.reactive_anomalies[0].source_details.cloud_watch_metrics[0].metric_data_summary.timestamp_metric_value_pair_list[0].metric_value #=> Float
|
1066
1210
|
# resp.reactive_anomalies[0].source_details.cloud_watch_metrics[0].metric_data_summary.status_code #=> String, one of "Complete", "InternalError", "PartialData"
|
1211
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics #=> Array
|
1212
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].metric_display_name #=> String
|
1213
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].unit #=> String
|
1214
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].metric_query.metric #=> String
|
1215
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].metric_query.group_by.group #=> String
|
1216
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].metric_query.group_by.dimensions #=> Array
|
1217
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].metric_query.group_by.dimensions[0] #=> String
|
1218
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].metric_query.group_by.limit #=> Integer
|
1219
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].metric_query.filter #=> Hash
|
1220
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].metric_query.filter["PerformanceInsightsMetricFilterKey"] #=> String
|
1221
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data #=> Array
|
1222
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].name #=> String
|
1223
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_scalar.value #=> Float
|
1224
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.metric #=> String
|
1225
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.group_by.group #=> String
|
1226
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.group_by.dimensions #=> Array
|
1227
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.group_by.dimensions[0] #=> String
|
1228
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.group_by.limit #=> Integer
|
1229
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.filter #=> Hash
|
1230
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].reference_data[0].comparison_values.reference_metric.metric_query.filter["PerformanceInsightsMetricFilterKey"] #=> String
|
1231
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].stats_at_anomaly #=> Array
|
1232
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].stats_at_anomaly[0].type #=> String
|
1233
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].stats_at_anomaly[0].value #=> Float
|
1234
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].stats_at_baseline #=> Array
|
1235
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].stats_at_baseline[0].type #=> String
|
1236
|
+
# resp.reactive_anomalies[0].source_details.performance_insights_metrics[0].stats_at_baseline[0].value #=> Float
|
1067
1237
|
# resp.reactive_anomalies[0].associated_insight_id #=> String
|
1068
1238
|
# resp.reactive_anomalies[0].resource_collection.cloud_formation.stack_names #=> Array
|
1069
1239
|
# resp.reactive_anomalies[0].resource_collection.cloud_formation.stack_names[0] #=> String
|
1240
|
+
# resp.reactive_anomalies[0].resource_collection.tags #=> Array
|
1241
|
+
# resp.reactive_anomalies[0].resource_collection.tags[0].app_boundary_key #=> String
|
1242
|
+
# resp.reactive_anomalies[0].resource_collection.tags[0].tag_values #=> Array
|
1243
|
+
# resp.reactive_anomalies[0].resource_collection.tags[0].tag_values[0] #=> String
|
1244
|
+
# resp.reactive_anomalies[0].type #=> String, one of "CAUSAL", "CONTEXTUAL"
|
1245
|
+
# resp.reactive_anomalies[0].name #=> String
|
1246
|
+
# resp.reactive_anomalies[0].description #=> String
|
1247
|
+
# resp.reactive_anomalies[0].causal_anomaly_id #=> String
|
1248
|
+
# resp.reactive_anomalies[0].anomaly_resources #=> Array
|
1249
|
+
# resp.reactive_anomalies[0].anomaly_resources[0].name #=> String
|
1250
|
+
# resp.reactive_anomalies[0].anomaly_resources[0].type #=> String
|
1070
1251
|
# resp.next_token #=> String
|
1071
1252
|
#
|
1072
1253
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ListAnomaliesForInsight AWS API Documentation
|
@@ -1120,6 +1301,12 @@ module Aws::DevOpsGuru
|
|
1120
1301
|
# cloud_formation: {
|
1121
1302
|
# stack_names: ["StackName"],
|
1122
1303
|
# },
|
1304
|
+
# tags: [
|
1305
|
+
# {
|
1306
|
+
# app_boundary_key: "AppBoundaryKey", # required
|
1307
|
+
# tag_values: ["TagValue"], # required
|
1308
|
+
# },
|
1309
|
+
# ],
|
1123
1310
|
# },
|
1124
1311
|
# },
|
1125
1312
|
# max_results: 1,
|
@@ -1132,6 +1319,10 @@ module Aws::DevOpsGuru
|
|
1132
1319
|
# resp.events #=> Array
|
1133
1320
|
# resp.events[0].resource_collection.cloud_formation.stack_names #=> Array
|
1134
1321
|
# resp.events[0].resource_collection.cloud_formation.stack_names[0] #=> String
|
1322
|
+
# resp.events[0].resource_collection.tags #=> Array
|
1323
|
+
# resp.events[0].resource_collection.tags[0].app_boundary_key #=> String
|
1324
|
+
# resp.events[0].resource_collection.tags[0].tag_values #=> Array
|
1325
|
+
# resp.events[0].resource_collection.tags[0].tag_values[0] #=> String
|
1135
1326
|
# resp.events[0].id #=> String
|
1136
1327
|
# resp.events[0].time #=> Time
|
1137
1328
|
# resp.events[0].event_source #=> String
|
@@ -1217,8 +1408,14 @@ module Aws::DevOpsGuru
|
|
1217
1408
|
# resp.proactive_insights[0].prediction_time_range.end_time #=> Time
|
1218
1409
|
# resp.proactive_insights[0].resource_collection.cloud_formation.stack_names #=> Array
|
1219
1410
|
# resp.proactive_insights[0].resource_collection.cloud_formation.stack_names[0] #=> String
|
1411
|
+
# resp.proactive_insights[0].resource_collection.tags #=> Array
|
1412
|
+
# resp.proactive_insights[0].resource_collection.tags[0].app_boundary_key #=> String
|
1413
|
+
# resp.proactive_insights[0].resource_collection.tags[0].tag_values #=> Array
|
1414
|
+
# resp.proactive_insights[0].resource_collection.tags[0].tag_values[0] #=> String
|
1220
1415
|
# resp.proactive_insights[0].service_collection.service_names #=> Array
|
1221
1416
|
# 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"
|
1417
|
+
# resp.proactive_insights[0].associated_resource_arns #=> Array
|
1418
|
+
# resp.proactive_insights[0].associated_resource_arns[0] #=> String
|
1222
1419
|
# resp.reactive_insights #=> Array
|
1223
1420
|
# resp.reactive_insights[0].id #=> String
|
1224
1421
|
# resp.reactive_insights[0].name #=> String
|
@@ -1228,8 +1425,14 @@ module Aws::DevOpsGuru
|
|
1228
1425
|
# resp.reactive_insights[0].insight_time_range.end_time #=> Time
|
1229
1426
|
# resp.reactive_insights[0].resource_collection.cloud_formation.stack_names #=> Array
|
1230
1427
|
# resp.reactive_insights[0].resource_collection.cloud_formation.stack_names[0] #=> String
|
1428
|
+
# resp.reactive_insights[0].resource_collection.tags #=> Array
|
1429
|
+
# resp.reactive_insights[0].resource_collection.tags[0].app_boundary_key #=> String
|
1430
|
+
# resp.reactive_insights[0].resource_collection.tags[0].tag_values #=> Array
|
1431
|
+
# resp.reactive_insights[0].resource_collection.tags[0].tag_values[0] #=> String
|
1231
1432
|
# resp.reactive_insights[0].service_collection.service_names #=> Array
|
1232
1433
|
# 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"
|
1434
|
+
# resp.reactive_insights[0].associated_resource_arns #=> Array
|
1435
|
+
# resp.reactive_insights[0].associated_resource_arns[0] #=> String
|
1233
1436
|
# resp.next_token #=> String
|
1234
1437
|
#
|
1235
1438
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ListInsights AWS API Documentation
|
@@ -1351,6 +1554,10 @@ module Aws::DevOpsGuru
|
|
1351
1554
|
# resp.proactive_insights[0].prediction_time_range.end_time #=> Time
|
1352
1555
|
# resp.proactive_insights[0].resource_collection.cloud_formation.stack_names #=> Array
|
1353
1556
|
# resp.proactive_insights[0].resource_collection.cloud_formation.stack_names[0] #=> String
|
1557
|
+
# resp.proactive_insights[0].resource_collection.tags #=> Array
|
1558
|
+
# resp.proactive_insights[0].resource_collection.tags[0].app_boundary_key #=> String
|
1559
|
+
# resp.proactive_insights[0].resource_collection.tags[0].tag_values #=> Array
|
1560
|
+
# resp.proactive_insights[0].resource_collection.tags[0].tag_values[0] #=> String
|
1354
1561
|
# resp.proactive_insights[0].service_collection.service_names #=> Array
|
1355
1562
|
# 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"
|
1356
1563
|
# resp.reactive_insights #=> Array
|
@@ -1364,6 +1571,10 @@ module Aws::DevOpsGuru
|
|
1364
1571
|
# resp.reactive_insights[0].insight_time_range.end_time #=> Time
|
1365
1572
|
# resp.reactive_insights[0].resource_collection.cloud_formation.stack_names #=> Array
|
1366
1573
|
# resp.reactive_insights[0].resource_collection.cloud_formation.stack_names[0] #=> String
|
1574
|
+
# resp.reactive_insights[0].resource_collection.tags #=> Array
|
1575
|
+
# resp.reactive_insights[0].resource_collection.tags[0].app_boundary_key #=> String
|
1576
|
+
# resp.reactive_insights[0].resource_collection.tags[0].tag_values #=> Array
|
1577
|
+
# resp.reactive_insights[0].resource_collection.tags[0].tag_values[0] #=> String
|
1367
1578
|
# resp.reactive_insights[0].service_collection.service_names #=> Array
|
1368
1579
|
# 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"
|
1369
1580
|
# resp.next_token #=> String
|
@@ -1430,6 +1641,7 @@ module Aws::DevOpsGuru
|
|
1430
1641
|
# resp.recommendations[0].related_anomalies[0].source_details[0].cloud_watch_metrics #=> Array
|
1431
1642
|
# resp.recommendations[0].related_anomalies[0].source_details[0].cloud_watch_metrics[0].metric_name #=> String
|
1432
1643
|
# resp.recommendations[0].related_anomalies[0].source_details[0].cloud_watch_metrics[0].namespace #=> String
|
1644
|
+
# resp.recommendations[0].related_anomalies[0].anomaly_id #=> String
|
1433
1645
|
# resp.next_token #=> String
|
1434
1646
|
#
|
1435
1647
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ListRecommendations AWS API Documentation
|
@@ -1544,6 +1756,12 @@ module Aws::DevOpsGuru
|
|
1544
1756
|
# cloud_formation: {
|
1545
1757
|
# stack_names: ["StackName"],
|
1546
1758
|
# },
|
1759
|
+
# tags: [
|
1760
|
+
# {
|
1761
|
+
# app_boundary_key: "AppBoundaryKey", # required
|
1762
|
+
# tag_values: ["TagValue"], # required
|
1763
|
+
# },
|
1764
|
+
# ],
|
1547
1765
|
# },
|
1548
1766
|
# service_collection: {
|
1549
1767
|
# 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
|
@@ -1567,8 +1785,14 @@ module Aws::DevOpsGuru
|
|
1567
1785
|
# resp.proactive_insights[0].prediction_time_range.end_time #=> Time
|
1568
1786
|
# resp.proactive_insights[0].resource_collection.cloud_formation.stack_names #=> Array
|
1569
1787
|
# resp.proactive_insights[0].resource_collection.cloud_formation.stack_names[0] #=> String
|
1788
|
+
# resp.proactive_insights[0].resource_collection.tags #=> Array
|
1789
|
+
# resp.proactive_insights[0].resource_collection.tags[0].app_boundary_key #=> String
|
1790
|
+
# resp.proactive_insights[0].resource_collection.tags[0].tag_values #=> Array
|
1791
|
+
# resp.proactive_insights[0].resource_collection.tags[0].tag_values[0] #=> String
|
1570
1792
|
# resp.proactive_insights[0].service_collection.service_names #=> Array
|
1571
1793
|
# 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"
|
1794
|
+
# resp.proactive_insights[0].associated_resource_arns #=> Array
|
1795
|
+
# resp.proactive_insights[0].associated_resource_arns[0] #=> String
|
1572
1796
|
# resp.reactive_insights #=> Array
|
1573
1797
|
# resp.reactive_insights[0].id #=> String
|
1574
1798
|
# resp.reactive_insights[0].name #=> String
|
@@ -1578,8 +1802,14 @@ module Aws::DevOpsGuru
|
|
1578
1802
|
# resp.reactive_insights[0].insight_time_range.end_time #=> Time
|
1579
1803
|
# resp.reactive_insights[0].resource_collection.cloud_formation.stack_names #=> Array
|
1580
1804
|
# resp.reactive_insights[0].resource_collection.cloud_formation.stack_names[0] #=> String
|
1805
|
+
# resp.reactive_insights[0].resource_collection.tags #=> Array
|
1806
|
+
# resp.reactive_insights[0].resource_collection.tags[0].app_boundary_key #=> String
|
1807
|
+
# resp.reactive_insights[0].resource_collection.tags[0].tag_values #=> Array
|
1808
|
+
# resp.reactive_insights[0].resource_collection.tags[0].tag_values[0] #=> String
|
1581
1809
|
# resp.reactive_insights[0].service_collection.service_names #=> Array
|
1582
1810
|
# 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"
|
1811
|
+
# resp.reactive_insights[0].associated_resource_arns #=> Array
|
1812
|
+
# resp.reactive_insights[0].associated_resource_arns[0] #=> String
|
1583
1813
|
# resp.next_token #=> String
|
1584
1814
|
#
|
1585
1815
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/SearchInsights AWS API Documentation
|
@@ -1647,6 +1877,12 @@ module Aws::DevOpsGuru
|
|
1647
1877
|
# cloud_formation: {
|
1648
1878
|
# stack_names: ["StackName"],
|
1649
1879
|
# },
|
1880
|
+
# tags: [
|
1881
|
+
# {
|
1882
|
+
# app_boundary_key: "AppBoundaryKey", # required
|
1883
|
+
# tag_values: ["TagValue"], # required
|
1884
|
+
# },
|
1885
|
+
# ],
|
1650
1886
|
# },
|
1651
1887
|
# service_collection: {
|
1652
1888
|
# 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
|
@@ -1670,8 +1906,14 @@ module Aws::DevOpsGuru
|
|
1670
1906
|
# resp.proactive_insights[0].prediction_time_range.end_time #=> Time
|
1671
1907
|
# resp.proactive_insights[0].resource_collection.cloud_formation.stack_names #=> Array
|
1672
1908
|
# resp.proactive_insights[0].resource_collection.cloud_formation.stack_names[0] #=> String
|
1909
|
+
# resp.proactive_insights[0].resource_collection.tags #=> Array
|
1910
|
+
# resp.proactive_insights[0].resource_collection.tags[0].app_boundary_key #=> String
|
1911
|
+
# resp.proactive_insights[0].resource_collection.tags[0].tag_values #=> Array
|
1912
|
+
# resp.proactive_insights[0].resource_collection.tags[0].tag_values[0] #=> String
|
1673
1913
|
# resp.proactive_insights[0].service_collection.service_names #=> Array
|
1674
1914
|
# 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"
|
1915
|
+
# resp.proactive_insights[0].associated_resource_arns #=> Array
|
1916
|
+
# resp.proactive_insights[0].associated_resource_arns[0] #=> String
|
1675
1917
|
# resp.reactive_insights #=> Array
|
1676
1918
|
# resp.reactive_insights[0].id #=> String
|
1677
1919
|
# resp.reactive_insights[0].name #=> String
|
@@ -1681,8 +1923,14 @@ module Aws::DevOpsGuru
|
|
1681
1923
|
# resp.reactive_insights[0].insight_time_range.end_time #=> Time
|
1682
1924
|
# resp.reactive_insights[0].resource_collection.cloud_formation.stack_names #=> Array
|
1683
1925
|
# resp.reactive_insights[0].resource_collection.cloud_formation.stack_names[0] #=> String
|
1926
|
+
# resp.reactive_insights[0].resource_collection.tags #=> Array
|
1927
|
+
# resp.reactive_insights[0].resource_collection.tags[0].app_boundary_key #=> String
|
1928
|
+
# resp.reactive_insights[0].resource_collection.tags[0].tag_values #=> Array
|
1929
|
+
# resp.reactive_insights[0].resource_collection.tags[0].tag_values[0] #=> String
|
1684
1930
|
# resp.reactive_insights[0].service_collection.service_names #=> Array
|
1685
1931
|
# 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"
|
1932
|
+
# resp.reactive_insights[0].associated_resource_arns #=> Array
|
1933
|
+
# resp.reactive_insights[0].associated_resource_arns[0] #=> String
|
1686
1934
|
# resp.next_token #=> String
|
1687
1935
|
#
|
1688
1936
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/SearchOrganizationInsights AWS API Documentation
|
@@ -1716,6 +1964,12 @@ module Aws::DevOpsGuru
|
|
1716
1964
|
# cloud_formation: {
|
1717
1965
|
# stack_names: ["StackName"],
|
1718
1966
|
# },
|
1967
|
+
# tags: [
|
1968
|
+
# {
|
1969
|
+
# app_boundary_key: "AppBoundaryKey", # required
|
1970
|
+
# tag_values: ["TagValue"], # required
|
1971
|
+
# },
|
1972
|
+
# ],
|
1719
1973
|
# },
|
1720
1974
|
# client_token: "ClientToken",
|
1721
1975
|
# })
|
@@ -1729,13 +1983,14 @@ module Aws::DevOpsGuru
|
|
1729
1983
|
req.send_request(options)
|
1730
1984
|
end
|
1731
1985
|
|
1732
|
-
# Updates the collection of resources that DevOps Guru analyzes. The
|
1733
|
-
#
|
1734
|
-
# Web Services CloudFormation stacks
|
1735
|
-
#
|
1736
|
-
#
|
1737
|
-
#
|
1738
|
-
#
|
1986
|
+
# Updates the collection of resources that DevOps Guru analyzes. The two
|
1987
|
+
# types of Amazon Web Services resource collections supported are Amazon
|
1988
|
+
# Web Services CloudFormation stacks and Amazon Web Services resources
|
1989
|
+
# that contain the same Amazon Web Services tag. DevOps Guru can be
|
1990
|
+
# configured to analyze the Amazon Web Services resources that are
|
1991
|
+
# defined in the stacks or that are tagged using the same tag *key*. You
|
1992
|
+
# can specify up to 500 Amazon Web Services CloudFormation stacks. This
|
1993
|
+
# method also creates the IAM role required for you to use DevOps Guru.
|
1739
1994
|
#
|
1740
1995
|
# @option params [required, String] :action
|
1741
1996
|
# Specifies if the resource collection in the request is added or
|
@@ -1755,6 +2010,12 @@ module Aws::DevOpsGuru
|
|
1755
2010
|
# cloud_formation: {
|
1756
2011
|
# stack_names: ["StackName"],
|
1757
2012
|
# },
|
2013
|
+
# tags: [
|
2014
|
+
# {
|
2015
|
+
# app_boundary_key: "AppBoundaryKey", # required
|
2016
|
+
# tag_values: ["TagValue"], # required
|
2017
|
+
# },
|
2018
|
+
# ],
|
1758
2019
|
# },
|
1759
2020
|
# })
|
1760
2021
|
#
|
@@ -1811,7 +2072,7 @@ module Aws::DevOpsGuru
|
|
1811
2072
|
params: params,
|
1812
2073
|
config: config)
|
1813
2074
|
context[:gem_name] = 'aws-sdk-devopsguru'
|
1814
|
-
context[:gem_version] = '1.
|
2075
|
+
context[:gem_version] = '1.20.0'
|
1815
2076
|
Seahorse::Client::Request.new(handlers, context)
|
1816
2077
|
end
|
1817
2078
|
|