aws-sdk-applicationinsights 1.22.0 → 1.26.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: a44d12201750c811acd5cd47ae3386479a4291004e25efb44c446bc49b4b6ddf
4
- data.tar.gz: d431706245032af38d69355e1132e1974ddab9774a496faf7eb8ff82ffce35db
3
+ metadata.gz: 90d14acaa817f35a1ab9cc920f070b0da4d12cc62a9b9780a8f368aa520f7908
4
+ data.tar.gz: 3b6d040a9593307bd64bec6bcb2544aa6c1ac1f719d3e9c2ccfca43a4f140ab4
5
5
  SHA512:
6
- metadata.gz: b6c5170aa9ca5447d3b4836e967b66fa38803f3005890a3b940e4c79208c926b32db32b8c8920b93eba689b35740fff1ac65f2d905d42a9126a3eb607fae36b1
7
- data.tar.gz: c4a50e24ca7e3d1d36d5630a3a599d11316537dc7dc0bc0e3d453f6a2c0168226580550988b0d0d8c894a6952d83e18dc15788813de8f5b6f85e942f43c8e08c
6
+ metadata.gz: a318d227253cb774a33558c47a4b9286671d8ea08fea37665eb7be22c4b3ff0cebfce348b3b3e9d485944c2c38000a34f6b898547638d31df2d310a4251def37
7
+ data.tar.gz: a35a892c86c28a2b7c2755873e873b934de113f471bd0bae05edf04cc6f6236b1eb31b5464009b0ed079a2dc949fb8057ae840482b924592455b36ceb19a6b30
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.26.0 (2021-11-30)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.25.0 (2021-11-19)
10
+ ------------------
11
+
12
+ * Feature - Application Insights now supports monitoring for HANA
13
+
14
+ 1.24.0 (2021-11-04)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.23.0 (2021-10-29)
20
+ ------------------
21
+
22
+ * Feature - Added Monitoring support for SQL Server Failover Cluster Instance. Additionally, added a new API to allow one-click monitoring of containers resources.
23
+
4
24
  1.22.0 (2021-10-18)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.22.0
1
+ 1.26.0
@@ -119,7 +119,9 @@ module Aws::ApplicationInsights
119
119
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
120
  # are very aggressive. Construct and pass an instance of
121
121
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
- # enable retries and extended timeouts.
122
+ # enable retries and extended timeouts. Instance profile credential
123
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
124
+ # to true.
123
125
  #
124
126
  # @option options [required, String] :region
125
127
  # The AWS region to connect to. The configured `:region` is
@@ -285,6 +287,15 @@ module Aws::ApplicationInsights
285
287
  # ** Please note ** When response stubbing is enabled, no HTTP
286
288
  # requests are made, and retries are disabled.
287
289
  #
290
+ # @option options [Boolean] :use_dualstack_endpoint
291
+ # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
292
+ # will be used if available.
293
+ #
294
+ # @option options [Boolean] :use_fips_endpoint
295
+ # When set to `true`, fips compatible endpoints will be used if available.
296
+ # When a `fips` region is used, the region is normalized and this config
297
+ # is set to `true`.
298
+ #
288
299
  # @option options [Boolean] :validate_params (true)
289
300
  # When `true`, request parameters are validated before
290
301
  # sending the request.
@@ -339,7 +350,7 @@ module Aws::ApplicationInsights
339
350
 
340
351
  # Adds an application that is created from a resource group.
341
352
  #
342
- # @option params [required, String] :resource_group_name
353
+ # @option params [String] :resource_group_name
343
354
  # The name of the resource group.
344
355
  #
345
356
  # @option params [Boolean] :ops_center_enabled
@@ -361,6 +372,10 @@ module Aws::ApplicationInsights
361
372
  # associated tag value (`Value`). The maximum length of a tag key is 128
362
373
  # characters. The maximum length of a tag value is 256 characters.
363
374
  #
375
+ # @option params [Boolean] :auto_config_enabled
376
+ #
377
+ # @option params [Boolean] :auto_create
378
+ #
364
379
  # @return [Types::CreateApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
365
380
  #
366
381
  # * {Types::CreateApplicationResponse#application_info #application_info} => Types::ApplicationInfo
@@ -368,7 +383,7 @@ module Aws::ApplicationInsights
368
383
  # @example Request syntax with placeholder values
369
384
  #
370
385
  # resp = client.create_application({
371
- # resource_group_name: "ResourceGroupName", # required
386
+ # resource_group_name: "ResourceGroupName",
372
387
  # ops_center_enabled: false,
373
388
  # cwe_monitor_enabled: false,
374
389
  # ops_item_sns_topic_arn: "OpsItemSNSTopicArn",
@@ -378,6 +393,8 @@ module Aws::ApplicationInsights
378
393
  # value: "TagValue", # required
379
394
  # },
380
395
  # ],
396
+ # auto_config_enabled: false,
397
+ # auto_create: false,
381
398
  # })
382
399
  #
383
400
  # @example Response structure
@@ -388,6 +405,8 @@ module Aws::ApplicationInsights
388
405
  # resp.application_info.ops_center_enabled #=> Boolean
