aws-sdk-devopsguru 1.24.0 → 1.26.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-devopsguru/client.rb +29 -7
- data/lib/aws-sdk-devopsguru/client_api.rb +18 -1
- data/lib/aws-sdk-devopsguru/types.rb +201 -82
- data/lib/aws-sdk-devopsguru.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e535d91956ea94ccb1cdfd5f881bf5fa50dc9ba153eab82cf815f58dce1f66c9
|
4
|
+
data.tar.gz: 59c26590cf44de175ea2cc0051aeaa8658333cc60919f36ceea7befc9be0f1b3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aeeb7bc6f46d56941f03f3be3d2aacbd3e83dc55fe1f8d7ff90c2b6852dcaa8bcac111f2f13b1c334c85eafaca4ad4889801a859d7ff233134cde58e73a77cf4
|
7
|
+
data.tar.gz: 7ce8106e8637dc8bcb007e408d4b8fea3c968b458bbe656d128d9d2ae17b5e864cbf112c25df4a4b7f62c259819350f2938a7b187ac5a371e54ea31ac67a1e42
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.26.0 (2022-10-20)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds information about the resources DevOps Guru is analyzing.
|
8
|
+
|
9
|
+
1.25.0 (2022-09-30)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds filter feature on AddNotificationChannel API, enable customer to configure the SNS notification messages by Severity or MessageTypes
|
13
|
+
|
4
14
|
1.24.0 (2022-07-19)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.26.0
|
@@ -395,6 +395,10 @@ module Aws::DevOpsGuru
|
|
395
395
|
# sns: { # required
|
396
396
|
# topic_arn: "TopicArn",
|
397
397
|
# },
|
398
|
+
# filters: {
|
399
|
+
# severities: ["LOW"], # accepts LOW, MEDIUM, HIGH
|
400
|
+
# message_types: ["NEW_INSIGHT"], # accepts NEW_INSIGHT, CLOSED_INSIGHT, NEW_ASSOCIATION, SEVERITY_UPGRADED, NEW_RECOMMENDATION
|
401
|
+
# },
|
398
402
|
# },
|
399
403
|
# })
|
400
404
|
#
|
@@ -445,6 +449,7 @@ module Aws::DevOpsGuru
|
|
445
449
|
# * {Types::DescribeAccountHealthResponse#open_proactive_insights #open_proactive_insights} => Integer
|
446
450
|
# * {Types::DescribeAccountHealthResponse#metrics_analyzed #metrics_analyzed} => Integer
|
447
451
|
# * {Types::DescribeAccountHealthResponse#resource_hours #resource_hours} => Integer
|
452
|
+
# * {Types::DescribeAccountHealthResponse#analyzed_resource_count #analyzed_resource_count} => Integer
|
448
453
|
#
|
449
454
|
# @example Response structure
|
450
455
|
#
|
@@ -452,6 +457,7 @@ module Aws::DevOpsGuru
|
|
452
457
|
# resp.open_proactive_insights #=> Integer
|
453
458
|
# resp.metrics_analyzed #=> Integer
|
454
459
|
# resp.resource_hours #=> Integer
|
460
|
+
# resp.analyzed_resource_count #=> Integer
|
455
461
|
#
|
456
462
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/DescribeAccountHealth AWS API Documentation
|
457
463
|
#
|
@@ -920,10 +926,12 @@ module Aws::DevOpsGuru
|
|
920
926
|
# resp.cloud_formation[0].insight.open_proactive_insights #=> Integer
|
921
927
|
# resp.cloud_formation[0].insight.open_reactive_insights #=> Integer
|
922
928
|
# resp.cloud_formation[0].insight.mean_time_to_recover_in_milliseconds #=> Integer
|
929
|
+
# resp.cloud_formation[0].analyzed_resource_count #=> Integer
|
923
930
|
# resp.service #=> Array
|
924
931
|
# resp.service[0].service_name #=> 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"
|
925
932
|
# resp.service[0].insight.open_proactive_insights #=> Integer
|
926
933
|
# resp.service[0].insight.open_reactive_insights #=> Integer
|
934
|
+
# resp.service[0].analyzed_resource_count #=> Integer
|
927
935
|
# resp.account #=> Array
|
928
936
|
# resp.account[0].account_id #=> String
|
929
937
|
# resp.account[0].insight.open_proactive_insights #=> Integer
|
@@ -935,6 +943,7 @@ module Aws::DevOpsGuru
|
|
935
943
|
# resp.tags[0].insight.open_proactive_insights #=> Integer
|
936
944
|
# resp.tags[0].insight.open_reactive_insights #=> Integer
|
937
945
|
# resp.tags[0].insight.mean_time_to_recover_in_milliseconds #=> Integer
|
946
|
+
# resp.tags[0].analyzed_resource_count #=> Integer
|
938
947
|
#
|
939
948
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/DescribeOrganizationResourceCollectionHealth AWS API Documentation
|
940
949
|
#
|
@@ -993,10 +1002,12 @@ module Aws::DevOpsGuru
|
|
993
1002
|
# resp.cloud_formation[0].insight.open_proactive_insights #=> Integer
|
994
1003
|
# resp.cloud_formation[0].insight.open_reactive_insights #=> Integer
|
995
1004
|
# resp.cloud_formation[0].insight.mean_time_to_recover_in_milliseconds #=> Integer
|
1005
|
+
# resp.cloud_formation[0].analyzed_resource_count #=> Integer
|
996
1006
|
# resp.service #=> Array
|
997
1007
|
# resp.service[0].service_name #=> 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"
|
998
1008
|
# resp.service[0].insight.open_proactive_insights #=> Integer
|
999
1009
|
# resp.service[0].insight.open_reactive_insights #=> Integer
|
1010
|
+
# resp.service[0].analyzed_resource_count #=> Integer
|
1000
1011
|
# resp.next_token #=> String
|
1001
1012
|
# resp.tags #=> Array
|
1002
1013
|
# resp.tags[0].app_boundary_key #=> String
|
@@ -1004,6 +1015,7 @@ module Aws::DevOpsGuru
|
|
1004
1015
|
# resp.tags[0].insight.open_proactive_insights #=> Integer
|
1005
1016
|
# resp.tags[0].insight.open_reactive_insights #=> Integer
|
1006
1017
|
# resp.tags[0].insight.mean_time_to_recover_in_milliseconds #=> Integer
|
1018
|
+
# resp.tags[0].analyzed_resource_count #=> Integer
|
1007
1019
|
#
|
1008
1020
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/DescribeResourceCollectionHealth AWS API Documentation
|
1009
1021
|
#
|
@@ -1575,7 +1587,7 @@ module Aws::DevOpsGuru
|
|
1575
1587
|
# Returns the list of all log groups that are being monitored and tagged
|
1576
1588
|
# by DevOps Guru.
|
1577
1589
|
#
|
1578
|
-
# @option params [
|
1590
|
+
# @option params [Types::ListMonitoredResourcesFilters] :filters
|
1579
1591
|
# Filters to determine which monitored resources you want to retrieve.
|
1580
1592
|
# You can filter by resource type or resource permission status.
|
1581
1593
|
#
|
@@ -1598,9 +1610,9 @@ module Aws::DevOpsGuru
|
|
1598
1610
|
# @example Request syntax with placeholder values
|
1599
1611
|
#
|
1600
1612
|
# resp = client.list_monitored_resources({
|
1601
|
-
# filters: {
|
1613
|
+
# filters: {
|
1602
1614
|
# resource_permission: "FULL_PERMISSION", # required, accepts FULL_PERMISSION, MISSING_PERMISSION
|
1603
|
-
# resource_type_filters: ["LOG_GROUPS"], # required, accepts LOG_GROUPS
|
1615
|
+
# resource_type_filters: ["LOG_GROUPS"], # required, accepts LOG_GROUPS, CLOUDFRONT_DISTRIBUTION, DYNAMODB_TABLE, EC2_NAT_GATEWAY, ECS_CLUSTER, ECS_SERVICE, EKS_CLUSTER, ELASTIC_BEANSTALK_ENVIRONMENT, ELASTIC_LOAD_BALANCER_LOAD_BALANCER, ELASTIC_LOAD_BALANCING_V2_LOAD_BALANCER, ELASTIC_LOAD_BALANCING_V2_TARGET_GROUP, ELASTICACHE_CACHE_CLUSTER, ELASTICSEARCH_DOMAIN, KINESIS_STREAM, LAMBDA_FUNCTION, OPEN_SEARCH_SERVICE_DOMAIN, RDS_DB_INSTANCE, RDS_DB_CLUSTER, REDSHIFT_CLUSTER, ROUTE53_HOSTED_ZONE, ROUTE53_HEALTH_CHECK, S3_BUCKET, SAGEMAKER_ENDPOINT, SNS_TOPIC, SQS_QUEUE, STEP_FUNCTIONS_ACTIVITY, STEP_FUNCTIONS_STATE_MACHINE
|
1604
1616
|
# },
|
1605
1617
|
# max_results: 1,
|
1606
1618
|
# next_token: "UuidNextToken",
|
@@ -1612,6 +1624,13 @@ module Aws::DevOpsGuru
|
|
1612
1624
|
# resp.monitored_resource_identifiers[0].monitored_resource_name #=> String
|
1613
1625
|
# resp.monitored_resource_identifiers[0].type #=> String
|
1614
1626
|
# resp.monitored_resource_identifiers[0].resource_permission #=> String, one of "FULL_PERMISSION", "MISSING_PERMISSION"
|
1627
|
+
# resp.monitored_resource_identifiers[0].last_updated #=> Time
|
1628
|
+
# resp.monitored_resource_identifiers[0].resource_collection.cloud_formation.stack_names #=> Array
|
1629
|
+
# resp.monitored_resource_identifiers[0].resource_collection.cloud_formation.stack_names[0] #=> String
|
1630
|
+
# resp.monitored_resource_identifiers[0].resource_collection.tags #=> Array
|
1631
|
+
# resp.monitored_resource_identifiers[0].resource_collection.tags[0].app_boundary_key #=> String
|
1632
|
+
# resp.monitored_resource_identifiers[0].resource_collection.tags[0].tag_values #=> Array
|
1633
|
+
# resp.monitored_resource_identifiers[0].resource_collection.tags[0].tag_values[0] #=> String
|
1615
1634
|
# resp.next_token #=> String
|
1616
1635
|
#
|
1617
1636
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ListMonitoredResources AWS API Documentation
|
@@ -1651,6 +1670,10 @@ module Aws::DevOpsGuru
|
|
1651
1670
|
# resp.channels #=> Array
|
1652
1671
|
# resp.channels[0].id #=> String
|
1653
1672
|
# resp.channels[0].config.sns.topic_arn #=> String
|
1673
|
+
# resp.channels[0].config.filters.severities #=> Array
|
1674
|
+
# resp.channels[0].config.filters.severities[0] #=> String, one of "LOW", "MEDIUM", "HIGH"
|
1675
|
+
# resp.channels[0].config.filters.message_types #=> Array
|
1676
|
+
# resp.channels[0].config.filters.message_types[0] #=> String, one of "NEW_INSIGHT", "CLOSED_INSIGHT", "NEW_ASSOCIATION", "SEVERITY_UPGRADED", "NEW_RECOMMENDATION"
|
1654
1677
|
# resp.next_token #=> String
|
1655
1678
|
#
|
1656
1679
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ListNotificationChannels AWS API Documentation
|
@@ -1885,9 +1908,8 @@ module Aws::DevOpsGuru
|
|
1885
1908
|
|
1886
1909
|
# Returns a list of insights in your Amazon Web Services account. You
|
1887
1910
|
# can specify which insights are returned by their start time, one or
|
1888
|
-
# more statuses (`ONGOING
|
1889
|
-
#
|
1890
|
-
# `PROACTIVE`).
|
1911
|
+
# more statuses (`ONGOING` or `CLOSED`), one or more severities (`LOW`,
|
1912
|
+
# `MEDIUM`, and `HIGH`), and type (`REACTIVE` or `PROACTIVE`).
|
1891
1913
|
#
|
1892
1914
|
# Use the `Filters` parameter to specify status and severity search
|
1893
1915
|
# parameters. Use the `Type` parameter to specify `REACTIVE` or
|
@@ -2285,7 +2307,7 @@ module Aws::DevOpsGuru
|
|
2285
2307
|
params: params,
|
2286
2308
|
config: config)
|
2287
2309
|
context[:gem_name] = 'aws-sdk-devopsguru'
|
2288
|
-
context[:gem_version] = '1.
|
2310
|
+
context[:gem_version] = '1.26.0'
|
2289
2311
|
Seahorse::Client::Request.new(handlers, context)
|
2290
2312
|
end
|
2291
2313
|
|
@@ -21,6 +21,7 @@ module Aws::DevOpsGuru
|
|
21
21
|
AddNotificationChannelRequest = Shapes::StructureShape.new(name: 'AddNotificationChannelRequest')
|
22
22
|
AddNotificationChannelResponse = Shapes::StructureShape.new(name: 'AddNotificationChannelResponse')
|
23
23
|
AmazonCodeGuruProfilerIntegration = Shapes::StructureShape.new(name: 'AmazonCodeGuruProfilerIntegration')
|
24
|
+
AnalyzedResourceCount = Shapes::IntegerShape.new(name: 'AnalyzedResourceCount')
|
24
25
|
AnomalousLogGroup = Shapes::StructureShape.new(name: 'AnomalousLogGroup')
|
25
26
|
AnomalousLogGroups = Shapes::ListShape.new(name: 'AnomalousLogGroups')
|
26
27
|
AnomalyDescription = Shapes::StringShape.new(name: 'AnomalyDescription')
|
@@ -180,6 +181,9 @@ module Aws::DevOpsGuru
|
|
180
181
|
NotificationChannel = Shapes::StructureShape.new(name: 'NotificationChannel')
|
181
182
|
NotificationChannelConfig = Shapes::StructureShape.new(name: 'NotificationChannelConfig')
|
182
183
|
NotificationChannelId = Shapes::StringShape.new(name: 'NotificationChannelId')
|
184
|
+
NotificationFilterConfig = Shapes::StructureShape.new(name: 'NotificationFilterConfig')
|
185
|
+
NotificationMessageType = Shapes::StringShape.new(name: 'NotificationMessageType')
|
186
|
+
NotificationMessageTypes = Shapes::ListShape.new(name: 'NotificationMessageTypes')
|
183
187
|
NumMetricsAnalyzed = Shapes::IntegerShape.new(name: 'NumMetricsAnalyzed')
|
184
188
|
NumOpenProactiveInsights = Shapes::IntegerShape.new(name: 'NumOpenProactiveInsights')
|
185
189
|
NumOpenReactiveInsights = Shapes::IntegerShape.new(name: 'NumOpenReactiveInsights')
|
@@ -411,6 +415,7 @@ module Aws::DevOpsGuru
|
|
411
415
|
|
412
416
|
CloudFormationHealth.add_member(:stack_name, Shapes::ShapeRef.new(shape: StackName, location_name: "StackName"))
|
413
417
|
CloudFormationHealth.add_member(:insight, Shapes::ShapeRef.new(shape: InsightHealth, location_name: "Insight"))
|
418
|
+
CloudFormationHealth.add_member(:analyzed_resource_count, Shapes::ShapeRef.new(shape: AnalyzedResourceCount, location_name: "AnalyzedResourceCount"))
|
414
419
|
CloudFormationHealth.struct_class = Types::CloudFormationHealth
|
415
420
|
|
416
421
|
CloudFormationHealths.member = Shapes::ShapeRef.new(shape: CloudFormationHealth)
|
@@ -464,6 +469,7 @@ module Aws::DevOpsGuru
|
|
464
469
|
DescribeAccountHealthResponse.add_member(:open_proactive_insights, Shapes::ShapeRef.new(shape: NumOpenProactiveInsights, required: true, location_name: "OpenProactiveInsights"))
|
465
470
|
DescribeAccountHealthResponse.add_member(:metrics_analyzed, Shapes::ShapeRef.new(shape: NumMetricsAnalyzed, required: true, location_name: "MetricsAnalyzed"))
|
466
471
|
DescribeAccountHealthResponse.add_member(:resource_hours, Shapes::ShapeRef.new(shape: ResourceHours, required: true, location_name: "ResourceHours"))
|
472
|
+
DescribeAccountHealthResponse.add_member(:analyzed_resource_count, Shapes::ShapeRef.new(shape: AnalyzedResourceCount, location_name: "AnalyzedResourceCount"))
|
467
473
|
DescribeAccountHealthResponse.struct_class = Types::DescribeAccountHealthResponse
|
468
474
|
|
469
475
|
DescribeAccountOverviewRequest.add_member(:from_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "FromTime"))
|
@@ -695,7 +701,7 @@ module Aws::DevOpsGuru
|
|
695
701
|
ListMonitoredResourcesFilters.add_member(:resource_type_filters, Shapes::ShapeRef.new(shape: ResourceTypeFilters, required: true, location_name: "ResourceTypeFilters"))
|
696
702
|
ListMonitoredResourcesFilters.struct_class = Types::ListMonitoredResourcesFilters
|
697
703
|
|
698
|
-
ListMonitoredResourcesRequest.add_member(:filters, Shapes::ShapeRef.new(shape: ListMonitoredResourcesFilters,
|
704
|
+
ListMonitoredResourcesRequest.add_member(:filters, Shapes::ShapeRef.new(shape: ListMonitoredResourcesFilters, location_name: "Filters"))
|
699
705
|
ListMonitoredResourcesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: ListMonitoredResourcesMaxResults, location_name: "MaxResults"))
|
700
706
|
ListMonitoredResourcesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: UuidNextToken, location_name: "NextToken"))
|
701
707
|
ListMonitoredResourcesRequest.struct_class = Types::ListMonitoredResourcesRequest
|
@@ -758,6 +764,8 @@ module Aws::DevOpsGuru
|
|
758
764
|
MonitoredResourceIdentifier.add_member(:monitored_resource_name, Shapes::ShapeRef.new(shape: MonitoredResourceName, location_name: "MonitoredResourceName"))
|
759
765
|
MonitoredResourceIdentifier.add_member(:type, Shapes::ShapeRef.new(shape: ResourceType, location_name: "Type"))
|
760
766
|
MonitoredResourceIdentifier.add_member(:resource_permission, Shapes::ShapeRef.new(shape: ResourcePermission, location_name: "ResourcePermission"))
|
767
|
+
MonitoredResourceIdentifier.add_member(:last_updated, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastUpdated"))
|
768
|
+
MonitoredResourceIdentifier.add_member(:resource_collection, Shapes::ShapeRef.new(shape: ResourceCollection, location_name: "ResourceCollection"))
|
761
769
|
MonitoredResourceIdentifier.struct_class = Types::MonitoredResourceIdentifier
|
762
770
|
|
763
771
|
MonitoredResourceIdentifiers.member = Shapes::ShapeRef.new(shape: MonitoredResourceIdentifier)
|
@@ -767,8 +775,15 @@ module Aws::DevOpsGuru
|
|
767
775
|
NotificationChannel.struct_class = Types::NotificationChannel
|
768
776
|
|
769
777
|
NotificationChannelConfig.add_member(:sns, Shapes::ShapeRef.new(shape: SnsChannelConfig, required: true, location_name: "Sns"))
|
778
|
+
NotificationChannelConfig.add_member(:filters, Shapes::ShapeRef.new(shape: NotificationFilterConfig, location_name: "Filters"))
|
770
779
|
NotificationChannelConfig.struct_class = Types::NotificationChannelConfig
|
771
780
|
|
781
|
+
NotificationFilterConfig.add_member(:severities, Shapes::ShapeRef.new(shape: InsightSeverities, location_name: "Severities"))
|
782
|
+
NotificationFilterConfig.add_member(:message_types, Shapes::ShapeRef.new(shape: NotificationMessageTypes, location_name: "MessageTypes"))
|
783
|
+
NotificationFilterConfig.struct_class = Types::NotificationFilterConfig
|
784
|
+
|
785
|
+
NotificationMessageTypes.member = Shapes::ShapeRef.new(shape: NotificationMessageType)
|
786
|
+
|
772
787
|
OpsCenterIntegration.add_member(:opt_in_status, Shapes::ShapeRef.new(shape: OptInStatus, location_name: "OptInStatus"))
|
773
788
|
OpsCenterIntegration.struct_class = Types::OpsCenterIntegration
|
774
789
|
|
@@ -1081,6 +1096,7 @@ module Aws::DevOpsGuru
|
|
1081
1096
|
|
1082
1097
|
ServiceHealth.add_member(:service_name, Shapes::ShapeRef.new(shape: ServiceName, location_name: "ServiceName"))
|
1083
1098
|
ServiceHealth.add_member(:insight, Shapes::ShapeRef.new(shape: ServiceInsightHealth, location_name: "Insight"))
|
1099
|
+
ServiceHealth.add_member(:analyzed_resource_count, Shapes::ShapeRef.new(shape: AnalyzedResourceCount, location_name: "AnalyzedResourceCount"))
|
1084
1100
|
ServiceHealth.struct_class = Types::ServiceHealth
|
1085
1101
|
|
1086
1102
|
ServiceHealths.member = Shapes::ShapeRef.new(shape: ServiceHealth)
|
@@ -1143,6 +1159,7 @@ module Aws::DevOpsGuru
|
|
1143
1159
|
TagHealth.add_member(:app_boundary_key, Shapes::ShapeRef.new(shape: AppBoundaryKey, location_name: "AppBoundaryKey"))
|
1144
1160
|
TagHealth.add_member(:tag_value, Shapes::ShapeRef.new(shape: TagValue, location_name: "TagValue"))
|
1145
1161
|
TagHealth.add_member(:insight, Shapes::ShapeRef.new(shape: InsightHealth, location_name: "Insight"))
|
1162
|
+
TagHealth.add_member(:analyzed_resource_count, Shapes::ShapeRef.new(shape: AnalyzedResourceCount, location_name: "AnalyzedResourceCount"))
|
1146
1163
|
TagHealth.struct_class = Types::TagHealth
|
1147
1164
|
|
1148
1165
|
TagHealths.member = Shapes::ShapeRef.new(shape: TagHealth)
|
@@ -84,6 +84,10 @@ module Aws::DevOpsGuru
|
|
84
84
|
# sns: { # required
|
85
85
|
# topic_arn: "TopicArn",
|
86
86
|
# },
|
87
|
+
# filters: {
|
88
|
+
# severities: ["LOW"], # accepts LOW, MEDIUM, HIGH
|
89
|
+
# message_types: ["NEW_INSIGHT"], # accepts NEW_INSIGHT, CLOSED_INSIGHT, NEW_ASSOCIATION, SEVERITY_UPGRADED, NEW_RECOMMENDATION
|
90
|
+
# },
|
87
91
|
# },
|
88
92
|
# }
|
89
93
|
#
|
@@ -388,11 +392,17 @@ module Aws::DevOpsGuru
|
|
388
392
|
# insights.
|
389
393
|
# @return [Types::InsightHealth]
|
390
394
|
#
|
395
|
+
# @!attribute [rw] analyzed_resource_count
|
396
|
+
# Number of resources that DevOps Guru is monitoring in your account
|
397
|
+
# that are specified by an Amazon Web Services CloudFormation stack.
|
398
|
+
# @return [Integer]
|
399
|
+
#
|
391
400
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/CloudFormationHealth AWS API Documentation
|
392
401
|
#
|
393
402
|
class CloudFormationHealth < Struct.new(
|
394
403
|
:stack_name,
|
395
|
-
:insight
|
404
|
+
:insight,
|
405
|
+
:analyzed_resource_count)
|
396
406
|
SENSITIVE = []
|
397
407
|
include Aws::Structure
|
398
408
|
end
|
@@ -582,12 +592,14 @@ module Aws::DevOpsGuru
|
|
582
592
|
#
|
583
593
|
# The string used for a *key* in a tag that you use to define your
|
584
594
|
# resource coverage must begin with the prefix `Devops-guru-`. The tag
|
585
|
-
# *key* might be `
|
586
|
-
# `
|
587
|
-
#
|
588
|
-
#
|
589
|
-
# named `
|
590
|
-
#
|
595
|
+
# *key* might be `DevOps-Guru-deployment-application` or
|
596
|
+
# `devops-guru-rds-application`. When you create a *key*, the case of
|
597
|
+
# characters in the *key* can be whatever you choose. After you create
|
598
|
+
# a *key*, it is case-sensitive. For example, DevOps Guru works with a
|
599
|
+
# *key* named `devops-guru-rds` and a *key* named `DevOps-Guru-RDS`,
|
600
|
+
# and these act as two different *keys*. Possible *key*/*value* pairs
|
601
|
+
# in your application might be
|
602
|
+
# `Devops-Guru-production-application/RDS` or
|
591
603
|
# `Devops-Guru-production-application/containers`.
|
592
604
|
#
|
593
605
|
#
|
@@ -672,13 +684,19 @@ module Aws::DevOpsGuru
|
|
672
684
|
# the current Amazon Web Services account in the last hour.
|
673
685
|
# @return [Integer]
|
674
686
|
#
|
687
|
+
# @!attribute [rw] analyzed_resource_count
|
688
|
+
# Number of resources that DevOps Guru is monitoring in your Amazon
|
689
|
+
# Web Services account.
|
690
|
+
# @return [Integer]
|
691
|
+
#
|
675
692
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/DescribeAccountHealthResponse AWS API Documentation
|
676
693
|
#
|
677
694
|
class DescribeAccountHealthResponse < Struct.new(
|
678
695
|
:open_reactive_insights,
|
679
696
|
:open_proactive_insights,
|
680
697
|
:metrics_analyzed,
|
681
|
-
:resource_hours
|
698
|
+
:resource_hours,
|
699
|
+
:analyzed_resource_count)
|
682
700
|
SENSITIVE = []
|
683
701
|
include Aws::Structure
|
684
702
|
end
|
@@ -1088,12 +1106,14 @@ module Aws::DevOpsGuru
|
|
1088
1106
|
#
|
1089
1107
|
# The string used for a *key* in a tag that you use to define your
|
1090
1108
|
# resource coverage must begin with the prefix `Devops-guru-`. The tag
|
1091
|
-
# *key* might be `
|
1092
|
-
# `
|
1093
|
-
#
|
1094
|
-
#
|
1095
|
-
# named `
|
1096
|
-
#
|
1109
|
+
# *key* might be `DevOps-Guru-deployment-application` or
|
1110
|
+
# `devops-guru-rds-application`. When you create a *key*, the case of
|
1111
|
+
# characters in the *key* can be whatever you choose. After you create
|
1112
|
+
# a *key*, it is case-sensitive. For example, DevOps Guru works with a
|
1113
|
+
# *key* named `devops-guru-rds` and a *key* named `DevOps-Guru-RDS`,
|
1114
|
+
# and these act as two different *keys*. Possible *key*/*value* pairs
|
1115
|
+
# in your application might be
|
1116
|
+
# `Devops-Guru-production-application/RDS` or
|
1097
1117
|
# `Devops-Guru-production-application/containers`.
|
1098
1118
|
#
|
1099
1119
|
#
|
@@ -1190,12 +1210,14 @@ module Aws::DevOpsGuru
|
|
1190
1210
|
#
|
1191
1211
|
# The string used for a *key* in a tag that you use to define your
|
1192
1212
|
# resource coverage must begin with the prefix `Devops-guru-`. The tag
|
1193
|
-
# *key* might be `
|
1194
|
-
# `
|
1195
|
-
#
|
1196
|
-
#
|
1197
|
-
# named `
|
1198
|
-
#
|
1213
|
+
# *key* might be `DevOps-Guru-deployment-application` or
|
1214
|
+
# `devops-guru-rds-application`. When you create a *key*, the case of
|
1215
|
+
# characters in the *key* can be whatever you choose. After you create
|
1216
|
+
# a *key*, it is case-sensitive. For example, DevOps Guru works with a
|
1217
|
+
# *key* named `devops-guru-rds` and a *key* named `DevOps-Guru-RDS`,
|
1218
|
+
# and these act as two different *keys*. Possible *key*/*value* pairs
|
1219
|
+
# in your application might be
|
1220
|
+
# `Devops-Guru-production-application/RDS` or
|
1199
1221
|
# `Devops-Guru-production-application/containers`.
|
1200
1222
|
#
|
1201
1223
|
#
|
@@ -2122,7 +2144,7 @@ module Aws::DevOpsGuru
|
|
2122
2144
|
#
|
2123
2145
|
# {
|
2124
2146
|
# resource_permission: "FULL_PERMISSION", # required, accepts FULL_PERMISSION, MISSING_PERMISSION
|
2125
|
-
# resource_type_filters: ["LOG_GROUPS"], # required, accepts LOG_GROUPS
|
2147
|
+
# resource_type_filters: ["LOG_GROUPS"], # required, accepts LOG_GROUPS, CLOUDFRONT_DISTRIBUTION, DYNAMODB_TABLE, EC2_NAT_GATEWAY, ECS_CLUSTER, ECS_SERVICE, EKS_CLUSTER, ELASTIC_BEANSTALK_ENVIRONMENT, ELASTIC_LOAD_BALANCER_LOAD_BALANCER, ELASTIC_LOAD_BALANCING_V2_LOAD_BALANCER, ELASTIC_LOAD_BALANCING_V2_TARGET_GROUP, ELASTICACHE_CACHE_CLUSTER, ELASTICSEARCH_DOMAIN, KINESIS_STREAM, LAMBDA_FUNCTION, OPEN_SEARCH_SERVICE_DOMAIN, RDS_DB_INSTANCE, RDS_DB_CLUSTER, REDSHIFT_CLUSTER, ROUTE53_HOSTED_ZONE, ROUTE53_HEALTH_CHECK, S3_BUCKET, SAGEMAKER_ENDPOINT, SNS_TOPIC, SQS_QUEUE, STEP_FUNCTIONS_ACTIVITY, STEP_FUNCTIONS_STATE_MACHINE
|
2126
2148
|
# }
|
2127
2149
|
#
|
2128
2150
|
# @!attribute [rw] resource_permission
|
@@ -2146,9 +2168,9 @@ module Aws::DevOpsGuru
|
|
2146
2168
|
# data as a hash:
|
2147
2169
|
#
|
2148
2170
|
# {
|
2149
|
-
# filters: {
|
2171
|
+
# filters: {
|
2150
2172
|
# resource_permission: "FULL_PERMISSION", # required, accepts FULL_PERMISSION, MISSING_PERMISSION
|
2151
|
-
# resource_type_filters: ["LOG_GROUPS"], # required, accepts LOG_GROUPS
|
2173
|
+
# resource_type_filters: ["LOG_GROUPS"], # required, accepts LOG_GROUPS, CLOUDFRONT_DISTRIBUTION, DYNAMODB_TABLE, EC2_NAT_GATEWAY, ECS_CLUSTER, ECS_SERVICE, EKS_CLUSTER, ELASTIC_BEANSTALK_ENVIRONMENT, ELASTIC_LOAD_BALANCER_LOAD_BALANCER, ELASTIC_LOAD_BALANCING_V2_LOAD_BALANCER, ELASTIC_LOAD_BALANCING_V2_TARGET_GROUP, ELASTICACHE_CACHE_CLUSTER, ELASTICSEARCH_DOMAIN, KINESIS_STREAM, LAMBDA_FUNCTION, OPEN_SEARCH_SERVICE_DOMAIN, RDS_DB_INSTANCE, RDS_DB_CLUSTER, REDSHIFT_CLUSTER, ROUTE53_HOSTED_ZONE, ROUTE53_HEALTH_CHECK, S3_BUCKET, SAGEMAKER_ENDPOINT, SNS_TOPIC, SQS_QUEUE, STEP_FUNCTIONS_ACTIVITY, STEP_FUNCTIONS_STATE_MACHINE
|
2152
2174
|
# },
|
2153
2175
|
# max_results: 1,
|
2154
2176
|
# next_token: "UuidNextToken",
|
@@ -2501,12 +2523,29 @@ module Aws::DevOpsGuru
|
|
2501
2523
|
# The permission status of a resource.
|
2502
2524
|
# @return [String]
|
2503
2525
|
#
|
2526
|
+
# @!attribute [rw] last_updated
|
2527
|
+
# The time at which DevOps Guru last updated this resource.
|
2528
|
+
# @return [Time]
|
2529
|
+
#
|
2530
|
+
# @!attribute [rw] resource_collection
|
2531
|
+
# A collection of Amazon Web Services resources supported by DevOps
|
2532
|
+
# Guru. The two types of Amazon Web Services resource collections
|
2533
|
+
# supported are Amazon Web Services CloudFormation stacks and Amazon
|
2534
|
+
# Web Services resources that contain the same Amazon Web Services
|
2535
|
+
# tag. DevOps Guru can be configured to analyze the Amazon Web
|
2536
|
+
# Services resources that are defined in the stacks or that are tagged
|
2537
|
+
# using the same tag *key*. You can specify up to 500 Amazon Web
|
2538
|
+
# Services CloudFormation stacks.
|
2539
|
+
# @return [Types::ResourceCollection]
|
2540
|
+
#
|
2504
2541
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/MonitoredResourceIdentifier AWS API Documentation
|
2505
2542
|
#
|
2506
2543
|
class MonitoredResourceIdentifier < Struct.new(
|
2507
2544
|
:monitored_resource_name,
|
2508
2545
|
:type,
|
2509
|
-
:resource_permission
|
2546
|
+
:resource_permission,
|
2547
|
+
:last_updated,
|
2548
|
+
:resource_collection)
|
2510
2549
|
SENSITIVE = []
|
2511
2550
|
include Aws::Structure
|
2512
2551
|
end
|
@@ -2569,6 +2608,10 @@ module Aws::DevOpsGuru
|
|
2569
2608
|
# sns: { # required
|
2570
2609
|
# topic_arn: "TopicArn",
|
2571
2610
|
# },
|
2611
|
+
# filters: {
|
2612
|
+
# severities: ["LOW"], # accepts LOW, MEDIUM, HIGH
|
2613
|
+
# message_types: ["NEW_INSIGHT"], # accepts NEW_INSIGHT, CLOSED_INSIGHT, NEW_ASSOCIATION, SEVERITY_UPGRADED, NEW_RECOMMENDATION
|
2614
|
+
# },
|
2572
2615
|
# }
|
2573
2616
|
#
|
2574
2617
|
# @!attribute [rw] sns
|
@@ -2600,10 +2643,57 @@ module Aws::DevOpsGuru
|
|
2600
2643
|
# [2]: https://docs.aws.amazon.com/devops-guru/latest/userguide/sns-kms-permissions.html
|
2601
2644
|
# @return [Types::SnsChannelConfig]
|
2602
2645
|
#
|
2646
|
+
# @!attribute [rw] filters
|
2647
|
+
# The filter configurations for the Amazon SNS notification topic you
|
2648
|
+
# use with DevOps Guru. If you do not provide filter configurations,
|
2649
|
+
# the default configurations are to receive notifications for all
|
2650
|
+
# message types of `High` or `Medium` severity.
|
2651
|
+
# @return [Types::NotificationFilterConfig]
|
2652
|
+
#
|
2603
2653
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/NotificationChannelConfig AWS API Documentation
|
2604
2654
|
#
|
2605
2655
|
class NotificationChannelConfig < Struct.new(
|
2606
|
-
:sns
|
2656
|
+
:sns,
|
2657
|
+
:filters)
|
2658
|
+
SENSITIVE = []
|
2659
|
+
include Aws::Structure
|
2660
|
+
end
|
2661
|
+
|
2662
|
+
# The filter configurations for the Amazon SNS notification topic you
|
2663
|
+
# use with DevOps Guru. You can choose to specify which events or
|
2664
|
+
# message types to receive notifications for. You can also choose to
|
2665
|
+
# specify which severity levels to receive notifications for.
|
2666
|
+
#
|
2667
|
+
# @note When making an API call, you may pass NotificationFilterConfig
|
2668
|
+
# data as a hash:
|
2669
|
+
#
|
2670
|
+
# {
|
2671
|
+
# severities: ["LOW"], # accepts LOW, MEDIUM, HIGH
|
2672
|
+
# message_types: ["NEW_INSIGHT"], # accepts NEW_INSIGHT, CLOSED_INSIGHT, NEW_ASSOCIATION, SEVERITY_UPGRADED, NEW_RECOMMENDATION
|
2673
|
+
# }
|
2674
|
+
#
|
2675
|
+
# @!attribute [rw] severities
|
2676
|
+
# The severity levels that you want to receive notifications for. For
|
2677
|
+
# example, you can choose to receive notifications only for insights
|
2678
|
+
# with `HIGH` and `MEDIUM` severity levels. For more information, see
|
2679
|
+
# [Understanding insight severities][1].
|
2680
|
+
#
|
2681
|
+
#
|
2682
|
+
#
|
2683
|
+
# [1]: https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities
|
2684
|
+
# @return [Array<String>]
|
2685
|
+
#
|
2686
|
+
# @!attribute [rw] message_types
|
2687
|
+
# The events that you want to receive notifications for. For example,
|
2688
|
+
# you can choose to receive notifications only when the severity level
|
2689
|
+
# is upgraded or a new insight is created.
|
2690
|
+
# @return [Array<String>]
|
2691
|
+
#
|
2692
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/NotificationFilterConfig AWS API Documentation
|
2693
|
+
#
|
2694
|
+
class NotificationFilterConfig < Struct.new(
|
2695
|
+
:severities,
|
2696
|
+
:message_types)
|
2607
2697
|
SENSITIVE = []
|
2608
2698
|
include Aws::Structure
|
2609
2699
|
end
|
@@ -4165,12 +4255,14 @@ module Aws::DevOpsGuru
|
|
4165
4255
|
#
|
4166
4256
|
# The string used for a *key* in a tag that you use to define your
|
4167
4257
|
# resource coverage must begin with the prefix `Devops-guru-`. The tag
|
4168
|
-
# *key* might be `
|
4169
|
-
# `
|
4170
|
-
#
|
4171
|
-
#
|
4172
|
-
# named `
|
4173
|
-
#
|
4258
|
+
# *key* might be `DevOps-Guru-deployment-application` or
|
4259
|
+
# `devops-guru-rds-application`. When you create a *key*, the case of
|
4260
|
+
# characters in the *key* can be whatever you choose. After you create
|
4261
|
+
# a *key*, it is case-sensitive. For example, DevOps Guru works with a
|
4262
|
+
# *key* named `devops-guru-rds` and a *key* named `DevOps-Guru-RDS`,
|
4263
|
+
# and these act as two different *keys*. Possible *key*/*value* pairs
|
4264
|
+
# in your application might be
|
4265
|
+
# `Devops-Guru-production-application/RDS` or
|
4174
4266
|
# `Devops-Guru-production-application/containers`.
|
4175
4267
|
#
|
4176
4268
|
#
|
@@ -4227,12 +4319,14 @@ module Aws::DevOpsGuru
|
|
4227
4319
|
#
|
4228
4320
|
# The string used for a *key* in a tag that you use to define your
|
4229
4321
|
# resource coverage must begin with the prefix `Devops-guru-`. The tag
|
4230
|
-
# *key* might be `
|
4231
|
-
# `
|
4232
|
-
#
|
4233
|
-
#
|
4234
|
-
# named `
|
4235
|
-
#
|
4322
|
+
# *key* might be `DevOps-Guru-deployment-application` or
|
4323
|
+
# `devops-guru-rds-application`. When you create a *key*, the case of
|
4324
|
+
# characters in the *key* can be whatever you choose. After you create
|
4325
|
+
# a *key*, it is case-sensitive. For example, DevOps Guru works with a
|
4326
|
+
# *key* named `devops-guru-rds` and a *key* named `DevOps-Guru-RDS`,
|
4327
|
+
# and these act as two different *keys*. Possible *key*/*value* pairs
|
4328
|
+
# in your application might be
|
4329
|
+
# `Devops-Guru-production-application/RDS` or
|
4236
4330
|
# `Devops-Guru-production-application/containers`.
|
4237
4331
|
#
|
4238
4332
|
#
|
@@ -4617,11 +4711,17 @@ module Aws::DevOpsGuru
|
|
4617
4711
|
# and reactive insights for this service.
|
4618
4712
|
# @return [Types::ServiceInsightHealth]
|
4619
4713
|
#
|
4714
|
+
# @!attribute [rw] analyzed_resource_count
|
4715
|
+
# Number of resources that DevOps Guru is monitoring in an analyzed
|
4716
|
+
# Amazon Web Services service.
|
4717
|
+
# @return [Integer]
|
4718
|
+
#
|
4620
4719
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ServiceHealth AWS API Documentation
|
4621
4720
|
#
|
4622
4721
|
class ServiceHealth < Struct.new(
|
4623
4722
|
:service_name,
|
4624
|
-
:insight
|
4723
|
+
:insight,
|
4724
|
+
:analyzed_resource_count)
|
4625
4725
|
SENSITIVE = []
|
4626
4726
|
include Aws::Structure
|
4627
4727
|
end
|
@@ -4856,7 +4956,7 @@ module Aws::DevOpsGuru
|
|
4856
4956
|
include Aws::Structure
|
4857
4957
|
end
|
4858
4958
|
|
4859
|
-
# A collection of Amazon Web Services
|
4959
|
+
# A collection of Amazon Web Services tags.
|
4860
4960
|
#
|
4861
4961
|
# Tags help you identify and organize your Amazon Web Services
|
4862
4962
|
# resources. Many Amazon Web Services services support tagging, so you
|
@@ -4880,12 +4980,13 @@ module Aws::DevOpsGuru
|
|
4880
4980
|
#
|
4881
4981
|
# The string used for a *key* in a tag that you use to define your
|
4882
4982
|
# resource coverage must begin with the prefix `Devops-guru-`. The tag
|
4883
|
-
# *key* might be `
|
4884
|
-
# `
|
4885
|
-
#
|
4886
|
-
#
|
4887
|
-
# named `
|
4888
|
-
#
|
4983
|
+
# *key* might be `DevOps-Guru-deployment-application` or
|
4984
|
+
# `devops-guru-rds-application`. When you create a *key*, the case of
|
4985
|
+
# characters in the *key* can be whatever you choose. After you create a
|
4986
|
+
# *key*, it is case-sensitive. For example, DevOps Guru works with a
|
4987
|
+
# *key* named `devops-guru-rds` and a *key* named `DevOps-Guru-RDS`, and
|
4988
|
+
# these act as two different *keys*. Possible *key*/*value* pairs in
|
4989
|
+
# your application might be `Devops-Guru-production-application/RDS` or
|
4889
4990
|
# `Devops-Guru-production-application/containers`.
|
4890
4991
|
#
|
4891
4992
|
#
|
@@ -4908,12 +5009,14 @@ module Aws::DevOpsGuru
|
|
4908
5009
|
#
|
4909
5010
|
# The string used for a *key* in a tag that you use to define your
|
4910
5011
|
# resource coverage must begin with the prefix `Devops-guru-`. The tag
|
4911
|
-
# *key* might be `
|
4912
|
-
# `
|
4913
|
-
#
|
4914
|
-
#
|
4915
|
-
# named `
|
4916
|
-
#
|
5012
|
+
# *key* might be `DevOps-Guru-deployment-application` or
|
5013
|
+
# `devops-guru-rds-application`. When you create a *key*, the case of
|
5014
|
+
# characters in the *key* can be whatever you choose. After you create
|
5015
|
+
# a *key*, it is case-sensitive. For example, DevOps Guru works with a
|
5016
|
+
# *key* named `devops-guru-rds` and a *key* named `DevOps-Guru-RDS`,
|
5017
|
+
# and these act as two different *keys*. Possible *key*/*value* pairs
|
5018
|
+
# in your application might be
|
5019
|
+
# `Devops-Guru-production-application/RDS` or
|
4917
5020
|
# `Devops-Guru-production-application/containers`.
|
4918
5021
|
# @return [String]
|
4919
5022
|
#
|
@@ -4949,12 +5052,14 @@ module Aws::DevOpsGuru
|
|
4949
5052
|
#
|
4950
5053
|
# The string used for a *key* in a tag that you use to define your
|
4951
5054
|
# resource coverage must begin with the prefix `Devops-guru-`. The tag
|
4952
|
-
# *key* might be `
|
4953
|
-
# `
|
4954
|
-
#
|
4955
|
-
#
|
4956
|
-
# named `
|
4957
|
-
#
|
5055
|
+
# *key* might be `DevOps-Guru-deployment-application` or
|
5056
|
+
# `devops-guru-rds-application`. When you create a *key*, the case of
|
5057
|
+
# characters in the *key* can be whatever you choose. After you create
|
5058
|
+
# a *key*, it is case-sensitive. For example, DevOps Guru works with a
|
5059
|
+
# *key* named `devops-guru-rds` and a *key* named `DevOps-Guru-RDS`,
|
5060
|
+
# and these act as two different *keys*. Possible *key*/*value* pairs
|
5061
|
+
# in your application might be
|
5062
|
+
# `Devops-Guru-production-application/RDS` or
|
4958
5063
|
# `Devops-Guru-production-application/containers`.
|
4959
5064
|
# @return [String]
|
4960
5065
|
#
|
@@ -5007,12 +5112,14 @@ module Aws::DevOpsGuru
|
|
5007
5112
|
#
|
5008
5113
|
# The string used for a *key* in a tag that you use to define your
|
5009
5114
|
# resource coverage must begin with the prefix `Devops-guru-`. The tag
|
5010
|
-
# *key* might be `
|
5011
|
-
# `
|
5012
|
-
#
|
5013
|
-
#
|
5014
|
-
# named `
|
5015
|
-
#
|
5115
|
+
# *key* might be `DevOps-Guru-deployment-application` or
|
5116
|
+
# `devops-guru-rds-application`. When you create a *key*, the case of
|
5117
|
+
# characters in the *key* can be whatever you choose. After you create
|
5118
|
+
# a *key*, it is case-sensitive. For example, DevOps Guru works with a
|
5119
|
+
# *key* named `devops-guru-rds` and a *key* named `DevOps-Guru-RDS`,
|
5120
|
+
# and these act as two different *keys*. Possible *key*/*value* pairs
|
5121
|
+
# in your application might be
|
5122
|
+
# `Devops-Guru-production-application/RDS` or
|
5016
5123
|
# `Devops-Guru-production-application/containers`.
|
5017
5124
|
# @return [String]
|
5018
5125
|
#
|
@@ -5047,12 +5154,14 @@ module Aws::DevOpsGuru
|
|
5047
5154
|
#
|
5048
5155
|
# The string used for a *key* in a tag that you use to define your
|
5049
5156
|
# resource coverage must begin with the prefix `Devops-guru-`. The tag
|
5050
|
-
# *key* might be `
|
5051
|
-
# `
|
5052
|
-
#
|
5053
|
-
#
|
5054
|
-
# named `
|
5055
|
-
#
|
5157
|
+
# *key* might be `DevOps-Guru-deployment-application` or
|
5158
|
+
# `devops-guru-rds-application`. When you create a *key*, the case of
|
5159
|
+
# characters in the *key* can be whatever you choose. After you create
|
5160
|
+
# a *key*, it is case-sensitive. For example, DevOps Guru works with a
|
5161
|
+
# *key* named `devops-guru-rds` and a *key* named `DevOps-Guru-RDS`,
|
5162
|
+
# and these act as two different *keys*. Possible *key*/*value* pairs
|
5163
|
+
# in your application might be
|
5164
|
+
# `Devops-Guru-production-application/RDS` or
|
5056
5165
|
# `Devops-Guru-production-application/containers`.
|
5057
5166
|
# @return [String]
|
5058
5167
|
#
|
@@ -5074,12 +5183,18 @@ module Aws::DevOpsGuru
|
|
5074
5183
|
# the Mean Time to Recover (MTTR) of closed insights.
|
5075
5184
|
# @return [Types::InsightHealth]
|
5076
5185
|
#
|
5186
|
+
# @!attribute [rw] analyzed_resource_count
|
5187
|
+
# Number of resources that DevOps Guru is monitoring in your account
|
5188
|
+
# that are specified by an Amazon Web Services tag.
|
5189
|
+
# @return [Integer]
|
5190
|
+
#
|
5077
5191
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/TagHealth AWS API Documentation
|
5078
5192
|
#
|
5079
5193
|
class TagHealth < Struct.new(
|
5080
5194
|
:app_boundary_key,
|
5081
5195
|
:tag_value,
|
5082
|
-
:insight
|
5196
|
+
:insight,
|
5197
|
+
:analyzed_resource_count)
|
5083
5198
|
SENSITIVE = []
|
5084
5199
|
include Aws::Structure
|
5085
5200
|
end
|
@@ -5235,12 +5350,14 @@ module Aws::DevOpsGuru
|
|
5235
5350
|
#
|
5236
5351
|
# The string used for a *key* in a tag that you use to define your
|
5237
5352
|
# resource coverage must begin with the prefix `Devops-guru-`. The tag
|
5238
|
-
# *key* might be `
|
5239
|
-
# `
|
5240
|
-
#
|
5241
|
-
#
|
5242
|
-
# named `
|
5243
|
-
#
|
5353
|
+
# *key* might be `DevOps-Guru-deployment-application` or
|
5354
|
+
# `devops-guru-rds-application`. When you create a *key*, the case of
|
5355
|
+
# characters in the *key* can be whatever you choose. After you create
|
5356
|
+
# a *key*, it is case-sensitive. For example, DevOps Guru works with a
|
5357
|
+
# *key* named `devops-guru-rds` and a *key* named `DevOps-Guru-RDS`,
|
5358
|
+
# and these act as two different *keys*. Possible *key*/*value* pairs
|
5359
|
+
# in your application might be
|
5360
|
+
# `Devops-Guru-production-application/RDS` or
|
5244
5361
|
# `Devops-Guru-production-application/containers`.
|
5245
5362
|
#
|
5246
5363
|
#
|
@@ -5385,12 +5502,14 @@ module Aws::DevOpsGuru
|
|
5385
5502
|
#
|
5386
5503
|
# The string used for a *key* in a tag that you use to define your
|
5387
5504
|
# resource coverage must begin with the prefix `Devops-guru-`. The tag
|
5388
|
-
# *key* might be `
|
5389
|
-
# `
|
5390
|
-
#
|
5391
|
-
#
|
5392
|
-
# named `
|
5393
|
-
#
|
5505
|
+
# *key* might be `DevOps-Guru-deployment-application` or
|
5506
|
+
# `devops-guru-rds-application`. When you create a *key*, the case of
|
5507
|
+
# characters in the *key* can be whatever you choose. After you create
|
5508
|
+
# a *key*, it is case-sensitive. For example, DevOps Guru works with a
|
5509
|
+
# *key* named `devops-guru-rds` and a *key* named `DevOps-Guru-RDS`,
|
5510
|
+
# and these act as two different *keys*. Possible *key*/*value* pairs
|
5511
|
+
# in your application might be
|
5512
|
+
# `Devops-Guru-production-application/RDS` or
|
5394
5513
|
# `Devops-Guru-production-application/containers`.
|
5395
5514
|
# @return [String]
|
5396
5515
|
#
|
data/lib/aws-sdk-devopsguru.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-devopsguru
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.26.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-10-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|