aws-sdk-applicationinsights 1.30.0 → 1.31.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: 1be7465253093444afc86e4b0c96f67e549722c7c4e03b627ba0fe6007d150d7
4
- data.tar.gz: 93cb98adf7d2ec027e5fc90fae91d15426541a23686afb2be8d4f658a9572f9a
3
+ metadata.gz: b4bf13c4eeb7829fab7fada61f18bb6ad57550d33b5166a6fa7cdca3527d8dc3
4
+ data.tar.gz: c414e7ac90fc98d4f50e6df42204d492e2ec22ce19e022c6d272d04e68191c8b
5
5
  SHA512:
6
- metadata.gz: 60d6c53ccd704bb08bd5350d2f89467c1ff8427b8d022900ec138814d5f7b67b731b5657cc745f968a8a962bd2dc567538a584a7e9b8e0321ba113ee81047619
7
- data.tar.gz: 49173ef1c3fbb1f2822538ae7c3e6b7c5ce36bb60d7406424e7b3f0215fba0bbccf350acd2597f13b41bd7b055ace201befbae03163645b4c5988ecda897a8e2
6
+ metadata.gz: aef8048ac833e61f95c0974e418499197646de883ecbe9c3151bebcb1dbc0af354d48475c3b33ff3531c9bcad5dcd786bc2b9e8615cc928f29abc7284a8eb031
7
+ data.tar.gz: 0e7537f897a883df4cd35e9bb1de646c771515c96c18b83ca12ffbb1f5fdb3340334ef65e3e8dcba81afa943c1b5225c48c7398cca9d54e2c5714da0e0e2c63e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.31.0 (2022-06-02)
5
+ ------------------
6
+
7
+ * Feature - Provide Account Level onboarding support through CFN/CLI
8
+
4
9
  1.30.0 (2022-02-24)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.30.0
1
+ 1.31.0
@@ -386,8 +386,17 @@ module Aws::ApplicationInsights
386
386
  # characters. The maximum length of a tag value is 256 characters.
387
387
  #
388
388
  # @option params [Boolean] :auto_config_enabled
389
+ # Indicates whether Application Insights automatically configures
390
+ # unmonitored resources in the resource group.
389
391
  #
390
392
  # @option params [Boolean] :auto_create
393
+ # Configures all of the resources in the resource group by applying the
394
+ # recommended configurations.
395
+ #
396
+ # @option params [String] :grouping_type
397
+ # Application Insights can create applications based on a resource group
398
+ # or on an account. To create an account-based application using all of
399
+ # the resources in the account, set this parameter to `ACCOUNT_BASED`.
391
400
  #
392
401
  # @return [Types::CreateApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
393
402
  #
@@ -408,6 +417,7 @@ module Aws::ApplicationInsights
408
417
  # ],
409
418
  # auto_config_enabled: false,
410
419
  # auto_create: false,
420
+ # grouping_type: "ACCOUNT_BASED", # accepts ACCOUNT_BASED
411
421
  # })
412
422
  #
413
423
  # @example Response structure
@@ -726,9 +736,7 @@ module Aws::ApplicationInsights
726
736
  # The name of the component.
727
737
  #
728
738
  # @option params [required, String] :tier
729
- # The tier of the application component. Supported tiers include
730
- # `DOT_NET_CORE`, `DOT_NET_WORKER`, `DOT_NET_WEB`, `SQL_SERVER`, and
731
- # `DEFAULT`.
739
+ # The tier of the application component.
732
740
  #
733
741
  # @return [Types::DescribeComponentConfigurationRecommendationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
734
742
  #
@@ -892,7 +900,7 @@ module Aws::ApplicationInsights
892
900
  # resp.problem.affected_resource #=> String
893
901
  # resp.problem.start_time #=> Time
894
902
  # resp.problem.end_time #=> Time
895
- # resp.problem.severity_level #=> String, one of "Low", "Medium", "High"
903
+ # resp.problem.severity_level #=> String, one of "Informative", "Low", "Medium", "High"
896
904
  # resp.problem.resource_group_name #=> String
897
905
  # resp.problem.feedback #=> Hash
898
906
  # resp.problem.feedback["FeedbackKey"] #=> String, one of "NOT_SPECIFIED", "USEFUL", "NOT_USEFUL"
@@ -1279,6 +1287,7 @@ module Aws::ApplicationInsights
1279
1287
  # The token to request the next page of results.
1280
1288
  #
1281
1289
  # @option params [String] :component_name
1290
+ # The name of the component.
1282
1291
  #
1283
1292
  # @return [Types::ListProblemsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1284
1293
  #
@@ -1309,7 +1318,7 @@ module Aws::ApplicationInsights
1309
1318
  # resp.problem_list[0].affected_resource #=> String
1310
1319
  # resp.problem_list[0].start_time #=> Time
1311
1320
  # resp.problem_list[0].end_time #=> Time