389
406
  # resp.application_info.cwe_monitor_enabled #=> Boolean
390
407
  # resp.application_info.remarks #=> String
408
+ # resp.application_info.auto_config_enabled #=> Boolean
409
+ # resp.application_info.discovery_type #=> String, one of "RESOURCE_GROUP_BASED", "ACCOUNT_BASED"
391
410
  #
392
411
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/CreateApplication AWS API Documentation
393
412
  #
@@ -593,6 +612,8 @@ module Aws::ApplicationInsights
593
612
  # resp.application_info.ops_center_enabled #=> Boolean
594
613
  # resp.application_info.cwe_monitor_enabled #=> Boolean
595
614
  # resp.application_info.remarks #=> String
615
+ # resp.application_info.auto_config_enabled #=> Boolean
616
+ # resp.application_info.discovery_type #=> String, one of "RESOURCE_GROUP_BASED", "ACCOUNT_BASED"
596
617
  #
597
618
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeApplication AWS API Documentation
598
619
  #
@@ -630,7 +651,7 @@ module Aws::ApplicationInsights
630
651
  # resp.application_component.component_remarks #=> String
631
652
  # resp.application_component.resource_type #=> String
632
653
  # resp.application_component.os_type #=> String, one of "WINDOWS", "LINUX"
633
- # resp.application_component.tier #=> String, one of "CUSTOM", "DEFAULT", "DOT_NET_CORE", "DOT_NET_WORKER", "DOT_NET_WEB_TIER", "DOT_NET_WEB", "SQL_SERVER", "SQL_SERVER_ALWAYSON_AVAILABILITY_GROUP", "MYSQL", "POSTGRESQL", "JAVA_JMX", "ORACLE"
654
+ # resp.application_component.tier #=> String, one of "CUSTOM", "DEFAULT", "DOT_NET_CORE", "DOT_NET_WORKER", "DOT_NET_WEB_TIER", "DOT_NET_WEB", "SQL_SERVER", "SQL_SERVER_ALWAYSON_AVAILABILITY_GROUP", "MYSQL", "POSTGRESQL", "JAVA_JMX", "ORACLE", "SAP_HANA_MULTI_NODE", "SAP_HANA_SINGLE_NODE", "SAP_HANA_HIGH_AVAILABILITY", "SQL_SERVER_FAILOVER_CLUSTER_INSTANCE"
634
655
  # resp.application_component.monitor #=> Boolean
635
656
  # resp.application_component.detected_workload #=> Hash
636
657
  # resp.application_component.detected_workload["Tier"] #=> Hash
@@ -671,7 +692,7 @@ module Aws::ApplicationInsights
671
692
  # @example Response structure
672
693
  #
673
694
  # resp.monitor #=> Boolean
674
- # resp.tier #=> String, one of "CUSTOM", "DEFAULT", "DOT_NET_CORE", "DOT_NET_WORKER", "DOT_NET_WEB_TIER", "DOT_NET_WEB", "SQL_SERVER", "SQL_SERVER_ALWAYSON_AVAILABILITY_GROUP", "MYSQL", "POSTGRESQL", "JAVA_JMX", "ORACLE"
695
+ # resp.tier #=> String, one of "CUSTOM", "DEFAULT", "DOT_NET_CORE", "DOT_NET_WORKER", "DOT_NET_WEB_TIER", "DOT_NET_WEB", "SQL_SERVER", "SQL_SERVER_ALWAYSON_AVAILABILITY_GROUP", "MYSQL", "POSTGRESQL", "JAVA_JMX", "ORACLE", "SAP_HANA_MULTI_NODE", "SAP_HANA_SINGLE_NODE", "SAP_HANA_HIGH_AVAILABILITY", "SQL_SERVER_FAILOVER_CLUSTER_INSTANCE"
675
696
  # resp.component_configuration #=> String
676
697
  #
677
698
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeComponentConfiguration AWS API Documentation
@@ -705,7 +726,7 @@ module Aws::ApplicationInsights
705
726
  # resp = client.describe_component_configuration_recommendation({
706
727
  # resource_group_name: "ResourceGroupName", # required
707
728
  # component_name: "ComponentName", # required
708
- # tier: "CUSTOM", # required, accepts CUSTOM, DEFAULT, DOT_NET_CORE, DOT_NET_WORKER, DOT_NET_WEB_TIER, DOT_NET_WEB, SQL_SERVER, SQL_SERVER_ALWAYSON_AVAILABILITY_GROUP, MYSQL, POSTGRESQL, JAVA_JMX, ORACLE
729
+ # tier: "CUSTOM", # required, accepts CUSTOM, DEFAULT, DOT_NET_CORE, DOT_NET_WORKER, DOT_NET_WEB_TIER, DOT_NET_WEB, SQL_SERVER, SQL_SERVER_ALWAYSON_AVAILABILITY_GROUP, MYSQL, POSTGRESQL, JAVA_JMX, ORACLE, SAP_HANA_MULTI_NODE, SAP_HANA_SINGLE_NODE, SAP_HANA_HIGH_AVAILABILITY, SQL_SERVER_FAILOVER_CLUSTER_INSTANCE
709
730
  # })
710
731
  #
711
732
  # @example Response structure
