aws-sdk-devopsguru 1.27.0 → 1.28.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b36b88c48d359b4afb5f8c66785a74ca6861a17cb34d13e1581657b051f638b7
4
- data.tar.gz: 47706df23d05578836620697d61979d28293c2e67921ebc05fd96d37dd643e4d
3
+ metadata.gz: bbadd72b1b8b267348269f6e18e3067c2ce52491c64be60811fce60b75e56400
4
+ data.tar.gz: bd256ece1f242f6a2212f64e9b4fb59443aaa445b4123c1426cc5544bbfc167d
5
5
  SHA512:
6
- metadata.gz: 29e0ccbc6573c3054e7939863e79b628dbdc7c5bb0406c20016cd6a9e2db1461a34bd9bbb33c30b7006e093a688b52661118699d768387872f41bc19c1d6992e
7
- data.tar.gz: 685a6b819e4389dac474f57ab2dea74a8810081abb873ea4a3d11c1368e617ef578f2b02a8bf5f8b4f085f28571d795eceeac231145996035bce2dbe8f832bff
6
+ metadata.gz: d7fd15c47a99fe93fd4660e02fb3f573dad75531521857b9409191b7d7f23b8524b7a00c41bf9fb8bc41a0c92b127e0792c8bc473c22ed26daddd5be2feb8770
7
+ data.tar.gz: 1c973ad07b7f7ea36cddff31bd9a12c475626b11efe7ef687a9657c1be35d6a72bb8d97c548144d97d170257a8c7d8c0ef95f6f76123db8c2d91ff26c930f1e4
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.28.0 (2023-01-18)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
10
+
4
11
  1.27.0 (2022-10-25)
5
12
  ------------------
6
13
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.27.0
1
+ 1.28.0
@@ -2324,7 +2324,7 @@ module Aws::DevOpsGuru
2324
2324
  params: params,
2325
2325
  config: config)
2326
2326
  context[:gem_name] = 'aws-sdk-devopsguru'
2327
- context[:gem_version] = '1.27.0'
2327
+ context[:gem_version] = '1.28.0'
2328
2328
  Seahorse::Client::Request.new(handlers, context)
2329
2329
  end
2330
2330
 
@@ -9,104 +9,43 @@
9
9
 
10
10
  module Aws::DevOpsGuru
11
11
  class EndpointProvider
