aws-sdk-applicationinsights 1.31.0 → 1.51.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 +103 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-applicationinsights/client.rb +488 -55
- data/lib/aws-sdk-applicationinsights/client_api.rb +197 -0
- data/lib/aws-sdk-applicationinsights/endpoint_parameters.rb +66 -0
- data/lib/aws-sdk-applicationinsights/endpoint_provider.rb +54 -0
- data/lib/aws-sdk-applicationinsights/endpoints.rb +478 -0
- data/lib/aws-sdk-applicationinsights/plugins/endpoints.rb +136 -0
- data/lib/aws-sdk-applicationinsights/types.rb +479 -284
- data/lib/aws-sdk-applicationinsights.rb +6 -2
- data/sig/client.rbs +534 -0
- data/sig/errors.rbs +41 -0
- data/sig/resource.rbs +81 -0
- data/sig/types.rbs +619 -0
- data/sig/waiters.rbs +13 -0
- metadata +20 -11
|
@@ -23,6 +23,47 @@ module Aws::ApplicationInsights
|
|
|
23
23
|
include Aws::Structure
|
|
24
24
|
end
|
|
25
25
|
|
|
26
|
+
# @!attribute [rw] resource_group_name
|
|
27
|
+
# The name of the resource group.
|
|
28
|
+
# @return [String]
|
|
29
|
+
#
|
|
30
|
+
# @!attribute [rw] component_name
|
|
31
|
+
# The name of the component.
|
|
32
|
+
# @return [String]
|
|
33
|
+
#
|
|
34
|
+
# @!attribute [rw] workload_configuration
|
|
35
|
+
# The configuration settings of the workload. The value is the escaped
|
|
36
|
+
# JSON of the configuration.
|
|
37
|
+
# @return [Types::WorkloadConfiguration]
|
|
38
|
+
#
|
|
39
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/AddWorkloadRequest AWS API Documentation
|
|
40
|
+
#
|
|
41
|
+
class AddWorkloadRequest < Struct.new(
|
|
42
|
+
:resource_group_name,
|
|
43
|
+
:component_name,
|
|
44
|
+
:workload_configuration)
|
|
45
|
+
SENSITIVE = []
|
|
46
|
+
include Aws::Structure
|
|
47
|
+
end
|
|
48
|
+
|
|
49
|
+
# @!attribute [rw] workload_id
|
|
50
|
+
# The ID of the workload.
|
|
51
|
+
# @return [String]
|
|
52
|
+
#
|
|
53
|
+
# @!attribute [rw] workload_configuration
|
|
54
|
+
# The configuration settings of the workload. The value is the escaped
|
|
55
|
+
# JSON of the configuration.
|
|
56
|
+
# @return [Types::WorkloadConfiguration]
|
|
57
|
+
#
|
|
58
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/AddWorkloadResponse AWS API Documentation
|
|
59
|
+
#
|
|
60
|
+
class AddWorkloadResponse < Struct.new(
|
|
61
|
+
:workload_id,
|
|
62
|
+
:workload_configuration)
|
|
63
|
+
SENSITIVE = []
|
|
64
|
+
include Aws::Structure
|
|
65
|
+
end
|
|
66
|
+
|
|
26
67
|
# Describes a standalone resource or similarly grouped resources that
|
|
27
68
|
# the application is made up of.
|
|
28
69
|
#
|
|
@@ -72,6 +113,10 @@ module Aws::ApplicationInsights
|
|
|
72
113
|
|
|
73
114
|
# Describes the status of the application.
|
|
74
115
|
#
|
|
116
|
+
# @!attribute [rw] account_id
|
|
117
|
+
# The AWS account ID for the owner of the application.
|
|
118
|
+
# @return [String]
|
|
119
|
+
#
|
|
75
120
|
# @!attribute [rw] resource_group_name
|
|
76
121
|
# The name of the resource group used for the application.
|
|
77
122
|
# @return [String]
|
|
@@ -115,9 +160,15 @@ module Aws::ApplicationInsights
|
|
|
115
160
|
# The method used by Application Insights to onboard your resources.
|
|
116
161
|
# @return [String]
|
|
117
162
|
#
|
|
163
|
+
# @!attribute [rw] attach_missing_permission
|
|
164
|
+
# If set to true, the managed policies for SSM and CW will be attached
|
|
165
|
+
# to the instance roles if they are missing.
|
|
166
|
+
# @return [Boolean]
|
|
167
|
+
#
|
|
118
168
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ApplicationInfo AWS API Documentation
|
|
119
169
|
#
|
|
120
170
|
class ApplicationInfo < Struct.new(
|
|
171
|
+
:account_id,
|
|
121
172
|
:resource_group_name,
|
|
122
173
|
:life_cycle,
|
|
123
174
|
:ops_item_sns_topic_arn,
|
|
@@ -125,7 +176,8 @@ module Aws::ApplicationInsights
|
|
|
125
176
|
:cwe_monitor_enabled,
|
|
126
177
|
:remarks,
|
|
127
178
|
:auto_config_enabled,
|
|
128
|
-
:discovery_type
|
|
179
|
+
:discovery_type,
|
|
180
|
+
:attach_missing_permission)
|
|
129
181
|
SENSITIVE = []
|
|
130
182
|
include Aws::Structure
|
|
131
183
|
end
|
|
@@ -145,6 +197,16 @@ module Aws::ApplicationInsights
|
|
|
145
197
|
|
|
146
198
|
# The event information.
|
|
147
199
|
#
|
|
200
|
+
# @!attribute [rw] resource_group_name
|
|
201
|
+
# The name of the resource group of the application to which the
|
|
202
|
+
# configuration event belongs.
|
|
203
|
+
# @return [String]
|
|
204
|
+
#
|
|
205
|
+
# @!attribute [rw] account_id
|
|
206
|
+
# The AWS account ID for the owner of the application to which the
|
|
207
|
+
# configuration event belongs.
|
|
208
|
+
# @return [String]
|
|
209
|
+
#
|
|
148
210
|
# @!attribute [rw] monitored_resource_arn
|
|
149
211
|
# The resource monitored by Application Insights.
|
|
150
212
|
# @return [String]
|
|
@@ -175,6 +237,8 @@ module Aws::ApplicationInsights
|
|
|
175
237
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ConfigurationEvent AWS API Documentation
|
|
176
238
|
#
|
|
177
239
|
class ConfigurationEvent < Struct.new(
|
|
240
|
+
:resource_group_name,
|
|
241
|
+
:account_id,
|
|
178
242
|
:monitored_resource_arn,
|
|
179
243
|
:event_status,
|
|
180
244
|
:event_resource_type,
|
|
@@ -185,25 +249,6 @@ module Aws::ApplicationInsights
|
|
|
185
249
|
include Aws::Structure
|
|
186
250
|
end
|
|
187
251
|
|
|
188
|
-
# @note When making an API call, you may pass CreateApplicationRequest
|
|
189
|
-
# data as a hash:
|
|
190
|
-
#
|
|
191
|
-
# {
|
|
192
|
-
# resource_group_name: "ResourceGroupName",
|
|
193
|
-
# ops_center_enabled: false,
|
|
194
|
-
# cwe_monitor_enabled: false,
|
|
195
|
-
# ops_item_sns_topic_arn: "OpsItemSNSTopicArn",
|
|
196
|
-
# tags: [
|
|
197
|
-
# {
|
|
198
|
-
# key: "TagKey", # required
|
|
199
|
-
# value: "TagValue", # required
|
|
200
|
-
# },
|
|
201
|
-
# ],
|
|
202
|
-
# auto_config_enabled: false,
|
|
203
|
-
# auto_create: false,
|
|
204
|
-
# grouping_type: "ACCOUNT_BASED", # accepts ACCOUNT_BASED
|
|
205
|
-
# }
|
|
206
|
-
#
|
|
207
252
|
# @!attribute [rw] resource_group_name
|
|
208
253
|
# The name of the resource group.
|
|
209
254
|
# @return [String]
|
|
@@ -248,6 +293,11 @@ module Aws::ApplicationInsights
|
|
|
248
293
|
# `ACCOUNT_BASED`.
|
|
249
294
|
# @return [String]
|
|
250
295
|
#
|
|
296
|
+
# @!attribute [rw] attach_missing_permission
|
|
297
|
+
# If set to true, the managed policies for SSM and CW will be attached
|
|
298
|
+
# to the instance roles if they are missing.
|
|
299
|
+
# @return [Boolean]
|
|
300
|
+
#
|
|
251
301
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/CreateApplicationRequest AWS API Documentation
|
|
252
302
|
#
|
|
253
303
|
class CreateApplicationRequest < Struct.new(
|
|
@@ -258,7 +308,8 @@ module Aws::ApplicationInsights
|
|
|
258
308
|
:tags,
|
|
259
309
|
:auto_config_enabled,
|
|
260
310
|
:auto_create,
|
|
261
|
-
:grouping_type
|
|
311
|
+
:grouping_type,
|
|
312
|
+
:attach_missing_permission)
|
|
262
313
|
SENSITIVE = []
|
|
263
314
|
include Aws::Structure
|
|
264
315
|
end
|
|
@@ -275,15 +326,6 @@ module Aws::ApplicationInsights
|
|
|
275
326
|
include Aws::Structure
|
|
276
327
|
end
|
|
277
328
|
|
|
278
|
-
# @note When making an API call, you may pass CreateComponentRequest
|
|
279
|
-
# data as a hash:
|
|
280
|
-
#
|
|
281
|
-
# {
|
|
282
|
-
# resource_group_name: "ResourceGroupName", # required
|
|
283
|
-
# component_name: "CustomComponentName", # required
|
|
284
|
-
# resource_list: ["ResourceARN"], # required
|
|
285
|
-
# }
|
|
286
|
-
#
|
|
287
329
|
# @!attribute [rw] resource_group_name
|
|
288
330
|
# The name of the resource group.
|
|
289
331
|
# @return [String]
|
|
@@ -310,17 +352,6 @@ module Aws::ApplicationInsights
|
|
|
310
352
|
#
|
|
311
353
|
class CreateComponentResponse < Aws::EmptyStructure; end
|
|
312
354
|
|
|
313
|
-
# @note When making an API call, you may pass CreateLogPatternRequest
|
|
314
|
-
# data as a hash:
|
|
315
|
-
#
|
|
316
|
-
# {
|
|
317
|
-
# resource_group_name: "ResourceGroupName", # required
|
|
318
|
-
# pattern_set_name: "LogPatternSetName", # required
|
|
319
|
-
# pattern_name: "LogPatternName", # required
|
|
320
|
-
# pattern: "LogPatternRegex", # required
|
|
321
|
-
# rank: 1, # required
|
|
322
|
-
# }
|
|
323
|
-
#
|
|
324
355
|
# @!attribute [rw] resource_group_name
|
|
325
356
|
# The name of the resource group.
|
|
326
357
|
# @return [String]
|
|
@@ -381,13 +412,6 @@ module Aws::ApplicationInsights
|
|
|
381
412
|
include Aws::Structure
|
|
382
413
|
end
|
|
383
414
|
|
|
384
|
-
# @note When making an API call, you may pass DeleteApplicationRequest
|
|
385
|
-
# data as a hash:
|
|
386
|
-
#
|
|
387
|
-
# {
|
|
388
|
-
# resource_group_name: "ResourceGroupName", # required
|
|
389
|
-
# }
|
|
390
|
-
#
|
|
391
415
|
# @!attribute [rw] resource_group_name
|
|
392
416
|
# The name of the resource group.
|
|
393
417
|
# @return [String]
|
|
@@ -404,14 +428,6 @@ module Aws::ApplicationInsights
|
|
|
404
428
|
#
|
|
405
429
|
class DeleteApplicationResponse < Aws::EmptyStructure; end
|
|
406
430
|
|
|
407
|
-
# @note When making an API call, you may pass DeleteComponentRequest
|
|
408
|
-
# data as a hash:
|
|
409
|
-
#
|
|
410
|
-
# {
|
|
411
|
-
# resource_group_name: "ResourceGroupName", # required
|
|
412
|
-
# component_name: "CustomComponentName", # required
|
|
413
|
-
# }
|
|
414
|
-
#
|
|
415
431
|
# @!attribute [rw] resource_group_name
|
|
416
432
|
# The name of the resource group.
|
|
417
433
|
# @return [String]
|
|
@@ -433,15 +449,6 @@ module Aws::ApplicationInsights
|
|
|
433
449
|
#
|
|
434
450
|
class DeleteComponentResponse < Aws::EmptyStructure; end
|
|
435
451
|
|
|
436
|
-
# @note When making an API call, you may pass DeleteLogPatternRequest
|
|
437
|
-
# data as a hash:
|
|
438
|
-
#
|
|
439
|
-
# {
|
|
440
|
-
# resource_group_name: "ResourceGroupName", # required
|
|
441
|
-
# pattern_set_name: "LogPatternSetName", # required
|
|
442
|
-
# pattern_name: "LogPatternName", # required
|
|
443
|
-
# }
|
|
444
|
-
#
|
|
445
452
|
# @!attribute [rw] resource_group_name
|
|
446
453
|
# The name of the resource group.
|
|
447
454
|
# @return [String]
|
|
@@ -468,21 +475,19 @@ module Aws::ApplicationInsights
|
|
|
468
475
|
#
|
|
469
476
|
class DeleteLogPatternResponse < Aws::EmptyStructure; end
|
|
470
477
|
|
|
471
|
-
# @note When making an API call, you may pass DescribeApplicationRequest
|
|
472
|
-
# data as a hash:
|
|
473
|
-
#
|
|
474
|
-
# {
|
|
475
|
-
# resource_group_name: "ResourceGroupName", # required
|
|
476
|
-
# }
|
|
477
|
-
#
|
|
478
478
|
# @!attribute [rw] resource_group_name
|
|
479
479
|
# The name of the resource group.
|
|
480
480
|
# @return [String]
|
|
481
481
|
#
|
|
482
|
+
# @!attribute [rw] account_id
|
|
483
|
+
# The AWS account ID for the resource group owner.
|
|
484
|
+
# @return [String]
|
|
485
|
+
#
|
|
482
486
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeApplicationRequest AWS API Documentation
|
|
483
487
|
#
|
|
484
488
|
class DescribeApplicationRequest < Struct.new(
|
|
485
|
-
:resource_group_name
|
|
489
|
+
:resource_group_name,
|
|
490
|
+
:account_id)
|
|
486
491
|
SENSITIVE = []
|
|
487
492
|
include Aws::Structure
|
|
488
493
|
end
|
|
@@ -499,15 +504,6 @@ module Aws::ApplicationInsights
|
|
|
499
504
|
include Aws::Structure
|
|
500
505
|
end
|
|
501
506
|
|
|
502
|
-
# @note When making an API call, you may pass DescribeComponentConfigurationRecommendationRequest
|
|
503
|
-
# data as a hash:
|
|
504
|
-
#
|
|
505
|
-
# {
|
|
506
|
-
# resource_group_name: "ResourceGroupName", # required
|
|
507
|
-
# component_name: "ComponentName", # required
|
|
508
|
-
# 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, SHAREPOINT, ACTIVE_DIRECTORY
|
|
509
|
-
# }
|
|
510
|
-
#
|
|
511
507
|
# @!attribute [rw] resource_group_name
|
|
512
508
|
# The name of the resource group.
|
|
513
509
|
# @return [String]
|
|
@@ -520,12 +516,22 @@ module Aws::ApplicationInsights
|
|
|
520
516
|
# The tier of the application component.
|
|
521
517
|
# @return [String]
|
|
522
518
|
#
|
|
519
|
+
# @!attribute [rw] workload_name
|
|
520
|
+
# The name of the workload.
|
|
521
|
+
# @return [String]
|
|
522
|
+
#
|
|
523
|
+
# @!attribute [rw] recommendation_type
|
|
524
|
+
# The recommended configuration type.
|
|
525
|
+
# @return [String]
|
|
526
|
+
#
|
|
523
527
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeComponentConfigurationRecommendationRequest AWS API Documentation
|
|
524
528
|
#
|
|
525
529
|
class DescribeComponentConfigurationRecommendationRequest < Struct.new(
|
|
526
530
|
:resource_group_name,
|
|
527
531
|
:component_name,
|
|
528
|
-
:tier
|
|
532
|
+
:tier,
|
|
533
|
+
:workload_name,
|
|
534
|
+
:recommendation_type)
|
|
529
535
|
SENSITIVE = []
|
|
530
536
|
include Aws::Structure
|
|
531
537
|
end
|
|
@@ -543,14 +549,6 @@ module Aws::ApplicationInsights
|
|
|
543
549
|
include Aws::Structure
|
|
544
550
|
end
|
|
545
551
|
|
|
546
|
-
# @note When making an API call, you may pass DescribeComponentConfigurationRequest
|
|
547
|
-
# data as a hash:
|
|
548
|
-
#
|
|
549
|
-
# {
|
|
550
|
-
# resource_group_name: "ResourceGroupName", # required
|
|
551
|
-
# component_name: "ComponentName", # required
|
|
552
|
-
# }
|
|
553
|
-
#
|
|
554
552
|
# @!attribute [rw] resource_group_name
|
|
555
553
|
# The name of the resource group.
|
|
556
554
|
# @return [String]
|
|
@@ -559,11 +557,16 @@ module Aws::ApplicationInsights
|
|
|
559
557
|
# The name of the component.
|
|
560
558
|
# @return [String]
|
|
561
559
|
#
|
|
560
|
+
# @!attribute [rw] account_id
|
|
561
|
+
# The AWS account ID for the resource group owner.
|
|
562
|
+
# @return [String]
|
|
563
|
+
#
|
|
562
564
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeComponentConfigurationRequest AWS API Documentation
|
|
563
565
|
#
|
|
564
566
|
class DescribeComponentConfigurationRequest < Struct.new(
|
|
565
567
|
:resource_group_name,
|
|
566
|
-
:component_name
|
|
568
|
+
:component_name,
|
|
569
|
+
:account_id)
|
|
567
570
|
SENSITIVE = []
|
|
568
571
|
include Aws::Structure
|
|
569
572
|
end
|
|
@@ -593,14 +596,6 @@ module Aws::ApplicationInsights
|
|
|
593
596
|
include Aws::Structure
|
|
594
597
|
end
|
|
595
598
|
|
|
596
|
-
# @note When making an API call, you may pass DescribeComponentRequest
|
|
597
|
-
# data as a hash:
|
|
598
|
-
#
|
|
599
|
-
# {
|
|
600
|
-
# resource_group_name: "ResourceGroupName", # required
|
|
601
|
-
# component_name: "ComponentName", # required
|
|
602
|
-
# }
|
|
603
|
-
#
|
|
604
599
|
# @!attribute [rw] resource_group_name
|
|
605
600
|
# The name of the resource group.
|
|
606
601
|
# @return [String]
|
|
@@ -609,11 +604,16 @@ module Aws::ApplicationInsights
|
|
|
609
604
|
# The name of the component.
|
|
610
605
|
# @return [String]
|
|
611
606
|
#
|
|
607
|
+
# @!attribute [rw] account_id
|
|
608
|
+
# The AWS account ID for the resource group owner.
|
|
609
|
+
# @return [String]
|
|
610
|
+
#
|
|
612
611
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeComponentRequest AWS API Documentation
|
|
613
612
|
#
|
|
614
613
|
class DescribeComponentRequest < Struct.new(
|
|
615
614
|
:resource_group_name,
|
|
616
|
-
:component_name
|
|
615
|
+
:component_name,
|
|
616
|
+
:account_id)
|
|
617
617
|
SENSITIVE = []
|
|
618
618
|
include Aws::Structure
|
|
619
619
|
end
|
|
@@ -636,15 +636,6 @@ module Aws::ApplicationInsights
|
|
|
636
636
|
include Aws::Structure
|
|
637
637
|
end
|
|
638
638
|
|
|
639
|
-
# @note When making an API call, you may pass DescribeLogPatternRequest
|
|
640
|
-
# data as a hash:
|
|
641
|
-
#
|
|
642
|
-
# {
|
|
643
|
-
# resource_group_name: "ResourceGroupName", # required
|
|
644
|
-
# pattern_set_name: "LogPatternSetName", # required
|
|
645
|
-
# pattern_name: "LogPatternName", # required
|
|
646
|
-
# }
|
|
647
|
-
#
|
|
648
639
|
# @!attribute [rw] resource_group_name
|
|
649
640
|
# The name of the resource group.
|
|
650
641
|
# @return [String]
|
|
@@ -657,12 +648,17 @@ module Aws::ApplicationInsights
|
|
|
657
648
|
# The name of the log pattern.
|
|
658
649
|
# @return [String]
|
|
659
650
|
#
|
|
651
|
+
# @!attribute [rw] account_id
|
|
652
|
+
# The AWS account ID for the resource group owner.
|
|
653
|
+
# @return [String]
|
|
654
|
+
#
|
|
660
655
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeLogPatternRequest AWS API Documentation
|
|
661
656
|
#
|
|
662
657
|
class DescribeLogPatternRequest < Struct.new(
|
|
663
658
|
:resource_group_name,
|
|
664
659
|
:pattern_set_name,
|
|
665
|
-
:pattern_name
|
|
660
|
+
:pattern_name,
|
|
661
|
+
:account_id)
|
|
666
662
|
SENSITIVE = []
|
|
667
663
|
include Aws::Structure
|
|
668
664
|
end
|
|
@@ -671,6 +667,10 @@ module Aws::ApplicationInsights
|
|
|
671
667
|
# The name of the resource group.
|
|
672
668
|
# @return [String]
|
|
673
669
|
#
|
|
670
|
+
# @!attribute [rw] account_id
|
|
671
|
+
# The AWS account ID for the resource group owner.
|
|
672
|
+
# @return [String]
|
|
673
|
+
#
|
|
674
674
|
# @!attribute [rw] log_pattern
|
|
675
675
|
# The successfully created log pattern.
|
|
676
676
|
# @return [Types::LogPattern]
|
|
@@ -679,26 +679,25 @@ module Aws::ApplicationInsights
|
|
|
679
679
|
#
|
|
680
680
|
class DescribeLogPatternResponse < Struct.new(
|
|
681
681
|
:resource_group_name,
|
|
682
|
+
:account_id,
|
|
682
683
|
:log_pattern)
|
|
683
684
|
SENSITIVE = []
|
|
684
685
|
include Aws::Structure
|
|
685
686
|
end
|
|
686
687
|
|
|
687
|
-
# @note When making an API call, you may pass DescribeObservationRequest
|
|
688
|
-
# data as a hash:
|
|
689
|
-
#
|
|
690
|
-
# {
|
|
691
|
-
# observation_id: "ObservationId", # required
|
|
692
|
-
# }
|
|
693
|
-
#
|
|
694
688
|
# @!attribute [rw] observation_id
|
|
695
689
|
# The ID of the observation.
|
|
696
690
|
# @return [String]
|
|
697
691
|
#
|
|
692
|
+
# @!attribute [rw] account_id
|
|
693
|
+
# The AWS account ID for the resource group owner.
|
|
694
|
+
# @return [String]
|
|
695
|
+
#
|
|
698
696
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeObservationRequest AWS API Documentation
|
|
699
697
|
#
|
|
700
698
|
class DescribeObservationRequest < Struct.new(
|
|
701
|
-
:observation_id
|
|
699
|
+
:observation_id,
|
|
700
|
+
:account_id)
|
|
702
701
|
SENSITIVE = []
|
|
703
702
|
include Aws::Structure
|
|
704
703
|
end
|
|
@@ -715,21 +714,19 @@ module Aws::ApplicationInsights
|
|
|
715
714
|
include Aws::Structure
|
|
716
715
|
end
|
|
717
716
|
|
|
718
|
-
# @note When making an API call, you may pass DescribeProblemObservationsRequest
|
|
719
|
-
# data as a hash:
|
|
720
|
-
#
|
|
721
|
-
# {
|
|
722
|
-
# problem_id: "ProblemId", # required
|
|
723
|
-
# }
|
|
724
|
-
#
|
|
725
717
|
# @!attribute [rw] problem_id
|
|
726
718
|
# The ID of the problem.
|
|
727
719
|
# @return [String]
|
|
728
720
|
#
|
|
721
|
+
# @!attribute [rw] account_id
|
|
722
|
+
# The AWS account ID for the resource group owner.
|
|
723
|
+
# @return [String]
|
|
724
|
+
#
|
|
729
725
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeProblemObservationsRequest AWS API Documentation
|
|
730
726
|
#
|
|
731
727
|
class DescribeProblemObservationsRequest < Struct.new(
|
|
732
|
-
:problem_id
|
|
728
|
+
:problem_id,
|
|
729
|
+
:account_id)
|
|
733
730
|
SENSITIVE = []
|
|
734
731
|
include Aws::Structure
|
|
735
732
|
end
|
|
@@ -746,21 +743,20 @@ module Aws::ApplicationInsights
|
|
|
746
743
|
include Aws::Structure
|
|
747
744
|
end
|
|
748
745
|
|
|
749
|
-
# @note When making an API call, you may pass DescribeProblemRequest
|
|
750
|
-
# data as a hash:
|
|
751
|
-
#
|
|
752
|
-
# {
|
|
753
|
-
# problem_id: "ProblemId", # required
|
|
754
|
-
# }
|
|
755
|
-
#
|
|
756
746
|
# @!attribute [rw] problem_id
|
|
757
747
|
# The ID of the problem.
|
|
758
748
|
# @return [String]
|
|
759
749
|
#
|
|
750
|
+
# @!attribute [rw] account_id
|
|
751
|
+
# The AWS account ID for the owner of the resource group affected by
|
|
752
|
+
# the problem.
|
|
753
|
+
# @return [String]
|
|
754
|
+
#
|
|
760
755
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeProblemRequest AWS API Documentation
|
|
761
756
|
#
|
|
762
757
|
class DescribeProblemRequest < Struct.new(
|
|
763
|
-
:problem_id
|
|
758
|
+
:problem_id,
|
|
759
|
+
:account_id)
|
|
764
760
|
SENSITIVE = []
|
|
765
761
|
include Aws::Structure
|
|
766
762
|
end
|
|
@@ -777,6 +773,57 @@ module Aws::ApplicationInsights
|
|
|
777
773
|
include Aws::Structure
|
|
778
774
|
end
|
|
779
775
|
|
|
776
|
+
# @!attribute [rw] resource_group_name
|
|
777
|
+
# The name of the resource group.
|
|
778
|
+
# @return [String]
|
|
779
|
+
#
|
|
780
|
+
# @!attribute [rw] component_name
|
|
781
|
+
# The name of the component.
|
|
782
|
+
# @return [String]
|
|
783
|
+
#
|
|
784
|
+
# @!attribute [rw] workload_id
|
|
785
|
+
# The ID of the workload.
|
|
786
|
+
# @return [String]
|
|
787
|
+
#
|
|
788
|
+
# @!attribute [rw] account_id
|
|
789
|
+
# The AWS account ID for the workload owner.
|
|
790
|
+
# @return [String]
|
|
791
|
+
#
|
|
792
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeWorkloadRequest AWS API Documentation
|
|
793
|
+
#
|
|
794
|
+
class DescribeWorkloadRequest < Struct.new(
|
|
795
|
+
:resource_group_name,
|
|
796
|
+
:component_name,
|
|
797
|
+
:workload_id,
|
|
798
|
+
:account_id)
|
|
799
|
+
SENSITIVE = []
|
|
800
|
+
include Aws::Structure
|
|
801
|
+
end
|
|
802
|
+
|
|
803
|
+
# @!attribute [rw] workload_id
|
|
804
|
+
# The ID of the workload.
|
|
805
|
+
# @return [String]
|
|
806
|
+
#
|
|
807
|
+
# @!attribute [rw] workload_remarks
|
|
808
|
+
# If logging is supported for the resource type, shows whether the
|
|
809
|
+
# component has configured logs to be monitored.
|
|
810
|
+
# @return [String]
|
|
811
|
+
#
|
|
812
|
+
# @!attribute [rw] workload_configuration
|
|
813
|
+
# The configuration settings of the workload. The value is the escaped
|
|
814
|
+
# JSON of the configuration.
|
|
815
|
+
# @return [Types::WorkloadConfiguration]
|
|
816
|
+
#
|
|
817
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeWorkloadResponse AWS API Documentation
|
|
818
|
+
#
|
|
819
|
+
class DescribeWorkloadResponse < Struct.new(
|
|
820
|
+
:workload_id,
|
|
821
|
+
:workload_remarks,
|
|
822
|
+
:workload_configuration)
|
|
823
|
+
SENSITIVE = []
|
|
824
|
+
include Aws::Structure
|
|
825
|
+
end
|
|
826
|
+
|
|
780
827
|
# The server encountered an internal error and is unable to complete the
|
|
781
828
|
# request.
|
|
782
829
|
#
|
|
@@ -791,14 +838,6 @@ module Aws::ApplicationInsights
|
|
|
791
838
|
include Aws::Structure
|
|
792
839
|
end
|
|
793
840
|
|
|
794
|
-
# @note When making an API call, you may pass ListApplicationsRequest
|
|
795
|
-
# data as a hash:
|
|
796
|
-
#
|
|
797
|
-
# {
|
|
798
|
-
# max_results: 1,
|
|
799
|
-
# next_token: "PaginationToken",
|
|
800
|
-
# }
|
|
801
|
-
#
|
|
802
841
|
# @!attribute [rw] max_results
|
|
803
842
|
# The maximum number of results to return in a single call. To
|
|
804
843
|
# retrieve the remaining results, make another call with the returned
|
|
@@ -809,11 +848,16 @@ module Aws::ApplicationInsights
|
|
|
809
848
|
# The token to request the next page of results.
|
|
810
849
|
# @return [String]
|
|
811
850
|
#
|
|
851
|
+
# @!attribute [rw] account_id
|
|
852
|
+
# The AWS account ID for the resource group owner.
|
|
853
|
+
# @return [String]
|
|
854
|
+
#
|
|
812
855
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ListApplicationsRequest AWS API Documentation
|
|
813
856
|
#
|
|
814
857
|
class ListApplicationsRequest < Struct.new(
|
|
815
858
|
:max_results,
|
|
816
|
-
:next_token
|
|
859
|
+
:next_token,
|
|
860
|
+
:account_id)
|
|
817
861
|
SENSITIVE = []
|
|
818
862
|
include Aws::Structure
|
|
819
863
|
end
|
|
@@ -836,15 +880,6 @@ module Aws::ApplicationInsights
|
|
|
836
880
|
include Aws::Structure
|
|
837
881
|
end
|
|
838
882
|
|
|
839
|
-
# @note When making an API call, you may pass ListComponentsRequest
|
|
840
|
-
# data as a hash:
|
|
841
|
-
#
|
|
842
|
-
# {
|
|
843
|
-
# resource_group_name: "ResourceGroupName", # required
|
|
844
|
-
# max_results: 1,
|
|
845
|
-
# next_token: "PaginationToken",
|
|
846
|
-
# }
|
|
847
|
-
#
|
|
848
883
|
# @!attribute [rw] resource_group_name
|
|
849
884
|
# The name of the resource group.
|
|
850
885
|
# @return [String]
|
|
@@ -859,12 +894,17 @@ module Aws::ApplicationInsights
|
|
|
859
894
|
# The token to request the next page of results.
|
|
860
895
|
# @return [String]
|
|
861
896
|
#
|
|
897
|
+
# @!attribute [rw] account_id
|
|
898
|
+
# The AWS account ID for the resource group owner.
|
|
899
|
+
# @return [String]
|
|
900
|
+
#
|
|
862
901
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ListComponentsRequest AWS API Documentation
|
|
863
902
|
#
|
|
864
903
|
class ListComponentsRequest < Struct.new(
|
|
865
904
|
:resource_group_name,
|
|
866
905
|
:max_results,
|
|
867
|
-
:next_token
|
|
906
|
+
:next_token,
|
|
907
|
+
:account_id)
|
|
868
908
|
SENSITIVE = []
|
|
869
909
|
include Aws::Structure
|
|
870
910
|
end
|
|
@@ -886,18 +926,6 @@ module Aws::ApplicationInsights
|
|
|
886
926
|
include Aws::Structure
|
|
887
927
|
end
|
|
888
928
|
|
|
889
|
-
# @note When making an API call, you may pass ListConfigurationHistoryRequest
|
|
890
|
-
# data as a hash:
|
|
891
|
-
#
|
|
892
|
-
# {
|
|
893
|
-
# resource_group_name: "ResourceGroupName",
|
|
894
|
-
# start_time: Time.now,
|
|
895
|
-
# end_time: Time.now,
|
|
896
|
-
# event_status: "INFO", # accepts INFO, WARN, ERROR
|
|
897
|
-
# max_results: 1,
|
|
898
|
-
# next_token: "PaginationToken",
|
|
899
|
-
# }
|
|
900
|
-
#
|
|
901
929
|
# @!attribute [rw] resource_group_name
|
|
902
930
|
# Resource group to which the application belongs.
|
|
903
931
|
# @return [String]
|
|
@@ -935,6 +963,10 @@ module Aws::ApplicationInsights
|
|
|
935
963
|
# results to return.
|
|
936
964
|
# @return [String]
|
|
937
965
|
#
|
|
966
|
+
# @!attribute [rw] account_id
|
|
967
|
+
# The AWS account ID for the resource group owner.
|
|
968
|
+
# @return [String]
|
|
969
|
+
#
|
|
938
970
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ListConfigurationHistoryRequest AWS API Documentation
|
|
939
971
|
#
|
|
940
972
|
class ListConfigurationHistoryRequest < Struct.new(
|
|
@@ -943,7 +975,8 @@ module Aws::ApplicationInsights
|
|
|
943
975
|
:end_time,
|
|
944
976
|
:event_status,
|
|
945
977
|
:max_results,
|
|
946
|
-
:next_token
|
|
978
|
+
:next_token,
|
|
979
|
+
:account_id)
|
|
947
980
|
SENSITIVE = []
|
|
948
981
|
include Aws::Structure
|
|
949
982
|
end
|
|
@@ -969,15 +1002,6 @@ module Aws::ApplicationInsights
|
|
|
969
1002
|
include Aws::Structure
|
|
970
1003
|
end
|
|
971
1004
|
|
|
972
|
-
# @note When making an API call, you may pass ListLogPatternSetsRequest
|
|
973
|
-
# data as a hash:
|
|
974
|
-
#
|
|
975
|
-
# {
|
|
976
|
-
# resource_group_name: "ResourceGroupName", # required
|
|
977
|
-
# max_results: 1,
|
|
978
|
-
# next_token: "PaginationToken",
|
|
979
|
-
# }
|
|
980
|
-
#
|
|
981
1005
|
# @!attribute [rw] resource_group_name
|
|
982
1006
|
# The name of the resource group.
|
|
983
1007
|
# @return [String]
|
|
@@ -992,12 +1016,17 @@ module Aws::ApplicationInsights
|
|
|
992
1016
|
# The token to request the next page of results.
|
|
993
1017
|
# @return [String]
|
|
994
1018
|
#
|
|
1019
|
+
# @!attribute [rw] account_id
|
|
1020
|
+
# The AWS account ID for the resource group owner.
|
|
1021
|
+
# @return [String]
|
|
1022
|
+
#
|
|
995
1023
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ListLogPatternSetsRequest AWS API Documentation
|
|
996
1024
|
#
|
|
997
1025
|
class ListLogPatternSetsRequest < Struct.new(
|
|
998
1026
|
:resource_group_name,
|
|
999
1027
|
:max_results,
|
|
1000
|
-
:next_token
|
|
1028
|
+
:next_token,
|
|
1029
|
+
:account_id)
|
|
1001
1030
|
SENSITIVE = []
|
|
1002
1031
|
include Aws::Structure
|
|
1003
1032
|
end
|
|
@@ -1006,6 +1035,10 @@ module Aws::ApplicationInsights
|
|
|
1006
1035
|
# The name of the resource group.
|
|
1007
1036
|
# @return [String]
|
|
1008
1037
|
#
|
|
1038
|
+
# @!attribute [rw] account_id
|
|
1039
|
+
# The AWS account ID for the resource group owner.
|
|
1040
|
+
# @return [String]
|
|
1041
|
+
#
|
|
1009
1042
|
# @!attribute [rw] log_pattern_sets
|
|
1010
1043
|
# The list of log pattern sets.
|
|
1011
1044
|
# @return [Array<String>]
|
|
@@ -1019,22 +1052,13 @@ module Aws::ApplicationInsights
|
|
|
1019
1052
|
#
|
|
1020
1053
|
class ListLogPatternSetsResponse < Struct.new(
|
|
1021
1054
|
:resource_group_name,
|
|
1055
|
+
:account_id,
|
|
1022
1056
|
:log_pattern_sets,
|
|
1023
1057
|
:next_token)
|
|
1024
1058
|
SENSITIVE = []
|
|
1025
1059
|
include Aws::Structure
|
|
1026
1060
|
end
|
|
1027
1061
|
|
|
1028
|
-
# @note When making an API call, you may pass ListLogPatternsRequest
|
|
1029
|
-
# data as a hash:
|
|
1030
|
-
#
|
|
1031
|
-
# {
|
|
1032
|
-
# resource_group_name: "ResourceGroupName", # required
|
|
1033
|
-
# pattern_set_name: "LogPatternSetName",
|
|
1034
|
-
# max_results: 1,
|
|
1035
|
-
# next_token: "PaginationToken",
|
|
1036
|
-
# }
|
|
1037
|
-
#
|
|
1038
1062
|
# @!attribute [rw] resource_group_name
|
|
1039
1063
|
# The name of the resource group.
|
|
1040
1064
|
# @return [String]
|
|
@@ -1053,13 +1077,18 @@ module Aws::ApplicationInsights
|
|
|
1053
1077
|
# The token to request the next page of results.
|
|
1054
1078
|
# @return [String]
|
|
1055
1079
|
#
|
|
1080
|
+
# @!attribute [rw] account_id
|
|
1081
|
+
# The AWS account ID for the resource group owner.
|
|
1082
|
+
# @return [String]
|
|
1083
|
+
#
|
|
1056
1084
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ListLogPatternsRequest AWS API Documentation
|
|
1057
1085
|
#
|
|
1058
1086
|
class ListLogPatternsRequest < Struct.new(
|
|
1059
1087
|
:resource_group_name,
|
|
1060
1088
|
:pattern_set_name,
|
|
1061
1089
|
:max_results,
|
|
1062
|
-
:next_token
|
|
1090
|
+
:next_token,
|
|
1091
|
+
:account_id)
|
|
1063
1092
|
SENSITIVE = []
|
|
1064
1093
|
include Aws::Structure
|
|
1065
1094
|
end
|
|
@@ -1068,6 +1097,10 @@ module Aws::ApplicationInsights
|
|
|
1068
1097
|
# The name of the resource group.
|
|
1069
1098
|
# @return [String]
|
|
1070
1099
|
#
|
|
1100
|
+
# @!attribute [rw] account_id
|
|
1101
|
+
# The AWS account ID for the resource group owner.
|
|
1102
|
+
# @return [String]
|
|
1103
|
+
#
|
|
1071
1104
|
# @!attribute [rw] log_patterns
|
|
1072
1105
|
# The list of log patterns.
|
|
1073
1106
|
# @return [Array<Types::LogPattern>]
|
|
@@ -1081,23 +1114,16 @@ module Aws::ApplicationInsights
|
|
|
1081
1114
|
#
|
|
1082
1115
|
class ListLogPatternsResponse < Struct.new(
|
|
1083
1116
|
:resource_group_name,
|
|
1117
|
+
:account_id,
|
|
1084
1118
|
:log_patterns,
|
|
1085
1119
|
:next_token)
|
|
1086
1120
|
SENSITIVE = []
|
|
1087
1121
|
include Aws::Structure
|
|
1088
1122
|
end
|
|
1089
1123
|
|
|
1090
|
-
#
|
|
1091
|
-
#
|
|
1092
|
-
#
|
|
1093
|
-
# {
|
|
1094
|
-
# resource_group_name: "ResourceGroupName",
|
|
1095
|
-
# start_time: Time.now,
|
|
1096
|
-
# end_time: Time.now,
|
|
1097
|
-
# max_results: 1,
|
|
1098
|
-
# next_token: "PaginationToken",
|
|
1099
|
-
# component_name: "ComponentName",
|
|
1100
|
-
# }
|
|
1124
|
+
# @!attribute [rw] account_id
|
|
1125
|
+
# The AWS account ID for the resource group owner.
|
|
1126
|
+
# @return [String]
|
|
1101
1127
|
#
|
|
1102
1128
|
# @!attribute [rw] resource_group_name
|
|
1103
1129
|
# The name of the resource group.
|
|
@@ -1128,15 +1154,22 @@ module Aws::ApplicationInsights
|
|
|
1128
1154
|
# The name of the component.
|
|
1129
1155
|
# @return [String]
|
|
1130
1156
|
#
|
|
1157
|
+
# @!attribute [rw] visibility
|
|
1158
|
+
# Specifies whether or not you can view the problem. If not specified,
|
|
1159
|
+
# visible and ignored problems are returned.
|
|
1160
|
+
# @return [String]
|
|
1161
|
+
#
|
|
1131
1162
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ListProblemsRequest AWS API Documentation
|
|
1132
1163
|
#
|
|
1133
1164
|
class ListProblemsRequest < Struct.new(
|
|
1165
|
+
:account_id,
|
|
1134
1166
|
:resource_group_name,
|
|
1135
1167
|
:start_time,
|
|
1136
1168
|
:end_time,
|
|
1137
1169
|
:max_results,
|
|
1138
1170
|
:next_token,
|
|
1139
|
-
:component_name
|
|
1171
|
+
:component_name,
|
|
1172
|
+
:visibility)
|
|
1140
1173
|
SENSITIVE = []
|
|
1141
1174
|
include Aws::Structure
|
|
1142
1175
|
end
|
|
@@ -1154,23 +1187,21 @@ module Aws::ApplicationInsights
|
|
|
1154
1187
|
# The name of the resource group.
|
|
1155
1188
|
# @return [String]
|
|
1156
1189
|
#
|
|
1190
|
+
# @!attribute [rw] account_id
|
|
1191
|
+
# The AWS account ID for the resource group owner.
|
|
1192
|
+
# @return [String]
|
|
1193
|
+
#
|
|
1157
1194
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ListProblemsResponse AWS API Documentation
|
|
1158
1195
|
#
|
|
1159
1196
|
class ListProblemsResponse < Struct.new(
|
|
1160
1197
|
:problem_list,
|
|
1161
1198
|
:next_token,
|
|
1162
|
-
:resource_group_name
|
|
1199
|
+
:resource_group_name,
|
|
1200
|
+
:account_id)
|
|
1163
1201
|
SENSITIVE = []
|
|
1164
1202
|
include Aws::Structure
|
|
1165
1203
|
end
|
|
1166
1204
|
|
|
1167
|
-
# @note When making an API call, you may pass ListTagsForResourceRequest
|
|
1168
|
-
# data as a hash:
|
|
1169
|
-
#
|
|
1170
|
-
# {
|
|
1171
|
-
# resource_arn: "AmazonResourceName", # required
|
|
1172
|
-
# }
|
|
1173
|
-
#
|
|
1174
1205
|
# @!attribute [rw] resource_arn
|
|
1175
1206
|
# The Amazon Resource Name (ARN) of the application that you want to
|
|
1176
1207
|
# retrieve tag information for.
|
|
@@ -1198,6 +1229,57 @@ module Aws::ApplicationInsights
|
|
|
1198
1229
|
include Aws::Structure
|
|
1199
1230
|
end
|
|
1200
1231
|
|
|
1232
|
+
# @!attribute [rw] resource_group_name
|
|
1233
|
+
# The name of the resource group.
|
|
1234
|
+
# @return [String]
|
|
1235
|
+
#
|
|
1236
|
+
# @!attribute [rw] component_name
|
|
1237
|
+
# The name of the component.
|
|
1238
|
+
# @return [String]
|
|
1239
|
+
#
|
|
1240
|
+
# @!attribute [rw] max_results
|
|
1241
|
+
# The maximum number of results to return in a single call. To
|
|
1242
|
+
# retrieve the remaining results, make another call with the returned
|
|
1243
|
+
# `NextToken` value.
|
|
1244
|
+
# @return [Integer]
|
|
1245
|
+
#
|
|
1246
|
+
# @!attribute [rw] next_token
|
|
1247
|
+
# The token to request the next page of results.
|
|
1248
|
+
# @return [String]
|
|
1249
|
+
#
|
|
1250
|
+
# @!attribute [rw] account_id
|
|
1251
|
+
# The AWS account ID of the owner of the workload.
|
|
1252
|
+
# @return [String]
|
|
1253
|
+
#
|
|
1254
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ListWorkloadsRequest AWS API Documentation
|
|
1255
|
+
#
|
|
1256
|
+
class ListWorkloadsRequest < Struct.new(
|
|
1257
|
+
:resource_group_name,
|
|
1258
|
+
:component_name,
|
|
1259
|
+
:max_results,
|
|
1260
|
+
:next_token,
|
|
1261
|
+
:account_id)
|
|
1262
|
+
SENSITIVE = []
|
|
1263
|
+
include Aws::Structure
|
|
1264
|
+
end
|
|
1265
|
+
|
|
1266
|
+
# @!attribute [rw] workload_list
|
|
1267
|
+
# The list of workloads.
|
|
1268
|
+
# @return [Array<Types::Workload>]
|
|
1269
|
+
#
|
|
1270
|
+
# @!attribute [rw] next_token
|
|
1271
|
+
# The token to request the next page of results.
|
|
1272
|
+
# @return [String]
|
|
1273
|
+
#
|
|
1274
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ListWorkloadsResponse AWS API Documentation
|
|
1275
|
+
#
|
|
1276
|
+
class ListWorkloadsResponse < Struct.new(
|
|
1277
|
+
:workload_list,
|
|
1278
|
+
:next_token)
|
|
1279
|
+
SENSITIVE = []
|
|
1280
|
+
include Aws::Structure
|
|
1281
|
+
end
|
|
1282
|
+
|
|
1201
1283
|
# An object that defines the log patterns that belongs to a
|
|
1202
1284
|
# `LogPatternSet`.
|
|
1203
1285
|
#
|
|
@@ -1526,6 +1608,11 @@ module Aws::ApplicationInsights
|
|
|
1526
1608
|
# A measure of the level of impact of the problem.
|
|
1527
1609
|
# @return [String]
|
|
1528
1610
|
#
|
|
1611
|
+
# @!attribute [rw] account_id
|
|
1612
|
+
# The AWS account ID for the owner of the resource group affected by
|
|
1613
|
+
# the problem.
|
|
1614
|
+
# @return [String]
|
|
1615
|
+
#
|
|
1529
1616
|
# @!attribute [rw] resource_group_name
|
|
1530
1617
|
# The name of the resource group affected by the problem.
|
|
1531
1618
|
# @return [String]
|
|
@@ -1543,6 +1630,18 @@ module Aws::ApplicationInsights
|
|
|
1543
1630
|
# The last time that the problem reoccurred after its last resolution.
|
|
1544
1631
|
# @return [Time]
|
|
1545
1632
|
#
|
|
1633
|
+
# @!attribute [rw] visibility
|
|
1634
|
+
# Specifies whether or not you can view the problem. Updates to
|
|
1635
|
+
# ignored problems do not generate notifications.
|
|
1636
|
+
# @return [String]
|
|
1637
|
+
#
|
|
1638
|
+
# @!attribute [rw] resolution_method
|
|
1639
|
+
# Specifies how the problem was resolved. If the value is `AUTOMATIC`,
|
|
1640
|
+
# the system resolved the problem. If the value is `MANUAL`, the user
|
|
1641
|
+
# resolved the problem. If the value is `UNRESOLVED`, then the problem
|
|
1642
|
+
# is not resolved.
|
|
1643
|
+
# @return [String]
|
|
1644
|
+
#
|
|
1546
1645
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/Problem AWS API Documentation
|
|
1547
1646
|
#
|
|
1548
1647
|
class Problem < Struct.new(
|
|
@@ -1554,10 +1653,13 @@ module Aws::ApplicationInsights
|
|
|
1554
1653
|
:start_time,
|
|
1555
1654
|
:end_time,
|
|
1556
1655
|
:severity_level,
|
|
1656
|
+
:account_id,
|
|
1557
1657
|
:resource_group_name,
|
|
1558
1658
|
:feedback,
|
|
1559
1659
|
:recurring_count,
|
|
1560
|
-
:last_recurrence_time
|
|
1660
|
+
:last_recurrence_time,
|
|
1661
|
+
:visibility,
|
|
1662
|
+
:resolution_method)
|
|
1561
1663
|
SENSITIVE = []
|
|
1562
1664
|
include Aws::Structure
|
|
1563
1665
|
end
|
|
@@ -1576,6 +1678,32 @@ module Aws::ApplicationInsights
|
|
|
1576
1678
|
include Aws::Structure
|
|
1577
1679
|
end
|
|
1578
1680
|
|
|
1681
|
+
# @!attribute [rw] resource_group_name
|
|
1682
|
+
# The name of the resource group.
|
|
1683
|
+
# @return [String]
|
|
1684
|
+
#
|
|
1685
|
+
# @!attribute [rw] component_name
|
|
1686
|
+
# The name of the component.
|
|
1687
|
+
# @return [String]
|
|
1688
|
+
#
|
|
1689
|
+
# @!attribute [rw] workload_id
|
|
1690
|
+
# The ID of the workload.
|
|
1691
|
+
# @return [String]
|
|
1692
|
+
#
|
|
1693
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/RemoveWorkloadRequest AWS API Documentation
|
|
1694
|
+
#
|
|
1695
|
+
class RemoveWorkloadRequest < Struct.new(
|
|
1696
|
+
:resource_group_name,
|
|
1697
|
+
:component_name,
|
|
1698
|
+
:workload_id)
|
|
1699
|
+
SENSITIVE = []
|
|
1700
|
+
include Aws::Structure
|
|
1701
|
+
end
|
|
1702
|
+
|
|
1703
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/RemoveWorkloadResponse AWS API Documentation
|
|
1704
|
+
#
|
|
1705
|
+
class RemoveWorkloadResponse < Aws::EmptyStructure; end
|
|
1706
|
+
|
|
1579
1707
|
# The resource is already created or in use.
|
|
1580
1708
|
#
|
|
1581
1709
|
# @!attribute [rw] message
|
|
@@ -1626,14 +1754,6 @@ module Aws::ApplicationInsights
|
|
|
1626
1754
|
# any tag keys or values that you define. In addition, you can't edit
|
|
1627
1755
|
# or remove tag keys or values that use this prefix.
|
|
1628
1756
|
#
|
|
1629
|
-
# @note When making an API call, you may pass Tag
|
|
1630
|
-
# data as a hash:
|
|
1631
|
-
#
|
|
1632
|
-
# {
|
|
1633
|
-
# key: "TagKey", # required
|
|
1634
|
-
# value: "TagValue", # required
|
|
1635
|
-
# }
|
|
1636
|
-
#
|
|
1637
1757
|
# @!attribute [rw] key
|
|
1638
1758
|
# One part of a key-value pair that defines a tag. The maximum length
|
|
1639
1759
|
# of a tag key is 128 characters. The minimum length is 1 character.
|
|
@@ -1655,19 +1775,6 @@ module Aws::ApplicationInsights
|
|
|
1655
1775
|
include Aws::Structure
|
|
1656
1776
|
end
|
|
1657
1777
|
|
|
1658
|
-
# @note When making an API call, you may pass TagResourceRequest
|
|
1659
|
-
# data as a hash:
|
|
1660
|
-
#
|
|
1661
|
-
# {
|
|
1662
|
-
# resource_arn: "AmazonResourceName", # required
|
|
1663
|
-
# tags: [ # required
|
|
1664
|
-
# {
|
|
1665
|
-
# key: "TagKey", # required
|
|
1666
|
-
# value: "TagValue", # required
|
|
1667
|
-
# },
|
|
1668
|
-
# ],
|
|
1669
|
-
# }
|
|
1670
|
-
#
|
|
1671
1778
|
# @!attribute [rw] resource_arn
|
|
1672
1779
|
# The Amazon Resource Name (ARN) of the application that you want to
|
|
1673
1780
|
# add one or more tags to.
|
|
@@ -1726,14 +1833,6 @@ module Aws::ApplicationInsights
|
|
|
1726
1833
|
include Aws::Structure
|
|
1727
1834
|
end
|
|
1728
1835
|
|
|
1729
|
-
# @note When making an API call, you may pass UntagResourceRequest
|
|
1730
|
-
# data as a hash:
|
|
1731
|
-
#
|
|
1732
|
-
# {
|
|
1733
|
-
# resource_arn: "AmazonResourceName", # required
|
|
1734
|
-
# tag_keys: ["TagKey"], # required
|
|
1735
|
-
# }
|
|
1736
|
-
#
|
|
1737
1836
|
# @!attribute [rw] resource_arn
|
|
1738
1837
|
# The Amazon Resource Name (ARN) of the application that you want to
|
|
1739
1838
|
# remove one or more tags from.
|
|
@@ -1762,18 +1861,6 @@ module Aws::ApplicationInsights
|
|
|
1762
1861
|
#
|
|
1763
1862
|
class UntagResourceResponse < Aws::EmptyStructure; end
|
|
1764
1863
|
|
|
1765
|
-
# @note When making an API call, you may pass UpdateApplicationRequest
|
|
1766
|
-
# data as a hash:
|
|
1767
|
-
#
|
|
1768
|
-
# {
|
|
1769
|
-
# resource_group_name: "ResourceGroupName", # required
|
|
1770
|
-
# ops_center_enabled: false,
|
|
1771
|
-
# cwe_monitor_enabled: false,
|
|
1772
|
-
# ops_item_sns_topic_arn: "OpsItemSNSTopicArn",
|
|
1773
|
-
# remove_sns_topic: false,
|
|
1774
|
-
# auto_config_enabled: false,
|
|
1775
|
-
# }
|
|
1776
|
-
#
|
|
1777
1864
|
# @!attribute [rw] resource_group_name
|
|
1778
1865
|
# The name of the resource group.
|
|
1779
1866
|
# @return [String]
|
|
@@ -1804,6 +1891,11 @@ module Aws::ApplicationInsights
|
|
|
1804
1891
|
# Turns auto-configuration on or off.
|
|
1805
1892
|
# @return [Boolean]
|
|
1806
1893
|
#
|
|
1894
|
+
# @!attribute [rw] attach_missing_permission
|
|
1895
|
+
# If set to true, the managed policies for SSM and CW will be attached
|
|
1896
|
+
# to the instance roles if they are missing.
|
|
1897
|
+
# @return [Boolean]
|
|
1898
|
+
#
|
|
1807
1899
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/UpdateApplicationRequest AWS API Documentation
|
|
1808
1900
|
#
|
|
1809
1901
|
class UpdateApplicationRequest < Struct.new(
|
|
@@ -1812,7 +1904,8 @@ module Aws::ApplicationInsights
|
|
|
1812
1904
|
:cwe_monitor_enabled,
|
|
1813
1905
|
:ops_item_sns_topic_arn,
|
|
1814
1906
|
:remove_sns_topic,
|
|
1815
|
-
:auto_config_enabled
|
|
1907
|
+
:auto_config_enabled,
|
|
1908
|
+
:attach_missing_permission)
|
|
1816
1909
|
SENSITIVE = []
|
|
1817
1910
|
include Aws::Structure
|
|
1818
1911
|
end
|
|
@@ -1829,18 +1922,6 @@ module Aws::ApplicationInsights
|
|
|
1829
1922
|
include Aws::Structure
|
|
1830
1923
|
end
|
|
1831
1924
|
|
|
1832
|
-
# @note When making an API call, you may pass UpdateComponentConfigurationRequest
|
|
1833
|
-
# data as a hash:
|
|
1834
|
-
#
|
|
1835
|
-
# {
|
|
1836
|
-
# resource_group_name: "ResourceGroupName", # required
|
|
1837
|
-
# component_name: "ComponentName", # required
|
|
1838
|
-
# monitor: false,
|
|
1839
|
-
# 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, SHAREPOINT, ACTIVE_DIRECTORY
|
|
1840
|
-
# component_configuration: "ComponentConfiguration",
|
|
1841
|
-
# auto_config_enabled: false,
|
|
1842
|
-
# }
|
|
1843
|
-
#
|
|
1844
1925
|
# @!attribute [rw] resource_group_name
|
|
1845
1926
|
# The name of the resource group.
|
|
1846
1927
|
# @return [String]
|
|
@@ -1894,16 +1975,6 @@ module Aws::ApplicationInsights
|
|
|
1894
1975
|
#
|
|
1895
1976
|
class UpdateComponentConfigurationResponse < Aws::EmptyStructure; end
|
|
1896
1977
|
|
|
1897
|
-
# @note When making an API call, you may pass UpdateComponentRequest
|
|
1898
|
-
# data as a hash:
|
|
1899
|
-
#
|
|
1900
|
-
# {
|
|
1901
|
-
# resource_group_name: "ResourceGroupName", # required
|
|
1902
|
-
# component_name: "CustomComponentName", # required
|
|
1903
|
-
# new_component_name: "CustomComponentName",
|
|
1904
|
-
# resource_list: ["ResourceARN"],
|
|
1905
|
-
# }
|
|
1906
|
-
#
|
|
1907
1978
|
# @!attribute [rw] resource_group_name
|
|
1908
1979
|
# The name of the resource group.
|
|
1909
1980
|
# @return [String]
|
|
@@ -1935,17 +2006,6 @@ module Aws::ApplicationInsights
|
|
|
1935
2006
|
#
|
|
1936
2007
|
class UpdateComponentResponse < Aws::EmptyStructure; end
|
|
1937
2008
|
|
|
1938
|
-
# @note When making an API call, you may pass UpdateLogPatternRequest
|
|
1939
|
-
# data as a hash:
|
|
1940
|
-
#
|
|
1941
|
-
# {
|
|
1942
|
-
# resource_group_name: "ResourceGroupName", # required
|
|
1943
|
-
# pattern_set_name: "LogPatternSetName", # required
|
|
1944
|
-
# pattern_name: "LogPatternName", # required
|
|
1945
|
-
# pattern: "LogPatternRegex",
|
|
1946
|
-
# rank: 1,
|
|
1947
|
-
# }
|
|
1948
|
-
#
|
|
1949
2009
|
# @!attribute [rw] resource_group_name
|
|
1950
2010
|
# The name of the resource group.
|
|
1951
2011
|
# @return [String]
|
|
@@ -2006,6 +2066,82 @@ module Aws::ApplicationInsights
|
|
|
2006
2066
|
include Aws::Structure
|
|
2007
2067
|
end
|
|
2008
2068
|
|
|
2069
|
+
# @!attribute [rw] problem_id
|
|
2070
|
+
# The ID of the problem.
|
|
2071
|
+
# @return [String]
|
|
2072
|
+
#
|
|
2073
|
+
# @!attribute [rw] update_status
|
|
2074
|
+
# The status of the problem. Arguments can be passed for only problems
|
|
2075
|
+
# that show a status of `RECOVERING`.
|
|
2076
|
+
# @return [String]
|
|
2077
|
+
#
|
|
2078
|
+
# @!attribute [rw] visibility
|
|
2079
|
+
# The visibility of a problem. When you pass a value of `IGNORED`, the
|
|
2080
|
+
# problem is removed from the default view, and all notifications for
|
|
2081
|
+
# the problem are suspended. When `VISIBLE` is passed, the `IGNORED`
|
|
2082
|
+
# action is reversed.
|
|
2083
|
+
# @return [String]
|
|
2084
|
+
#
|
|
2085
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/UpdateProblemRequest AWS API Documentation
|
|
2086
|
+
#
|
|
2087
|
+
class UpdateProblemRequest < Struct.new(
|
|
2088
|
+
:problem_id,
|
|
2089
|
+
:update_status,
|
|
2090
|
+
:visibility)
|
|
2091
|
+
SENSITIVE = []
|
|
2092
|
+
include Aws::Structure
|
|
2093
|
+
end
|
|
2094
|
+
|
|
2095
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/UpdateProblemResponse AWS API Documentation
|
|
2096
|
+
#
|
|
2097
|
+
class UpdateProblemResponse < Aws::EmptyStructure; end
|
|
2098
|
+
|
|
2099
|
+
# @!attribute [rw] resource_group_name
|
|
2100
|
+
# The name of the resource group.
|
|
2101
|
+
# @return [String]
|
|
2102
|
+
#
|
|
2103
|
+
# @!attribute [rw] component_name
|
|
2104
|
+
# The name of the component.
|
|
2105
|
+
# @return [String]
|
|
2106
|
+
#
|
|
2107
|
+
# @!attribute [rw] workload_id
|
|
2108
|
+
# The ID of the workload.
|
|
2109
|
+
# @return [String]
|
|
2110
|
+
#
|
|
2111
|
+
# @!attribute [rw] workload_configuration
|
|
2112
|
+
# The configuration settings of the workload. The value is the escaped
|
|
2113
|
+
# JSON of the configuration.
|
|
2114
|
+
# @return [Types::WorkloadConfiguration]
|
|
2115
|
+
#
|
|
2116
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/UpdateWorkloadRequest AWS API Documentation
|
|
2117
|
+
#
|
|
2118
|
+
class UpdateWorkloadRequest < Struct.new(
|
|
2119
|
+
:resource_group_name,
|
|
2120
|
+
:component_name,
|
|
2121
|
+
:workload_id,
|
|
2122
|
+
:workload_configuration)
|
|
2123
|
+
SENSITIVE = []
|
|
2124
|
+
include Aws::Structure
|
|
2125
|
+
end
|
|
2126
|
+
|
|
2127
|
+
# @!attribute [rw] workload_id
|
|
2128
|
+
# The ID of the workload.
|
|
2129
|
+
# @return [String]
|
|
2130
|
+
#
|
|
2131
|
+
# @!attribute [rw] workload_configuration
|
|
2132
|
+
# The configuration settings of the workload. The value is the escaped
|
|
2133
|
+
# JSON of the configuration.
|
|
2134
|
+
# @return [Types::WorkloadConfiguration]
|
|
2135
|
+
#
|
|
2136
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/UpdateWorkloadResponse AWS API Documentation
|
|
2137
|
+
#
|
|
2138
|
+
class UpdateWorkloadResponse < Struct.new(
|
|
2139
|
+
:workload_id,
|
|
2140
|
+
:workload_configuration)
|
|
2141
|
+
SENSITIVE = []
|
|
2142
|
+
include Aws::Structure
|
|
2143
|
+
end
|
|
2144
|
+
|
|
2009
2145
|
# The parameter is not valid.
|
|
2010
2146
|
#
|
|
2011
2147
|
# @!attribute [rw] message
|
|
@@ -2019,5 +2155,64 @@ module Aws::ApplicationInsights
|
|
|
2019
2155
|
include Aws::Structure
|
|
2020
2156
|
end
|
|
2021
2157
|
|
|
2158
|
+
# Describes the workloads on a component.
|
|
2159
|
+
#
|
|
2160
|
+
# @!attribute [rw] workload_id
|
|
2161
|
+
# The ID of the workload.
|
|
2162
|
+
# @return [String]
|
|
2163
|
+
#
|
|
2164
|
+
# @!attribute [rw] component_name
|
|
2165
|
+
# The name of the component.
|
|
2166
|
+
# @return [String]
|
|
2167
|
+
#
|
|
2168
|
+
# @!attribute [rw] workload_name
|
|
2169
|
+
# The name of the workload.
|
|
2170
|
+
# @return [String]
|
|
2171
|
+
#
|
|
2172
|
+
# @!attribute [rw] tier
|
|
2173
|
+
# The tier of the workload.
|
|
2174
|
+
# @return [String]
|
|
2175
|
+
#
|
|
2176
|
+
# @!attribute [rw] workload_remarks
|
|
2177
|
+
# If logging is supported for the resource type, shows whether the
|
|
2178
|
+
# component has configured logs to be monitored.
|
|
2179
|
+
# @return [String]
|
|
2180
|
+
#
|
|
2181
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/Workload AWS API Documentation
|
|
2182
|
+
#
|
|
2183
|
+
class Workload < Struct.new(
|
|
2184
|
+
:workload_id,
|
|
2185
|
+
:component_name,
|
|
2186
|
+
:workload_name,
|
|
2187
|
+
:tier,
|
|
2188
|
+
:workload_remarks)
|
|
2189
|
+
SENSITIVE = []
|
|
2190
|
+
include Aws::Structure
|
|
2191
|
+
end
|
|
2192
|
+
|
|
2193
|
+
# The configuration of the workload.
|
|
2194
|
+
#
|
|
2195
|
+
# @!attribute [rw] workload_name
|
|
2196
|
+
# The name of the workload.
|
|
2197
|
+
# @return [String]
|
|
2198
|
+
#
|
|
2199
|
+
# @!attribute [rw] tier
|
|
2200
|
+
# The configuration of the workload tier.
|
|
2201
|
+
# @return [String]
|
|
2202
|
+
#
|
|
2203
|
+
# @!attribute [rw] configuration
|
|
2204
|
+
# The configuration settings of the workload.
|
|
2205
|
+
# @return [String]
|
|
2206
|
+
#
|
|
2207
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/WorkloadConfiguration AWS API Documentation
|
|
2208
|
+
#
|
|
2209
|
+
class WorkloadConfiguration < Struct.new(
|
|
2210
|
+
:workload_name,
|
|
2211
|
+
:tier,
|
|
2212
|
+
:configuration)
|
|
2213
|
+
SENSITIVE = []
|
|
2214
|
+
include Aws::Structure
|
|
2215
|
+
end
|
|
2216
|
+
|
|
2022
2217
|
end
|
|
2023
2218
|
end
|