@@ -854,7 +875,7 @@ module Aws::ApplicationInsights
854
875
  # resp.problem.id #=> String
855
876
  # resp.problem.title #=> String
856
877
  # resp.problem.insights #=> String
857
- # resp.problem.status #=> String, one of "IGNORE", "RESOLVED", "PENDING"
878
+ # resp.problem.status #=> String, one of "IGNORE", "RESOLVED", "PENDING", "RECURRING"
858
879
  # resp.problem.affected_resource #=> String
859
880
  # resp.problem.start_time #=> Time
860
881
  # resp.problem.end_time #=> Time
@@ -862,6 +883,8 @@ module Aws::ApplicationInsights
862
883
  # resp.problem.resource_group_name #=> String
863
884
  # resp.problem.feedback #=> Hash
864
885
  # resp.problem.feedback["FeedbackKey"] #=> String, one of "NOT_SPECIFIED", "USEFUL", "NOT_USEFUL"
886
+ # resp.problem.recurring_count #=> Integer
887
+ # resp.problem.last_recurrence_time #=> Time
865
888
  #
866
889
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeProblem AWS API Documentation
867
890
  #
@@ -978,6 +1001,8 @@ module Aws::ApplicationInsights
978
1001
  # resp.application_info_list[0].ops_center_enabled #=> Boolean
979
1002
  # resp.application_info_list[0].cwe_monitor_enabled #=> Boolean
980
1003
  # resp.application_info_list[0].remarks #=> String
1004
+ # resp.application_info_list[0].auto_config_enabled #=> Boolean
1005
+ # resp.application_info_list[0].discovery_type #=> String, one of "RESOURCE_GROUP_BASED", "ACCOUNT_BASED"
981
1006
  # resp.next_token #=> String
982
1007
  #
983
1008
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ListApplications AWS API Documentation
@@ -1025,7 +1050,7 @@ module Aws::ApplicationInsights
1025
1050
  # resp.application_component_list[0].component_remarks #=> String
1026
1051
  # resp.application_component_list[0].resource_type #=> String
1027
1052
  # resp.application_component_list[0].os_type #=> String, one of "WINDOWS", "LINUX"
1028
- # resp.application_component_list[0].tier #=> String, one of "CUSTOM", "DEFAULT", "DOT_NET_CORE", "DOT_NET_WORKER", "DOT_NET_WEB_TIER", "DOT_NET_WEB", "SQL_SERVER", "SQL_SERVER_ALWAYSON_AVAILABILITY_GROUP", "MYSQL", "POSTGRESQL", "JAVA_JMX", "ORACLE"
1053
+ # resp.application_component_list[0].tier #=> String, one of "CUSTOM", "DEFAULT", "DOT_NET_CORE", "DOT_NET_WORKER", "DOT_NET_WEB_TIER", "DOT_NET_WEB", "SQL_SERVER", "SQL_SERVER_ALWAYSON_AVAILABILITY_GROUP", "MYSQL", "POSTGRESQL", "JAVA_JMX", "ORACLE", "SAP_HANA_MULTI_NODE", "SAP_HANA_SINGLE_NODE", "SAP_HANA_HIGH_AVAILABILITY", "SQL_SERVER_FAILOVER_CLUSTER_INSTANCE"
1029
1054
  # resp.application_component_list[0].monitor #=> Boolean
1030
1055
  # resp.application_component_list[0].detected_workload #=> Hash
1031
1056
  # resp.application_component_list[0].detected_workload["Tier"] #=> Hash
@@ -1240,10 +1265,13 @@ module Aws::ApplicationInsights
1240
1265
  # @option params [String] :next_token
1241
1266
  # The token to request the next page of results.
1242
1267
  #
1268
+ # @option params [String] :component_name
1269
+ #
1243
1270
  # @return [Types::ListProblemsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1244
1271
  #
1245
1272
  # * {Types::ListProblemsResponse#problem_list #problem_list} => Array<Types::Problem>
1246
1273
  # * {Types::ListProblemsResponse#next_token #next_token} => String
1274
+ # * {Types::ListProblemsResponse#resource_group_name #resource_group_name} => String
1247
1275
  #
1248
1276
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1249
1277
  #
@@ -1255,6 +1283,7 @@ module Aws::ApplicationInsights
1255
1283
  # end_time: Time.now,
1256
1284
  # max_results: 1,
1257
1285
  # next_token: "PaginationToken",
1286
+ # component_name: "ComponentName",
1258
1287
  # })
1259
1288
  #
1260
1289
  # @example Response structure
@@ -1263,7 +1292,7 @@ module Aws::ApplicationInsights
1263
1292
  # resp.problem_list[0].id #=> String
1264
1293
  # resp.problem_list[0].title #=> String
1265
1294
  # resp.problem_list[0].insights #=> String
1266
- # resp.problem_list[0].status #=> String, one of "IGNORE", "RESOLVED", "PENDING"
1295
+ # resp.problem_list[0].status #=> String, one of "IGNORE", "RESOLVED", "PENDING", "RECURRING"
1267
1296
  # resp.problem_list[0].affected_resource #=> String
1268
1297
  # resp.problem_list[0].start_time #=> Time