1312
- # resp.problem_list[0].severity_level #=> String, one of "Low", "Medium", "High"
1321
+ # resp.problem_list[0].severity_level #=> String, one of "Informative", "Low", "Medium", "High"
1313
1322
  # resp.problem_list[0].resource_group_name #=> String
1314
1323
  # resp.problem_list[0].feedback #=> Hash
1315
1324
  # resp.problem_list[0].feedback["FeedbackKey"] #=> String, one of "NOT_SPECIFIED", "USEFUL", "NOT_USEFUL"
@@ -1465,6 +1474,7 @@ module Aws::ApplicationInsights
1465
1474
  # problems.
1466
1475
  #
1467
1476
  # @option params [Boolean] :auto_config_enabled
1477
+ # Turns auto-configuration on or off.
1468
1478
  #
1469
1479
  # @return [Types::UpdateApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1470
1480
  #
@@ -1551,9 +1561,7 @@ module Aws::ApplicationInsights
1551
1561
  # Indicates whether the application component is monitored.
1552
1562
  #
1553
1563
  # @option params [String] :tier
1554
- # The tier of the application component. Supported tiers include
1555
- # `DOT_NET_WORKER`, `DOT_NET_WEB`, `DOT_NET_CORE`, `SQL_SERVER`, and
1556
- # `DEFAULT`.
1564
+ # The tier of the application component.
1557
1565
  #
1558
1566
  # @option params [String] :component_configuration
1559
1567
  # The configuration settings of the component. The value is the escaped
@@ -1569,6 +1577,8 @@ module Aws::ApplicationInsights
1569
1577
  # [2]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/component-config.html
1570
1578
  #
1571
1579
  # @option params [Boolean] :auto_config_enabled
1580
+ # Automatically configures the component by applying the recommended
1581
+ # configurations.
1572
1582
  #
1573
1583
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1574
1584
  #
@@ -1665,7 +1675,7 @@ module Aws::ApplicationInsights
1665
1675
  params: params,
1666
1676
  config: config)
1667
1677
  context[:gem_name] = 'aws-sdk-applicationinsights'
1668
- context[:gem_version] = '1.30.0'
1678
+ context[:gem_version] = '1.31.0'
1669
1679
  Seahorse::Client::Request.new(handlers, context)
1670
1680
  end
1671
1681
 
@@ -84,6 +84,7 @@ module Aws::ApplicationInsights
84
84
  Feedback = Shapes::MapShape.new(name: 'Feedback')
85
85
  FeedbackKey = Shapes::StringShape.new(name: 'FeedbackKey')
86
86
  FeedbackValue = Shapes::StringShape.new(name: 'FeedbackValue')
87
+ GroupingType = Shapes::StringShape.new(name: 'GroupingType')
87
88
  HealthEventArn = Shapes::StringShape.new(name: 'HealthEventArn')
88
89
  HealthEventDescription = Shapes::StringShape.new(name: 'HealthEventDescription')
89
90
  HealthEventTypeCategory = Shapes::StringShape.new(name: 'HealthEventTypeCategory')
@@ -235,6 +236,7 @@ module Aws::ApplicationInsights
235
236
  CreateApplicationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
236
237
  CreateApplicationRequest.add_member(:auto_config_enabled, Shapes::ShapeRef.new(shape: AutoConfigEnabled, location_name: "AutoConfigEnabled"))
237
238
  CreateApplicationRequest.add_member(:auto_create, Shapes::ShapeRef.new(shape: AutoCreate, location_name: "AutoCreate"))
239
+ CreateApplicationRequest.add_member(:grouping_type, Shapes::ShapeRef.new(shape: GroupingType, location_name: "GroupingType"))
238
240
  CreateApplicationRequest.struct_class = Types::CreateApplicationRequest
239
241
 
240
242
  CreateApplicationResponse.add_member(:application_info, Shapes::ShapeRef.new(shape: ApplicationInfo, location_name: "ApplicationInfo"))
@@ -107,9 +107,12 @@ module Aws::ApplicationInsights
107
107
  # @return [String]
108
108
  #
109
109
  # @!attribute [rw] auto_config_enabled
110
+ # Indicates whether auto-configuration is turned on for this
111
+ # application.
110
112
  # @return [Boolean]
111
113
  #
112
114
  # @!attribute [rw] discovery_type
115
+ # The method used by Application Insights to onboard your resources.
113
116
  # @return [String]
114
117
  #
115
118
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ApplicationInfo AWS API Documentation
@@ -198,6 +201,7 @@ module Aws::ApplicationInsights
198
201
  # ],
199
202
  # auto_config_enabled: false,
200
203
  # auto_create: false,
204
+ # grouping_type: "ACCOUNT_BASED", # accepts ACCOUNT_BASED
201
205
  # }
202
206
  #
203
207
  # @!attribute [rw] resource_group_name
@@ -228,11 +232,22 @@ module Aws::ApplicationInsights
228
232
  # @return [Array<Types::Tag>]
