aws-sdk-applicationinsights 1.21.0 → 1.25.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-applicationinsights/client.rb +48 -10
- data/lib/aws-sdk-applicationinsights/client_api.rb +16 -1
- data/lib/aws-sdk-applicationinsights/types.rb +55 -10
- data/lib/aws-sdk-applicationinsights.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d67eeb90c524a982c23bf6390dce87026aec5822107d4c71bcda73e14163210d
|
4
|
+
data.tar.gz: d9819f21d0696ae3a59a07102981562f6a6d46be5c59aba163803b9a59fa56cb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 58753622fb83436f75a3487f055ec2f39ad53d0312b0340ef7e232829f3f7ce7d7be8f6004a50e944c20db746126fb6cd0e3f37d6f3f82c8e95b0f456b60abc4
|
7
|
+
data.tar.gz: 99ef0f6f3272b8f18fc3886e1c58bfd5f4a74e041fdd9facf253ad142b0d70f21ed6bf959e5d810aec7bab0146765eb74e5890d5dee306af31ce7c84b68fb6c6
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.25.0 (2021-11-19)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Application Insights now supports monitoring for HANA
|
8
|
+
|
9
|
+
1.24.0 (2021-11-04)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.23.0 (2021-10-29)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Added Monitoring support for SQL Server Failover Cluster Instance. Additionally, added a new API to allow one-click monitoring of containers resources.
|
18
|
+
|
19
|
+
1.22.0 (2021-10-18)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
23
|
+
|
4
24
|
1.21.0 (2021-09-01)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.25.0
|
@@ -285,6 +285,15 @@ module Aws::ApplicationInsights
|
|
285
285
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
286
286
|
# requests are made, and retries are disabled.
|
287
287
|
#
|
288
|
+
# @option options [Boolean] :use_dualstack_endpoint
|
289
|
+
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
290
|
+
# will be used if available.
|
291
|
+
#
|
292
|
+
# @option options [Boolean] :use_fips_endpoint
|
293
|
+
# When set to `true`, fips compatible endpoints will be used if available.
|
294
|
+
# When a `fips` region is used, the region is normalized and this config
|
295
|
+
# is set to `true`.
|
296
|
+
#
|
288
297
|
# @option options [Boolean] :validate_params (true)
|
289
298
|
# When `true`, request parameters are validated before
|
290
299
|
# sending the request.
|
@@ -339,7 +348,7 @@ module Aws::ApplicationInsights
|
|
339
348
|
|
340
349
|
# Adds an application that is created from a resource group.
|
341
350
|
#
|
342
|
-
# @option params [
|
351
|
+
# @option params [String] :resource_group_name
|
343
352
|
# The name of the resource group.
|
344
353
|
#
|
345
354
|
# @option params [Boolean] :ops_center_enabled
|
@@ -361,6 +370,10 @@ module Aws::ApplicationInsights
|
|
361
370
|
# associated tag value (`Value`). The maximum length of a tag key is 128
|
362
371
|
# characters. The maximum length of a tag value is 256 characters.
|
363
372
|
#
|
373
|
+
# @option params [Boolean] :auto_config_enabled
|
374
|
+
#
|
375
|
+
# @option params [Boolean] :auto_create
|
376
|
+
#
|
364
377
|
# @return [Types::CreateApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
365
378
|
#
|
366
379
|
# * {Types::CreateApplicationResponse#application_info #application_info} => Types::ApplicationInfo
|
@@ -368,7 +381,7 @@ module Aws::ApplicationInsights
|
|
368
381
|
# @example Request syntax with placeholder values
|
369
382
|
#
|
370
383
|
# resp = client.create_application({
|
371
|
-
# resource_group_name: "ResourceGroupName",
|
384
|
+
# resource_group_name: "ResourceGroupName",
|
372
385
|
# ops_center_enabled: false,
|
373
386
|
# cwe_monitor_enabled: false,
|
374
387
|
# ops_item_sns_topic_arn: "OpsItemSNSTopicArn",
|
@@ -378,6 +391,8 @@ module Aws::ApplicationInsights
|
|
378
391
|
# value: "TagValue", # required
|
379
392
|
# },
|
380
393
|
# ],
|
394
|
+
# auto_config_enabled: false,
|
395
|
+
# auto_create: false,
|
381
396
|
# })
|
382
397
|
#
|
383
398
|
# @example Response structure
|
@@ -388,6 +403,8 @@ module Aws::ApplicationInsights
|
|
388
403
|
# resp.application_info.ops_center_enabled #=> Boolean
|
389
404
|
# resp.application_info.cwe_monitor_enabled #=> Boolean
|
390
405
|
# resp.application_info.remarks #=> String
|
406
|
+
# resp.application_info.auto_config_enabled #=> Boolean
|
407
|
+
# resp.application_info.discovery_type #=> String, one of "RESOURCE_GROUP_BASED", "ACCOUNT_BASED"
|
391
408
|
#
|
392
409
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/CreateApplication AWS API Documentation
|
393
410
|
#
|
@@ -593,6 +610,8 @@ module Aws::ApplicationInsights
|
|
593
610
|
# resp.application_info.ops_center_enabled #=> Boolean
|
594
611
|
# resp.application_info.cwe_monitor_enabled #=> Boolean
|
595
612
|
# resp.application_info.remarks #=> String
|
613
|
+
# resp.application_info.auto_config_enabled #=> Boolean
|
614
|
+
# resp.application_info.discovery_type #=> String, one of "RESOURCE_GROUP_BASED", "ACCOUNT_BASED"
|
596
615
|
#
|
597
616
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeApplication AWS API Documentation
|
598
617
|
#
|
@@ -630,7 +649,7 @@ module Aws::ApplicationInsights
|
|
630
649
|
# resp.application_component.component_remarks #=> String
|
631
650
|
# resp.application_component.resource_type #=> String
|
632
651
|
# 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"
|
652
|
+
# 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
653
|
# resp.application_component.monitor #=> Boolean
|
635
654
|
# resp.application_component.detected_workload #=> Hash
|
636
655
|
# resp.application_component.detected_workload["Tier"] #=> Hash
|
@@ -671,7 +690,7 @@ module Aws::ApplicationInsights
|
|
671
690
|
# @example Response structure
|
672
691
|
#
|
673
692
|
# 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"
|
693
|
+
# 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
694
|
# resp.component_configuration #=> String
|
676
695
|
#
|
677
696
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeComponentConfiguration AWS API Documentation
|
@@ -705,7 +724,7 @@ module Aws::ApplicationInsights
|
|
705
724
|
# resp = client.describe_component_configuration_recommendation({
|
706
725
|
# resource_group_name: "ResourceGroupName", # required
|
707
726
|
# 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
|
727
|
+
# 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
728
|
# })
|
710
729
|
#
|
711
730
|
# @example Response structure
|
@@ -854,7 +873,7 @@ module Aws::ApplicationInsights
|
|
854
873
|
# resp.problem.id #=> String
|
855
874
|
# resp.problem.title #=> String
|
856
875
|
# resp.problem.insights #=> String
|
857
|
-
# resp.problem.status #=> String, one of "IGNORE", "RESOLVED", "PENDING"
|
876
|
+
# resp.problem.status #=> String, one of "IGNORE", "RESOLVED", "PENDING", "RECURRING"
|
858
877
|
# resp.problem.affected_resource #=> String
|
859
878
|
# resp.problem.start_time #=> Time
|
860
879
|
# resp.problem.end_time #=> Time
|
@@ -862,6 +881,8 @@ module Aws::ApplicationInsights
|
|
862
881
|
# resp.problem.resource_group_name #=> String
|
863
882
|
# resp.problem.feedback #=> Hash
|
864
883
|
# resp.problem.feedback["FeedbackKey"] #=> String, one of "NOT_SPECIFIED", "USEFUL", "NOT_USEFUL"
|
884
|
+
# resp.problem.recurring_count #=> Integer
|
885
|
+
# resp.problem.last_recurrence_time #=> Time
|
865
886
|
#
|
866
887
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeProblem AWS API Documentation
|
867
888
|
#
|
@@ -978,6 +999,8 @@ module Aws::ApplicationInsights
|
|
978
999
|
# resp.application_info_list[0].ops_center_enabled #=> Boolean
|
979
1000
|
# resp.application_info_list[0].cwe_monitor_enabled #=> Boolean
|
980
1001
|
# resp.application_info_list[0].remarks #=> String
|
1002
|
+
# resp.application_info_list[0].auto_config_enabled #=> Boolean
|
1003
|
+
# resp.application_info_list[0].discovery_type #=> String, one of "RESOURCE_GROUP_BASED", "ACCOUNT_BASED"
|
981
1004
|
# resp.next_token #=> String
|
982
1005
|
#
|
983
1006
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ListApplications AWS API Documentation
|
@@ -1025,7 +1048,7 @@ module Aws::ApplicationInsights
|
|
1025
1048
|
# resp.application_component_list[0].component_remarks #=> String
|
1026
1049
|
# resp.application_component_list[0].resource_type #=> String
|
1027
1050
|
# 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"
|
1051
|
+
# 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
1052
|
# resp.application_component_list[0].monitor #=> Boolean
|
1030
1053
|
# resp.application_component_list[0].detected_workload #=> Hash
|
1031
1054
|
# resp.application_component_list[0].detected_workload["Tier"] #=> Hash
|
@@ -1240,10 +1263,13 @@ module Aws::ApplicationInsights
|
|
1240
1263
|
# @option params [String] :next_token
|
1241
1264
|
# The token to request the next page of results.
|
1242
1265
|
#
|
1266
|
+
# @option params [String] :component_name
|
1267
|
+
#
|
1243
1268
|
# @return [Types::ListProblemsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1244
1269
|
#
|
1245
1270
|
# * {Types::ListProblemsResponse#problem_list #problem_list} => Array<Types::Problem>
|
1246
1271
|
# * {Types::ListProblemsResponse#next_token #next_token} => String
|
1272
|
+
# * {Types::ListProblemsResponse#resource_group_name #resource_group_name} => String
|
1247
1273
|
#
|
1248
1274
|
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1249
1275
|
#
|
@@ -1255,6 +1281,7 @@ module Aws::ApplicationInsights
|
|
1255
1281
|
# end_time: Time.now,
|
1256
1282
|
# max_results: 1,
|
1257
1283
|
# next_token: "PaginationToken",
|
1284
|
+
# component_name: "ComponentName",
|
1258
1285
|
# })
|
1259
1286
|
#
|
1260
1287
|
# @example Response structure
|
@@ -1263,7 +1290,7 @@ module Aws::ApplicationInsights
|
|
1263
1290
|
# resp.problem_list[0].id #=> String
|
1264
1291
|
# resp.problem_list[0].title #=> String
|
1265
1292
|
# resp.problem_list[0].insights #=> String
|
1266
|
-
# resp.problem_list[0].status #=> String, one of "IGNORE", "RESOLVED", "PENDING"
|
1293
|
+
# resp.problem_list[0].status #=> String, one of "IGNORE", "RESOLVED", "PENDING", "RECURRING"
|
1267
1294
|
# resp.problem_list[0].affected_resource #=> String
|
1268
1295
|
# resp.problem_list[0].start_time #=> Time
|
1269
1296
|
# resp.problem_list[0].end_time #=> Time
|
@@ -1271,7 +1298,10 @@ module Aws::ApplicationInsights
|
|
1271
1298
|
# resp.problem_list[0].resource_group_name #=> String
|
1272
1299
|
# resp.problem_list[0].feedback #=> Hash
|
1273
1300
|
# resp.problem_list[0].feedback["FeedbackKey"] #=> String, one of "NOT_SPECIFIED", "USEFUL", "NOT_USEFUL"
|
1301
|
+
# resp.problem_list[0].recurring_count #=> Integer
|
1302
|
+
# resp.problem_list[0].last_recurrence_time #=> Time
|
1274
1303
|
# resp.next_token #=> String
|
1304
|
+
# resp.resource_group_name #=> String
|
1275
1305
|
#
|
1276
1306
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ListProblems AWS API Documentation
|
1277
1307
|
#
|
@@ -1419,6 +1449,8 @@ module Aws::ApplicationInsights
|
|
1419
1449
|
# Disassociates the SNS topic from the opsItem created for detected
|
1420
1450
|
# problems.
|
1421
1451
|
#
|
1452
|
+
# @option params [Boolean] :auto_config_enabled
|
1453
|
+
#
|
1422
1454
|
# @return [Types::UpdateApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1423
1455
|
#
|
1424
1456
|
# * {Types::UpdateApplicationResponse#application_info #application_info} => Types::ApplicationInfo
|
@@ -1431,6 +1463,7 @@ module Aws::ApplicationInsights
|
|
1431
1463
|
# cwe_monitor_enabled: false,
|
1432
1464
|
# ops_item_sns_topic_arn: "OpsItemSNSTopicArn",
|
1433
1465
|
# remove_sns_topic: false,
|
1466
|
+
# auto_config_enabled: false,
|
1434
1467
|
# })
|
1435
1468
|
#
|
1436
1469
|
# @example Response structure
|
@@ -1441,6 +1474,8 @@ module Aws::ApplicationInsights
|
|
1441
1474
|
# resp.application_info.ops_center_enabled #=> Boolean
|
1442
1475
|
# resp.application_info.cwe_monitor_enabled #=> Boolean
|
1443
1476
|
# resp.application_info.remarks #=> String
|
1477
|
+
# resp.application_info.auto_config_enabled #=> Boolean
|
1478
|
+
# resp.application_info.discovery_type #=> String, one of "RESOURCE_GROUP_BASED", "ACCOUNT_BASED"
|
1444
1479
|
#
|
1445
1480
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/UpdateApplication AWS API Documentation
|
1446
1481
|
#
|
@@ -1518,6 +1553,8 @@ module Aws::ApplicationInsights
|
|
1518
1553
|
# [1]: https://docs.aws.amazon.com/sdk-for-javascript/v2/developer-guide/working-with-json.html
|
1519
1554
|
# [2]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/component-config.html
|
1520
1555
|
#
|
1556
|
+
# @option params [Boolean] :auto_config_enabled
|
1557
|
+
#
|
1521
1558
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1522
1559
|
#
|
1523
1560
|
# @example Request syntax with placeholder values
|
@@ -1526,8 +1563,9 @@ module Aws::ApplicationInsights
|
|
1526
1563
|
# resource_group_name: "ResourceGroupName", # required
|
1527
1564
|
# component_name: "ComponentName", # required
|
1528
1565
|
# 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
|
1566
|
+
# 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
1567
|
# component_configuration: "ComponentConfiguration",
|
1568
|
+
# auto_config_enabled: false,
|
1531
1569
|
# })
|
1532
1570
|
#
|
1533
1571
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/UpdateComponentConfiguration AWS API Documentation
|
@@ -1612,7 +1650,7 @@ module Aws::ApplicationInsights
|
|
1612
1650
|
params: params,
|
1613
1651
|
config: config)
|
1614
1652
|
context[:gem_name] = 'aws-sdk-applicationinsights'
|
1615
|
-
context[:gem_version] = '1.
|
1653
|
+
context[:gem_version] = '1.25.0'
|
1616
1654
|
Seahorse::Client::Request.new(handlers, context)
|
1617
1655
|
end
|
1618
1656
|
|
@@ -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,
|
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",
|
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
|
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.
|
4
|
+
version: 1.25.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-
|
11
|
+
date: 2021-11-19 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.
|
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.
|
32
|
+
version: 3.122.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|