12
- def initialize(rule_set = nil)
13
- @@rule_set ||= begin
14
- endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
15
- Aws::Endpoints::RuleSet.new(
16
- version: endpoint_rules['version'],
17
- service_id: endpoint_rules['serviceId'],
18
- parameters: endpoint_rules['parameters'],
19
- rules: endpoint_rules['rules']
20
- )
12
+ def resolve_endpoint(parameters)
13
+ region = parameters.region
14
+ use_dual_stack = parameters.use_dual_stack
15
+ use_fips = parameters.use_fips
16
+ endpoint = parameters.endpoint
17
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
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
33
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
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"
38
+ end
39
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
40
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
41
+ return Aws::Endpoints::Endpoint.new(url: "https://devops-guru.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
42
+ end
43
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
44
+ end
45
+ return Aws::Endpoints::Endpoint.new(url: "https://devops-guru.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
21
46
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
47
+ raise ArgumentError, 'No endpoint could be resolved'
24
48
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
49
  end
28
-
29
- # @api private
30
- RULES = <<-JSON
31
- eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
32
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
33
- dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
34
- cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
35
- dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
36
- ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
37
- ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
38
- ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
39
- aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
40
- OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
41
- UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
42
- dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
43
- UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
44
- dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
45
- ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
46
- IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
47
- aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
48
- bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
49
- ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
50
- Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
51
- cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
52
- InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
53
- aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
54
- cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
55
- InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
56
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
57
- UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
58
- SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
59
- eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
60
- InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
61
- LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
62
- ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
63
- b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
64
- fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
65
- RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
66
- ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
67
- ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
68
- ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
69
- dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
70
- dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
71
- Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
72
- In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
73
- YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
74
- YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
75
- cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
76
- dCI6eyJ1cmwiOiJodHRwczovL2Rldm9wcy1ndXJ1LWZpcHMue1JlZ2lvbn0u
77
- e1BhcnRpdGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9IiwicHJvcGVy
78
- dGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfSx7
79
- ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMgYW5kIER1YWxTdGFjayBh
80
- cmUgZW5hYmxlZCwgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBv
81
- cnQgb25lIG9yIGJvdGgiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9u
82
- cyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNl
83
- RklQUyJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
84
- dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
85
- Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
86
- In0sInN1cHBvcnRzRklQUyJdfV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6
87
- W3siY29uZGl0aW9ucyI6W10sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNv
88
- bmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL2Rldm9w
89
- cy1ndXJ1LWZpcHMue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkbnNTdWZm
90
- aXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVu
91
- ZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoiRklQUyBp
92
- cyBlbmFibGVkIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0
93
- IEZJUFMiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W3siZm4i
94
- OiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRHVhbFN0YWNr
95
- In0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9u
96
- cyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUseyJmbiI6
97
- ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQifSwi
98
- c3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMi
99
- Olt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczov
100
- L2Rldm9wcy1ndXJ1LntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0
101
- YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0s
102
- InR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3Ii
103
- OiJEdWFsU3RhY2sgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9l
104
- cyBub3Qgc3VwcG9ydCBEdWFsU3RhY2siLCJ0eXBlIjoiZXJyb3IifV19LHsi
105
- Y29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vZGV2
106
- b3BzLWd1cnUue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9
107
- IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBv
108
- aW50In1dfV19
109
-
110
- JSON
111
50
  end
112
51
  end
@@ -76,21 +76,6 @@ module Aws::DevOpsGuru
76
76
  include Aws::Structure
77
77
  end
78
78
 
79
- # @note When making an API call, you may pass AddNotificationChannelRequest
80
- # data as a hash:
81
- #
82
- # {
83
- # config: { # required
84
- # sns: { # required
85
- # topic_arn: "TopicArn",
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
- # },
91
- # },
92
- # }
93
- #
94
79
  # @!attribute [rw] config
95
80
  # A `NotificationChannelConfig` object that specifies what type of
96
81
  # notification channel to add. The one supported notification channel
@@ -121,13 +106,6 @@ module Aws::DevOpsGuru
121
106
  # Profiler. This returns whether DevOps Guru is configured to consume
122
107
  # recommendations generated from Amazon CodeGuru Profiler.
123
108
  #
124
- # @note When making an API call, you may pass AmazonCodeGuruProfilerIntegration
125
- # data as a hash:
126
- #
127
- # {
128
- # status: "ENABLED", # accepts ENABLED, DISABLED
129
- # }
130
- #
131
109
  # @!attribute [rw] status
132
110
  # The status of the CodeGuru Profiler integration. Specifies if DevOps
133
111
  # Guru is enabled to consume recommendations that are generated from
@@ -305,13 +283,6 @@ module Aws::DevOpsGuru
305
283
  #
306
284
  # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacks.html
307
285
  #
308
- # @note When making an API call, you may pass CloudFormationCollection
309
- # data as a hash:
310
- #
311
- # {
312
- # stack_names: ["StackName"],
313
- # }
314
- #
315
286
  # @!attribute [rw] stack_names
316
287
  # An array of CloudFormation stack names.
317
288
  # @return [Array<String>]
@@ -357,13 +328,6 @@ module Aws::DevOpsGuru
357
328
  #
358
329
  # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacks.html
359
330
  #
360
- # @note When making an API call, you may pass CloudFormationCostEstimationResourceCollectionFilter
361
- # data as a hash:
362
- #
363
- # {
364
- # stack_names: ["StackName"],
365
- # }
366
- #
367
331
  # @!attribute [rw] stack_names
368
332
  # An array of CloudFormation stack names. Its size is fixed at 1 item.
369
333
  # @return [Array<String>]
@@ -545,21 +509,6 @@ module Aws::DevOpsGuru
545
509
  # [1]: https://docs.aws.amazon.com/devops-guru/latest/userguide/cost-estimate.html
546
510
  # [2]: http://aws.amazon.com/devops-guru/pricing/
547
511
  #
548
- # @note When making an API call, you may pass CostEstimationResourceCollectionFilter
549
- # data as a hash:
550
- #
551
- # {
552
- # cloud_formation: {
553
- # stack_names: ["StackName"],
554
- # },
555
- # tags: [
556
- # {
557
- # app_boundary_key: "AppBoundaryKey", # required
558
- # tag_values: ["TagValue"], # required
559
- # },
560
- # ],
561
- # }
562
- #
563
512
  # @!attribute [rw] cloud_formation
564
513
  # An object that specifies the CloudFormation stack that defines the
565
514
  # Amazon Web Services resources used to create a monthly estimate for
@@ -635,13 +584,6 @@ module Aws::DevOpsGuru
635
584
  include Aws::Structure
636
585
  end
637
586
 
638
- # @note When making an API call, you may pass DeleteInsightRequest
639
- # data as a hash:
640
- #
641
- # {
642
- # id: "InsightId", # required
643
- # }
644
- #
645
587
  # @!attribute [rw] id
646
588
  # The ID of the insight.
647
589
  # @return [String]
@@ -701,14 +643,6 @@ module Aws::DevOpsGuru
701
643
  include Aws::Structure
702
644
  end
703
645
 
704
- # @note When making an API call, you may pass DescribeAccountOverviewRequest
705
- # data as a hash:
706
- #
707
- # {
708
- # from_time: Time.now, # required
709
- # to_time: Time.now,
710
- # }
711
- #
712
646
  # @!attribute [rw] from_time
713
647
  # The start of the time range passed in. The start time granularity is
714
648
  # at the day level. The floor of the start time is used. Returned
@@ -758,14 +692,6 @@ module Aws::DevOpsGuru
758
692
  include Aws::Structure
759
693
  end
760
694
 
761
- # @note When making an API call, you may pass DescribeAnomalyRequest
762
- # data as a hash:
763
- #
764
- # {
765
- # id: "AnomalyId", # required
766
- # account_id: "AwsAccountId",
767
- # }
768
- #
769
695
  # @!attribute [rw] id
770
696
  # The ID of the anomaly.
771
697
  # @return [String]
@@ -818,13 +744,6 @@ module Aws::DevOpsGuru
818
744
  include Aws::Structure
819
745
  end
820
746
 
821
- # @note When making an API call, you may pass DescribeFeedbackRequest
822
- # data as a hash:
823
- #
824
- # {
825
- # insight_id: "InsightId",
826
- # }
827
- #
828
747
  # @!attribute [rw] insight_id
829
748
  # The ID of the insight for which the feedback was provided.
830
749
  # @return [String]
@@ -849,14 +768,6 @@ module Aws::DevOpsGuru
849
768
  include Aws::Structure
850
769
  end
851
770
 
852
- # @note When making an API call, you may pass DescribeInsightRequest
853
- # data as a hash:
854
- #
855
- # {
856
- # id: "InsightId", # required
857
- # account_id: "AwsAccountId",
858
- # }
859
- #
860
771
  # @!attribute [rw] id
861
772
  # The ID of the insight.
862
773
  # @return [String]
@@ -891,14 +802,6 @@ module Aws::DevOpsGuru
891
802
  include Aws::Structure
892
803
  end
893
804
 
894
- # @note When making an API call, you may pass DescribeOrganizationHealthRequest
895
- # data as a hash:
896
- #
897
- # {
898
- # account_ids: ["AwsAccountId"],
899
- # organizational_unit_ids: ["OrganizationalUnitId"],
900
- # }
901
- #
902
805
  # @!attribute [rw] account_ids
903
806
  # The ID of the Amazon Web Services account.
904
807
  # @return [Array<String>]
@@ -947,16 +850,6 @@ module Aws::DevOpsGuru
947
850
  include Aws::Structure
948
851
  end
949
852
 
950
- # @note When making an API call, you may pass DescribeOrganizationOverviewRequest
951
- # data as a hash:
952
- #
953
- # {
954
- # from_time: Time.now, # required
955
- # to_time: Time.now,
956
- # account_ids: ["AwsAccountId"],
957
- # organizational_unit_ids: ["OrganizationalUnitId"],
958
- # }
959
- #
960
853
  # @!attribute [rw] from_time
961
854
  # The start of the time range passed in. The start time granularity is
962
855
  # at the day level. The floor of the start time is used. Returned
@@ -1008,17 +901,6 @@ module Aws::DevOpsGuru
1008
901
  include Aws::Structure
1009
902
  end
1010
903
 
1011
- # @note When making an API call, you may pass DescribeOrganizationResourceCollectionHealthRequest
1012
- # data as a hash:
1013
- #
1014
- # {
1015
- # organization_resource_collection_type: "AWS_CLOUD_FORMATION", # required, accepts AWS_CLOUD_FORMATION, AWS_SERVICE, AWS_ACCOUNT, AWS_TAGS
1016
- # account_ids: ["AwsAccountId"],
1017
- # organizational_unit_ids: ["OrganizationalUnitId"],
1018
- # next_token: "UuidNextToken",
1019
- # max_results: 1,
1020
- # }
1021
- #
1022
904
  # @!attribute [rw] organization_resource_collection_type
1023
905
  # An Amazon Web Services resource collection type. This type specifies
1024
906
  # how analyzed Amazon Web Services resources are defined. The two
@@ -1133,14 +1015,6 @@ module Aws::DevOpsGuru
1133
1015
  include Aws::Structure
1134
1016
  end
1135
1017
 
1136
- # @note When making an API call, you may pass DescribeResourceCollectionHealthRequest
1137
- # data as a hash:
1138
- #
1139
- # {
1140
- # resource_collection_type: "AWS_CLOUD_FORMATION", # required, accepts AWS_CLOUD_FORMATION, AWS_SERVICE, AWS_TAGS
1141
- # next_token: "UuidNextToken",
1142
- # }
1143
- #
1144
1018
  # @!attribute [rw] resource_collection_type
1145
1019
  # An Amazon Web Services resource collection type. This type specifies
1146
1020
  # how analyzed Amazon Web Services resources are defined. The two
@@ -1258,14 +1132,6 @@ module Aws::DevOpsGuru
1258
1132
  # A range of time that specifies when anomalous behavior in an anomaly
1259
1133
  # or insight ended.
1260
1134
  #
1261
- # @note When making an API call, you may pass EndTimeRange
1262
- # data as a hash:
1263
- #
1264
- # {
1265
- # from_time: Time.now,
1266
- # to_time: Time.now,
1267
- # }
1268
- #
1269
1135
  # @!attribute [rw] from_time
1270
1136
  # The earliest end time in the time range.
1271
1137
  # @return [Time]
@@ -1377,15 +1243,6 @@ module Aws::DevOpsGuru
1377
1243
  # Information about the integration of DevOps Guru as consumer with
1378
1244
  # another AWS service, such as AWS CodeGuru Profiler via EventBridge.
1379
1245
  #
1380
- # @note When making an API call, you may pass EventSourcesConfig
1381
- # data as a hash:
1382
- #
1383
- # {
1384
- # amazon_code_guru_profiler: {
1385
- # status: "ENABLED", # accepts ENABLED, DISABLED
1386
- # },
1387
- # }
1388
- #
1389
1246
  # @!attribute [rw] amazon_code_guru_profiler
1390
1247
  # Information about whether DevOps Guru is configured to consume
1391
1248
  # recommendations which are generated from AWS CodeGuru Profiler.
@@ -1404,14 +1261,6 @@ module Aws::DevOpsGuru
1404
1261
  # Guru to find anomalous behavior and provide recommendations to improve
1405
1262
  # your operational solutions.
1406
1263
  #
1407
- # @note When making an API call, you may pass EventTimeRange
1408
- # data as a hash:
1409
- #
1410
- # {
1411
- # from_time: Time.now, # required
1412
- # to_time: Time.now, # required
1413
- # }
1414
- #
1415
1264
  # @!attribute [rw] from_time
1416
1265
  # The time when the event started.
1417
1266
  # @return [Time]
@@ -1429,13 +1278,6 @@ module Aws::DevOpsGuru
1429
1278
  include Aws::Structure
1430
1279
  end
1431
1280
 
1432
- # @note When making an API call, you may pass GetCostEstimationRequest
1433
- # data as a hash:
1434
- #
1435
- # {
1436
- # next_token: "UuidNextToken",
1437
- # }
1438
- #
1439
1281
  # @!attribute [rw] next_token
1440
1282
  # The pagination token to use to retrieve the next page of results for
1441
1283
  # this operation. If this value is null, it retrieves the first page.
@@ -1494,14 +1336,6 @@ module Aws::DevOpsGuru
1494
1336
  include Aws::Structure
1495
1337
  end
1496
1338
 
1497
- # @note When making an API call, you may pass GetResourceCollectionRequest
1498
- # data as a hash:
1499
- #
1500
- # {
1501
- # resource_collection_type: "AWS_CLOUD_FORMATION", # required, accepts AWS_CLOUD_FORMATION, AWS_SERVICE, AWS_TAGS
1502
- # next_token: "UuidNextToken",
1503
- # }
1504
- #
1505
1339
  # @!attribute [rw] resource_collection_type
1506
1340
  # The type of Amazon Web Services resource collections to return. The
1507
1341
  # one valid value is `CLOUD_FORMATION` for Amazon Web Services
@@ -1549,14 +1383,6 @@ module Aws::DevOpsGuru
1549
1383
 
1550
1384
  # Information about insight feedback received from a customer.
1551
1385
  #
1552
- # @note When making an API call, you may pass InsightFeedback
1553
- # data as a hash:
1554
- #
1555
- # {
1556
- # id: "InsightId",
1557
- # feedback: "VALID_COLLECTION", # accepts VALID_COLLECTION, RECOMMENDATION_USEFUL, ALERT_TOO_SENSITIVE, DATA_NOISY_ANOMALY, DATA_INCORRECT
1558
- # }
1559
- #
1560
1386
  # @!attribute [rw] id
1561
1387
  # The insight feedback ID.
1562
1388
  # @return [String]
@@ -1638,20 +1464,6 @@ module Aws::DevOpsGuru
1638
1464
  include Aws::Structure
1639
1465
  end
1640
1466
 
1641
- # @note When making an API call, you may pass ListAnomaliesForInsightRequest
1642
- # data as a hash:
1643
- #
1644
- # {
1645
- # insight_id: "InsightId", # required
1646
- # start_time_range: {
1647
- # from_time: Time.now,
1648
- # to_time: Time.now,
1649
- # },
1650
- # max_results: 1,
1651
- # next_token: "UuidNextToken",
1652
- # account_id: "AwsAccountId",
1653
- # }
1654
- #
1655
1467
  # @!attribute [rw] insight_id
1656
1468
  # The ID of the insight. The returned anomalies belong to this
1657
1469
  # insight.
@@ -1714,15 +1526,6 @@ module Aws::DevOpsGuru
1714
1526
  include Aws::Structure
1715
1527
  end
1716
1528
 
1717
- # @note When making an API call, you may pass ListAnomalousLogGroupsRequest
1718
- # data as a hash:
1719
- #
1720
- # {
1721
- # insight_id: "InsightId", # required
1722
- # max_results: 1,
1723
- # next_token: "UuidNextToken",
1724
- # }
1725
- #
1726
1529
  # @!attribute [rw] insight_id
1727
1530
  # The ID of the insight containing the log groups.
1728
1531
  # @return [String]
@@ -1775,31 +1578,6 @@ module Aws::DevOpsGuru
1775
1578
  # Filters you can use to specify which events are returned when
1776
1579
  # `ListEvents` is called.
1777
1580
  #
1778
- # @note When making an API call, you may pass ListEventsFilters
1779
- # data as a hash:
1780
- #
1781
- # {
1782
- # insight_id: "InsightId",
1783
- # event_time_range: {
1784
- # from_time: Time.now, # required
1785
- # to_time: Time.now, # required
1786
- # },
1787
- # event_class: "INFRASTRUCTURE", # accepts INFRASTRUCTURE, DEPLOYMENT, SECURITY_CHANGE, CONFIG_CHANGE, SCHEMA_CHANGE
1788
- # event_source: "EventSource",
1789
- # data_source: "AWS_CLOUD_TRAIL", # accepts AWS_CLOUD_TRAIL, AWS_CODE_DEPLOY
1790
- # resource_collection: {
1791
- # cloud_formation: {
1792
- # stack_names: ["StackName"],
1793
- # },
1794
- # tags: [
1795
- # {
1796
- # app_boundary_key: "AppBoundaryKey", # required
1797
- # tag_values: ["TagValue"], # required
1798
- # },
1799
- # ],
1800
- # },
1801
- # }
1802
- #
1803
1581
  # @!attribute [rw] insight_id
1804
1582
  # An ID of an insight that is related to the events you want to filter
1805
1583
  # for.
@@ -1849,36 +1627,6 @@ module Aws::DevOpsGuru
1849
1627
  include Aws::Structure
1850
1628
  end
1851
1629
 
1852
- # @note When making an API call, you may pass ListEventsRequest
1853
- # data as a hash:
1854
- #
1855
- # {
1856
- # filters: { # required
1857
- # insight_id: "InsightId",
1858
- # event_time_range: {
1859
- # from_time: Time.now, # required
1860
- # to_time: Time.now, # required
1861
- # },
1862
- # event_class: "INFRASTRUCTURE", # accepts INFRASTRUCTURE, DEPLOYMENT, SECURITY_CHANGE, CONFIG_CHANGE, SCHEMA_CHANGE
1863
- # event_source: "EventSource",
1864
- # data_source: "AWS_CLOUD_TRAIL", # accepts AWS_CLOUD_TRAIL, AWS_CODE_DEPLOY
1865
- # resource_collection: {
1866
- # cloud_formation: {
1867
- # stack_names: ["StackName"],
1868
- # },
1869
- # tags: [
1870
- # {
1871
- # app_boundary_key: "AppBoundaryKey", # required
1872
- # tag_values: ["TagValue"], # required
1873
- # },
1874
- # ],
1875
- # },
1876
- # },
1877
- # max_results: 1,
1878
- # next_token: "UuidNextToken",
1879
- # account_id: "AwsAccountId",
1880
- # }
1881
- #
1882
1630
  # @!attribute [rw] filters
1883
1631
  # A `ListEventsFilters` object used to specify which events to return.
1884
1632
  # @return [Types::ListEventsFilters]
@@ -1929,17 +1677,6 @@ module Aws::DevOpsGuru
1929
1677
 
1930
1678
  # Used to filter for insights that have any status.
1931
1679
  #
1932
- # @note When making an API call, you may pass ListInsightsAnyStatusFilter
1933
- # data as a hash:
1934
- #
1935
- # {
1936
- # type: "REACTIVE", # required, accepts REACTIVE, PROACTIVE
1937
- # start_time_range: { # required
1938
- # from_time: Time.now,
1939
- # to_time: Time.now,
1940
- # },
1941
- # }
1942
- #
1943
1680
  # @!attribute [rw] type
1944
1681
  # Use to filter for either `REACTIVE` or `PROACTIVE` insights.
1945
1682
  # @return [String]
@@ -1960,17 +1697,6 @@ module Aws::DevOpsGuru
1960
1697
 
1961
1698
  # Used to filter for insights that have the status `CLOSED`.
1962
1699
  #
1963
- # @note When making an API call, you may pass ListInsightsClosedStatusFilter
1964
- # data as a hash:
1965
- #
1966
- # {
1967
- # type: "REACTIVE", # required, accepts REACTIVE, PROACTIVE
1968
- # end_time_range: { # required
1969
- # from_time: Time.now,
1970
- # to_time: Time.now,
1971
- # },
1972
- # }
1973
- #
1974
1700
  # @!attribute [rw] type
1975
1701
  # Use to filter for either `REACTIVE` or `PROACTIVE` insights.
1976
1702
  # @return [String]
@@ -1991,13 +1717,6 @@ module Aws::DevOpsGuru
1991
1717
 
1992
1718
  # Used to filter for insights that have the status `ONGOING`.
1993
1719
  #
1994
- # @note When making an API call, you may pass ListInsightsOngoingStatusFilter
1995
- # data as a hash:
1996
- #
1997
- # {
1998
- # type: "REACTIVE", # required, accepts REACTIVE, PROACTIVE
1999
- # }
2000
- #
2001
1720
  # @!attribute [rw] type
2002
1721
  # Use to filter for either `REACTIVE` or `PROACTIVE` insights.
2003
1722
  # @return [String]
@@ -2010,33 +1729,6 @@ module Aws::DevOpsGuru
2010
1729
  include Aws::Structure
2011
1730
  end
2012
1731
 
2013
- # @note When making an API call, you may pass ListInsightsRequest
2014
- # data as a hash:
2015
- #
2016
- # {
2017
- # status_filter: { # required
2018
- # ongoing: {
2019
- # type: "REACTIVE", # required, accepts REACTIVE, PROACTIVE
2020
- # },
2021
- # closed: {
2022
- # type: "REACTIVE", # required, accepts REACTIVE, PROACTIVE
2023
- # end_time_range: { # required
2024
- # from_time: Time.now,
2025
- # to_time: Time.now,
2026
- # },
2027
- # },
2028
- # any: {
2029
- # type: "REACTIVE", # required, accepts REACTIVE, PROACTIVE
2030
- # start_time_range: { # required
2031
- # from_time: Time.now,
2032
- # to_time: Time.now,
2033
- # },
2034
- # },
2035
- # },
2036
- # max_results: 1,
2037
- # next_token: "UuidNextToken",
2038
- # }
2039
- #
2040
1732
  # @!attribute [rw] status_filter
2041
1733
  # A filter used to filter the returned insights by their status. You
2042
1734
  # can specify one status filter.
@@ -2088,29 +1780,6 @@ module Aws::DevOpsGuru
2088
1780
 
2089
1781
  # A filter used by `ListInsights` to specify which insights to return.
2090
1782
  #
2091
- # @note When making an API call, you may pass ListInsightsStatusFilter
2092
- # data as a hash:
2093
- #
2094
- # {
2095
- # ongoing: {
2096
- # type: "REACTIVE", # required, accepts REACTIVE, PROACTIVE
2097
- # },
2098
- # closed: {
2099
- # type: "REACTIVE", # required, accepts REACTIVE, PROACTIVE
2100
- # end_time_range: { # required
2101
- # from_time: Time.now,
2102
- # to_time: Time.now,
2103
- # },
2104
- # },
2105
- # any: {
2106
- # type: "REACTIVE", # required, accepts REACTIVE, PROACTIVE
2107
- # start_time_range: { # required
2108
- # from_time: Time.now,
2109
- # to_time: Time.now,
2110
- # },
2111
- # },
2112
- # }
2113
- #
2114
1783
  # @!attribute [rw] ongoing
2115
1784
  # A `ListInsightsAnyStatusFilter` that specifies ongoing insights that
2116
1785
  # are either `REACTIVE` or `PROACTIVE`.
@@ -2139,14 +1808,6 @@ module Aws::DevOpsGuru
2139
1808
  # Filters to determine which monitored resources you want to retrieve.
2140
1809
  # You can filter by resource type or resource permission status.
2141
1810
  #
2142
- # @note When making an API call, you may pass ListMonitoredResourcesFilters
2143
- # data as a hash:
2144
- #
2145
- # {
2146
- # resource_permission: "FULL_PERMISSION", # required, accepts FULL_PERMISSION, MISSING_PERMISSION
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
2148
- # }
2149
- #
2150
1811
  # @!attribute [rw] resource_permission
2151
1812
  # The permission status of a resource.
2152
1813
  # @return [String]
@@ -2164,18 +1825,6 @@ module Aws::DevOpsGuru
2164
1825
  include Aws::Structure
2165
1826
  end
2166
1827
 
2167
- # @note When making an API call, you may pass ListMonitoredResourcesRequest
2168
- # data as a hash:
2169
- #
2170
- # {
2171
- # filters: {
2172
- # resource_permission: "FULL_PERMISSION", # required, accepts FULL_PERMISSION, MISSING_PERMISSION
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
2174
- # },
2175
- # max_results: 1,
2176
- # next_token: "UuidNextToken",
2177
- # }
2178
- #
2179
1828
  # @!attribute [rw] filters
2180
1829
  # Filters to determine which monitored resources you want to retrieve.
2181
1830
  # You can filter by resource type or resource permission status.
@@ -2222,13 +1871,6 @@ module Aws::DevOpsGuru
2222
1871
  include Aws::Structure
2223
1872
  end
2224
1873
 
2225
- # @note When making an API call, you may pass ListNotificationChannelsRequest
2226
- # data as a hash:
2227
- #
2228
- # {
2229
- # next_token: "UuidNextToken",
2230
- # }
2231
- #
2232
1874
  # @!attribute [rw] next_token
2233
1875
  # The pagination token to use to retrieve the next page of results for
2234
1876
  # this operation. If this value is null, it retrieves the first page.
@@ -2260,35 +1902,6 @@ module Aws::DevOpsGuru
2260
1902
  include Aws::Structure
2261
1903
  end
2262
1904
 
2263
- # @note When making an API call, you may pass ListOrganizationInsightsRequest
2264
- # data as a hash:
2265
- #
2266
- # {
2267
- # status_filter: { # required
2268
- # ongoing: {
2269
- # type: "REACTIVE", # required, accepts REACTIVE, PROACTIVE
2270
- # },
2271
- # closed: {
2272
- # type: "REACTIVE", # required, accepts REACTIVE, PROACTIVE
2273
- # end_time_range: { # required
2274
- # from_time: Time.now,
2275
- # to_time: Time.now,
2276
- # },
2277
- # },
2278
- # any: {
2279
- # type: "REACTIVE", # required, accepts REACTIVE, PROACTIVE
2280
- # start_time_range: { # required
2281
- # from_time: Time.now,
2282
- # to_time: Time.now,
2283
- # },
2284
- # },
2285
- # },
2286
- # max_results: 1,
2287
- # account_ids: ["AwsAccountId"],
2288
- # organizational_unit_ids: ["OrganizationalUnitId"],
2289
- # next_token: "UuidNextToken",
2290
- # }
2291
- #
2292
1905
  # @!attribute [rw] status_filter
2293
1906
  # A filter used by `ListInsights` to specify which insights to return.
2294
1907
  # @return [Types::ListInsightsStatusFilter]
@@ -2349,16 +1962,6 @@ module Aws::DevOpsGuru
2349
1962
  include Aws::Structure
2350
1963
  end
2351
1964
 
2352
- # @note When making an API call, you may pass ListRecommendationsRequest
2353
- # data as a hash:
2354
- #
2355
- # {
2356
- # insight_id: "InsightId", # required
2357
- # next_token: "UuidNextToken",
2358
- # locale: "DE_DE", # accepts DE_DE, EN_US, EN_GB, ES_ES, FR_FR, IT_IT, JA_JP, KO_KR, PT_BR, ZH_CN, ZH_TW
2359
- # account_id: "AwsAccountId",
2360
- # }
2361
- #
2362
1965
  # @!attribute [rw] insight_id
2363
1966
  # The ID of the requested insight.
2364
1967
  # @return [String]
@@ -2487,13 +2090,6 @@ module Aws::DevOpsGuru
2487
2090
  # groups for log anomaly detection. You can use this to update the
2488
2091
  # configuration.
2489
2092
  #
2490
- # @note When making an API call, you may pass LogsAnomalyDetectionIntegrationConfig
2491
- # data as a hash:
2492
- #
2493
- # {
2494
- # opt_in_status: "ENABLED", # accepts ENABLED, DISABLED
2495
- # }
2496
- #
2497
2093
  # @!attribute [rw] opt_in_status
2498
2094
  # Specifies if DevOps Guru is configured to perform log anomaly
2499
2095
  # detection on CloudWatch log groups.
@@ -2601,19 +2197,6 @@ module Aws::DevOpsGuru
2601
2197
  # DevOps Guru. The one supported notification channel is Amazon Simple
2602
2198
  # Notification Service (Amazon SNS).
2603
2199
  #
2604
- # @note When making an API call, you may pass NotificationChannelConfig
2605
- # data as a hash:
2606
- #
2607
- # {
2608
- # sns: { # required
2609
- # topic_arn: "TopicArn",
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
- # },
2615
- # }
2616
- #
2617
2200
  # @!attribute [rw] sns
2618
2201
  # Information about a notification channel configured in DevOps Guru
2619
2202
  # to send notifications when insights are created.
@@ -2664,14 +2247,6 @@ module Aws::DevOpsGuru
2664
2247
  # message types to receive notifications for. You can also choose to
2665
2248
  # specify which severity levels to receive notifications for.
2666
2249
  #
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
2250
  # @!attribute [rw] severities
2676
2251
  # The severity levels that you want to receive notifications for. For
2677
2252
  # example, you can choose to receive notifications only for insights
@@ -2719,13 +2294,6 @@ module Aws::DevOpsGuru
2719
2294
  # OpsItem in Amazon Web Services Systems Manager OpsCenter for each
2720
2295
  # created insight. You can use this to update the configuration.
2721
2296
  #
2722
- # @note When making an API call, you may pass OpsCenterIntegrationConfig
2723
- # data as a hash:
2724
- #
2725
- # {
2726
- # opt_in_status: "ENABLED", # accepts ENABLED, DISABLED
2727
- # }
2728
- #
2729
2297
  # @!attribute [rw] opt_in_status
2730
2298
  # Specifies if DevOps Guru is enabled to create an Amazon Web Services
2731
2299
  # Systems Manager OpsItem for each created insight.
@@ -3551,16 +3119,6 @@ module Aws::DevOpsGuru
3551
3119
  include Aws::Structure
3552
3120
  end
3553
3121
 
3554
- # @note When making an API call, you may pass PutFeedbackRequest
3555
- # data as a hash:
3556
- #
3557
- # {
3558
- # insight_feedback: {
3559
- # id: "InsightId",
3560
- # feedback: "VALID_COLLECTION", # accepts VALID_COLLECTION, RECOMMENDATION_USEFUL, ALERT_TOO_SENSITIVE, DATA_NOISY_ANOMALY, DATA_INCORRECT
3561
- # },
3562
- # }
3563
- #
3564
3122
  # @!attribute [rw] insight_feedback
3565
3123
  # The feedback from customers is about the recommendations in this
3566
3124
  # insight.
@@ -4175,13 +3733,6 @@ module Aws::DevOpsGuru
4175
3733
  include Aws::Structure
4176
3734
  end
4177
3735
 
4178
- # @note When making an API call, you may pass RemoveNotificationChannelRequest
4179
- # data as a hash:
4180
- #
4181
- # {
4182
- # id: "NotificationChannelId", # required
4183
- # }
4184
- #
4185
3736
  # @!attribute [rw] id
4186
3737
  # The ID of the notification channel to be removed.
4187
3738
  # @return [String]
@@ -4207,21 +3758,6 @@ module Aws::DevOpsGuru
4207
3758
  # same tag *key*. You can specify up to 500 Amazon Web Services
4208
3759
  # CloudFormation stacks.
4209
3760
  #
4210
- # @note When making an API call, you may pass ResourceCollection
4211
- # data as a hash:
4212
- #
4213
- # {
4214
- # cloud_formation: {
4215
- # stack_names: ["StackName"],
4216
- # },
4217
- # tags: [
4218
- # {
4219
- # app_boundary_key: "AppBoundaryKey", # required
4220
- # tag_values: ["TagValue"], # required
4221
- # },
4222
- # ],
4223
- # }
4224
- #
4225
3761
  # @!attribute [rw] cloud_formation
4226
3762
  # An array of the names of Amazon Web Services CloudFormation stacks.
4227
3763
  # The stacks define Amazon Web Services resources that DevOps Guru
@@ -4370,28 +3906,6 @@ module Aws::DevOpsGuru
4370
3906
  # Specifies one or more severity values and one or more status values
4371
3907
  # that are used to search for insights.
4372
3908
  #
4373
- # @note When making an API call, you may pass SearchInsightsFilters
4374
- # data as a hash:
4375
- #
4376
- # {
4377
- # severities: ["LOW"], # accepts LOW, MEDIUM, HIGH
4378
- # statuses: ["ONGOING"], # accepts ONGOING, CLOSED
4379
- # resource_collection: {
4380
- # cloud_formation: {
4381
- # stack_names: ["StackName"],
4382
- # },
4383
- # tags: [
4384
- # {
4385
- # app_boundary_key: "AppBoundaryKey", # required
4386
- # tag_values: ["TagValue"], # required
4387
- # },
4388
- # ],
4389
- # },
4390
- # service_collection: {
4391
- # 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
4392
- # },
4393
- # }
4394
- #
4395
3909
  # @!attribute [rw] severities
4396
3910
  # An array of severity values used to search for insights.
4397
3911
  # @return [Array<String>]
@@ -4426,37 +3940,6 @@ module Aws::DevOpsGuru
4426
3940
  include Aws::Structure
4427
3941
  end
4428
3942
 
4429
- # @note When making an API call, you may pass SearchInsightsRequest
4430
- # data as a hash:
4431
- #
4432
- # {
4433
- # start_time_range: { # required
4434
- # from_time: Time.now,
4435
- # to_time: Time.now,
4436
- # },
4437
- # filters: {
4438
- # severities: ["LOW"], # accepts LOW, MEDIUM, HIGH
4439
- # statuses: ["ONGOING"], # accepts ONGOING, CLOSED
4440
- # resource_collection: {
4441
- # cloud_formation: {
4442
- # stack_names: ["StackName"],
4443
- # },
4444
- # tags: [
4445
- # {
4446
- # app_boundary_key: "AppBoundaryKey", # required
4447
- # tag_values: ["TagValue"], # required
4448
- # },
4449
- # ],
4450
- # },
4451
- # service_collection: {
4452
- # 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
4453
- # },
4454
- # },
4455
- # max_results: 1,
4456
- # next_token: "UuidNextToken",
4457
- # type: "REACTIVE", # required, accepts REACTIVE, PROACTIVE
4458
- # }
4459
- #
4460
3943
  # @!attribute [rw] start_time_range
4461
3944
  # The start of the time range passed in. Returned insights occurred
4462
3945
  # after this time.
@@ -4521,28 +4004,6 @@ module Aws::DevOpsGuru
4521
4004
  # Filters you can use to specify which events are returned when
4522
4005
  # `ListEvents` is called.
4523
4006
  #
4524
- # @note When making an API call, you may pass SearchOrganizationInsightsFilters
4525
- # data as a hash:
4526
- #
4527
- # {
4528
- # severities: ["LOW"], # accepts LOW, MEDIUM, HIGH
4529
- # statuses: ["ONGOING"], # accepts ONGOING, CLOSED
4530
- # resource_collection: {
4531
- # cloud_formation: {
4532
- # stack_names: ["StackName"],
4533
- # },
4534
- # tags: [
4535
- # {
4536
- # app_boundary_key: "AppBoundaryKey", # required
4537
- # tag_values: ["TagValue"], # required
4538
- # },
4539
- # ],
4540
- # },
4541
- # service_collection: {
4542
- # 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
4543
- # },
4544
- # }
4545
- #
4546
4007
  # @!attribute [rw] severities
4547
4008
  # An array of severity values used to search for insights.
4548
4009
  # @return [Array<String>]
@@ -4577,38 +4038,6 @@ module Aws::DevOpsGuru
4577
4038
  include Aws::Structure
4578
4039
  end
4579
4040
 
4580
- # @note When making an API call, you may pass SearchOrganizationInsightsRequest
4581
- # data as a hash:
4582
- #
4583
- # {
4584
- # account_ids: ["AwsAccountId"], # required
4585
- # start_time_range: { # required
4586
- # from_time: Time.now,
4587
- # to_time: Time.now,
4588
- # },
4589
- # filters: {
4590
- # severities: ["LOW"], # accepts LOW, MEDIUM, HIGH
4591
- # statuses: ["ONGOING"], # accepts ONGOING, CLOSED
4592
- # resource_collection: {
4593
- # cloud_formation: {
4594
- # stack_names: ["StackName"],
4595
- # },
4596
- # tags: [
4597
- # {
4598
- # app_boundary_key: "AppBoundaryKey", # required
4599
- # tag_values: ["TagValue"], # required
4600
- # },
4601
- # ],
4602
- # },
4603
- # service_collection: {
4604
- # 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
4605
- # },
4606
- # },
4607
- # max_results: 1,
4608
- # next_token: "UuidNextToken",
4609
- # type: "REACTIVE", # required, accepts REACTIVE, PROACTIVE
4610
- # }
4611
- #
4612
4041
  # @!attribute [rw] account_ids
4613
4042
  # The ID of the Amazon Web Services account.
4614
4043
  # @return [Array<String>]
@@ -4679,13 +4108,6 @@ module Aws::DevOpsGuru
4679
4108
 
4680
4109
  # A collection of the names of Amazon Web Services services.
4681
4110
  #
4682
- # @note When making an API call, you may pass ServiceCollection
4683
- # data as a hash:
4684
- #
4685
- # {
4686
- # 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
4687
- # }
4688
- #
4689
4111
  # @!attribute [rw] service_names
4690
4112
  # An array of strings that each specifies the name of an Amazon Web
4691
4113
  # Services service.
@@ -4865,13 +4287,6 @@ module Aws::DevOpsGuru
4865
4287
  # [1]: https://docs.aws.amazon.com/devops-guru/latest/userguide/sns-required-permissions.html
4866
4288
  # [2]: https://docs.aws.amazon.com/devops-guru/latest/userguide/sns-kms-permissions.html
4867
4289
  #
4868
- # @note When making an API call, you may pass SnsChannelConfig
4869
- # data as a hash:
4870
- #
4871
- # {
4872
- # topic_arn: "TopicArn",
4873
- # }
4874
- #
4875
4290
  # @!attribute [rw] topic_arn
4876
4291
  # The Amazon Resource Name (ARN) of an Amazon Simple Notification
4877
4292
  # Service topic.
@@ -4885,24 +4300,6 @@ module Aws::DevOpsGuru
4885
4300
  include Aws::Structure
4886
4301
  end
4887
4302
 
4888
- # @note When making an API call, you may pass StartCostEstimationRequest
4889
- # data as a hash:
4890
- #
4891
- # {
4892
- # resource_collection: { # required
4893
- # cloud_formation: {
4894
- # stack_names: ["StackName"],
4895
- # },
4896
- # tags: [
4897
- # {
4898
- # app_boundary_key: "AppBoundaryKey", # required
4899
- # tag_values: ["TagValue"], # required
4900
- # },
4901
- # ],
4902
- # },
4903
- # client_token: "ClientToken",
4904
- # }
4905
- #
4906
4303
  # @!attribute [rw] resource_collection
4907
4304
  # The collection of Amazon Web Services resources used to create a
4908
4305
  # monthly DevOps Guru cost estimate.
@@ -4931,14 +4328,6 @@ module Aws::DevOpsGuru
4931
4328
  # A time range used to specify when the behavior of an insight or
4932
4329
  # anomaly started.
4933
4330
  #
4934
- # @note When making an API call, you may pass StartTimeRange
4935
- # data as a hash:
4936
- #
4937
- # {
4938
- # from_time: Time.now,
4939
- # to_time: Time.now,
4940
- # }
4941
- #
4942
4331
  # @!attribute [rw] from_time
4943
4332
  # The start time of the time range.
4944
4333
  # @return [Time]
@@ -4993,14 +4382,6 @@ module Aws::DevOpsGuru
4993
4382
  #
4994
4383
  # [1]: https://d1.awsstatic.com/whitepapers/aws-tagging-best-practices.pdf
4995
4384
  #
4996
- # @note When making an API call, you may pass TagCollection
4997
- # data as a hash:
4998
- #
4999
- # {
5000
- # app_boundary_key: "AppBoundaryKey", # required
5001
- # tag_values: ["TagValue"], # required
5002
- # }
5003
- #
5004
4385
  # @!attribute [rw] app_boundary_key
5005
4386
  # An Amazon Web Services tag *key* that is used to identify the Amazon
5006
4387
  # Web Services resources that DevOps Guru analyzes. All Amazon Web
@@ -5096,14 +4477,6 @@ module Aws::DevOpsGuru
5096
4477
  #
5097
4478
  # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacks.html
5098
4479
  #
5099
- # @note When making an API call, you may pass TagCostEstimationResourceCollectionFilter
5100
- # data as a hash:
5101
- #
5102
- # {
5103
- # app_boundary_key: "AppBoundaryKey", # required
5104
- # tag_values: ["TagValue"], # required
5105
- # }
5106
- #
5107
4480
  # @!attribute [rw] app_boundary_key
5108
4481
  # An Amazon Web Services tag *key* that is used to identify the Amazon
5109
4482
  # Web Services resources that DevOps Guru analyzes. All Amazon Web
@@ -5252,13 +4625,6 @@ module Aws::DevOpsGuru
5252
4625
  # to update a collection of stacks. You can specify up to 500 Amazon Web
5253
4626
  # Services CloudFormation stacks.
5254
4627
  #
5255
- # @note When making an API call, you may pass UpdateCloudFormationCollectionFilter
5256
- # data as a hash:
5257
- #
5258
- # {
5259
- # stack_names: ["StackName"],
5260
- # }
5261
- #
5262
4628
  # @!attribute [rw] stack_names
5263
4629
  # An array of the names of the Amazon Web Services CloudFormation
5264
4630
  # stacks to update. You can specify up to 500 Amazon Web Services
@@ -5273,17 +4639,6 @@ module Aws::DevOpsGuru
5273
4639
  include Aws::Structure
5274
4640
  end
5275
4641
 
5276
- # @note When making an API call, you may pass UpdateEventSourcesConfigRequest
5277
- # data as a hash:
5278
- #
5279
- # {
5280
- # event_sources: {
5281
- # amazon_code_guru_profiler: {
5282
- # status: "ENABLED", # accepts ENABLED, DISABLED
5283
- # },
5284
- # },
5285
- # }
5286
- #
5287
4642
  # @!attribute [rw] event_sources
5288
4643
  # Configuration information about the integration of DevOps Guru as
5289
4644
  # the Consumer via EventBridge with another AWS Service.
@@ -5304,21 +4659,6 @@ module Aws::DevOpsGuru
5304
4659
  # Contains information used to update a collection of Amazon Web
5305
4660
  # Services resources.
5306
4661
  #
5307
- # @note When making an API call, you may pass UpdateResourceCollectionFilter
5308
- # data as a hash:
5309
- #
5310
- # {
5311
- # cloud_formation: {
5312
- # stack_names: ["StackName"],
5313
- # },
5314
- # tags: [
5315
- # {
5316
- # app_boundary_key: "AppBoundaryKey", # required
5317
- # tag_values: ["TagValue"], # required
5318
- # },
5319
- # ],
5320
- # }
5321
- #
5322
4662
  # @!attribute [rw] cloud_formation
5323
4663
  # A collection of Amazon Web Services CloudFormation stacks. You can
5324
4664
  # specify up to 500 Amazon Web Services CloudFormation stacks.
@@ -5374,24 +4714,6 @@ module Aws::DevOpsGuru
5374
4714
  include Aws::Structure
5375
4715
  end
5376
4716
 
5377
- # @note When making an API call, you may pass UpdateResourceCollectionRequest
5378
- # data as a hash:
5379
- #
5380
- # {
5381
- # action: "ADD", # required, accepts ADD, REMOVE
5382
- # resource_collection: { # required
5383
- # cloud_formation: {
5384
- # stack_names: ["StackName"],
5385
- # },
5386
- # tags: [
5387
- # {
5388
- # app_boundary_key: "AppBoundaryKey", # required
5389
- # tag_values: ["TagValue"], # required
5390
- # },
5391
- # ],
5392
- # },
5393
- # }
5394
- #
5395
4717
  # @!attribute [rw] action
5396
4718
  # Specifies if the resource collection in the request is added or
5397
4719
  # deleted to the resource collection.
@@ -5419,18 +4741,6 @@ module Aws::DevOpsGuru
5419
4741
  # Services service, such as Amazon Web Services Systems Manager, with
5420
4742
  # DevOps Guru.
5421
4743
  #
5422
- # @note When making an API call, you may pass UpdateServiceIntegrationConfig
5423
- # data as a hash:
5424
- #
5425
- # {
5426
- # ops_center: {
5427
- # opt_in_status: "ENABLED", # accepts ENABLED, DISABLED
5428
- # },
5429
- # logs_anomaly_detection: {
5430
- # opt_in_status: "ENABLED", # accepts ENABLED, DISABLED
5431
- # },
5432
- # }
5433
- #
5434
4744
  # @!attribute [rw] ops_center
5435
4745
  # Information about whether DevOps Guru is configured to create an
5436
4746
  # OpsItem in Amazon Web Services Systems Manager OpsCenter for each
@@ -5451,20 +4761,6 @@ module Aws::DevOpsGuru
5451
4761
  include Aws::Structure
5452
4762
  end
5453
4763
 
5454
- # @note When making an API call, you may pass UpdateServiceIntegrationRequest
5455
- # data as a hash:
5456
- #
5457
- # {
5458
- # service_integration: { # required
5459
- # ops_center: {
5460
- # opt_in_status: "ENABLED", # accepts ENABLED, DISABLED
5461
- # },
5462
- # logs_anomaly_detection: {
5463
- # opt_in_status: "ENABLED", # accepts ENABLED, DISABLED
5464
- # },
5465
- # },
5466
- # }
5467
- #
5468
4764
  # @!attribute [rw] service_integration
5469
4765
  # An `IntegratedServiceConfig` object used to specify the integrated
5470
4766
  # service you want to update, and whether you want to update it to
@@ -5486,14 +4782,6 @@ module Aws::DevOpsGuru
5486
4782
  # A new collection of Amazon Web Services resources that are defined by
5487
4783
  # an Amazon Web Services tag or tag *key*/*value* pair.
5488
4784
  #
5489
- # @note When making an API call, you may pass UpdateTagCollectionFilter
5490
- # data as a hash:
5491
- #
5492
- # {
5493
- # app_boundary_key: "AppBoundaryKey", # required
5494
- # tag_values: ["TagValue"], # required
5495
- # }
5496
- #
5497
4785
  # @!attribute [rw] app_boundary_key
5498
4786
  # An Amazon Web Services tag *key* that is used to identify the Amazon
5499
4787
  # Web Services resources that DevOps Guru analyzes. All Amazon Web
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-devopsguru/customizations'
52
52
  # @!group service
53
53
  module Aws::DevOpsGuru
54
54
 
55
- GEM_VERSION = '1.27.0'
55
+ GEM_VERSION = '1.28.0'
56
56
 
57
57
  end
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.27.0
4
+ version: 1.28.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-10-25 00:00:00.000000000 Z
11
+ date: 2023-01-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core