1269
1298
  # resp.problem_list[0].end_time #=> Time
@@ -1271,7 +1300,10 @@ module Aws::ApplicationInsights
1271
1300
  # resp.problem_list[0].resource_group_name #=> String
1272
1301
  # resp.problem_list[0].feedback #=> Hash
1273
1302
  # resp.problem_list[0].feedback["FeedbackKey"] #=> String, one of "NOT_SPECIFIED", "USEFUL", "NOT_USEFUL"
1303
+ # resp.problem_list[0].recurring_count #=> Integer
1304
+ # resp.problem_list[0].last_recurrence_time #=> Time
1274
1305
  # resp.next_token #=> String
1306
+ # resp.resource_group_name #=> String
1275
1307
  #
1276
1308
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ListProblems AWS API Documentation
1277
1309
  #
@@ -1419,6 +1451,8 @@ module Aws::ApplicationInsights
1419
1451
  # Disassociates the SNS topic from the opsItem created for detected
1420
1452
  # problems.
1421
1453
  #
1454
+ # @option params [Boolean] :auto_config_enabled
1455
+ #
1422
1456
  # @return [Types::UpdateApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1423
1457
  #
1424
1458
  # * {Types::UpdateApplicationResponse#application_info #application_info} => Types::ApplicationInfo
@@ -1431,6 +1465,7 @@ module Aws::ApplicationInsights
1431
1465
  # cwe_monitor_enabled: false,
1432
1466
  # ops_item_sns_topic_arn: "OpsItemSNSTopicArn",
1433
1467
  # remove_sns_topic: false,
1468
+ # auto_config_enabled: false,
1434
1469
  # })
1435
1470
  #
1436
1471
  # @example Response structure
@@ -1441,6 +1476,8 @@ module Aws::ApplicationInsights
1441
1476
  # resp.application_info.ops_center_enabled #=> Boolean
1442
1477
  # resp.application_info.cwe_monitor_enabled #=> Boolean
1443
1478
  # resp.application_info.remarks #=> String
1479
+ # resp.application_info.auto_config_enabled #=> Boolean
1480
+ # resp.application_info.discovery_type #=> String, one of "RESOURCE_GROUP_BASED", "ACCOUNT_BASED"
1444
1481
  #
1445
1482
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/UpdateApplication AWS API Documentation
1446
1483
  #
@@ -1518,6 +1555,8 @@ module Aws::ApplicationInsights
1518
1555
  # [1]: https://docs.aws.amazon.com/sdk-for-javascript/v2/developer-guide/working-with-json.html
1519
1556
  # [2]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/component-config.html
1520
1557
  #
1558
+ # @option params [Boolean] :auto_config_enabled
1559
+ #
1521
1560
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1522
1561
  #
1523
1562
  # @example Request syntax with placeholder values
@@ -1526,8 +1565,9 @@ module Aws::ApplicationInsights
1526
1565
  # resource_group_name: "ResourceGroupName", # required
1527
1566
  # component_name: "ComponentName", # required
1528
1567
  # monitor: false,
1529
- # tier: "CUSTOM", # accepts CUSTOM, DEFAULT, DOT_NET_CORE, DOT_NET_WORKER, DOT_NET_WEB_TIER, DOT_NET_WEB, SQL_SERVER, SQL_SERVER_ALWAYSON_AVAILABILITY_GROUP, MYSQL, POSTGRESQL, JAVA_JMX, ORACLE
1568
+ # tier: "CUSTOM", # accepts CUSTOM, DEFAULT, DOT_NET_CORE, DOT_NET_WORKER, DOT_NET_WEB_TIER, DOT_NET_WEB, SQL_SERVER, SQL_SERVER_ALWAYSON_AVAILABILITY_GROUP, MYSQL, POSTGRESQL, JAVA_JMX, ORACLE, SAP_HANA_MULTI_NODE, SAP_HANA_SINGLE_NODE, SAP_HANA_HIGH_AVAILABILITY, SQL_SERVER_FAILOVER_CLUSTER_INSTANCE
1530
1569
  # component_configuration: "ComponentConfiguration",
1570
+ # auto_config_enabled: false,
1531
1571
  # })
1532
1572
  #
1533
1573
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/UpdateComponentConfiguration AWS API Documentation
@@ -1612,7 +1652,7 @@ module Aws::ApplicationInsights
1612
1652
  params: params,
1613
1653
  config: config)
1614
1654
  context[:gem_name] = 'aws-sdk-applicationinsights'
1615
- context[:gem_version] = '1.22.0'
1655
+ context[:gem_version] = '1.26.0'
1616
1656
  Seahorse::Client::Request.new(handlers, context)
1617
1657
  end
1618
1658
 
@@ -20,6 +20,8 @@ module Aws::ApplicationInsights
20
20
  ApplicationComponentList = Shapes::ListShape.new(name: 'ApplicationComponentList')
21
21
  ApplicationInfo = Shapes::StructureShape.new(name: 'ApplicationInfo')
22
22
  ApplicationInfoList = Shapes::ListShape.new(name: 'ApplicationInfoList')
