aws-sdk-applicationinsights 1.31.0 → 1.82.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 +258 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-applicationinsights/client.rb +619 -112
- data/lib/aws-sdk-applicationinsights/client_api.rb +207 -0
- data/lib/aws-sdk-applicationinsights/endpoint_parameters.rb +69 -0
- data/lib/aws-sdk-applicationinsights/endpoint_provider.rb +50 -0
- data/lib/aws-sdk-applicationinsights/endpoints.rb +20 -0
- data/lib/aws-sdk-applicationinsights/plugins/endpoints.rb +77 -0
- data/lib/aws-sdk-applicationinsights/types.rb +531 -297
- data/lib/aws-sdk-applicationinsights.rb +16 -8
- data/sig/client.rbs +542 -0
- data/sig/errors.rbs +41 -0
- data/sig/resource.rbs +86 -0
- data/sig/types.rbs +625 -0
- data/sig/waiters.rbs +13 -0
- metadata +17 -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 Amazon Web Services 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]
|
|
@@ -86,6 +131,11 @@ module Aws::ApplicationInsights
|
|
|
86
131
|
# updates.
|
|
87
132
|
# @return [String]
|
|
88
133
|
#
|
|
134
|
+
# @!attribute [rw] sns_notification_arn
|
|
135
|
+
# The SNS topic ARN that is associated with SNS notifications for
|
|
136
|
+
# updates or issues.
|
|
137
|
+
# @return [String]
|
|
138
|
+
#
|
|
89
139
|
# @!attribute [rw] ops_center_enabled
|
|
90
140
|
# Indicates whether Application Insights will create opsItems for any
|
|
91
141
|
# problem detected by Application Insights for an application.
|
|
@@ -115,17 +165,25 @@ module Aws::ApplicationInsights
|
|
|
115
165
|
# The method used by Application Insights to onboard your resources.
|
|
116
166
|
# @return [String]
|
|
117
167
|
#
|
|
168
|
+
# @!attribute [rw] attach_missing_permission
|
|
169
|
+
# If set to true, the managed policies for SSM and CW will be attached
|
|
170
|
+
# to the instance roles if they are missing.
|
|
171
|
+
# @return [Boolean]
|
|
172
|
+
#
|
|
118
173
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ApplicationInfo AWS API Documentation
|
|
119
174
|
#
|
|
120
175
|
class ApplicationInfo < Struct.new(
|
|
176
|
+
:account_id,
|
|
121
177
|
:resource_group_name,
|
|
122
178
|
:life_cycle,
|
|
123
179
|
:ops_item_sns_topic_arn,
|
|
180
|
+
:sns_notification_arn,
|
|
124
181
|
:ops_center_enabled,
|
|
125
182
|
:cwe_monitor_enabled,
|
|
126
183
|
:remarks,
|
|
127
184
|
:auto_config_enabled,
|
|
128
|
-
:discovery_type
|
|
185
|
+
:discovery_type,
|
|
186
|
+
:attach_missing_permission)
|
|
129
187
|
SENSITIVE = []
|
|
130
188
|
include Aws::Structure
|
|
131
189
|
end
|
|
@@ -145,6 +203,16 @@ module Aws::ApplicationInsights
|
|
|
145
203
|
|
|
146
204
|
# The event information.
|
|
147
205
|
#
|
|
206
|
+
# @!attribute [rw] resource_group_name
|
|
207
|
+
# The name of the resource group of the application to which the
|
|
208
|
+
# configuration event belongs.
|
|
209
|
+
# @return [String]
|
|
210
|
+
#
|
|
211
|
+
# @!attribute [rw] account_id
|
|
212
|
+
# The Amazon Web Services account ID for the owner of the application
|
|
213
|
+
# to which the configuration event belongs.
|
|
214
|
+
# @return [String]
|
|
215
|
+
#
|
|
148
216
|
# @!attribute [rw] monitored_resource_arn
|
|
149
217
|
# The resource monitored by Application Insights.
|
|
150
218
|
# @return [String]
|
|
@@ -175,6 +243,8 @@ module Aws::ApplicationInsights
|
|
|
175
243
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ConfigurationEvent AWS API Documentation
|
|
176
244
|
#
|
|
177
245
|
class ConfigurationEvent < Struct.new(
|
|
246
|
+
:resource_group_name,
|
|
247
|
+
:account_id,
|
|
178
248
|
:monitored_resource_arn,
|
|
179
249
|
:event_status,
|
|
180
250
|
:event_resource_type,
|
|
@@ -185,25 +255,6 @@ module Aws::ApplicationInsights
|
|
|
185
255
|
include Aws::Structure
|
|
186
256
|
end
|
|
187
257
|
|
|
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
258
|
# @!attribute [rw] resource_group_name
|
|
208
259
|
# The name of the resource group.
|
|
209
260
|
# @return [String]
|
|
@@ -225,6 +276,10 @@ module Aws::ApplicationInsights
|
|
|
225
276
|
# to the opsItem.
|
|
226
277
|
# @return [String]
|
|
227
278
|
#
|
|
279
|
+
# @!attribute [rw] sns_notification_arn
|
|
280
|
+
# The SNS notification topic ARN.
|
|
281
|
+
# @return [String]
|
|
282
|
+
#
|
|
228
283
|
# @!attribute [rw] tags
|
|
229
284
|
# List of tags to add to the application. tag key (`Key`) and an
|
|
230
285
|
# associated tag value (`Value`). The maximum length of a tag key is
|
|
@@ -248,6 +303,11 @@ module Aws::ApplicationInsights
|
|
|
248
303
|
# `ACCOUNT_BASED`.
|
|
249
304
|
# @return [String]
|
|
250
305
|
#
|
|
306
|
+
# @!attribute [rw] attach_missing_permission
|
|
307
|
+
# If set to true, the managed policies for SSM and CW will be attached
|
|
308
|
+
# to the instance roles if they are missing.
|
|
309
|
+
# @return [Boolean]
|
|
310
|
+
#
|
|
251
311
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/CreateApplicationRequest AWS API Documentation
|
|
252
312
|
#
|
|
253
313
|
class CreateApplicationRequest < Struct.new(
|
|
@@ -255,10 +315,12 @@ module Aws::ApplicationInsights
|
|
|
255
315
|
:ops_center_enabled,
|
|
256
316
|
:cwe_monitor_enabled,
|
|
257
317
|
:ops_item_sns_topic_arn,
|
|
318
|
+
:sns_notification_arn,
|
|
258
319
|
:tags,
|
|
259
320
|
:auto_config_enabled,
|
|
260
321
|
:auto_create,
|
|
261
|
-
:grouping_type
|
|
322
|
+
:grouping_type,
|
|
323
|
+
:attach_missing_permission)
|
|
262
324
|
SENSITIVE = []
|
|
263
325
|
include Aws::Structure
|
|
264
326
|
end
|
|
@@ -275,15 +337,6 @@ module Aws::ApplicationInsights
|
|
|
275
337
|
include Aws::Structure
|
|
276
338
|
end
|
|
277
339
|
|
|
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
340
|
# @!attribute [rw] resource_group_name
|
|
288
341
|
# The name of the resource group.
|
|
289
342
|
# @return [String]
|
|
@@ -310,17 +363,6 @@ module Aws::ApplicationInsights
|
|
|
310
363
|
#
|
|
311
364
|
class CreateComponentResponse < Aws::EmptyStructure; end
|
|
312
365
|
|
|
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
366
|
# @!attribute [rw] resource_group_name
|
|
325
367
|
# The name of the resource group.
|
|
326
368
|
# @return [String]
|
|
@@ -349,7 +391,8 @@ module Aws::ApplicationInsights
|
|
|
349
391
|
# pattern translates to a `750,000` rank. A `Medium` severity pattern
|
|
350
392
|
# translates to a `500,000` rank. And a `High` severity pattern
|
|
351
393
|
# translates to a `250,000` rank. Rank values less than `1` or greater
|
|
352
|
-
# than `1,000,000` are reserved for
|
|
394
|
+
# than `1,000,000` are reserved for Amazon Web Services provided
|
|
395
|
+
# patterns.
|
|
353
396
|
# @return [Integer]
|
|
354
397
|
#
|
|
355
398
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/CreateLogPatternRequest AWS API Documentation
|
|
@@ -381,13 +424,6 @@ module Aws::ApplicationInsights
|
|
|
381
424
|
include Aws::Structure
|
|
382
425
|
end
|
|
383
426
|
|
|
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
427
|
# @!attribute [rw] resource_group_name
|
|
392
428
|
# The name of the resource group.
|
|
393
429
|
# @return [String]
|
|
@@ -404,14 +440,6 @@ module Aws::ApplicationInsights
|
|
|
404
440
|
#
|
|
405
441
|
class DeleteApplicationResponse < Aws::EmptyStructure; end
|
|
406
442
|
|
|
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
443
|
# @!attribute [rw] resource_group_name
|
|
416
444
|
# The name of the resource group.
|
|
417
445
|
# @return [String]
|
|
@@ -433,15 +461,6 @@ module Aws::ApplicationInsights
|
|
|
433
461
|
#
|
|
434
462
|
class DeleteComponentResponse < Aws::EmptyStructure; end
|
|
435
463
|
|
|
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
464
|
# @!attribute [rw] resource_group_name
|
|
446
465
|
# The name of the resource group.
|
|
447
466
|
# @return [String]
|
|
@@ -468,21 +487,19 @@ module Aws::ApplicationInsights
|
|
|
468
487
|
#
|
|
469
488
|
class DeleteLogPatternResponse < Aws::EmptyStructure; end
|
|
470
489
|
|
|
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
490
|
# @!attribute [rw] resource_group_name
|
|
479
491
|
# The name of the resource group.
|
|
480
492
|
# @return [String]
|
|
481
493
|
#
|
|
494
|
+
# @!attribute [rw] account_id
|
|
495
|
+
# The Amazon Web Services account ID for the resource group owner.
|
|
496
|
+
# @return [String]
|
|
497
|
+
#
|
|
482
498
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeApplicationRequest AWS API Documentation
|
|
483
499
|
#
|
|
484
500
|
class DescribeApplicationRequest < Struct.new(
|
|
485
|
-
:resource_group_name
|
|
501
|
+
:resource_group_name,
|
|
502
|
+
:account_id)
|
|
486
503
|
SENSITIVE = []
|
|
487
504
|
include Aws::Structure
|
|
488
505
|
end
|
|
@@ -499,15 +516,6 @@ module Aws::ApplicationInsights
|
|
|
499
516
|
include Aws::Structure
|
|
500
517
|
end
|
|
501
518
|
|
|
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
519
|
# @!attribute [rw] resource_group_name
|
|
512
520
|
# The name of the resource group.
|
|
513
521
|
# @return [String]
|
|
@@ -520,12 +528,24 @@ module Aws::ApplicationInsights
|
|
|
520
528
|
# The tier of the application component.
|
|
521
529
|
# @return [String]
|
|
522
530
|
#
|
|
531
|
+
# @!attribute [rw] workload_name
|
|
532
|
+
# The name of the workload. The name of the workload is required when
|
|
533
|
+
# the tier of the application component is `SAP_ASE_SINGLE_NODE` or
|
|
534
|
+
# `SAP_ASE_HIGH_AVAILABILITY`.
|
|
535
|
+
# @return [String]
|
|
536
|
+
#
|
|
537
|
+
# @!attribute [rw] recommendation_type
|
|
538
|
+
# The recommended configuration type.
|
|
539
|
+
# @return [String]
|
|
540
|
+
#
|
|
523
541
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeComponentConfigurationRecommendationRequest AWS API Documentation
|
|
524
542
|
#
|
|
525
543
|
class DescribeComponentConfigurationRecommendationRequest < Struct.new(
|
|
526
544
|
:resource_group_name,
|
|
527
545
|
:component_name,
|
|
528
|
-
:tier
|
|
546
|
+
:tier,
|
|
547
|
+
:workload_name,
|
|
548
|
+
:recommendation_type)
|
|
529
549
|
SENSITIVE = []
|
|
530
550
|
include Aws::Structure
|
|
531
551
|
end
|
|
@@ -543,14 +563,6 @@ module Aws::ApplicationInsights
|
|
|
543
563
|
include Aws::Structure
|
|
544
564
|
end
|
|
545
565
|
|
|
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
566
|
# @!attribute [rw] resource_group_name
|
|
555
567
|
# The name of the resource group.
|
|
556
568
|
# @return [String]
|
|
@@ -559,11 +571,16 @@ module Aws::ApplicationInsights
|
|
|
559
571
|
# The name of the component.
|
|
560
572
|
# @return [String]
|
|
561
573
|
#
|
|
574
|
+
# @!attribute [rw] account_id
|
|
575
|
+
# The Amazon Web Services account ID for the resource group owner.
|
|
576
|
+
# @return [String]
|
|
577
|
+
#
|
|
562
578
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeComponentConfigurationRequest AWS API Documentation
|
|
563
579
|
#
|
|
564
580
|
class DescribeComponentConfigurationRequest < Struct.new(
|
|
565
581
|
:resource_group_name,
|
|
566
|
-
:component_name
|
|
582
|
+
:component_name,
|
|
583
|
+
:account_id)
|
|
567
584
|
SENSITIVE = []
|
|
568
585
|
include Aws::Structure
|
|
569
586
|
end
|
|
@@ -593,14 +610,6 @@ module Aws::ApplicationInsights
|
|
|
593
610
|
include Aws::Structure
|
|
594
611
|
end
|
|
595
612
|
|
|
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
613
|
# @!attribute [rw] resource_group_name
|
|
605
614
|
# The name of the resource group.
|
|
606
615
|
# @return [String]
|
|
@@ -609,11 +618,16 @@ module Aws::ApplicationInsights
|
|
|
609
618
|
# The name of the component.
|
|
610
619
|
# @return [String]
|
|
611
620
|
#
|
|
621
|
+
# @!attribute [rw] account_id
|
|
622
|
+
# The Amazon Web Services account ID for the resource group owner.
|
|
623
|
+
# @return [String]
|
|
624
|
+
#
|
|
612
625
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeComponentRequest AWS API Documentation
|
|
613
626
|
#
|
|
614
627
|
class DescribeComponentRequest < Struct.new(
|
|
615
628
|
:resource_group_name,
|
|
616
|
-
:component_name
|
|
629
|
+
:component_name,
|
|
630
|
+
:account_id)
|
|
617
631
|
SENSITIVE = []
|
|
618
632
|
include Aws::Structure
|
|
619
633
|
end
|
|
@@ -636,15 +650,6 @@ module Aws::ApplicationInsights
|
|
|
636
650
|
include Aws::Structure
|
|
637
651
|
end
|
|
638
652
|
|
|
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
653
|
# @!attribute [rw] resource_group_name
|
|
649
654
|
# The name of the resource group.
|
|
650
655
|
# @return [String]
|
|
@@ -657,12 +662,17 @@ module Aws::ApplicationInsights
|
|
|
657
662
|
# The name of the log pattern.
|
|
658
663
|
# @return [String]
|
|
659
664
|
#
|
|
665
|
+
# @!attribute [rw] account_id
|
|
666
|
+
# The Amazon Web Services account ID for the resource group owner.
|
|
667
|
+
# @return [String]
|
|
668
|
+
#
|
|
660
669
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeLogPatternRequest AWS API Documentation
|
|
661
670
|
#
|
|
662
671
|
class DescribeLogPatternRequest < Struct.new(
|
|
663
672
|
:resource_group_name,
|
|
664
673
|
:pattern_set_name,
|
|
665
|
-
:pattern_name
|
|
674
|
+
:pattern_name,
|
|
675
|
+
:account_id)
|
|
666
676
|
SENSITIVE = []
|
|
667
677
|
include Aws::Structure
|
|
668
678
|
end
|
|
@@ -671,6 +681,10 @@ module Aws::ApplicationInsights
|
|
|
671
681
|
# The name of the resource group.
|
|
672
682
|
# @return [String]
|
|
673
683
|
#
|
|
684
|
+
# @!attribute [rw] account_id
|
|
685
|
+
# The Amazon Web Services account ID for the resource group owner.
|
|
686
|
+
# @return [String]
|
|
687
|
+
#
|
|
674
688
|
# @!attribute [rw] log_pattern
|
|
675
689
|
# The successfully created log pattern.
|
|
676
690
|
# @return [Types::LogPattern]
|
|
@@ -679,26 +693,25 @@ module Aws::ApplicationInsights
|
|
|
679
693
|
#
|
|
680
694
|
class DescribeLogPatternResponse < Struct.new(
|
|
681
695
|
:resource_group_name,
|
|
696
|
+
:account_id,
|
|
682
697
|
:log_pattern)
|
|
683
698
|
SENSITIVE = []
|
|
684
699
|
include Aws::Structure
|
|
685
700
|
end
|
|
686
701
|
|
|
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
702
|
# @!attribute [rw] observation_id
|
|
695
703
|
# The ID of the observation.
|
|
696
704
|
# @return [String]
|
|
697
705
|
#
|
|
706
|
+
# @!attribute [rw] account_id
|
|
707
|
+
# The Amazon Web Services account ID for the resource group owner.
|
|
708
|
+
# @return [String]
|
|
709
|
+
#
|
|
698
710
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeObservationRequest AWS API Documentation
|
|
699
711
|
#
|
|
700
712
|
class DescribeObservationRequest < Struct.new(
|
|
701
|
-
:observation_id
|
|
713
|
+
:observation_id,
|
|
714
|
+
:account_id)
|
|
702
715
|
SENSITIVE = []
|
|
703
716
|
include Aws::Structure
|
|
704
717
|
end
|
|
@@ -715,21 +728,19 @@ module Aws::ApplicationInsights
|
|
|
715
728
|
include Aws::Structure
|
|
716
729
|
end
|
|
717
730
|
|
|
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
731
|
# @!attribute [rw] problem_id
|
|
726
732
|
# The ID of the problem.
|
|
727
733
|
# @return [String]
|
|
728
734
|
#
|
|
735
|
+
# @!attribute [rw] account_id
|
|
736
|
+
# The Amazon Web Services account ID for the resource group owner.
|
|
737
|
+
# @return [String]
|
|
738
|
+
#
|
|
729
739
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeProblemObservationsRequest AWS API Documentation
|
|
730
740
|
#
|
|
731
741
|
class DescribeProblemObservationsRequest < Struct.new(
|
|
732
|
-
:problem_id
|
|
742
|
+
:problem_id,
|
|
743
|
+
:account_id)
|
|
733
744
|
SENSITIVE = []
|
|
734
745
|
include Aws::Structure
|
|
735
746
|
end
|
|
@@ -746,21 +757,20 @@ module Aws::ApplicationInsights
|
|
|
746
757
|
include Aws::Structure
|
|
747
758
|
end
|
|
748
759
|
|
|
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
760
|
# @!attribute [rw] problem_id
|
|
757
761
|
# The ID of the problem.
|
|
758
762
|
# @return [String]
|
|
759
763
|
#
|
|
764
|
+
# @!attribute [rw] account_id
|
|
765
|
+
# The Amazon Web Services account ID for the owner of the resource
|
|
766
|
+
# group affected by the problem.
|
|
767
|
+
# @return [String]
|
|
768
|
+
#
|
|
760
769
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeProblemRequest AWS API Documentation
|
|
761
770
|
#
|
|
762
771
|
class DescribeProblemRequest < Struct.new(
|
|
763
|
-
:problem_id
|
|
772
|
+
:problem_id,
|
|
773
|
+
:account_id)
|
|
764
774
|
SENSITIVE = []
|
|
765
775
|
include Aws::Structure
|
|
766
776
|
end
|
|
@@ -769,10 +779,66 @@ module Aws::ApplicationInsights
|
|
|
769
779
|
# Information about the problem.
|
|
770
780
|
# @return [Types::Problem]
|
|
771
781
|
#
|
|
782
|
+
# @!attribute [rw] sns_notification_arn
|
|
783
|
+
# The SNS notification topic ARN of the problem.
|
|
784
|
+
# @return [String]
|
|
785
|
+
#
|
|
772
786
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeProblemResponse AWS API Documentation
|
|
773
787
|
#
|
|
774
788
|
class DescribeProblemResponse < Struct.new(
|
|
775
|
-
:problem
|
|
789
|
+
:problem,
|
|
790
|
+
:sns_notification_arn)
|
|
791
|
+
SENSITIVE = []
|
|
792
|
+
include Aws::Structure
|
|
793
|
+
end
|
|
794
|
+
|
|
795
|
+
# @!attribute [rw] resource_group_name
|
|
796
|
+
# The name of the resource group.
|
|
797
|
+
# @return [String]
|
|
798
|
+
#
|
|
799
|
+
# @!attribute [rw] component_name
|
|
800
|
+
# The name of the component.
|
|
801
|
+
# @return [String]
|
|
802
|
+
#
|
|
803
|
+
# @!attribute [rw] workload_id
|
|
804
|
+
# The ID of the workload.
|
|
805
|
+
# @return [String]
|
|
806
|
+
#
|
|
807
|
+
# @!attribute [rw] account_id
|
|
808
|
+
# The Amazon Web Services account ID for the workload owner.
|
|
809
|
+
# @return [String]
|
|
810
|
+
#
|
|
811
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeWorkloadRequest AWS API Documentation
|
|
812
|
+
#
|
|
813
|
+
class DescribeWorkloadRequest < Struct.new(
|
|
814
|
+
:resource_group_name,
|
|
815
|
+
:component_name,
|
|
816
|
+
:workload_id,
|
|
817
|
+
:account_id)
|
|
818
|
+
SENSITIVE = []
|
|
819
|
+
include Aws::Structure
|
|
820
|
+
end
|
|
821
|
+
|
|
822
|
+
# @!attribute [rw] workload_id
|
|
823
|
+
# The ID of the workload.
|
|
824
|
+
# @return [String]
|
|
825
|
+
#
|
|
826
|
+
# @!attribute [rw] workload_remarks
|
|
827
|
+
# If logging is supported for the resource type, shows whether the
|
|
828
|
+
# component has configured logs to be monitored.
|
|
829
|
+
# @return [String]
|
|
830
|
+
#
|
|
831
|
+
# @!attribute [rw] workload_configuration
|
|
832
|
+
# The configuration settings of the workload. The value is the escaped
|
|
833
|
+
# JSON of the configuration.
|
|
834
|
+
# @return [Types::WorkloadConfiguration]
|
|
835
|
+
#
|
|
836
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeWorkloadResponse AWS API Documentation
|
|
837
|
+
#
|
|
838
|
+
class DescribeWorkloadResponse < Struct.new(
|
|
839
|
+
:workload_id,
|
|
840
|
+
:workload_remarks,
|
|
841
|
+
:workload_configuration)
|
|
776
842
|
SENSITIVE = []
|
|
777
843
|
include Aws::Structure
|
|
778
844
|
end
|
|
@@ -791,14 +857,6 @@ module Aws::ApplicationInsights
|
|
|
791
857
|
include Aws::Structure
|
|
792
858
|
end
|
|
793
859
|
|
|
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
860
|
# @!attribute [rw] max_results
|
|
803
861
|
# The maximum number of results to return in a single call. To
|
|
804
862
|
# retrieve the remaining results, make another call with the returned
|
|
@@ -809,11 +867,16 @@ module Aws::ApplicationInsights
|
|
|
809
867
|
# The token to request the next page of results.
|
|
810
868
|
# @return [String]
|
|
811
869
|
#
|
|
870
|
+
# @!attribute [rw] account_id
|
|
871
|
+
# The Amazon Web Services account ID for the resource group owner.
|
|
872
|
+
# @return [String]
|
|
873
|
+
#
|
|
812
874
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ListApplicationsRequest AWS API Documentation
|
|
813
875
|
#
|
|
814
876
|
class ListApplicationsRequest < Struct.new(
|
|
815
877
|
:max_results,
|
|
816
|
-
:next_token
|
|
878
|
+
:next_token,
|
|
879
|
+
:account_id)
|
|
817
880
|
SENSITIVE = []
|
|
818
881
|
include Aws::Structure
|
|
819
882
|
end
|
|
@@ -836,15 +899,6 @@ module Aws::ApplicationInsights
|
|
|
836
899
|
include Aws::Structure
|
|
837
900
|
end
|
|
838
901
|
|
|
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
902
|
# @!attribute [rw] resource_group_name
|
|
849
903
|
# The name of the resource group.
|
|
850
904
|
# @return [String]
|
|
@@ -859,12 +913,17 @@ module Aws::ApplicationInsights
|
|
|
859
913
|
# The token to request the next page of results.
|
|
860
914
|
# @return [String]
|
|
861
915
|
#
|
|
916
|
+
# @!attribute [rw] account_id
|
|
917
|
+
# The Amazon Web Services account ID for the resource group owner.
|
|
918
|
+
# @return [String]
|
|
919
|
+
#
|
|
862
920
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ListComponentsRequest AWS API Documentation
|
|
863
921
|
#
|
|
864
922
|
class ListComponentsRequest < Struct.new(
|
|
865
923
|
:resource_group_name,
|
|
866
924
|
:max_results,
|
|
867
|
-
:next_token
|
|
925
|
+
:next_token,
|
|
926
|
+
:account_id)
|
|
868
927
|
SENSITIVE = []
|
|
869
928
|
include Aws::Structure
|
|
870
929
|
end
|
|
@@ -886,18 +945,6 @@ module Aws::ApplicationInsights
|
|
|
886
945
|
include Aws::Structure
|
|
887
946
|
end
|
|
888
947
|
|
|
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
948
|
# @!attribute [rw] resource_group_name
|
|
902
949
|
# Resource group to which the application belongs.
|
|
903
950
|
# @return [String]
|
|
@@ -935,6 +982,10 @@ module Aws::ApplicationInsights
|
|
|
935
982
|
# results to return.
|
|
936
983
|
# @return [String]
|
|
937
984
|
#
|
|
985
|
+
# @!attribute [rw] account_id
|
|
986
|
+
# The Amazon Web Services account ID for the resource group owner.
|
|
987
|
+
# @return [String]
|
|
988
|
+
#
|
|
938
989
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ListConfigurationHistoryRequest AWS API Documentation
|
|
939
990
|
#
|
|
940
991
|
class ListConfigurationHistoryRequest < Struct.new(
|
|
@@ -943,7 +994,8 @@ module Aws::ApplicationInsights
|
|
|
943
994
|
:end_time,
|
|
944
995
|
:event_status,
|
|
945
996
|
:max_results,
|
|
946
|
-
:next_token
|
|
997
|
+
:next_token,
|
|
998
|
+
:account_id)
|
|
947
999
|
SENSITIVE = []
|
|
948
1000
|
include Aws::Structure
|
|
949
1001
|
end
|
|
@@ -969,15 +1021,6 @@ module Aws::ApplicationInsights
|
|
|
969
1021
|
include Aws::Structure
|
|
970
1022
|
end
|
|
971
1023
|
|
|
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
1024
|
# @!attribute [rw] resource_group_name
|
|
982
1025
|
# The name of the resource group.
|
|
983
1026
|
# @return [String]
|
|
@@ -992,12 +1035,17 @@ module Aws::ApplicationInsights
|
|
|
992
1035
|
# The token to request the next page of results.
|
|
993
1036
|
# @return [String]
|
|
994
1037
|
#
|
|
1038
|
+
# @!attribute [rw] account_id
|
|
1039
|
+
# The Amazon Web Services account ID for the resource group owner.
|
|
1040
|
+
# @return [String]
|
|
1041
|
+
#
|
|
995
1042
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ListLogPatternSetsRequest AWS API Documentation
|
|
996
1043
|
#
|
|
997
1044
|
class ListLogPatternSetsRequest < Struct.new(
|
|
998
1045
|
:resource_group_name,
|
|
999
1046
|
:max_results,
|
|
1000
|
-
:next_token
|
|
1047
|
+
:next_token,
|
|
1048
|
+
:account_id)
|
|
1001
1049
|
SENSITIVE = []
|
|
1002
1050
|
include Aws::Structure
|
|
1003
1051
|
end
|
|
@@ -1006,6 +1054,10 @@ module Aws::ApplicationInsights
|
|
|
1006
1054
|
# The name of the resource group.
|
|
1007
1055
|
# @return [String]
|
|
1008
1056
|
#
|
|
1057
|
+
# @!attribute [rw] account_id
|
|
1058
|
+
# The Amazon Web Services account ID for the resource group owner.
|
|
1059
|
+
# @return [String]
|
|
1060
|
+
#
|
|
1009
1061
|
# @!attribute [rw] log_pattern_sets
|
|
1010
1062
|
# The list of log pattern sets.
|
|
1011
1063
|
# @return [Array<String>]
|
|
@@ -1019,22 +1071,13 @@ module Aws::ApplicationInsights
|
|
|
1019
1071
|
#
|
|
1020
1072
|
class ListLogPatternSetsResponse < Struct.new(
|
|
1021
1073
|
:resource_group_name,
|
|
1074
|
+
:account_id,
|
|
1022
1075
|
:log_pattern_sets,
|
|
1023
1076
|
:next_token)
|
|
1024
1077
|
SENSITIVE = []
|
|
1025
1078
|
include Aws::Structure
|
|
1026
1079
|
end
|
|
1027
1080
|
|
|
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
1081
|
# @!attribute [rw] resource_group_name
|
|
1039
1082
|
# The name of the resource group.
|
|
1040
1083
|
# @return [String]
|
|
@@ -1053,13 +1096,18 @@ module Aws::ApplicationInsights
|
|
|
1053
1096
|
# The token to request the next page of results.
|
|
1054
1097
|
# @return [String]
|
|
1055
1098
|
#
|
|
1099
|
+
# @!attribute [rw] account_id
|
|
1100
|
+
# The Amazon Web Services account ID for the resource group owner.
|
|
1101
|
+
# @return [String]
|
|
1102
|
+
#
|
|
1056
1103
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ListLogPatternsRequest AWS API Documentation
|
|
1057
1104
|
#
|
|
1058
1105
|
class ListLogPatternsRequest < Struct.new(
|
|
1059
1106
|
:resource_group_name,
|
|
1060
1107
|
:pattern_set_name,
|
|
1061
1108
|
:max_results,
|
|
1062
|
-
:next_token
|
|
1109
|
+
:next_token,
|
|
1110
|
+
:account_id)
|
|
1063
1111
|
SENSITIVE = []
|
|
1064
1112
|
include Aws::Structure
|
|
1065
1113
|
end
|
|
@@ -1068,6 +1116,10 @@ module Aws::ApplicationInsights
|
|
|
1068
1116
|
# The name of the resource group.
|
|
1069
1117
|
# @return [String]
|
|
1070
1118
|
#
|
|
1119
|
+
# @!attribute [rw] account_id
|
|
1120
|
+
# The Amazon Web Services account ID for the resource group owner.
|
|
1121
|
+
# @return [String]
|
|
1122
|
+
#
|
|
1071
1123
|
# @!attribute [rw] log_patterns
|
|
1072
1124
|
# The list of log patterns.
|
|
1073
1125
|
# @return [Array<Types::LogPattern>]
|
|
@@ -1081,23 +1133,16 @@ module Aws::ApplicationInsights
|
|
|
1081
1133
|
#
|
|
1082
1134
|
class ListLogPatternsResponse < Struct.new(
|
|
1083
1135
|
:resource_group_name,
|
|
1136
|
+
:account_id,
|
|
1084
1137
|
:log_patterns,
|
|
1085
1138
|
:next_token)
|
|
1086
1139
|
SENSITIVE = []
|
|
1087
1140
|
include Aws::Structure
|
|
1088
1141
|
end
|
|
1089
1142
|
|
|
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
|
-
# }
|
|
1143
|
+
# @!attribute [rw] account_id
|
|
1144
|
+
# The Amazon Web Services account ID for the resource group owner.
|
|
1145
|
+
# @return [String]
|
|
1101
1146
|
#
|
|
1102
1147
|
# @!attribute [rw] resource_group_name
|
|
1103
1148
|
# The name of the resource group.
|
|
@@ -1128,15 +1173,22 @@ module Aws::ApplicationInsights
|
|
|
1128
1173
|
# The name of the component.
|
|
1129
1174
|
# @return [String]
|
|
1130
1175
|
#
|
|
1176
|
+
# @!attribute [rw] visibility
|
|
1177
|
+
# Specifies whether or not you can view the problem. If not specified,
|
|
1178
|
+
# visible and ignored problems are returned.
|
|
1179
|
+
# @return [String]
|
|
1180
|
+
#
|
|
1131
1181
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ListProblemsRequest AWS API Documentation
|
|
1132
1182
|
#
|
|
1133
1183
|
class ListProblemsRequest < Struct.new(
|
|
1184
|
+
:account_id,
|
|
1134
1185
|
:resource_group_name,
|
|
1135
1186
|
:start_time,
|
|
1136
1187
|
:end_time,
|
|
1137
1188
|
:max_results,
|
|
1138
1189
|
:next_token,
|
|
1139
|
-
:component_name
|
|
1190
|
+
:component_name,
|
|
1191
|
+
:visibility)
|
|
1140
1192
|
SENSITIVE = []
|
|
1141
1193
|
include Aws::Structure
|
|
1142
1194
|
end
|
|
@@ -1154,23 +1206,21 @@ module Aws::ApplicationInsights
|
|
|
1154
1206
|
# The name of the resource group.
|
|
1155
1207
|
# @return [String]
|
|
1156
1208
|
#
|
|
1209
|
+
# @!attribute [rw] account_id
|
|
1210
|
+
# The Amazon Web Services account ID for the resource group owner.
|
|
1211
|
+
# @return [String]
|
|
1212
|
+
#
|
|
1157
1213
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ListProblemsResponse AWS API Documentation
|
|
1158
1214
|
#
|
|
1159
1215
|
class ListProblemsResponse < Struct.new(
|
|
1160
1216
|
:problem_list,
|
|
1161
1217
|
:next_token,
|
|
1162
|
-
:resource_group_name
|
|
1218
|
+
:resource_group_name,
|
|
1219
|
+
:account_id)
|
|
1163
1220
|
SENSITIVE = []
|
|
1164
1221
|
include Aws::Structure
|
|
1165
1222
|
end
|
|
1166
1223
|
|
|
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
1224
|
# @!attribute [rw] resource_arn
|
|
1175
1225
|
# The Amazon Resource Name (ARN) of the application that you want to
|
|
1176
1226
|
# retrieve tag information for.
|
|
@@ -1198,6 +1248,57 @@ module Aws::ApplicationInsights
|
|
|
1198
1248
|
include Aws::Structure
|
|
1199
1249
|
end
|
|
1200
1250
|
|
|
1251
|
+
# @!attribute [rw] resource_group_name
|
|
1252
|
+
# The name of the resource group.
|
|
1253
|
+
# @return [String]
|
|
1254
|
+
#
|
|
1255
|
+
# @!attribute [rw] component_name
|
|
1256
|
+
# The name of the component.
|
|
1257
|
+
# @return [String]
|
|
1258
|
+
#
|
|
1259
|
+
# @!attribute [rw] max_results
|
|
1260
|
+
# The maximum number of results to return in a single call. To
|
|
1261
|
+
# retrieve the remaining results, make another call with the returned
|
|
1262
|
+
# `NextToken` value.
|
|
1263
|
+
# @return [Integer]
|
|
1264
|
+
#
|
|
1265
|
+
# @!attribute [rw] next_token
|
|
1266
|
+
# The token to request the next page of results.
|
|
1267
|
+
# @return [String]
|
|
1268
|
+
#
|
|
1269
|
+
# @!attribute [rw] account_id
|
|
1270
|
+
# The Amazon Web Services account ID of the owner of the workload.
|
|
1271
|
+
# @return [String]
|
|
1272
|
+
#
|
|
1273
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ListWorkloadsRequest AWS API Documentation
|
|
1274
|
+
#
|
|
1275
|
+
class ListWorkloadsRequest < Struct.new(
|
|
1276
|
+
:resource_group_name,
|
|
1277
|
+
:component_name,
|
|
1278
|
+
:max_results,
|
|
1279
|
+
:next_token,
|
|
1280
|
+
:account_id)
|
|
1281
|
+
SENSITIVE = []
|
|
1282
|
+
include Aws::Structure
|
|
1283
|
+
end
|
|
1284
|
+
|
|
1285
|
+
# @!attribute [rw] workload_list
|
|
1286
|
+
# The list of workloads.
|
|
1287
|
+
# @return [Array<Types::Workload>]
|
|
1288
|
+
#
|
|
1289
|
+
# @!attribute [rw] next_token
|
|
1290
|
+
# The token to request the next page of results.
|
|
1291
|
+
# @return [String]
|
|
1292
|
+
#
|
|
1293
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ListWorkloadsResponse AWS API Documentation
|
|
1294
|
+
#
|
|
1295
|
+
class ListWorkloadsResponse < Struct.new(
|
|
1296
|
+
:workload_list,
|
|
1297
|
+
:next_token)
|
|
1298
|
+
SENSITIVE = []
|
|
1299
|
+
include Aws::Structure
|
|
1300
|
+
end
|
|
1301
|
+
|
|
1201
1302
|
# An object that defines the log patterns that belongs to a
|
|
1202
1303
|
# `LogPatternSet`.
|
|
1203
1304
|
#
|
|
@@ -1232,7 +1333,8 @@ module Aws::ApplicationInsights
|
|
|
1232
1333
|
# pattern translates to a `750,000` rank. A `Medium` severity pattern
|
|
1233
1334
|
# translates to a `500,000` rank. And a `High` severity pattern
|
|
1234
1335
|
# translates to a `250,000` rank. Rank values less than `1` or greater
|
|
1235
|
-
# than `1,000,000` are reserved for
|
|
1336
|
+
# than `1,000,000` are reserved for Amazon Web Services provided
|
|
1337
|
+
# patterns.
|
|
1236
1338
|
# @return [Integer]
|
|
1237
1339
|
#
|
|
1238
1340
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/LogPattern AWS API Documentation
|
|
@@ -1316,26 +1418,26 @@ module Aws::ApplicationInsights
|
|
|
1316
1418
|
# @return [String]
|
|
1317
1419
|
#
|
|
1318
1420
|
# @!attribute [rw] health_event_arn
|
|
1319
|
-
# The Amazon Resource Name (ARN) of the
|
|
1421
|
+
# The Amazon Resource Name (ARN) of the Health Event-based
|
|
1320
1422
|
# observation.
|
|
1321
1423
|
# @return [String]
|
|
1322
1424
|
#
|
|
1323
1425
|
# @!attribute [rw] health_service
|
|
1324
|
-
# The service to which the
|
|
1426
|
+
# The service to which the Health Event belongs, such as EC2.
|
|
1325
1427
|
# @return [String]
|
|
1326
1428
|
#
|
|
1327
1429
|
# @!attribute [rw] health_event_type_code
|
|
1328
|
-
# The type of the
|
|
1430
|
+
# The type of the Health event, for example,
|
|
1329
1431
|
# `AWS_EC2_POWER_CONNECTIVITY_ISSUE`.
|
|
1330
1432
|
# @return [String]
|
|
1331
1433
|
#
|
|
1332
1434
|
# @!attribute [rw] health_event_type_category
|
|
1333
|
-
# The category of the
|
|
1435
|
+
# The category of the Health event, such as `issue`.
|
|
1334
1436
|
# @return [String]
|
|
1335
1437
|
#
|
|
1336
1438
|
# @!attribute [rw] health_event_description
|
|
1337
|
-
# The description of the
|
|
1338
|
-
#
|
|
1439
|
+
# The description of the Health event provided by the service, such as
|
|
1440
|
+
# Amazon EC2.
|
|
1339
1441
|
# @return [String]
|
|
1340
1442
|
#
|
|
1341
1443
|
# @!attribute [rw] code_deploy_deployment_id
|
|
@@ -1502,6 +1604,10 @@ module Aws::ApplicationInsights
|
|
|
1502
1604
|
# The name of the problem.
|
|
1503
1605
|
# @return [String]
|
|
1504
1606
|
#
|
|
1607
|
+
# @!attribute [rw] short_name
|
|
1608
|
+
# The short name of the problem associated with the SNS notification.
|
|
1609
|
+
# @return [String]
|
|
1610
|
+
#
|
|
1505
1611
|
# @!attribute [rw] insights
|
|
1506
1612
|
# A detailed analysis of the problem using machine learning.
|
|
1507
1613
|
# @return [String]
|
|
@@ -1526,6 +1632,11 @@ module Aws::ApplicationInsights
|
|
|
1526
1632
|
# A measure of the level of impact of the problem.
|
|
1527
1633
|
# @return [String]
|
|
1528
1634
|
#
|
|
1635
|
+
# @!attribute [rw] account_id
|
|
1636
|
+
# The Amazon Web Services account ID for the owner of the resource
|
|
1637
|
+
# group affected by the problem.
|
|
1638
|
+
# @return [String]
|
|
1639
|
+
#
|
|
1529
1640
|
# @!attribute [rw] resource_group_name
|
|
1530
1641
|
# The name of the resource group affected by the problem.
|
|
1531
1642
|
# @return [String]
|
|
@@ -1543,21 +1654,37 @@ module Aws::ApplicationInsights
|
|
|
1543
1654
|
# The last time that the problem reoccurred after its last resolution.
|
|
1544
1655
|
# @return [Time]
|
|
1545
1656
|
#
|
|
1657
|
+
# @!attribute [rw] visibility
|
|
1658
|
+
# Specifies whether or not you can view the problem. Updates to
|
|
1659
|
+
# ignored problems do not generate notifications.
|
|
1660
|
+
# @return [String]
|
|
1661
|
+
#
|
|
1662
|
+
# @!attribute [rw] resolution_method
|
|
1663
|
+
# Specifies how the problem was resolved. If the value is `AUTOMATIC`,
|
|
1664
|
+
# the system resolved the problem. If the value is `MANUAL`, the user
|
|
1665
|
+
# resolved the problem. If the value is `UNRESOLVED`, then the problem
|
|
1666
|
+
# is not resolved.
|
|
1667
|
+
# @return [String]
|
|
1668
|
+
#
|
|
1546
1669
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/Problem AWS API Documentation
|
|
1547
1670
|
#
|
|
1548
1671
|
class Problem < Struct.new(
|
|
1549
1672
|
:id,
|
|
1550
1673
|
:title,
|
|
1674
|
+
:short_name,
|
|
1551
1675
|
:insights,
|
|
1552
1676
|
:status,
|
|
1553
1677
|
:affected_resource,
|
|
1554
1678
|
:start_time,
|
|
1555
1679
|
:end_time,
|
|
1556
1680
|
:severity_level,
|
|
1681
|
+
:account_id,
|
|
1557
1682
|
:resource_group_name,
|
|
1558
1683
|
:feedback,
|
|
1559
1684
|
:recurring_count,
|
|
1560
|
-
:last_recurrence_time
|
|
1685
|
+
:last_recurrence_time,
|
|
1686
|
+
:visibility,
|
|
1687
|
+
:resolution_method)
|
|
1561
1688
|
SENSITIVE = []
|
|
1562
1689
|
include Aws::Structure
|
|
1563
1690
|
end
|
|
@@ -1576,6 +1703,32 @@ module Aws::ApplicationInsights
|
|
|
1576
1703
|
include Aws::Structure
|
|
1577
1704
|
end
|
|
1578
1705
|
|
|
1706
|
+
# @!attribute [rw] resource_group_name
|
|
1707
|
+
# The name of the resource group.
|
|
1708
|
+
# @return [String]
|
|
1709
|
+
#
|
|
1710
|
+
# @!attribute [rw] component_name
|
|
1711
|
+
# The name of the component.
|
|
1712
|
+
# @return [String]
|
|
1713
|
+
#
|
|
1714
|
+
# @!attribute [rw] workload_id
|
|
1715
|
+
# The ID of the workload.
|
|
1716
|
+
# @return [String]
|
|
1717
|
+
#
|
|
1718
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/RemoveWorkloadRequest AWS API Documentation
|
|
1719
|
+
#
|
|
1720
|
+
class RemoveWorkloadRequest < Struct.new(
|
|
1721
|
+
:resource_group_name,
|
|
1722
|
+
:component_name,
|
|
1723
|
+
:workload_id)
|
|
1724
|
+
SENSITIVE = []
|
|
1725
|
+
include Aws::Structure
|
|
1726
|
+
end
|
|
1727
|
+
|
|
1728
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/RemoveWorkloadResponse AWS API Documentation
|
|
1729
|
+
#
|
|
1730
|
+
class RemoveWorkloadResponse < Aws::EmptyStructure; end
|
|
1731
|
+
|
|
1579
1732
|
# The resource is already created or in use.
|
|
1580
1733
|
#
|
|
1581
1734
|
# @!attribute [rw] message
|
|
@@ -1622,17 +1775,9 @@ module Aws::ApplicationInsights
|
|
|
1622
1775
|
# * For each associated resource, each tag key must be unique and it can
|
|
1623
1776
|
# have only one value.
|
|
1624
1777
|
#
|
|
1625
|
-
# * The `aws:` prefix is reserved for use by
|
|
1626
|
-
# any tag keys or values that you define. In addition,
|
|
1627
|
-
# or remove tag keys or values that use this prefix.
|
|
1628
|
-
#
|
|
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
|
-
# }
|
|
1778
|
+
# * The `aws:` prefix is reserved for use by Amazon Web Services; you
|
|
1779
|
+
# can’t use it in any tag keys or values that you define. In addition,
|
|
1780
|
+
# you can't edit or remove tag keys or values that use this prefix.
|
|
1636
1781
|
#
|
|
1637
1782
|
# @!attribute [rw] key
|
|
1638
1783
|
# One part of a key-value pair that defines a tag. The maximum length
|
|
@@ -1655,19 +1800,6 @@ module Aws::ApplicationInsights
|
|
|
1655
1800
|
include Aws::Structure
|
|
1656
1801
|
end
|
|
1657
1802
|
|
|
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
1803
|
# @!attribute [rw] resource_arn
|
|
1672
1804
|
# The Amazon Resource Name (ARN) of the application that you want to
|
|
1673
1805
|
# add one or more tags to.
|
|
@@ -1726,14 +1858,6 @@ module Aws::ApplicationInsights
|
|
|
1726
1858
|
include Aws::Structure
|
|
1727
1859
|
end
|
|
1728
1860
|
|
|
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
1861
|
# @!attribute [rw] resource_arn
|
|
1738
1862
|
# The Amazon Resource Name (ARN) of the application that you want to
|
|
1739
1863
|
# remove one or more tags from.
|
|
@@ -1762,18 +1886,6 @@ module Aws::ApplicationInsights
|
|
|
1762
1886
|
#
|
|
1763
1887
|
class UntagResourceResponse < Aws::EmptyStructure; end
|
|
1764
1888
|
|
|
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
1889
|
# @!attribute [rw] resource_group_name
|
|
1778
1890
|
# The name of the resource group.
|
|
1779
1891
|
# @return [String]
|
|
@@ -1795,6 +1907,11 @@ module Aws::ApplicationInsights
|
|
|
1795
1907
|
# to the opsItem.
|
|
1796
1908
|
# @return [String]
|
|
1797
1909
|
#
|
|
1910
|
+
# @!attribute [rw] sns_notification_arn
|
|
1911
|
+
# The SNS topic ARN. Allows you to receive SNS notifications for
|
|
1912
|
+
# updates and issues with an application.
|
|
1913
|
+
# @return [String]
|
|
1914
|
+
#
|
|
1798
1915
|
# @!attribute [rw] remove_sns_topic
|
|
1799
1916
|
# Disassociates the SNS topic from the opsItem created for detected
|
|
1800
1917
|
# problems.
|
|
@@ -1804,6 +1921,11 @@ module Aws::ApplicationInsights
|
|
|
1804
1921
|
# Turns auto-configuration on or off.
|
|
1805
1922
|
# @return [Boolean]
|
|
1806
1923
|
#
|
|
1924
|
+
# @!attribute [rw] attach_missing_permission
|
|
1925
|
+
# If set to true, the managed policies for SSM and CW will be attached
|
|
1926
|
+
# to the instance roles if they are missing.
|
|
1927
|
+
# @return [Boolean]
|
|
1928
|
+
#
|
|
1807
1929
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/UpdateApplicationRequest AWS API Documentation
|
|
1808
1930
|
#
|
|
1809
1931
|
class UpdateApplicationRequest < Struct.new(
|
|
@@ -1811,8 +1933,10 @@ module Aws::ApplicationInsights
|
|
|
1811
1933
|
:ops_center_enabled,
|
|
1812
1934
|
:cwe_monitor_enabled,
|
|
1813
1935
|
:ops_item_sns_topic_arn,
|
|
1936
|
+
:sns_notification_arn,
|
|
1814
1937
|
:remove_sns_topic,
|
|
1815
|
-
:auto_config_enabled
|
|
1938
|
+
:auto_config_enabled,
|
|
1939
|
+
:attach_missing_permission)
|
|
1816
1940
|
SENSITIVE = []
|
|
1817
1941
|
include Aws::Structure
|
|
1818
1942
|
end
|
|
@@ -1829,18 +1953,6 @@ module Aws::ApplicationInsights
|
|
|
1829
1953
|
include Aws::Structure
|
|
1830
1954
|
end
|
|
1831
1955
|
|
|
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
1956
|
# @!attribute [rw] resource_group_name
|
|
1845
1957
|
# The name of the resource group.
|
|
1846
1958
|
# @return [String]
|
|
@@ -1894,16 +2006,6 @@ module Aws::ApplicationInsights
|
|
|
1894
2006
|
#
|
|
1895
2007
|
class UpdateComponentConfigurationResponse < Aws::EmptyStructure; end
|
|
1896
2008
|
|
|
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
2009
|
# @!attribute [rw] resource_group_name
|
|
1908
2010
|
# The name of the resource group.
|
|
1909
2011
|
# @return [String]
|
|
@@ -1935,17 +2037,6 @@ module Aws::ApplicationInsights
|
|
|
1935
2037
|
#
|
|
1936
2038
|
class UpdateComponentResponse < Aws::EmptyStructure; end
|
|
1937
2039
|
|
|
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
2040
|
# @!attribute [rw] resource_group_name
|
|
1950
2041
|
# The name of the resource group.
|
|
1951
2042
|
# @return [String]
|
|
@@ -1974,7 +2065,8 @@ module Aws::ApplicationInsights
|
|
|
1974
2065
|
# pattern translates to a `750,000` rank. A `Medium` severity pattern
|
|
1975
2066
|
# translates to a `500,000` rank. And a `High` severity pattern
|
|
1976
2067
|
# translates to a `250,000` rank. Rank values less than `1` or greater
|
|
1977
|
-
# than `1,000,000` are reserved for
|
|
2068
|
+
# than `1,000,000` are reserved for Amazon Web Services provided
|
|
2069
|
+
# patterns.
|
|
1978
2070
|
# @return [Integer]
|
|
1979
2071
|
#
|
|
1980
2072
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/UpdateLogPatternRequest AWS API Documentation
|
|
@@ -2006,6 +2098,82 @@ module Aws::ApplicationInsights
|
|
|
2006
2098
|
include Aws::Structure
|
|
2007
2099
|
end
|
|
2008
2100
|
|
|
2101
|
+
# @!attribute [rw] problem_id
|
|
2102
|
+
# The ID of the problem.
|
|
2103
|
+
# @return [String]
|
|
2104
|
+
#
|
|
2105
|
+
# @!attribute [rw] update_status
|
|
2106
|
+
# The status of the problem. Arguments can be passed for only problems
|
|
2107
|
+
# that show a status of `RECOVERING`.
|
|
2108
|
+
# @return [String]
|
|
2109
|
+
#
|
|
2110
|
+
# @!attribute [rw] visibility
|
|
2111
|
+
# The visibility of a problem. When you pass a value of `IGNORED`, the
|
|
2112
|
+
# problem is removed from the default view, and all notifications for
|
|
2113
|
+
# the problem are suspended. When `VISIBLE` is passed, the `IGNORED`
|
|
2114
|
+
# action is reversed.
|
|
2115
|
+
# @return [String]
|
|
2116
|
+
#
|
|
2117
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/UpdateProblemRequest AWS API Documentation
|
|
2118
|
+
#
|
|
2119
|
+
class UpdateProblemRequest < Struct.new(
|
|
2120
|
+
:problem_id,
|
|
2121
|
+
:update_status,
|
|
2122
|
+
:visibility)
|
|
2123
|
+
SENSITIVE = []
|
|
2124
|
+
include Aws::Structure
|
|
2125
|
+
end
|
|
2126
|
+
|
|
2127
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/UpdateProblemResponse AWS API Documentation
|
|
2128
|
+
#
|
|
2129
|
+
class UpdateProblemResponse < Aws::EmptyStructure; end
|
|
2130
|
+
|
|
2131
|
+
# @!attribute [rw] resource_group_name
|
|
2132
|
+
# The name of the resource group.
|
|
2133
|
+
# @return [String]
|
|
2134
|
+
#
|
|
2135
|
+
# @!attribute [rw] component_name
|
|
2136
|
+
# The name of the component.
|
|
2137
|
+
# @return [String]
|
|
2138
|
+
#
|
|
2139
|
+
# @!attribute [rw] workload_id
|
|
2140
|
+
# The ID of the workload.
|
|
2141
|
+
# @return [String]
|
|
2142
|
+
#
|
|
2143
|
+
# @!attribute [rw] workload_configuration
|
|
2144
|
+
# The configuration settings of the workload. The value is the escaped
|
|
2145
|
+
# JSON of the configuration.
|
|
2146
|
+
# @return [Types::WorkloadConfiguration]
|
|
2147
|
+
#
|
|
2148
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/UpdateWorkloadRequest AWS API Documentation
|
|
2149
|
+
#
|
|
2150
|
+
class UpdateWorkloadRequest < Struct.new(
|
|
2151
|
+
:resource_group_name,
|
|
2152
|
+
:component_name,
|
|
2153
|
+
:workload_id,
|
|
2154
|
+
:workload_configuration)
|
|
2155
|
+
SENSITIVE = []
|
|
2156
|
+
include Aws::Structure
|
|
2157
|
+
end
|
|
2158
|
+
|
|
2159
|
+
# @!attribute [rw] workload_id
|
|
2160
|
+
# The ID of the workload.
|
|
2161
|
+
# @return [String]
|
|
2162
|
+
#
|
|
2163
|
+
# @!attribute [rw] workload_configuration
|
|
2164
|
+
# The configuration settings of the workload. The value is the escaped
|
|
2165
|
+
# JSON of the configuration.
|
|
2166
|
+
# @return [Types::WorkloadConfiguration]
|
|
2167
|
+
#
|
|
2168
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/UpdateWorkloadResponse AWS API Documentation
|
|
2169
|
+
#
|
|
2170
|
+
class UpdateWorkloadResponse < Struct.new(
|
|
2171
|
+
:workload_id,
|
|
2172
|
+
:workload_configuration)
|
|
2173
|
+
SENSITIVE = []
|
|
2174
|
+
include Aws::Structure
|
|
2175
|
+
end
|
|
2176
|
+
|
|
2009
2177
|
# The parameter is not valid.
|
|
2010
2178
|
#
|
|
2011
2179
|
# @!attribute [rw] message
|
|
@@ -2019,5 +2187,71 @@ module Aws::ApplicationInsights
|
|
|
2019
2187
|
include Aws::Structure
|
|
2020
2188
|
end
|
|
2021
2189
|
|
|
2190
|
+
# Describes the workloads on a component.
|
|
2191
|
+
#
|
|
2192
|
+
# @!attribute [rw] workload_id
|
|
2193
|
+
# The ID of the workload.
|
|
2194
|
+
# @return [String]
|
|
2195
|
+
#
|
|
2196
|
+
# @!attribute [rw] component_name
|
|
2197
|
+
# The name of the component.
|
|
2198
|
+
# @return [String]
|
|
2199
|
+
#
|
|
2200
|
+
# @!attribute [rw] workload_name
|
|
2201
|
+
# The name of the workload.
|
|
2202
|
+
# @return [String]
|
|
2203
|
+
#
|
|
2204
|
+
# @!attribute [rw] tier
|
|
2205
|
+
# The tier of the workload.
|
|
2206
|
+
# @return [String]
|
|
2207
|
+
#
|
|
2208
|
+
# @!attribute [rw] workload_remarks
|
|
2209
|
+
# If logging is supported for the resource type, shows whether the
|
|
2210
|
+
# component has configured logs to be monitored.
|
|
2211
|
+
# @return [String]
|
|
2212
|
+
#
|
|
2213
|
+
# @!attribute [rw] missing_workload_config
|
|
2214
|
+
# Indicates whether all of the component configurations required to
|
|
2215
|
+
# monitor a workload were provided.
|
|
2216
|
+
# @return [Boolean]
|
|
2217
|
+
#
|
|
2218
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/Workload AWS API Documentation
|
|
2219
|
+
#
|
|
2220
|
+
class Workload < Struct.new(
|
|
2221
|
+
:workload_id,
|
|
2222
|
+
:component_name,
|
|
2223
|
+
:workload_name,
|
|
2224
|
+
:tier,
|
|
2225
|
+
:workload_remarks,
|
|
2226
|
+
:missing_workload_config)
|
|
2227
|
+
SENSITIVE = []
|
|
2228
|
+
include Aws::Structure
|
|
2229
|
+
end
|
|
2230
|
+
|
|
2231
|
+
# The configuration of the workload.
|
|
2232
|
+
#
|
|
2233
|
+
# @!attribute [rw] workload_name
|
|
2234
|
+
# The name of the workload.
|
|
2235
|
+
# @return [String]
|
|
2236
|
+
#
|
|
2237
|
+
# @!attribute [rw] tier
|
|
2238
|
+
# The configuration of the workload tier.
|
|
2239
|
+
# @return [String]
|
|
2240
|
+
#
|
|
2241
|
+
# @!attribute [rw] configuration
|
|
2242
|
+
# The configuration settings of the workload.
|
|
2243
|
+
# @return [String]
|
|
2244
|
+
#
|
|
2245
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/WorkloadConfiguration AWS API Documentation
|
|
2246
|
+
#
|
|
2247
|
+
class WorkloadConfiguration < Struct.new(
|
|
2248
|
+
:workload_name,
|
|
2249
|
+
:tier,
|
|
2250
|
+
:configuration)
|
|
2251
|
+
SENSITIVE = []
|
|
2252
|
+
include Aws::Structure
|
|
2253
|
+
end
|
|
2254
|
+
|
|
2022
2255
|
end
|
|
2023
2256
|
end
|
|
2257
|
+
|