aws-sdk-devopsguru 1.28.0 → 1.30.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-devopsguru/client.rb +11 -1
- data/lib/aws-sdk-devopsguru/client_api.rb +7 -0
- data/lib/aws-sdk-devopsguru/endpoint_provider.rb +27 -24
- data/lib/aws-sdk-devopsguru/types.rb +45 -12
- 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: fb6a50cf0617efd38feaabf7009affec557c26ac7b3721f0d9be7da36067cb01
|
4
|
+
data.tar.gz: 6c74b061b4a828984c2a31b7e0011f2af2f25a7e69c77b91ace01fce6b349f45
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d5e28de50a9b36131b0fae20554f98d1eb4effa25db1c4c0fbdcb1d156a2b927c5a57ca0711a36d609af5515d55c2cdc53699f50f2251419afdb758342809373
|
7
|
+
data.tar.gz: 9c9a6a2fab6b34995aa2cd4d7c034e916d074199f258d829014e4b418ecbaf96c2bc5459d86b36b2aced38b47bc457ccd741cc12750d8d6fba7ebbc3492ed23f
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.30.0 (2023-02-27)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds the description field on ListAnomaliesForInsight and DescribeAnomaly API responses for proactive anomalies.
|
8
|
+
|
9
|
+
1.29.0 (2023-02-01)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds filter support ListAnomalyForInsight API.
|
13
|
+
|
4
14
|
1.28.0 (2023-01-18)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.30.0
|
@@ -614,6 +614,7 @@ module Aws::DevOpsGuru
|
|
614
614
|
# resp.proactive_anomaly.anomaly_resources #=> Array
|
615
615
|
# resp.proactive_anomaly.anomaly_resources[0].name #=> String
|
616
616
|
# resp.proactive_anomaly.anomaly_resources[0].type #=> String
|
617
|
+
# resp.proactive_anomaly.description #=> String
|
617
618
|
# resp.reactive_anomaly.id #=> String
|
618
619
|
# resp.reactive_anomaly.severity #=> String, one of "LOW", "MEDIUM", "HIGH"
|
619
620
|
# resp.reactive_anomaly.status #=> String, one of "ONGOING", "CLOSED"
|
@@ -1199,6 +1200,9 @@ module Aws::DevOpsGuru
|
|
1199
1200
|
# @option params [String] :account_id
|
1200
1201
|
# The ID of the Amazon Web Services account.
|
1201
1202
|
#
|
1203
|
+
# @option params [Types::ListAnomaliesForInsightFilters] :filters
|
1204
|
+
# Specifies one or more service names that are used to list anomalies.
|
1205
|
+
#
|
1202
1206
|
# @return [Types::ListAnomaliesForInsightResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1203
1207
|
#
|
1204
1208
|
# * {Types::ListAnomaliesForInsightResponse#proactive_anomalies #proactive_anomalies} => Array<Types::ProactiveAnomalySummary>
|
@@ -1218,6 +1222,11 @@ module Aws::DevOpsGuru
|
|
1218
1222
|
# max_results: 1,
|
1219
1223
|
# next_token: "UuidNextToken",
|
1220
1224
|
# account_id: "AwsAccountId",
|
1225
|
+
# filters: {
|
1226
|
+
# service_collection: {
|
1227
|
+
# 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
|
1228
|
+
# },
|
1229
|
+
# },
|
1221
1230
|
# })
|
1222
1231
|
#
|
1223
1232
|
# @example Response structure
|
@@ -1286,6 +1295,7 @@ module Aws::DevOpsGuru
|
|
1286
1295
|
# resp.proactive_anomalies[0].anomaly_resources #=> Array
|
1287
1296
|
# resp.proactive_anomalies[0].anomaly_resources[0].name #=> String
|
1288
1297
|
# resp.proactive_anomalies[0].anomaly_resources[0].type #=> String
|
1298
|
+
# resp.proactive_anomalies[0].description #=> String
|
1289
1299
|
# resp.reactive_anomalies #=> Array
|
1290
1300
|
# resp.reactive_anomalies[0].id #=> String
|
1291
1301
|
# resp.reactive_anomalies[0].severity #=> String, one of "LOW", "MEDIUM", "HIGH"
|
@@ -2324,7 +2334,7 @@ module Aws::DevOpsGuru
|
|
2324
2334
|
params: params,
|
2325
2335
|
config: config)
|
2326
2336
|
context[:gem_name] = 'aws-sdk-devopsguru'
|
2327
|
-
context[:gem_version] = '1.
|
2337
|
+
context[:gem_version] = '1.30.0'
|
2328
2338
|
Seahorse::Client::Request.new(handlers, context)
|
2329
2339
|
end
|
2330
2340
|
|
@@ -132,6 +132,7 @@ module Aws::DevOpsGuru
|
|
132
132
|
InsightTimeRange = Shapes::StructureShape.new(name: 'InsightTimeRange')
|
133
133
|
InsightType = Shapes::StringShape.new(name: 'InsightType')
|
134
134
|
InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
|
135
|
+
ListAnomaliesForInsightFilters = Shapes::StructureShape.new(name: 'ListAnomaliesForInsightFilters')
|
135
136
|
ListAnomaliesForInsightMaxResults = Shapes::IntegerShape.new(name: 'ListAnomaliesForInsightMaxResults')
|
136
137
|
ListAnomaliesForInsightRequest = Shapes::StructureShape.new(name: 'ListAnomaliesForInsightRequest')
|
137
138
|
ListAnomaliesForInsightResponse = Shapes::StructureShape.new(name: 'ListAnomaliesForInsightResponse')
|
@@ -627,11 +628,15 @@ module Aws::DevOpsGuru
|
|
627
628
|
InternalServerException.add_member(:retry_after_seconds, Shapes::ShapeRef.new(shape: RetryAfterSeconds, location: "header", location_name: "Retry-After"))
|
628
629
|
InternalServerException.struct_class = Types::InternalServerException
|
629
630
|
|
631
|
+
ListAnomaliesForInsightFilters.add_member(:service_collection, Shapes::ShapeRef.new(shape: ServiceCollection, location_name: "ServiceCollection"))
|
632
|
+
ListAnomaliesForInsightFilters.struct_class = Types::ListAnomaliesForInsightFilters
|
633
|
+
|
630
634
|
ListAnomaliesForInsightRequest.add_member(:insight_id, Shapes::ShapeRef.new(shape: InsightId, required: true, location: "uri", location_name: "InsightId"))
|
631
635
|
ListAnomaliesForInsightRequest.add_member(:start_time_range, Shapes::ShapeRef.new(shape: StartTimeRange, location_name: "StartTimeRange"))
|
632
636
|
ListAnomaliesForInsightRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: ListAnomaliesForInsightMaxResults, location_name: "MaxResults"))
|
633
637
|
ListAnomaliesForInsightRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: UuidNextToken, location_name: "NextToken"))
|
634
638
|
ListAnomaliesForInsightRequest.add_member(:account_id, Shapes::ShapeRef.new(shape: AwsAccountId, location_name: "AccountId"))
|
639
|
+
ListAnomaliesForInsightRequest.add_member(:filters, Shapes::ShapeRef.new(shape: ListAnomaliesForInsightFilters, location_name: "Filters"))
|
635
640
|
ListAnomaliesForInsightRequest.struct_class = Types::ListAnomaliesForInsightRequest
|
636
641
|
|
637
642
|
ListAnomaliesForInsightResponse.add_member(:proactive_anomalies, Shapes::ShapeRef.new(shape: ProactiveAnomalies, location_name: "ProactiveAnomalies"))
|
@@ -858,6 +863,7 @@ module Aws::DevOpsGuru
|
|
858
863
|
ProactiveAnomaly.add_member(:limit, Shapes::ShapeRef.new(shape: AnomalyLimit, location_name: "Limit"))
|
859
864
|
ProactiveAnomaly.add_member(:source_metadata, Shapes::ShapeRef.new(shape: AnomalySourceMetadata, location_name: "SourceMetadata"))
|
860
865
|
ProactiveAnomaly.add_member(:anomaly_resources, Shapes::ShapeRef.new(shape: AnomalyResources, location_name: "AnomalyResources"))
|
866
|
+
ProactiveAnomaly.add_member(:description, Shapes::ShapeRef.new(shape: AnomalyDescription, location_name: "Description"))
|
861
867
|
ProactiveAnomaly.struct_class = Types::ProactiveAnomaly
|
862
868
|
|
863
869
|
ProactiveAnomalySummary.add_member(:id, Shapes::ShapeRef.new(shape: AnomalyId, location_name: "Id"))
|
@@ -873,6 +879,7 @@ module Aws::DevOpsGuru
|
|
873
879
|
ProactiveAnomalySummary.add_member(:limit, Shapes::ShapeRef.new(shape: AnomalyLimit, location_name: "Limit"))
|
874
880
|
ProactiveAnomalySummary.add_member(:source_metadata, Shapes::ShapeRef.new(shape: AnomalySourceMetadata, location_name: "SourceMetadata"))
|
875
881
|
ProactiveAnomalySummary.add_member(:anomaly_resources, Shapes::ShapeRef.new(shape: AnomalyResources, location_name: "AnomalyResources"))
|
882
|
+
ProactiveAnomalySummary.add_member(:description, Shapes::ShapeRef.new(shape: AnomalyDescription, location_name: "Description"))
|
876
883
|
ProactiveAnomalySummary.struct_class = Types::ProactiveAnomalySummary
|
877
884
|
|
878
885
|
ProactiveInsight.add_member(:id, Shapes::ShapeRef.new(shape: InsightId, location_name: "Id"))
|
@@ -14,36 +14,39 @@ module Aws::DevOpsGuru
|
|
14
14
|
use_dual_stack = parameters.use_dual_stack
|
15
15
|
use_fips = parameters.use_fips
|
16
16
|
endpoint = parameters.endpoint
|
17
|
-
if
|
18
|
-
if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
|
19
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
20
|
-
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
21
|
-
end
|
22
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
23
|
-
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
|
24
|
-
end
|
25
|
-
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
26
|
-
end
|
27
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
28
|
-
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
29
|
-
return Aws::Endpoints::Endpoint.new(url: "https://devops-guru-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
30
|
-
end
|
31
|
-
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
32
|
-
end
|
17
|
+
if Aws::Endpoints::Matchers.set?(endpoint)
|
33
18
|
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
34
|
-
|
35
|
-
return Aws::Endpoints::Endpoint.new(url: "https://devops-guru-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
36
|
-
end
|
37
|
-
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
19
|
+
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
38
20
|
end
|
39
21
|
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
40
|
-
|
41
|
-
|
22
|
+
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
|
23
|
+
end
|
24
|
+
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
25
|
+
end
|
26
|
+
if Aws::Endpoints::Matchers.set?(region)
|
27
|
+
if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
|
28
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
29
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
30
|
+
return Aws::Endpoints::Endpoint.new(url: "https://devops-guru-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
31
|
+
end
|
32
|
+
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
33
|
+
end
|
34
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
35
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
|
36
|
+
return Aws::Endpoints::Endpoint.new(url: "https://devops-guru-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
37
|
+
end
|
38
|
+
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
39
|
+
end
|
40
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
41
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
42
|
+
return Aws::Endpoints::Endpoint.new(url: "https://devops-guru.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
43
|
+
end
|
44
|
+
raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
|
42
45
|
end
|
43
|
-
|
46
|
+
return Aws::Endpoints::Endpoint.new(url: "https://devops-guru.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
44
47
|
end
|
45
|
-
return Aws::Endpoints::Endpoint.new(url: "https://devops-guru.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
46
48
|
end
|
49
|
+
raise ArgumentError, "Invalid Configuration: Missing Region"
|
47
50
|
raise ArgumentError, 'No endpoint could be resolved'
|
48
51
|
|
49
52
|
end
|
@@ -553,7 +553,7 @@ module Aws::DevOpsGuru
|
|
553
553
|
#
|
554
554
|
#
|
555
555
|
#
|
556
|
-
# [1]: https://
|
556
|
+
# [1]: https://docs.aws.amazon.com/whitepapers/latest/tagging-best-practices/tagging-best-practices.html
|
557
557
|
# @return [Array<Types::TagCostEstimationResourceCollectionFilter>]
|
558
558
|
#
|
559
559
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/CostEstimationResourceCollectionFilter AWS API Documentation
|
@@ -1000,7 +1000,7 @@ module Aws::DevOpsGuru
|
|
1000
1000
|
#
|
1001
1001
|
#
|
1002
1002
|
#
|
1003
|
-
# [1]: https://
|
1003
|
+
# [1]: https://docs.aws.amazon.com/whitepapers/latest/tagging-best-practices/tagging-best-practices.html
|
1004
1004
|
# @return [Array<Types::TagHealth>]
|
1005
1005
|
#
|
1006
1006
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/DescribeOrganizationResourceCollectionHealthResponse AWS API Documentation
|
@@ -1096,7 +1096,7 @@ module Aws::DevOpsGuru
|
|
1096
1096
|
#
|
1097
1097
|
#
|
1098
1098
|
#
|
1099
|
-
# [1]: https://
|
1099
|
+
# [1]: https://docs.aws.amazon.com/whitepapers/latest/tagging-best-practices/tagging-best-practices.html
|
1100
1100
|
# @return [Array<Types::TagHealth>]
|
1101
1101
|
#
|
1102
1102
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/DescribeResourceCollectionHealthResponse AWS API Documentation
|
@@ -1464,6 +1464,20 @@ module Aws::DevOpsGuru
|
|
1464
1464
|
include Aws::Structure
|
1465
1465
|
end
|
1466
1466
|
|
1467
|
+
# Specifies one or more service names that are used to list anomalies.
|
1468
|
+
#
|
1469
|
+
# @!attribute [rw] service_collection
|
1470
|
+
# A collection of the names of Amazon Web Services services.
|
1471
|
+
# @return [Types::ServiceCollection]
|
1472
|
+
#
|
1473
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ListAnomaliesForInsightFilters AWS API Documentation
|
1474
|
+
#
|
1475
|
+
class ListAnomaliesForInsightFilters < Struct.new(
|
1476
|
+
:service_collection)
|
1477
|
+
SENSITIVE = []
|
1478
|
+
include Aws::Structure
|
1479
|
+
end
|
1480
|
+
|
1467
1481
|
# @!attribute [rw] insight_id
|
1468
1482
|
# The ID of the insight. The returned anomalies belong to this
|
1469
1483
|
# insight.
|
@@ -1489,6 +1503,10 @@ module Aws::DevOpsGuru
|
|
1489
1503
|
# The ID of the Amazon Web Services account.
|
1490
1504
|
# @return [String]
|
1491
1505
|
#
|
1506
|
+
# @!attribute [rw] filters
|
1507
|
+
# Specifies one or more service names that are used to list anomalies.
|
1508
|
+
# @return [Types::ListAnomaliesForInsightFilters]
|
1509
|
+
#
|
1492
1510
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ListAnomaliesForInsightRequest AWS API Documentation
|
1493
1511
|
#
|
1494
1512
|
class ListAnomaliesForInsightRequest < Struct.new(
|
@@ -1496,7 +1514,8 @@ module Aws::DevOpsGuru
|
|
1496
1514
|
:start_time_range,
|
1497
1515
|
:max_results,
|
1498
1516
|
:next_token,
|
1499
|
-
:account_id
|
1517
|
+
:account_id,
|
1518
|
+
:filters)
|
1500
1519
|
SENSITIVE = []
|
1501
1520
|
include Aws::Structure
|
1502
1521
|
end
|
@@ -2781,6 +2800,10 @@ module Aws::DevOpsGuru
|
|
2781
2800
|
# behavior.
|
2782
2801
|
# @return [Array<Types::AnomalyResource>]
|
2783
2802
|
#
|
2803
|
+
# @!attribute [rw] description
|
2804
|
+
# A description of the proactive anomaly.
|
2805
|
+
# @return [String]
|
2806
|
+
#
|
2784
2807
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ProactiveAnomaly AWS API Documentation
|
2785
2808
|
#
|
2786
2809
|
class ProactiveAnomaly < Struct.new(
|
@@ -2796,7 +2819,8 @@ module Aws::DevOpsGuru
|
|
2796
2819
|
:resource_collection,
|
2797
2820
|
:limit,
|
2798
2821
|
:source_metadata,
|
2799
|
-
:anomaly_resources
|
2822
|
+
:anomaly_resources,
|
2823
|
+
:description)
|
2800
2824
|
SENSITIVE = []
|
2801
2825
|
include Aws::Structure
|
2802
2826
|
end
|
@@ -2881,6 +2905,10 @@ module Aws::DevOpsGuru
|
|
2881
2905
|
# behavior.
|
2882
2906
|
# @return [Array<Types::AnomalyResource>]
|
2883
2907
|
#
|
2908
|
+
# @!attribute [rw] description
|
2909
|
+
# A description of the proactive anomaly.
|
2910
|
+
# @return [String]
|
2911
|
+
#
|
2884
2912
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ProactiveAnomalySummary AWS API Documentation
|
2885
2913
|
#
|
2886
2914
|
class ProactiveAnomalySummary < Struct.new(
|
@@ -2896,7 +2924,8 @@ module Aws::DevOpsGuru
|
|
2896
2924
|
:resource_collection,
|
2897
2925
|
:limit,
|
2898
2926
|
:source_metadata,
|
2899
|
-
:anomaly_resources
|
2927
|
+
:anomaly_resources,
|
2928
|
+
:description)
|
2900
2929
|
SENSITIVE = []
|
2901
2930
|
include Aws::Structure
|
2902
2931
|
end
|
@@ -3803,7 +3832,7 @@ module Aws::DevOpsGuru
|
|
3803
3832
|
#
|
3804
3833
|
#
|
3805
3834
|
#
|
3806
|
-
# [1]: https://
|
3835
|
+
# [1]: https://docs.aws.amazon.com/whitepapers/latest/tagging-best-practices/tagging-best-practices.html
|
3807
3836
|
# @return [Array<Types::TagCollection>]
|
3808
3837
|
#
|
3809
3838
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ResourceCollection AWS API Documentation
|
@@ -3867,7 +3896,7 @@ module Aws::DevOpsGuru
|
|
3867
3896
|
#
|
3868
3897
|
#
|
3869
3898
|
#
|
3870
|
-
# [1]: https://
|
3899
|
+
# [1]: https://docs.aws.amazon.com/whitepapers/latest/tagging-best-practices/tagging-best-practices.html
|
3871
3900
|
# @return [Array<Types::TagCollectionFilter>]
|
3872
3901
|
#
|
3873
3902
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ResourceCollectionFilter AWS API Documentation
|
@@ -3903,8 +3932,12 @@ module Aws::DevOpsGuru
|
|
3903
3932
|
include Aws::Structure
|
3904
3933
|
end
|
3905
3934
|
|
3906
|
-
# Specifies
|
3907
|
-
#
|
3935
|
+
# Specifies values used to filter responses when searching for insights.
|
3936
|
+
# You can use a `ResourceCollection`, `ServiceCollection`, array of
|
3937
|
+
# severities, and an array of status values. Each filter type contains
|
3938
|
+
# one or more values to search for. If you specify multiple filter
|
3939
|
+
# types, the filter types are joined with an `AND`, and the request
|
3940
|
+
# returns only results that match all of the specified filters.
|
3908
3941
|
#
|
3909
3942
|
# @!attribute [rw] severities
|
3910
3943
|
# An array of severity values used to search for insights.
|
@@ -4380,7 +4413,7 @@ module Aws::DevOpsGuru
|
|
4380
4413
|
#
|
4381
4414
|
#
|
4382
4415
|
#
|
4383
|
-
# [1]: https://
|
4416
|
+
# [1]: https://docs.aws.amazon.com/whitepapers/latest/tagging-best-practices/tagging-best-practices.html
|
4384
4417
|
#
|
4385
4418
|
# @!attribute [rw] app_boundary_key
|
4386
4419
|
# An Amazon Web Services tag *key* that is used to identify the Amazon
|
@@ -4702,7 +4735,7 @@ module Aws::DevOpsGuru
|
|
4702
4735
|
#
|
4703
4736
|
#
|
4704
4737
|
#
|
4705
|
-
# [1]: https://
|
4738
|
+
# [1]: https://docs.aws.amazon.com/whitepapers/latest/tagging-best-practices/tagging-best-practices.html
|
4706
4739
|
# @return [Array<Types::UpdateTagCollectionFilter>]
|
4707
4740
|
#
|
4708
4741
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/UpdateResourceCollectionFilter AWS API Documentation
|
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.30.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: 2023-
|
11
|
+
date: 2023-02-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|