23
+ AutoConfigEnabled = Shapes::BooleanShape.new(name: 'AutoConfigEnabled')
24
+ AutoCreate = Shapes::BooleanShape.new(name: 'AutoCreate')
23
25
  BadRequestException = Shapes::StructureShape.new(name: 'BadRequestException')
24
26
  CWEMonitorEnabled = Shapes::BooleanShape.new(name: 'CWEMonitorEnabled')
25
27
  CloudWatchEventDetailType = Shapes::StringShape.new(name: 'CloudWatchEventDetailType')
@@ -70,6 +72,7 @@ module Aws::ApplicationInsights
70
72
  DescribeProblemRequest = Shapes::StructureShape.new(name: 'DescribeProblemRequest')
71
73
  DescribeProblemResponse = Shapes::StructureShape.new(name: 'DescribeProblemResponse')
72
74
  DetectedWorkload = Shapes::MapShape.new(name: 'DetectedWorkload')
75
+ DiscoveryType = Shapes::StringShape.new(name: 'DiscoveryType')
73
76
  EbsCause = Shapes::StringShape.new(name: 'EbsCause')
74
77
  EbsEvent = Shapes::StringShape.new(name: 'EbsEvent')
75
78
  EbsRequestId = Shapes::StringShape.new(name: 'EbsRequestId')
@@ -88,6 +91,7 @@ module Aws::ApplicationInsights
88
91
  HealthService = Shapes::StringShape.new(name: 'HealthService')
89
92
  Insights = Shapes::StringShape.new(name: 'Insights')
90
93
  InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
94
+ LastRecurrenceTime = Shapes::TimestampShape.new(name: 'LastRecurrenceTime')
91
95
  LifeCycle = Shapes::StringShape.new(name: 'LifeCycle')
92
96
  LineTime = Shapes::TimestampShape.new(name: 'LineTime')
93
97
  ListApplicationsRequest = Shapes::StructureShape.new(name: 'ListApplicationsRequest')
@@ -132,6 +136,7 @@ module Aws::ApplicationInsights
132
136
  ProblemList = Shapes::ListShape.new(name: 'ProblemList')
133
137
  RdsEventCategories = Shapes::StringShape.new(name: 'RdsEventCategories')
134
138
  RdsEventMessage = Shapes::StringShape.new(name: 'RdsEventMessage')
139
+ RecurringCount = Shapes::IntegerShape.new(name: 'RecurringCount')
135
140
  RelatedObservations = Shapes::StructureShape.new(name: 'RelatedObservations')
136
141
  Remarks = Shapes::StringShape.new(name: 'Remarks')
137
142
  RemoveSNSTopic = Shapes::BooleanShape.new(name: 'RemoveSNSTopic')
@@ -204,6 +209,8 @@ module Aws::ApplicationInsights
204
209
  ApplicationInfo.add_member(:ops_center_enabled, Shapes::ShapeRef.new(shape: OpsCenterEnabled, location_name: "OpsCenterEnabled"))
205
210
  ApplicationInfo.add_member(:cwe_monitor_enabled, Shapes::ShapeRef.new(shape: CWEMonitorEnabled, location_name: "CWEMonitorEnabled"))
206
211
  ApplicationInfo.add_member(:remarks, Shapes::ShapeRef.new(shape: Remarks, location_name: "Remarks"))
212
+ ApplicationInfo.add_member(:auto_config_enabled, Shapes::ShapeRef.new(shape: AutoConfigEnabled, location_name: "AutoConfigEnabled"))
213
+ ApplicationInfo.add_member(:discovery_type, Shapes::ShapeRef.new(shape: DiscoveryType, location_name: "DiscoveryType"))
207
214
  ApplicationInfo.struct_class = Types::ApplicationInfo
208
215
 
209
216
  ApplicationInfoList.member = Shapes::ShapeRef.new(shape: ApplicationInfo)
@@ -221,11 +228,13 @@ module Aws::ApplicationInsights
221
228
 
222
229
  ConfigurationEventList.member = Shapes::ShapeRef.new(shape: ConfigurationEvent)
223
230
 
224
- CreateApplicationRequest.add_member(:resource_group_name, Shapes::ShapeRef.new(shape: ResourceGroupName, required: true, location_name: "ResourceGroupName"))
231
+ CreateApplicationRequest.add_member(:resource_group_name, Shapes::ShapeRef.new(shape: ResourceGroupName, location_name: "ResourceGroupName"))
225
232
  CreateApplicationRequest.add_member(:ops_center_enabled, Shapes::ShapeRef.new(shape: OpsCenterEnabled, location_name: "OpsCenterEnabled"))
226
233
  CreateApplicationRequest.add_member(:cwe_monitor_enabled, Shapes::ShapeRef.new(shape: CWEMonitorEnabled, location_name: "CWEMonitorEnabled"))
227
234
  CreateApplicationRequest.add_member(:ops_item_sns_topic_arn, Shapes::ShapeRef.new(shape: OpsItemSNSTopicArn, location_name: "OpsItemSNSTopicArn"))
228
235
  CreateApplicationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