229
233
  #
230
234
  # @!attribute [rw] auto_config_enabled
235
+ # Indicates whether Application Insights automatically configures
236
+ # unmonitored resources in the resource group.
231
237
  # @return [Boolean]
232
238
  #
233
239
  # @!attribute [rw] auto_create
240
+ # Configures all of the resources in the resource group by applying
241
+ # the recommended configurations.
234
242
  # @return [Boolean]
235
243
  #
244
+ # @!attribute [rw] grouping_type
245
+ # Application Insights can create applications based on a resource
246
+ # group or on an account. To create an account-based application using
247
+ # all of the resources in the account, set this parameter to
248
+ # `ACCOUNT_BASED`.
249
+ # @return [String]
250
+ #
236
251
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/CreateApplicationRequest AWS API Documentation
237
252
  #
238
253
  class CreateApplicationRequest < Struct.new(
@@ -242,7 +257,8 @@ module Aws::ApplicationInsights
242
257
  :ops_item_sns_topic_arn,
243
258
  :tags,
244
259
  :auto_config_enabled,
245
- :auto_create)
260
+ :auto_create,
261
+ :grouping_type)
246
262
  SENSITIVE = []
247
263
  include Aws::Structure
248
264
  end
@@ -501,9 +517,7 @@ module Aws::ApplicationInsights
501
517
  # @return [String]
502
518
  #
503
519
  # @!attribute [rw] tier
504
- # The tier of the application component. Supported tiers include
505
- # `DOT_NET_CORE`, `DOT_NET_WORKER`, `DOT_NET_WEB`, `SQL_SERVER`, and
506
- # `DEFAULT`.
520
+ # The tier of the application component.
507
521
  # @return [String]
508
522
  #
509
523
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeComponentConfigurationRecommendationRequest AWS API Documentation
@@ -1111,6 +1125,7 @@ module Aws::ApplicationInsights
1111
1125
  # @return [String]
1112
1126
  #
1113
1127
  # @!attribute [rw] component_name
1128
+ # The name of the component.
1114
1129
  # @return [String]
1115
1130
  #
1116
1131
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ListProblemsRequest AWS API Documentation
@@ -1136,6 +1151,7 @@ module Aws::ApplicationInsights
1136
1151
  # @return [String]
1137
1152
  #
1138
1153
  # @!attribute [rw] resource_group_name
1154
+ # The name of the resource group.
1139
1155
  # @return [String]
1140
1156
  #
1141
1157
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ListProblemsResponse AWS API Documentation
@@ -1519,9 +1535,12 @@ module Aws::ApplicationInsights
1519
1535
  # @return [Hash<String,String>]
1520
1536
  #
1521
1537
  # @!attribute [rw] recurring_count
1538
+ # The number of times that the same problem reoccurred after the first
1539
+ # time it was resolved.
1522
1540
  # @return [Integer]
1523
1541
  #
1524
1542
  # @!attribute [rw] last_recurrence_time
1543
+ # The last time that the problem reoccurred after its last resolution.
1525
1544
  # @return [Time]
1526
1545
  #
1527
1546
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/Problem AWS API Documentation
@@ -1782,6 +1801,7 @@ module Aws::ApplicationInsights
1782
1801
  # @return [Boolean]
1783
1802
  #
1784
1803
  # @!attribute [rw] auto_config_enabled
1804
+ # Turns auto-configuration on or off.
1785
1805
  # @return [Boolean]
1786
1806
  #
1787
1807
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/UpdateApplicationRequest AWS API Documentation
@@ -1834,9 +1854,7 @@ module Aws::ApplicationInsights
1834
1854
  # @return [Boolean]
1835
1855
  #
1836
1856
  # @!attribute [rw] tier
1837
- # The tier of the application component. Supported tiers include
1838
- # `DOT_NET_WORKER`, `DOT_NET_WEB`, `DOT_NET_CORE`, `SQL_SERVER`, and
1839
- # `DEFAULT`.
1857
+ # The tier of the application component.
1840
1858
  # @return [String]
1841
1859
  #
1842
1860
  # @!attribute [rw] component_configuration
@@ -1855,6 +1873,8 @@ module Aws::ApplicationInsights
1855
1873
  # @return [String]
1856
1874
  #
1857
1875
  # @!attribute [rw] auto_config_enabled
1876
+ # Automatically configures the component by applying the recommended
1877
+ # configurations.
1858
1878
  # @return [Boolean]
1859
1879
  #
1860
1880
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/UpdateComponentConfigurationRequest AWS API Documentation
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-applicationinsights/customizations'
48
48
  # @!group service
49
49
  module Aws::ApplicationInsights
50
50
 
51
- GEM_VERSION = '1.30.0'
51
+ GEM_VERSION = '1.31.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-applicationinsights
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.30.0
4
+ version: 1.31.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-02-24 00:00:00.000000000 Z
11
+ date: 2022-06-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core