aws-sdk-applicationinsights 1.26.0 → 1.41.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 +78 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-applicationinsights/client.rb +441 -19
- 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 +134 -0
- data/lib/aws-sdk-applicationinsights/types.rb +504 -289
- data/lib/aws-sdk-applicationinsights.rb +6 -2
- metadata +8 -4
@@ -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]
|
@@ -107,14 +152,23 @@ module Aws::ApplicationInsights
|
|
107
152
|
# @return [String]
|
108
153
|
#
|
109
154
|
# @!attribute [rw] auto_config_enabled
|
155
|
+
# Indicates whether auto-configuration is turned on for this
|
156
|
+
# application.
|
110
157
|
# @return [Boolean]
|
111
158
|
#
|
112
159
|
# @!attribute [rw] discovery_type
|
160
|
+
# The method used by Application Insights to onboard your resources.
|
113
161
|
# @return [String]
|
114
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
|
+
#
|
115
168
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ApplicationInfo AWS API Documentation
|
116
169
|
#
|
117
170
|
class ApplicationInfo < Struct.new(
|
171
|
+
:account_id,
|
118
172
|
:resource_group_name,
|
119
173
|
:life_cycle,
|
120
174
|
:ops_item_sns_topic_arn,
|
@@ -122,7 +176,8 @@ module Aws::ApplicationInsights
|
|
122
176
|
:cwe_monitor_enabled,
|
123
177
|
:remarks,
|
124
178
|
:auto_config_enabled,
|
125
|
-
:discovery_type
|
179
|
+
:discovery_type,
|
180
|
+
:attach_missing_permission)
|
126
181
|
SENSITIVE = []
|
127
182
|
include Aws::Structure
|
128
183
|
end
|
@@ -142,6 +197,16 @@ module Aws::ApplicationInsights
|
|
142
197
|
|
143
198
|
# The event information.
|
144
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
|
+
#
|
145
210
|
# @!attribute [rw] monitored_resource_arn
|
146
211
|
# The resource monitored by Application Insights.
|
147
212
|
# @return [String]
|
@@ -172,6 +237,8 @@ module Aws::ApplicationInsights
|
|
172
237
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ConfigurationEvent AWS API Documentation
|
173
238
|
#
|
174
239
|
class ConfigurationEvent < Struct.new(
|
240
|
+
:resource_group_name,
|
241
|
+
:account_id,
|
175
242
|
:monitored_resource_arn,
|
176
243
|
:event_status,
|
177
244
|
:event_resource_type,
|
@@ -182,24 +249,6 @@ module Aws::ApplicationInsights
|
|
182
249
|
include Aws::Structure
|
183
250
|
end
|
184
251
|
|
185
|
-
# @note When making an API call, you may pass CreateApplicationRequest
|
186
|
-
# data as a hash:
|
187
|
-
#
|
188
|
-
# {
|
189
|
-
# resource_group_name: "ResourceGroupName",
|
190
|
-
# ops_center_enabled: false,
|
191
|
-
# cwe_monitor_enabled: false,
|
192
|
-
# ops_item_sns_topic_arn: "OpsItemSNSTopicArn",
|
193
|
-
# tags: [
|
194
|
-
# {
|
195
|
-
# key: "TagKey", # required
|
196
|
-
# value: "TagValue", # required
|
197
|
-
# },
|
198
|
-
# ],
|
199
|
-
# auto_config_enabled: false,
|
200
|
-
# auto_create: false,
|
201
|
-
# }
|
202
|
-
#
|
203
252
|
# @!attribute [rw] resource_group_name
|
204
253
|
# The name of the resource group.
|
205
254
|
# @return [String]
|
@@ -228,9 +277,25 @@ module Aws::ApplicationInsights
|
|
228
277
|
# @return [Array<Types::Tag>]
|
229
278
|
#
|
230
279
|
# @!attribute [rw] auto_config_enabled
|
280
|
+
# Indicates whether Application Insights automatically configures
|
281
|
+
# unmonitored resources in the resource group.
|
231
282
|
# @return [Boolean]
|
232
283
|
#
|
233
284
|
# @!attribute [rw] auto_create
|
285
|
+
# Configures all of the resources in the resource group by applying
|
286
|
+
# the recommended configurations.
|
287
|
+
# @return [Boolean]
|
288
|
+
#
|
289
|
+
# @!attribute [rw] grouping_type
|
290
|
+
# Application Insights can create applications based on a resource
|
291
|
+
# group or on an account. To create an account-based application using
|
292
|
+
# all of the resources in the account, set this parameter to
|
293
|
+
# `ACCOUNT_BASED`.
|
294
|
+
# @return [String]
|
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.
|
234
299
|
# @return [Boolean]
|
235
300
|
#
|
236
301
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/CreateApplicationRequest AWS API Documentation
|
@@ -242,7 +307,9 @@ module Aws::ApplicationInsights
|
|
242
307
|
:ops_item_sns_topic_arn,
|
243
308
|
:tags,
|
244
309
|
:auto_config_enabled,
|
245
|
-
:auto_create
|
310
|
+
:auto_create,
|
311
|
+
:grouping_type,
|
312
|
+
:attach_missing_permission)
|
246
313
|
SENSITIVE = []
|
247
314
|
include Aws::Structure
|
248
315
|
end
|
@@ -259,15 +326,6 @@ module Aws::ApplicationInsights
|
|
259
326
|
include Aws::Structure
|
260
327
|
end
|
261
328
|
|
262
|
-
# @note When making an API call, you may pass CreateComponentRequest
|
263
|
-
# data as a hash:
|
264
|
-
#
|
265
|
-
# {
|
266
|
-
# resource_group_name: "ResourceGroupName", # required
|
267
|
-
# component_name: "CustomComponentName", # required
|
268
|
-
# resource_list: ["ResourceARN"], # required
|
269
|
-
# }
|
270
|
-
#
|
271
329
|
# @!attribute [rw] resource_group_name
|
272
330
|
# The name of the resource group.
|
273
331
|
# @return [String]
|
@@ -294,17 +352,6 @@ module Aws::ApplicationInsights
|
|
294
352
|
#
|
295
353
|
class CreateComponentResponse < Aws::EmptyStructure; end
|
296
354
|
|
297
|
-
# @note When making an API call, you may pass CreateLogPatternRequest
|
298
|
-
# data as a hash:
|
299
|
-
#
|
300
|
-
# {
|
301
|
-
# resource_group_name: "ResourceGroupName", # required
|
302
|
-
# pattern_set_name: "LogPatternSetName", # required
|
303
|
-
# pattern_name: "LogPatternName", # required
|
304
|
-
# pattern: "LogPatternRegex", # required
|
305
|
-
# rank: 1, # required
|
306
|
-
# }
|
307
|
-
#
|
308
355
|
# @!attribute [rw] resource_group_name
|
309
356
|
# The name of the resource group.
|
310
357
|
# @return [String]
|
@@ -365,13 +412,6 @@ module Aws::ApplicationInsights
|
|
365
412
|
include Aws::Structure
|
366
413
|
end
|
367
414
|
|
368
|
-
# @note When making an API call, you may pass DeleteApplicationRequest
|
369
|
-
# data as a hash:
|
370
|
-
#
|
371
|
-
# {
|
372
|
-
# resource_group_name: "ResourceGroupName", # required
|
373
|
-
# }
|
374
|
-
#
|
375
415
|
# @!attribute [rw] resource_group_name
|
376
416
|
# The name of the resource group.
|
377
417
|
# @return [String]
|
@@ -388,14 +428,6 @@ module Aws::ApplicationInsights
|
|
388
428
|
#
|
389
429
|
class DeleteApplicationResponse < Aws::EmptyStructure; end
|
390
430
|
|
391
|
-
# @note When making an API call, you may pass DeleteComponentRequest
|
392
|
-
# data as a hash:
|
393
|
-
#
|
394
|
-
# {
|
395
|
-
# resource_group_name: "ResourceGroupName", # required
|
396
|
-
# component_name: "CustomComponentName", # required
|
397
|
-
# }
|
398
|
-
#
|
399
431
|
# @!attribute [rw] resource_group_name
|
400
432
|
# The name of the resource group.
|
401
433
|
# @return [String]
|
@@ -417,15 +449,6 @@ module Aws::ApplicationInsights
|
|
417
449
|
#
|
418
450
|
class DeleteComponentResponse < Aws::EmptyStructure; end
|
419
451
|
|
420
|
-
# @note When making an API call, you may pass DeleteLogPatternRequest
|
421
|
-
# data as a hash:
|
422
|
-
#
|
423
|
-
# {
|
424
|
-
# resource_group_name: "ResourceGroupName", # required
|
425
|
-
# pattern_set_name: "LogPatternSetName", # required
|
426
|
-
# pattern_name: "LogPatternName", # required
|
427
|
-
# }
|
428
|
-
#
|
429
452
|
# @!attribute [rw] resource_group_name
|
430
453
|
# The name of the resource group.
|
431
454
|
# @return [String]
|
@@ -452,21 +475,19 @@ module Aws::ApplicationInsights
|
|
452
475
|
#
|
453
476
|
class DeleteLogPatternResponse < Aws::EmptyStructure; end
|
454
477
|
|
455
|
-
# @note When making an API call, you may pass DescribeApplicationRequest
|
456
|
-
# data as a hash:
|
457
|
-
#
|
458
|
-
# {
|
459
|
-
# resource_group_name: "ResourceGroupName", # required
|
460
|
-
# }
|
461
|
-
#
|
462
478
|
# @!attribute [rw] resource_group_name
|
463
479
|
# The name of the resource group.
|
464
480
|
# @return [String]
|
465
481
|
#
|
482
|
+
# @!attribute [rw] account_id
|
483
|
+
# The AWS account ID for the resource group owner.
|
484
|
+
# @return [String]
|
485
|
+
#
|
466
486
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeApplicationRequest AWS API Documentation
|
467
487
|
#
|
468
488
|
class DescribeApplicationRequest < Struct.new(
|
469
|
-
:resource_group_name
|
489
|
+
:resource_group_name,
|
490
|
+
:account_id)
|
470
491
|
SENSITIVE = []
|
471
492
|
include Aws::Structure
|
472
493
|
end
|
@@ -483,15 +504,6 @@ module Aws::ApplicationInsights
|
|
483
504
|
include Aws::Structure
|
484
505
|
end
|
485
506
|
|
486
|
-
# @note When making an API call, you may pass DescribeComponentConfigurationRecommendationRequest
|
487
|
-
# data as a hash:
|
488
|
-
#
|
489
|
-
# {
|
490
|
-
# resource_group_name: "ResourceGroupName", # required
|
491
|
-
# component_name: "ComponentName", # required
|
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
|
493
|
-
# }
|
494
|
-
#
|
495
507
|
# @!attribute [rw] resource_group_name
|
496
508
|
# The name of the resource group.
|
497
509
|
# @return [String]
|
@@ -501,9 +513,15 @@ module Aws::ApplicationInsights
|
|
501
513
|
# @return [String]
|
502
514
|
#
|
503
515
|
# @!attribute [rw] tier
|
504
|
-
# The tier of the application component.
|
505
|
-
#
|
506
|
-
#
|
516
|
+
# The tier of the application component.
|
517
|
+
# @return [String]
|
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.
|
507
525
|
# @return [String]
|
508
526
|
#
|
509
527
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeComponentConfigurationRecommendationRequest AWS API Documentation
|
@@ -511,7 +529,9 @@ module Aws::ApplicationInsights
|
|
511
529
|
class DescribeComponentConfigurationRecommendationRequest < Struct.new(
|
512
530
|
:resource_group_name,
|
513
531
|
:component_name,
|
514
|
-
:tier
|
532
|
+
:tier,
|
533
|
+
:workload_name,
|
534
|
+
:recommendation_type)
|
515
535
|
SENSITIVE = []
|
516
536
|
include Aws::Structure
|
517
537
|
end
|
@@ -529,14 +549,6 @@ module Aws::ApplicationInsights
|
|
529
549
|
include Aws::Structure
|
530
550
|
end
|
531
551
|
|
532
|
-
# @note When making an API call, you may pass DescribeComponentConfigurationRequest
|
533
|
-
# data as a hash:
|
534
|
-
#
|
535
|
-
# {
|
536
|
-
# resource_group_name: "ResourceGroupName", # required
|
537
|
-
# component_name: "ComponentName", # required
|
538
|
-
# }
|
539
|
-
#
|
540
552
|
# @!attribute [rw] resource_group_name
|
541
553
|
# The name of the resource group.
|
542
554
|
# @return [String]
|
@@ -545,11 +557,16 @@ module Aws::ApplicationInsights
|
|
545
557
|
# The name of the component.
|
546
558
|
# @return [String]
|
547
559
|
#
|
560
|
+
# @!attribute [rw] account_id
|
561
|
+
# The AWS account ID for the resource group owner.
|
562
|
+
# @return [String]
|
563
|
+
#
|
548
564
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeComponentConfigurationRequest AWS API Documentation
|
549
565
|
#
|
550
566
|
class DescribeComponentConfigurationRequest < Struct.new(
|
551
567
|
:resource_group_name,
|
552
|
-
:component_name
|
568
|
+
:component_name,
|
569
|
+
:account_id)
|
553
570
|
SENSITIVE = []
|
554
571
|
include Aws::Structure
|
555
572
|
end
|
@@ -579,14 +596,6 @@ module Aws::ApplicationInsights
|
|
579
596
|
include Aws::Structure
|
580
597
|
end
|
581
598
|
|
582
|
-
# @note When making an API call, you may pass DescribeComponentRequest
|
583
|
-
# data as a hash:
|
584
|
-
#
|
585
|
-
# {
|
586
|
-
# resource_group_name: "ResourceGroupName", # required
|
587
|
-
# component_name: "ComponentName", # required
|
588
|
-
# }
|
589
|
-
#
|
590
599
|
# @!attribute [rw] resource_group_name
|
591
600
|
# The name of the resource group.
|
592
601
|
# @return [String]
|
@@ -595,11 +604,16 @@ module Aws::ApplicationInsights
|
|
595
604
|
# The name of the component.
|
596
605
|
# @return [String]
|
597
606
|
#
|
607
|
+
# @!attribute [rw] account_id
|
608
|
+
# The AWS account ID for the resource group owner.
|
609
|
+
# @return [String]
|
610
|
+
#
|
598
611
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeComponentRequest AWS API Documentation
|
599
612
|
#
|
600
613
|
class DescribeComponentRequest < Struct.new(
|
601
614
|
:resource_group_name,
|
602
|
-
:component_name
|
615
|
+
:component_name,
|
616
|
+
:account_id)
|
603
617
|
SENSITIVE = []
|
604
618
|
include Aws::Structure
|
605
619
|
end
|
@@ -622,15 +636,6 @@ module Aws::ApplicationInsights
|
|
622
636
|
include Aws::Structure
|
623
637
|
end
|
624
638
|
|
625
|
-
# @note When making an API call, you may pass DescribeLogPatternRequest
|
626
|
-
# data as a hash:
|
627
|
-
#
|
628
|
-
# {
|
629
|
-
# resource_group_name: "ResourceGroupName", # required
|
630
|
-
# pattern_set_name: "LogPatternSetName", # required
|
631
|
-
# pattern_name: "LogPatternName", # required
|
632
|
-
# }
|
633
|
-
#
|
634
639
|
# @!attribute [rw] resource_group_name
|
635
640
|
# The name of the resource group.
|
636
641
|
# @return [String]
|
@@ -643,12 +648,17 @@ module Aws::ApplicationInsights
|
|
643
648
|
# The name of the log pattern.
|
644
649
|
# @return [String]
|
645
650
|
#
|
651
|
+
# @!attribute [rw] account_id
|
652
|
+
# The AWS account ID for the resource group owner.
|
653
|
+
# @return [String]
|
654
|
+
#
|
646
655
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeLogPatternRequest AWS API Documentation
|
647
656
|
#
|
648
657
|
class DescribeLogPatternRequest < Struct.new(
|
649
658
|
:resource_group_name,
|
650
659
|
:pattern_set_name,
|
651
|
-
:pattern_name
|
660
|
+
:pattern_name,
|
661
|
+
:account_id)
|
652
662
|
SENSITIVE = []
|
653
663
|
include Aws::Structure
|
654
664
|
end
|
@@ -657,6 +667,10 @@ module Aws::ApplicationInsights
|
|
657
667
|
# The name of the resource group.
|
658
668
|
# @return [String]
|
659
669
|
#
|
670
|
+
# @!attribute [rw] account_id
|
671
|
+
# The AWS account ID for the resource group owner.
|
672
|
+
# @return [String]
|
673
|
+
#
|
660
674
|
# @!attribute [rw] log_pattern
|
661
675
|
# The successfully created log pattern.
|
662
676
|
# @return [Types::LogPattern]
|
@@ -665,26 +679,25 @@ module Aws::ApplicationInsights
|
|
665
679
|
#
|
666
680
|
class DescribeLogPatternResponse < Struct.new(
|
667
681
|
:resource_group_name,
|
682
|
+
:account_id,
|
668
683
|
:log_pattern)
|
669
684
|
SENSITIVE = []
|
670
685
|
include Aws::Structure
|
671
686
|
end
|
672
687
|
|
673
|
-
# @note When making an API call, you may pass DescribeObservationRequest
|
674
|
-
# data as a hash:
|
675
|
-
#
|
676
|
-
# {
|
677
|
-
# observation_id: "ObservationId", # required
|
678
|
-
# }
|
679
|
-
#
|
680
688
|
# @!attribute [rw] observation_id
|
681
689
|
# The ID of the observation.
|
682
690
|
# @return [String]
|
683
691
|
#
|
692
|
+
# @!attribute [rw] account_id
|
693
|
+
# The AWS account ID for the resource group owner.
|
694
|
+
# @return [String]
|
695
|
+
#
|
684
696
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeObservationRequest AWS API Documentation
|
685
697
|
#
|
686
698
|
class DescribeObservationRequest < Struct.new(
|
687
|
-
:observation_id
|
699
|
+
:observation_id,
|
700
|
+
:account_id)
|
688
701
|
SENSITIVE = []
|
689
702
|
include Aws::Structure
|
690
703
|
end
|
@@ -701,21 +714,19 @@ module Aws::ApplicationInsights
|
|
701
714
|
include Aws::Structure
|
702
715
|
end
|
703
716
|
|
704
|
-
# @note When making an API call, you may pass DescribeProblemObservationsRequest
|
705
|
-
# data as a hash:
|
706
|
-
#
|
707
|
-
# {
|
708
|
-
# problem_id: "ProblemId", # required
|
709
|
-
# }
|
710
|
-
#
|
711
717
|
# @!attribute [rw] problem_id
|
712
718
|
# The ID of the problem.
|
713
719
|
# @return [String]
|
714
720
|
#
|
721
|
+
# @!attribute [rw] account_id
|
722
|
+
# The AWS account ID for the resource group owner.
|
723
|
+
# @return [String]
|
724
|
+
#
|
715
725
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeProblemObservationsRequest AWS API Documentation
|
716
726
|
#
|
717
727
|
class DescribeProblemObservationsRequest < Struct.new(
|
718
|
-
:problem_id
|
728
|
+
:problem_id,
|
729
|
+
:account_id)
|
719
730
|
SENSITIVE = []
|
720
731
|
include Aws::Structure
|
721
732
|
end
|
@@ -732,21 +743,20 @@ module Aws::ApplicationInsights
|
|
732
743
|
include Aws::Structure
|
733
744
|
end
|
734
745
|
|
735
|
-
# @note When making an API call, you may pass DescribeProblemRequest
|
736
|
-
# data as a hash:
|
737
|
-
#
|
738
|
-
# {
|
739
|
-
# problem_id: "ProblemId", # required
|
740
|
-
# }
|
741
|
-
#
|
742
746
|
# @!attribute [rw] problem_id
|
743
747
|
# The ID of the problem.
|
744
748
|
# @return [String]
|
745
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
|
+
#
|
746
755
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeProblemRequest AWS API Documentation
|
747
756
|
#
|
748
757
|
class DescribeProblemRequest < Struct.new(
|
749
|
-
:problem_id
|
758
|
+
:problem_id,
|
759
|
+
:account_id)
|
750
760
|
SENSITIVE = []
|
751
761
|
include Aws::Structure
|
752
762
|
end
|
@@ -763,6 +773,57 @@ module Aws::ApplicationInsights
|
|
763
773
|
include Aws::Structure
|
764
774
|
end
|
765
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
|
+
|
766
827
|
# The server encountered an internal error and is unable to complete the
|
767
828
|
# request.
|
768
829
|
#
|
@@ -777,14 +838,6 @@ module Aws::ApplicationInsights
|
|
777
838
|
include Aws::Structure
|
778
839
|
end
|
779
840
|
|
780
|
-
# @note When making an API call, you may pass ListApplicationsRequest
|
781
|
-
# data as a hash:
|
782
|
-
#
|
783
|
-
# {
|
784
|
-
# max_results: 1,
|
785
|
-
# next_token: "PaginationToken",
|
786
|
-
# }
|
787
|
-
#
|
788
841
|
# @!attribute [rw] max_results
|
789
842
|
# The maximum number of results to return in a single call. To
|
790
843
|
# retrieve the remaining results, make another call with the returned
|
@@ -795,11 +848,16 @@ module Aws::ApplicationInsights
|
|
795
848
|
# The token to request the next page of results.
|
796
849
|
# @return [String]
|
797
850
|
#
|
851
|
+
# @!attribute [rw] account_id
|
852
|
+
# The AWS account ID for the resource group owner.
|
853
|
+
# @return [String]
|
854
|
+
#
|
798
855
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ListApplicationsRequest AWS API Documentation
|
799
856
|
#
|
800
857
|
class ListApplicationsRequest < Struct.new(
|
801
858
|
:max_results,
|
802
|
-
:next_token
|
859
|
+
:next_token,
|
860
|
+
:account_id)
|
803
861
|
SENSITIVE = []
|
804
862
|
include Aws::Structure
|
805
863
|
end
|
@@ -822,15 +880,6 @@ module Aws::ApplicationInsights
|
|
822
880
|
include Aws::Structure
|
823
881
|
end
|
824
882
|
|
825
|
-
# @note When making an API call, you may pass ListComponentsRequest
|
826
|
-
# data as a hash:
|
827
|
-
#
|
828
|
-
# {
|
829
|
-
# resource_group_name: "ResourceGroupName", # required
|
830
|
-
# max_results: 1,
|
831
|
-
# next_token: "PaginationToken",
|
832
|
-
# }
|
833
|
-
#
|
834
883
|
# @!attribute [rw] resource_group_name
|
835
884
|
# The name of the resource group.
|
836
885
|
# @return [String]
|
@@ -845,12 +894,17 @@ module Aws::ApplicationInsights
|
|
845
894
|
# The token to request the next page of results.
|
846
895
|
# @return [String]
|
847
896
|
#
|
897
|
+
# @!attribute [rw] account_id
|
898
|
+
# The AWS account ID for the resource group owner.
|
899
|
+
# @return [String]
|
900
|
+
#
|
848
901
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ListComponentsRequest AWS API Documentation
|
849
902
|
#
|
850
903
|
class ListComponentsRequest < Struct.new(
|
851
904
|
:resource_group_name,
|
852
905
|
:max_results,
|
853
|
-
:next_token
|
906
|
+
:next_token,
|
907
|
+
:account_id)
|
854
908
|
SENSITIVE = []
|
855
909
|
include Aws::Structure
|
856
910
|
end
|
@@ -872,18 +926,6 @@ module Aws::ApplicationInsights
|
|
872
926
|
include Aws::Structure
|
873
927
|
end
|
874
928
|
|
875
|
-
# @note When making an API call, you may pass ListConfigurationHistoryRequest
|
876
|
-
# data as a hash:
|
877
|
-
#
|
878
|
-
# {
|
879
|
-
# resource_group_name: "ResourceGroupName",
|
880
|
-
# start_time: Time.now,
|
881
|
-
# end_time: Time.now,
|
882
|
-
# event_status: "INFO", # accepts INFO, WARN, ERROR
|
883
|
-
# max_results: 1,
|
884
|
-
# next_token: "PaginationToken",
|
885
|
-
# }
|
886
|
-
#
|
887
929
|
# @!attribute [rw] resource_group_name
|
888
930
|
# Resource group to which the application belongs.
|
889
931
|
# @return [String]
|
@@ -921,6 +963,10 @@ module Aws::ApplicationInsights
|
|
921
963
|
# results to return.
|
922
964
|
# @return [String]
|
923
965
|
#
|
966
|
+
# @!attribute [rw] account_id
|
967
|
+
# The AWS account ID for the resource group owner.
|
968
|
+
# @return [String]
|
969
|
+
#
|
924
970
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ListConfigurationHistoryRequest AWS API Documentation
|
925
971
|
#
|
926
972
|
class ListConfigurationHistoryRequest < Struct.new(
|
@@ -929,7 +975,8 @@ module Aws::ApplicationInsights
|
|
929
975
|
:end_time,
|
930
976
|
:event_status,
|
931
977
|
:max_results,
|
932
|
-
:next_token
|
978
|
+
:next_token,
|
979
|
+
:account_id)
|
933
980
|
SENSITIVE = []
|
934
981
|
include Aws::Structure
|
935
982
|
end
|
@@ -955,15 +1002,6 @@ module Aws::ApplicationInsights
|
|
955
1002
|
include Aws::Structure
|
956
1003
|
end
|
957
1004
|
|
958
|
-
# @note When making an API call, you may pass ListLogPatternSetsRequest
|
959
|
-
# data as a hash:
|
960
|
-
#
|
961
|
-
# {
|
962
|
-
# resource_group_name: "ResourceGroupName", # required
|
963
|
-
# max_results: 1,
|
964
|
-
# next_token: "PaginationToken",
|
965
|
-
# }
|
966
|
-
#
|
967
1005
|
# @!attribute [rw] resource_group_name
|
968
1006
|
# The name of the resource group.
|
969
1007
|
# @return [String]
|
@@ -978,12 +1016,17 @@ module Aws::ApplicationInsights
|
|
978
1016
|
# The token to request the next page of results.
|
979
1017
|
# @return [String]
|
980
1018
|
#
|
1019
|
+
# @!attribute [rw] account_id
|
1020
|
+
# The AWS account ID for the resource group owner.
|
1021
|
+
# @return [String]
|
1022
|
+
#
|
981
1023
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ListLogPatternSetsRequest AWS API Documentation
|
982
1024
|
#
|
983
1025
|
class ListLogPatternSetsRequest < Struct.new(
|
984
1026
|
:resource_group_name,
|
985
1027
|
:max_results,
|
986
|
-
:next_token
|
1028
|
+
:next_token,
|
1029
|
+
:account_id)
|
987
1030
|
SENSITIVE = []
|
988
1031
|
include Aws::Structure
|
989
1032
|
end
|
@@ -992,6 +1035,10 @@ module Aws::ApplicationInsights
|
|
992
1035
|
# The name of the resource group.
|
993
1036
|
# @return [String]
|
994
1037
|
#
|
1038
|
+
# @!attribute [rw] account_id
|
1039
|
+
# The AWS account ID for the resource group owner.
|
1040
|
+
# @return [String]
|
1041
|
+
#
|
995
1042
|
# @!attribute [rw] log_pattern_sets
|
996
1043
|
# The list of log pattern sets.
|
997
1044
|
# @return [Array<String>]
|
@@ -1005,22 +1052,13 @@ module Aws::ApplicationInsights
|
|
1005
1052
|
#
|
1006
1053
|
class ListLogPatternSetsResponse < Struct.new(
|
1007
1054
|
:resource_group_name,
|
1055
|
+
:account_id,
|
1008
1056
|
:log_pattern_sets,
|
1009
1057
|
:next_token)
|
1010
1058
|
SENSITIVE = []
|
1011
1059
|
include Aws::Structure
|
1012
1060
|
end
|
1013
1061
|
|
1014
|
-
# @note When making an API call, you may pass ListLogPatternsRequest
|
1015
|
-
# data as a hash:
|
1016
|
-
#
|
1017
|
-
# {
|
1018
|
-
# resource_group_name: "ResourceGroupName", # required
|
1019
|
-
# pattern_set_name: "LogPatternSetName",
|
1020
|
-
# max_results: 1,
|
1021
|
-
# next_token: "PaginationToken",
|
1022
|
-
# }
|
1023
|
-
#
|
1024
1062
|
# @!attribute [rw] resource_group_name
|
1025
1063
|
# The name of the resource group.
|
1026
1064
|
# @return [String]
|
@@ -1039,13 +1077,18 @@ module Aws::ApplicationInsights
|
|
1039
1077
|
# The token to request the next page of results.
|
1040
1078
|
# @return [String]
|
1041
1079
|
#
|
1080
|
+
# @!attribute [rw] account_id
|
1081
|
+
# The AWS account ID for the resource group owner.
|
1082
|
+
# @return [String]
|
1083
|
+
#
|
1042
1084
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ListLogPatternsRequest AWS API Documentation
|
1043
1085
|
#
|
1044
1086
|
class ListLogPatternsRequest < Struct.new(
|
1045
1087
|
:resource_group_name,
|
1046
1088
|
:pattern_set_name,
|
1047
1089
|
:max_results,
|
1048
|
-
:next_token
|
1090
|
+
:next_token,
|
1091
|
+
:account_id)
|
1049
1092
|
SENSITIVE = []
|
1050
1093
|
include Aws::Structure
|
1051
1094
|
end
|
@@ -1054,6 +1097,10 @@ module Aws::ApplicationInsights
|
|
1054
1097
|
# The name of the resource group.
|
1055
1098
|
# @return [String]
|
1056
1099
|
#
|
1100
|
+
# @!attribute [rw] account_id
|
1101
|
+
# The AWS account ID for the resource group owner.
|
1102
|
+
# @return [String]
|
1103
|
+
#
|
1057
1104
|
# @!attribute [rw] log_patterns
|
1058
1105
|
# The list of log patterns.
|
1059
1106
|
# @return [Array<Types::LogPattern>]
|
@@ -1067,23 +1114,16 @@ module Aws::ApplicationInsights
|
|
1067
1114
|
#
|
1068
1115
|
class ListLogPatternsResponse < Struct.new(
|
1069
1116
|
:resource_group_name,
|
1117
|
+
:account_id,
|
1070
1118
|
:log_patterns,
|
1071
1119
|
:next_token)
|
1072
1120
|
SENSITIVE = []
|
1073
1121
|
include Aws::Structure
|
1074
1122
|
end
|
1075
1123
|
|
1076
|
-
#
|
1077
|
-
#
|
1078
|
-
#
|
1079
|
-
# {
|
1080
|
-
# resource_group_name: "ResourceGroupName",
|
1081
|
-
# start_time: Time.now,
|
1082
|
-
# end_time: Time.now,
|
1083
|
-
# max_results: 1,
|
1084
|
-
# next_token: "PaginationToken",
|
1085
|
-
# component_name: "ComponentName",
|
1086
|
-
# }
|
1124
|
+
# @!attribute [rw] account_id
|
1125
|
+
# The AWS account ID for the resource group owner.
|
1126
|
+
# @return [String]
|
1087
1127
|
#
|
1088
1128
|
# @!attribute [rw] resource_group_name
|
1089
1129
|
# The name of the resource group.
|
@@ -1111,17 +1151,25 @@ module Aws::ApplicationInsights
|
|
1111
1151
|
# @return [String]
|
1112
1152
|
#
|
1113
1153
|
# @!attribute [rw] component_name
|
1154
|
+
# The name of the component.
|
1155
|
+
# @return [String]
|
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.
|
1114
1160
|
# @return [String]
|
1115
1161
|
#
|
1116
1162
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ListProblemsRequest AWS API Documentation
|
1117
1163
|
#
|
1118
1164
|
class ListProblemsRequest < Struct.new(
|
1165
|
+
:account_id,
|
1119
1166
|
:resource_group_name,
|
1120
1167
|
:start_time,
|
1121
1168
|
:end_time,
|
1122
1169
|
:max_results,
|
1123
1170
|
:next_token,
|
1124
|
-
:component_name
|
1171
|
+
:component_name,
|
1172
|
+
:visibility)
|
1125
1173
|
SENSITIVE = []
|
1126
1174
|
include Aws::Structure
|
1127
1175
|
end
|
@@ -1136,6 +1184,11 @@ module Aws::ApplicationInsights
|
|
1136
1184
|
# @return [String]
|
1137
1185
|
#
|
1138
1186
|
# @!attribute [rw] resource_group_name
|
1187
|
+
# The name of the resource group.
|
1188
|
+
# @return [String]
|
1189
|
+
#
|
1190
|
+
# @!attribute [rw] account_id
|
1191
|
+
# The AWS account ID for the resource group owner.
|
1139
1192
|
# @return [String]
|
1140
1193
|
#
|
1141
1194
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ListProblemsResponse AWS API Documentation
|
@@ -1143,18 +1196,12 @@ module Aws::ApplicationInsights
|
|
1143
1196
|
class ListProblemsResponse < Struct.new(
|
1144
1197
|
:problem_list,
|
1145
1198
|
:next_token,
|
1146
|
-
:resource_group_name
|
1199
|
+
:resource_group_name,
|
1200
|
+
:account_id)
|
1147
1201
|
SENSITIVE = []
|
1148
1202
|
include Aws::Structure
|
1149
1203
|
end
|
1150
1204
|
|
1151
|
-
# @note When making an API call, you may pass ListTagsForResourceRequest
|
1152
|
-
# data as a hash:
|
1153
|
-
#
|
1154
|
-
# {
|
1155
|
-
# resource_arn: "AmazonResourceName", # required
|
1156
|
-
# }
|
1157
|
-
#
|
1158
1205
|
# @!attribute [rw] resource_arn
|
1159
1206
|
# The Amazon Resource Name (ARN) of the application that you want to
|
1160
1207
|
# retrieve tag information for.
|
@@ -1182,6 +1229,57 @@ module Aws::ApplicationInsights
|
|
1182
1229
|
include Aws::Structure
|
1183
1230
|
end
|
1184
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
|
+
|
1185
1283
|
# An object that defines the log patterns that belongs to a
|
1186
1284
|
# `LogPatternSet`.
|
1187
1285
|
#
|
@@ -1510,6 +1608,11 @@ module Aws::ApplicationInsights
|
|
1510
1608
|
# A measure of the level of impact of the problem.
|
1511
1609
|
# @return [String]
|
1512
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
|
+
#
|
1513
1616
|
# @!attribute [rw] resource_group_name
|
1514
1617
|
# The name of the resource group affected by the problem.
|
1515
1618
|
# @return [String]
|
@@ -1519,11 +1622,26 @@ module Aws::ApplicationInsights
|
|
1519
1622
|
# @return [Hash<String,String>]
|
1520
1623
|
#
|
1521
1624
|
# @!attribute [rw] recurring_count
|
1625
|
+
# The number of times that the same problem reoccurred after the first
|
1626
|
+
# time it was resolved.
|
1522
1627
|
# @return [Integer]
|
1523
1628
|
#
|
1524
1629
|
# @!attribute [rw] last_recurrence_time
|
1630
|
+
# The last time that the problem reoccurred after its last resolution.
|
1525
1631
|
# @return [Time]
|
1526
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
|
+
#
|
1527
1645
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/Problem AWS API Documentation
|
1528
1646
|
#
|
1529
1647
|
class Problem < Struct.new(
|
@@ -1535,10 +1653,13 @@ module Aws::ApplicationInsights
|
|
1535
1653
|
:start_time,
|
1536
1654
|
:end_time,
|
1537
1655
|
:severity_level,
|
1656
|
+
:account_id,
|
1538
1657
|
:resource_group_name,
|
1539
1658
|
:feedback,
|
1540
1659
|
:recurring_count,
|
1541
|
-
:last_recurrence_time
|
1660
|
+
:last_recurrence_time,
|
1661
|
+
:visibility,
|
1662
|
+
:resolution_method)
|
1542
1663
|
SENSITIVE = []
|
1543
1664
|
include Aws::Structure
|
1544
1665
|
end
|
@@ -1557,6 +1678,32 @@ module Aws::ApplicationInsights
|
|
1557
1678
|
include Aws::Structure
|
1558
1679
|
end
|
1559
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
|
+
|
1560
1707
|
# The resource is already created or in use.
|
1561
1708
|
#
|
1562
1709
|
# @!attribute [rw] message
|
@@ -1607,14 +1754,6 @@ module Aws::ApplicationInsights
|
|
1607
1754
|
# any tag keys or values that you define. In addition, you can't edit
|
1608
1755
|
# or remove tag keys or values that use this prefix.
|
1609
1756
|
#
|
1610
|
-
# @note When making an API call, you may pass Tag
|
1611
|
-
# data as a hash:
|
1612
|
-
#
|
1613
|
-
# {
|
1614
|
-
# key: "TagKey", # required
|
1615
|
-
# value: "TagValue", # required
|
1616
|
-
# }
|
1617
|
-
#
|
1618
1757
|
# @!attribute [rw] key
|
1619
1758
|
# One part of a key-value pair that defines a tag. The maximum length
|
1620
1759
|
# of a tag key is 128 characters. The minimum length is 1 character.
|
@@ -1636,19 +1775,6 @@ module Aws::ApplicationInsights
|
|
1636
1775
|
include Aws::Structure
|
1637
1776
|
end
|
1638
1777
|
|
1639
|
-
# @note When making an API call, you may pass TagResourceRequest
|
1640
|
-
# data as a hash:
|
1641
|
-
#
|
1642
|
-
# {
|
1643
|
-
# resource_arn: "AmazonResourceName", # required
|
1644
|
-
# tags: [ # required
|
1645
|
-
# {
|
1646
|
-
# key: "TagKey", # required
|
1647
|
-
# value: "TagValue", # required
|
1648
|
-
# },
|
1649
|
-
# ],
|
1650
|
-
# }
|
1651
|
-
#
|
1652
1778
|
# @!attribute [rw] resource_arn
|
1653
1779
|
# The Amazon Resource Name (ARN) of the application that you want to
|
1654
1780
|
# add one or more tags to.
|
@@ -1707,14 +1833,6 @@ module Aws::ApplicationInsights
|
|
1707
1833
|
include Aws::Structure
|
1708
1834
|
end
|
1709
1835
|
|
1710
|
-
# @note When making an API call, you may pass UntagResourceRequest
|
1711
|
-
# data as a hash:
|
1712
|
-
#
|
1713
|
-
# {
|
1714
|
-
# resource_arn: "AmazonResourceName", # required
|
1715
|
-
# tag_keys: ["TagKey"], # required
|
1716
|
-
# }
|
1717
|
-
#
|
1718
1836
|
# @!attribute [rw] resource_arn
|
1719
1837
|
# The Amazon Resource Name (ARN) of the application that you want to
|
1720
1838
|
# remove one or more tags from.
|
@@ -1743,18 +1861,6 @@ module Aws::ApplicationInsights
|
|
1743
1861
|
#
|
1744
1862
|
class UntagResourceResponse < Aws::EmptyStructure; end
|
1745
1863
|
|
1746
|
-
# @note When making an API call, you may pass UpdateApplicationRequest
|
1747
|
-
# data as a hash:
|
1748
|
-
#
|
1749
|
-
# {
|
1750
|
-
# resource_group_name: "ResourceGroupName", # required
|
1751
|
-
# ops_center_enabled: false,
|
1752
|
-
# cwe_monitor_enabled: false,
|
1753
|
-
# ops_item_sns_topic_arn: "OpsItemSNSTopicArn",
|
1754
|
-
# remove_sns_topic: false,
|
1755
|
-
# auto_config_enabled: false,
|
1756
|
-
# }
|
1757
|
-
#
|
1758
1864
|
# @!attribute [rw] resource_group_name
|
1759
1865
|
# The name of the resource group.
|
1760
1866
|
# @return [String]
|
@@ -1782,6 +1888,12 @@ module Aws::ApplicationInsights
|
|
1782
1888
|
# @return [Boolean]
|
1783
1889
|
#
|
1784
1890
|
# @!attribute [rw] auto_config_enabled
|
1891
|
+
# Turns auto-configuration on or off.
|
1892
|
+
# @return [Boolean]
|
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.
|
1785
1897
|
# @return [Boolean]
|
1786
1898
|
#
|
1787
1899
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/UpdateApplicationRequest AWS API Documentation
|
@@ -1792,7 +1904,8 @@ module Aws::ApplicationInsights
|
|
1792
1904
|
:cwe_monitor_enabled,
|
1793
1905
|
:ops_item_sns_topic_arn,
|
1794
1906
|
:remove_sns_topic,
|
1795
|
-
:auto_config_enabled
|
1907
|
+
:auto_config_enabled,
|
1908
|
+
:attach_missing_permission)
|
1796
1909
|
SENSITIVE = []
|
1797
1910
|
include Aws::Structure
|
1798
1911
|
end
|
@@ -1809,18 +1922,6 @@ module Aws::ApplicationInsights
|
|
1809
1922
|
include Aws::Structure
|
1810
1923
|
end
|
1811
1924
|
|
1812
|
-
# @note When making an API call, you may pass UpdateComponentConfigurationRequest
|
1813
|
-
# data as a hash:
|
1814
|
-
#
|
1815
|
-
# {
|
1816
|
-
# resource_group_name: "ResourceGroupName", # required
|
1817
|
-
# component_name: "ComponentName", # required
|
1818
|
-
# monitor: false,
|
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
|
1820
|
-
# component_configuration: "ComponentConfiguration",
|
1821
|
-
# auto_config_enabled: false,
|
1822
|
-
# }
|
1823
|
-
#
|
1824
1925
|
# @!attribute [rw] resource_group_name
|
1825
1926
|
# The name of the resource group.
|
1826
1927
|
# @return [String]
|
@@ -1834,9 +1935,7 @@ module Aws::ApplicationInsights
|
|
1834
1935
|
# @return [Boolean]
|
1835
1936
|
#
|
1836
1937
|
# @!attribute [rw] tier
|
1837
|
-
# The tier of the application component.
|
1838
|
-
# `DOT_NET_WORKER`, `DOT_NET_WEB`, `DOT_NET_CORE`, `SQL_SERVER`, and
|
1839
|
-
# `DEFAULT`.
|
1938
|
+
# The tier of the application component.
|
1840
1939
|
# @return [String]
|
1841
1940
|
#
|
1842
1941
|
# @!attribute [rw] component_configuration
|
@@ -1855,6 +1954,8 @@ module Aws::ApplicationInsights
|
|
1855
1954
|
# @return [String]
|
1856
1955
|
#
|
1857
1956
|
# @!attribute [rw] auto_config_enabled
|
1957
|
+
# Automatically configures the component by applying the recommended
|
1958
|
+
# configurations.
|
1858
1959
|
# @return [Boolean]
|
1859
1960
|
#
|
1860
1961
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/UpdateComponentConfigurationRequest AWS API Documentation
|
@@ -1874,16 +1975,6 @@ module Aws::ApplicationInsights
|
|
1874
1975
|
#
|
1875
1976
|
class UpdateComponentConfigurationResponse < Aws::EmptyStructure; end
|
1876
1977
|
|
1877
|
-
# @note When making an API call, you may pass UpdateComponentRequest
|
1878
|
-
# data as a hash:
|
1879
|
-
#
|
1880
|
-
# {
|
1881
|
-
# resource_group_name: "ResourceGroupName", # required
|
1882
|
-
# component_name: "CustomComponentName", # required
|
1883
|
-
# new_component_name: "CustomComponentName",
|
1884
|
-
# resource_list: ["ResourceARN"],
|
1885
|
-
# }
|
1886
|
-
#
|
1887
1978
|
# @!attribute [rw] resource_group_name
|
1888
1979
|
# The name of the resource group.
|
1889
1980
|
# @return [String]
|
@@ -1915,17 +2006,6 @@ module Aws::ApplicationInsights
|
|
1915
2006
|
#
|
1916
2007
|
class UpdateComponentResponse < Aws::EmptyStructure; end
|
1917
2008
|
|
1918
|
-
# @note When making an API call, you may pass UpdateLogPatternRequest
|
1919
|
-
# data as a hash:
|
1920
|
-
#
|
1921
|
-
# {
|
1922
|
-
# resource_group_name: "ResourceGroupName", # required
|
1923
|
-
# pattern_set_name: "LogPatternSetName", # required
|
1924
|
-
# pattern_name: "LogPatternName", # required
|
1925
|
-
# pattern: "LogPatternRegex",
|
1926
|
-
# rank: 1,
|
1927
|
-
# }
|
1928
|
-
#
|
1929
2009
|
# @!attribute [rw] resource_group_name
|
1930
2010
|
# The name of the resource group.
|
1931
2011
|
# @return [String]
|
@@ -1986,6 +2066,82 @@ module Aws::ApplicationInsights
|
|
1986
2066
|
include Aws::Structure
|
1987
2067
|
end
|
1988
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
|
+
|
1989
2145
|
# The parameter is not valid.
|
1990
2146
|
#
|
1991
2147
|
# @!attribute [rw] message
|
@@ -1999,5 +2155,64 @@ module Aws::ApplicationInsights
|
|
1999
2155
|
include Aws::Structure
|
2000
2156
|
end
|
2001
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
|
+
|
2002
2217
|
end
|
2003
2218
|
end
|