236
+ CreateApplicationRequest.add_member(:auto_config_enabled, Shapes::ShapeRef.new(shape: AutoConfigEnabled, location_name: "AutoConfigEnabled"))
237
+ CreateApplicationRequest.add_member(:auto_create, Shapes::ShapeRef.new(shape: AutoCreate, location_name: "AutoCreate"))
229
238
  CreateApplicationRequest.struct_class = Types::CreateApplicationRequest
230
239
 
231
240
  CreateApplicationResponse.add_member(:application_info, Shapes::ShapeRef.new(shape: ApplicationInfo, location_name: "ApplicationInfo"))
@@ -389,10 +398,12 @@ module Aws::ApplicationInsights
389
398
  ListProblemsRequest.add_member(:end_time, Shapes::ShapeRef.new(shape: EndTime, location_name: "EndTime"))
390
399
  ListProblemsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxEntities, location_name: "MaxResults"))
391
400
  ListProblemsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "NextToken"))
401
+ ListProblemsRequest.add_member(:component_name, Shapes::ShapeRef.new(shape: ComponentName, location_name: "ComponentName"))
392
402
  ListProblemsRequest.struct_class = Types::ListProblemsRequest
393
403
 
394
404
  ListProblemsResponse.add_member(:problem_list, Shapes::ShapeRef.new(shape: ProblemList, location_name: "ProblemList"))
395
405
  ListProblemsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "NextToken"))
406
+ ListProblemsResponse.add_member(:resource_group_name, Shapes::ShapeRef.new(shape: ResourceGroupName, location_name: "ResourceGroupName"))
396
407
  ListProblemsResponse.struct_class = Types::ListProblemsResponse
397
408
 
398
409
  ListTagsForResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: AmazonResourceName, required: true, location_name: "ResourceARN"))
@@ -470,6 +481,8 @@ module Aws::ApplicationInsights
470
481
  Problem.add_member(:severity_level, Shapes::ShapeRef.new(shape: SeverityLevel, location_name: "SeverityLevel"))
471
482
  Problem.add_member(:resource_group_name, Shapes::ShapeRef.new(shape: ResourceGroupName, location_name: "ResourceGroupName"))
472
483
  Problem.add_member(:feedback, Shapes::ShapeRef.new(shape: Feedback, location_name: "Feedback"))
484
+ Problem.add_member(:recurring_count, Shapes::ShapeRef.new(shape: RecurringCount, location_name: "RecurringCount"))
485
+ Problem.add_member(:last_recurrence_time, Shapes::ShapeRef.new(shape: LastRecurrenceTime, location_name: "LastRecurrenceTime"))
473
486
  Problem.struct_class = Types::Problem
474
487
 
475
488
  ProblemList.member = Shapes::ShapeRef.new(shape: Problem)
@@ -517,6 +530,7 @@ module Aws::ApplicationInsights
517
530
  UpdateApplicationRequest.add_member(:cwe_monitor_enabled, Shapes::ShapeRef.new(shape: CWEMonitorEnabled, location_name: "CWEMonitorEnabled"))
518
531
  UpdateApplicationRequest.add_member(:ops_item_sns_topic_arn, Shapes::ShapeRef.new(shape: OpsItemSNSTopicArn, location_name: "OpsItemSNSTopicArn"))
519
532
  UpdateApplicationRequest.add_member(:remove_sns_topic, Shapes::ShapeRef.new(shape: RemoveSNSTopic, location_name: "RemoveSNSTopic"))
533
+ UpdateApplicationRequest.add_member(:auto_config_enabled, Shapes::ShapeRef.new(shape: AutoConfigEnabled, location_name: "AutoConfigEnabled"))
520
534
  UpdateApplicationRequest.struct_class = Types::UpdateApplicationRequest
521
535
 
522
536
  UpdateApplicationResponse.add_member(:application_info, Shapes::ShapeRef.new(shape: ApplicationInfo, location_name: "ApplicationInfo"))
@@ -527,6 +541,7 @@ module Aws::ApplicationInsights
527
541
  UpdateComponentConfigurationRequest.add_member(:monitor, Shapes::ShapeRef.new(shape: Monitor, location_name: "Monitor"))
528
542
  UpdateComponentConfigurationRequest.add_member(:tier, Shapes::ShapeRef.new(shape: Tier, location_name: "Tier"))
529
543
  UpdateComponentConfigurationRequest.add_member(:component_configuration, Shapes::ShapeRef.new(shape: ComponentConfiguration, location_name: "ComponentConfiguration"))
544
+ UpdateComponentConfigurationRequest.add_member(:auto_config_enabled, Shapes::ShapeRef.new(shape: AutoConfigEnabled, location_name: "AutoConfigEnabled"))
530
545
  UpdateComponentConfigurationRequest.struct_class = Types::UpdateComponentConfigurationRequest
531
546
 
532
547
  UpdateComponentConfigurationResponse.struct_class = Types::UpdateComponentConfigurationResponse
@@ -106,6 +106,12 @@ module Aws::ApplicationInsights
106
106
  # * “Configuring application, detected 1 Unconfigured Components”
107
107
  # @return [String]
108
108
  #
109
+ # @!attribute [rw] auto_config_enabled
110
+ # @return [Boolean]
111
+ #
112
+ # @!attribute [rw] discovery_type
113
+ # @return [String]
114
+ #
109
115
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ApplicationInfo AWS API Documentation
110
116
  #
111
117
  class ApplicationInfo < Struct.new(
@@ -114,7 +120,9 @@ module Aws::ApplicationInsights
114
120
  :ops_item_sns_topic_arn,
115
121
  :ops_center_enabled,
116
122
  :cwe_monitor_enabled,
117
- :remarks)
123
+ :remarks,
124
+ :auto_config_enabled,
125
+ :discovery_type)
118
126
  SENSITIVE = []
119
127
  include Aws::Structure
120
128
  end
@@ -178,7 +186,7 @@ module Aws::ApplicationInsights
178
186
  # data as a hash:
179
187
  #
180
188
  # {
181
- # resource_group_name: "ResourceGroupName", # required
189
+ # resource_group_name: "ResourceGroupName",
182
190
  # ops_center_enabled: false,
183
191
  # cwe_monitor_enabled: false,
184
192
  # ops_item_sns_topic_arn: "OpsItemSNSTopicArn",
@@ -188,6 +196,8 @@ module Aws::ApplicationInsights
188
196
  # value: "TagValue", # required
189
197
  # },
190
198
  # ],
199
+ # auto_config_enabled: false,
200
+ # auto_create: false,
191
201
  # }
192
202
  #
193
203
  # @!attribute [rw] resource_group_name
@@ -217,6 +227,12 @@ module Aws::ApplicationInsights
217
227
  # 128 characters. The maximum length of a tag value is 256 characters.
218
228
  # @return [Array<Types::Tag>]
219
229
  #
230
+ # @!attribute [rw] auto_config_enabled
231
+ # @return [Boolean]
232
+ #
233
+ # @!attribute [rw] auto_create
234
+ # @return [Boolean]
235
+ #
220
236
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/CreateApplicationRequest AWS API Documentation
221
237
  #
222
238
  class CreateApplicationRequest < Struct.new(
@@ -224,7 +240,9 @@ module Aws::ApplicationInsights
224
240
  :ops_center_enabled,
225
241
  :cwe_monitor_enabled,
226
242
  :ops_item_sns_topic_arn,
227
- :tags)
243
+ :tags,
244
+ :auto_config_enabled,
245
+ :auto_create)
228
246
  SENSITIVE = []
229
247
  include Aws::Structure
230
248
  end
@@ -471,7 +489,7 @@ module Aws::ApplicationInsights
471
489
  # {
472
490
  # resource_group_name: "ResourceGroupName", # required
473
491
  # component_name: "ComponentName", # required
474
- # tier: "CUSTOM", # required, accepts CUSTOM, DEFAULT, DOT_NET_CORE, DOT_NET_WORKER, DOT_NET_WEB_TIER, DOT_NET_WEB, SQL_SERVER, SQL_SERVER_ALWAYSON_AVAILABILITY_GROUP, MYSQL, POSTGRESQL, JAVA_JMX, ORACLE
492
+ # tier: "CUSTOM", # required, accepts CUSTOM, DEFAULT, DOT_NET_CORE, DOT_NET_WORKER, DOT_NET_WEB_TIER, DOT_NET_WEB, SQL_SERVER, SQL_SERVER_ALWAYSON_AVAILABILITY_GROUP, MYSQL, POSTGRESQL, JAVA_JMX, ORACLE, SAP_HANA_MULTI_NODE, SAP_HANA_SINGLE_NODE, SAP_HANA_HIGH_AVAILABILITY, SQL_SERVER_FAILOVER_CLUSTER_INSTANCE
475
493
  # }
476
494
  #
477
495
  # @!attribute [rw] resource_group_name
@@ -1064,6 +1082,7 @@ module Aws::ApplicationInsights
1064
1082
  # end_time: Time.now,
1065
1083
  # max_results: 1,
1066
1084
  # next_token: "PaginationToken",
1085
+ # component_name: "ComponentName",
1067
1086
  # }
1068
1087
  #
1069
1088
  # @!attribute [rw] resource_group_name
@@ -1091,6 +1110,9 @@ module Aws::ApplicationInsights
1091
1110
  # The token to request the next page of results.
1092
1111
  # @return [String]
1093
1112
  #
1113
+ # @!attribute [rw] component_name
1114
+ # @return [String]
1115
+ #
1094
1116
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ListProblemsRequest AWS API Documentation
1095
1117
  #
1096
1118
  class ListProblemsRequest < Struct.new(
@@ -1098,7 +1120,8 @@ module Aws::ApplicationInsights
1098
1120
  :start_time,
1099
1121
  :end_time,
1100
1122
  :max_results,
1101
- :next_token)
1123
+ :next_token,
1124
+ :component_name)
1102
1125
  SENSITIVE = []
1103
1126
  include Aws::Structure
1104
1127
  end
@@ -1112,11 +1135,15 @@ module Aws::ApplicationInsights
1112
1135
  # `null` when there are no more results to return.
1113
1136
  # @return [String]
1114
1137
  #
1138
+ # @!attribute [rw] resource_group_name
1139
+ # @return [String]
1140
+ #
1115
1141
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ListProblemsResponse AWS API Documentation
1116
1142
  #
1117
1143
  class ListProblemsResponse < Struct.new(
1118
1144
  :problem_list,
1119
- :next_token)
1145
+ :next_token,
1146
+ :resource_group_name)
1120
1147
  SENSITIVE = []
1121
1148
  include Aws::Structure
1122
1149
  end
@@ -1491,6 +1518,12 @@ module Aws::ApplicationInsights
1491
1518
  # Feedback provided by the user about the problem.
1492
1519
  # @return [Hash<String,String>]
1493
1520
  #
1521
+ # @!attribute [rw] recurring_count
1522
+ # @return [Integer]
1523
+ #
1524
+ # @!attribute [rw] last_recurrence_time
1525
+ # @return [Time]
1526
+ #
1494
1527
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/Problem AWS API Documentation
1495
1528
  #
1496
1529
  class Problem < Struct.new(
@@ -1503,7 +1536,9 @@ module Aws::ApplicationInsights
1503
1536
  :end_time,
1504
1537
  :severity_level,
1505
1538
  :resource_group_name,
1506
- :feedback)
1539
+ :feedback,
1540
+ :recurring_count,
1541
+ :last_recurrence_time)
1507
1542
  SENSITIVE = []
1508
1543
  include Aws::Structure
1509
1544
  end
@@ -1717,6 +1752,7 @@ module Aws::ApplicationInsights
1717
1752
  # cwe_monitor_enabled: false,
1718
1753
  # ops_item_sns_topic_arn: "OpsItemSNSTopicArn",
1719
1754
  # remove_sns_topic: false,
1755
+ # auto_config_enabled: false,
1720
1756
  # }
1721
1757
  #
1722
1758
  # @!attribute [rw] resource_group_name
@@ -1745,6 +1781,9 @@ module Aws::ApplicationInsights
1745
1781
  # problems.
1746
1782
  # @return [Boolean]
1747
1783
  #
1784
+ # @!attribute [rw] auto_config_enabled
1785
+ # @return [Boolean]
1786
+ #
1748
1787
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/UpdateApplicationRequest AWS API Documentation
1749
1788
  #
1750
1789
  class UpdateApplicationRequest < Struct.new(
@@ -1752,7 +1791,8 @@ module Aws::ApplicationInsights
1752
1791
  :ops_center_enabled,
1753
1792
  :cwe_monitor_enabled,
1754
1793
  :ops_item_sns_topic_arn,
1755
- :remove_sns_topic)
1794
+ :remove_sns_topic,
1795
+ :auto_config_enabled)
1756
1796
  SENSITIVE = []
1757
1797
  include Aws::Structure
1758
1798
  end
@@ -1776,8 +1816,9 @@ module Aws::ApplicationInsights
1776
1816
  # resource_group_name: "ResourceGroupName", # required
1777
1817
  # component_name: "ComponentName", # required
1778
1818
  # monitor: false,
1779
- # tier: "CUSTOM", # accepts CUSTOM, DEFAULT, DOT_NET_CORE, DOT_NET_WORKER, DOT_NET_WEB_TIER, DOT_NET_WEB, SQL_SERVER, SQL_SERVER_ALWAYSON_AVAILABILITY_GROUP, MYSQL, POSTGRESQL, JAVA_JMX, ORACLE
1819
+ # tier: "CUSTOM", # accepts CUSTOM, DEFAULT, DOT_NET_CORE, DOT_NET_WORKER, DOT_NET_WEB_TIER, DOT_NET_WEB, SQL_SERVER, SQL_SERVER_ALWAYSON_AVAILABILITY_GROUP, MYSQL, POSTGRESQL, JAVA_JMX, ORACLE, SAP_HANA_MULTI_NODE, SAP_HANA_SINGLE_NODE, SAP_HANA_HIGH_AVAILABILITY, SQL_SERVER_FAILOVER_CLUSTER_INSTANCE
1780
1820
  # component_configuration: "ComponentConfiguration",
1821
+ # auto_config_enabled: false,
1781
1822
  # }
1782
1823
  #
1783
1824
  # @!attribute [rw] resource_group_name
@@ -1813,6 +1854,9 @@ module Aws::ApplicationInsights
1813
1854
  # [2]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/component-config.html
1814
1855
  # @return [String]
1815
1856
  #
1857
+ # @!attribute [rw] auto_config_enabled
1858
+ # @return [Boolean]
1859
+ #
1816
1860
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/UpdateComponentConfigurationRequest AWS API Documentation
1817
1861
  #
1818
1862
  class UpdateComponentConfigurationRequest < Struct.new(
@@ -1820,7 +1864,8 @@ module Aws::ApplicationInsights
1820
1864
  :component_name,
1821
1865
  :monitor,
1822
1866
  :tier,
1823
- :component_configuration)
1867
+ :component_configuration,
1868
+ :auto_config_enabled)
1824
1869
  SENSITIVE = []
1825
1870
  include Aws::Structure
1826
1871
  end
@@ -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.22.0'
51
+ GEM_VERSION = '1.26.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.22.0
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: 2021-10-18 00:00:00.000000000 Z
11
+ date: 2021-11-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.121.2
22
+ version: 3.122.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.121.2
32
+ version: 3.122.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement