aws-sdk-applicationinsights 1.9.0 → 1.14.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-applicationinsights.rb +5 -2
- data/lib/aws-sdk-applicationinsights/client.rb +29 -10
- data/lib/aws-sdk-applicationinsights/client_api.rb +2 -0
- data/lib/aws-sdk-applicationinsights/errors.rb +2 -0
- data/lib/aws-sdk-applicationinsights/resource.rb +2 -0
- data/lib/aws-sdk-applicationinsights/types.rb +63 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0ed4a25116d4d292f96e20a9d72a2ec1f06667ae5dd1c2c7c8385bd0655e48cf
|
4
|
+
data.tar.gz: 8815ec2b5a56f70622395668739caf462c9c05564873c128fac0e7d5127a5bd5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5b8369f21fa4a30695d1c8a1304a3f0f102ac0950bdbf4d51bf3a273b62423a5f0189eef761ff04ff200c07ab030a505d35a5533235f0eb32f91dd1bdd308196
|
7
|
+
data.tar.gz: 3f58fe97839d0e84a23ebc39c66fb6e0325d7ef44760e072f1d408f91011b498dd962889c2bf20d5b6e840b9a61061376d2ebe2839532f9a5aeb1c9a568289ea
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -5,6 +7,7 @@
|
|
5
7
|
#
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
10
|
+
|
8
11
|
require 'aws-sdk-core'
|
9
12
|
require 'aws-sigv4'
|
10
13
|
|
@@ -42,9 +45,9 @@ require_relative 'aws-sdk-applicationinsights/customizations'
|
|
42
45
|
#
|
43
46
|
# See {Errors} for more information.
|
44
47
|
#
|
45
|
-
#
|
48
|
+
# @!group service
|
46
49
|
module Aws::ApplicationInsights
|
47
50
|
|
48
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.14.0'
|
49
52
|
|
50
53
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
29
32
|
|
@@ -69,6 +72,7 @@ module Aws::ApplicationInsights
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
74
78
|
|
@@ -81,13 +85,28 @@ module Aws::ApplicationInsights
|
|
81
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
82
86
|
# credentials.
|
83
87
|
#
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
89
|
+
# shared file, such as `~/.aws/config`.
|
90
|
+
#
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
94
|
+
# assume a role after providing credentials via the web.
|
95
|
+
#
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
97
|
+
# access token generated from `aws login`.
|
98
|
+
#
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
100
|
+
# process that outputs to stdout.
|
101
|
+
#
|
84
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
85
103
|
# from an EC2 IMDS on an EC2 instance.
|
86
104
|
#
|
87
|
-
# * `Aws::
|
88
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
89
107
|
#
|
90
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
91
110
|
#
|
92
111
|
# When `:credentials` are not configured directly, the following
|
93
112
|
# locations will be searched for credentials:
|
@@ -97,10 +116,10 @@ module Aws::ApplicationInsights
|
|
97
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
98
117
|
# * `~/.aws/credentials`
|
99
118
|
# * `~/.aws/config`
|
100
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
101
|
-
# very aggressive. Construct and pass an instance of
|
102
|
-
# `Aws::InstanceProfileCredentails`
|
103
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
104
123
|
#
|
105
124
|
# @option options [required, String] :region
|
106
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -161,7 +180,7 @@ module Aws::ApplicationInsights
|
|
161
180
|
# @option options [String] :endpoint
|
162
181
|
# The client endpoint is normally constructed from the `:region`
|
163
182
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be a valid HTTP(S) URI.
|
183
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
184
|
#
|
166
185
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
186
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +195,7 @@ module Aws::ApplicationInsights
|
|
176
195
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
196
|
#
|
178
197
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
198
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
199
|
#
|
181
200
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
201
|
# The log formatter.
|
@@ -1539,7 +1558,7 @@ module Aws::ApplicationInsights
|
|
1539
1558
|
params: params,
|
1540
1559
|
config: config)
|
1541
1560
|
context[:gem_name] = 'aws-sdk-applicationinsights'
|
1542
|
-
context[:gem_version] = '1.
|
1561
|
+
context[:gem_version] = '1.14.0'
|
1543
1562
|
Seahorse::Client::Request.new(handlers, context)
|
1544
1563
|
end
|
1545
1564
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -35,6 +37,7 @@ module Aws::ApplicationInsights
|
|
35
37
|
:resource_type,
|
36
38
|
:tier,
|
37
39
|
:monitor)
|
40
|
+
SENSITIVE = []
|
38
41
|
include Aws::Structure
|
39
42
|
end
|
40
43
|
|
@@ -83,6 +86,7 @@ module Aws::ApplicationInsights
|
|
83
86
|
:ops_center_enabled,
|
84
87
|
:cwe_monitor_enabled,
|
85
88
|
:remarks)
|
89
|
+
SENSITIVE = []
|
86
90
|
include Aws::Structure
|
87
91
|
end
|
88
92
|
|
@@ -95,6 +99,7 @@ module Aws::ApplicationInsights
|
|
95
99
|
#
|
96
100
|
class BadRequestException < Struct.new(
|
97
101
|
:message)
|
102
|
+
SENSITIVE = []
|
98
103
|
include Aws::Structure
|
99
104
|
end
|
100
105
|
|
@@ -136,6 +141,7 @@ module Aws::ApplicationInsights
|
|
136
141
|
:event_time,
|
137
142
|
:event_detail,
|
138
143
|
:event_resource_name)
|
144
|
+
SENSITIVE = []
|
139
145
|
include Aws::Structure
|
140
146
|
end
|
141
147
|
|
@@ -190,6 +196,7 @@ module Aws::ApplicationInsights
|
|
190
196
|
:cwe_monitor_enabled,
|
191
197
|
:ops_item_sns_topic_arn,
|
192
198
|
:tags)
|
199
|
+
SENSITIVE = []
|
193
200
|
include Aws::Structure
|
194
201
|
end
|
195
202
|
|
@@ -201,6 +208,7 @@ module Aws::ApplicationInsights
|
|
201
208
|
#
|
202
209
|
class CreateApplicationResponse < Struct.new(
|
203
210
|
:application_info)
|
211
|
+
SENSITIVE = []
|
204
212
|
include Aws::Structure
|
205
213
|
end
|
206
214
|
|
@@ -231,6 +239,7 @@ module Aws::ApplicationInsights
|
|
231
239
|
:resource_group_name,
|
232
240
|
:component_name,
|
233
241
|
:resource_list)
|
242
|
+
SENSITIVE = []
|
234
243
|
include Aws::Structure
|
235
244
|
end
|
236
245
|
|
@@ -277,6 +286,7 @@ module Aws::ApplicationInsights
|
|
277
286
|
:pattern_name,
|
278
287
|
:pattern,
|
279
288
|
:rank)
|
289
|
+
SENSITIVE = []
|
280
290
|
include Aws::Structure
|
281
291
|
end
|
282
292
|
|
@@ -293,6 +303,7 @@ module Aws::ApplicationInsights
|
|
293
303
|
class CreateLogPatternResponse < Struct.new(
|
294
304
|
:log_pattern,
|
295
305
|
:resource_group_name)
|
306
|
+
SENSITIVE = []
|
296
307
|
include Aws::Structure
|
297
308
|
end
|
298
309
|
|
@@ -311,6 +322,7 @@ module Aws::ApplicationInsights
|
|
311
322
|
#
|
312
323
|
class DeleteApplicationRequest < Struct.new(
|
313
324
|
:resource_group_name)
|
325
|
+
SENSITIVE = []
|
314
326
|
include Aws::Structure
|
315
327
|
end
|
316
328
|
|
@@ -339,6 +351,7 @@ module Aws::ApplicationInsights
|
|
339
351
|
class DeleteComponentRequest < Struct.new(
|
340
352
|
:resource_group_name,
|
341
353
|
:component_name)
|
354
|
+
SENSITIVE = []
|
342
355
|
include Aws::Structure
|
343
356
|
end
|
344
357
|
|
@@ -373,6 +386,7 @@ module Aws::ApplicationInsights
|
|
373
386
|
:resource_group_name,
|
374
387
|
:pattern_set_name,
|
375
388
|
:pattern_name)
|
389
|
+
SENSITIVE = []
|
376
390
|
include Aws::Structure
|
377
391
|
end
|
378
392
|
|
@@ -395,6 +409,7 @@ module Aws::ApplicationInsights
|
|
395
409
|
#
|
396
410
|
class DescribeApplicationRequest < Struct.new(
|
397
411
|
:resource_group_name)
|
412
|
+
SENSITIVE = []
|
398
413
|
include Aws::Structure
|
399
414
|
end
|
400
415
|
|
@@ -406,6 +421,7 @@ module Aws::ApplicationInsights
|
|
406
421
|
#
|
407
422
|
class DescribeApplicationResponse < Struct.new(
|
408
423
|
:application_info)
|
424
|
+
SENSITIVE = []
|
409
425
|
include Aws::Structure
|
410
426
|
end
|
411
427
|
|
@@ -438,6 +454,7 @@ module Aws::ApplicationInsights
|
|
438
454
|
:resource_group_name,
|
439
455
|
:component_name,
|
440
456
|
:tier)
|
457
|
+
SENSITIVE = []
|
441
458
|
include Aws::Structure
|
442
459
|
end
|
443
460
|
|
@@ -450,6 +467,7 @@ module Aws::ApplicationInsights
|
|
450
467
|
#
|
451
468
|
class DescribeComponentConfigurationRecommendationResponse < Struct.new(
|
452
469
|
:component_configuration)
|
470
|
+
SENSITIVE = []
|
453
471
|
include Aws::Structure
|
454
472
|
end
|
455
473
|
|
@@ -474,6 +492,7 @@ module Aws::ApplicationInsights
|
|
474
492
|
class DescribeComponentConfigurationRequest < Struct.new(
|
475
493
|
:resource_group_name,
|
476
494
|
:component_name)
|
495
|
+
SENSITIVE = []
|
477
496
|
include Aws::Structure
|
478
497
|
end
|
479
498
|
|
@@ -498,6 +517,7 @@ module Aws::ApplicationInsights
|
|
498
517
|
:monitor,
|
499
518
|
:tier,
|
500
519
|
:component_configuration)
|
520
|
+
SENSITIVE = []
|
501
521
|
include Aws::Structure
|
502
522
|
end
|
503
523
|
|
@@ -522,6 +542,7 @@ module Aws::ApplicationInsights
|
|
522
542
|
class DescribeComponentRequest < Struct.new(
|
523
543
|
:resource_group_name,
|
524
544
|
:component_name)
|
545
|
+
SENSITIVE = []
|
525
546
|
include Aws::Structure
|
526
547
|
end
|
527
548
|
|
@@ -539,6 +560,7 @@ module Aws::ApplicationInsights
|
|
539
560
|
class DescribeComponentResponse < Struct.new(
|
540
561
|
:application_component,
|
541
562
|
:resource_list)
|
563
|
+
SENSITIVE = []
|
542
564
|
include Aws::Structure
|
543
565
|
end
|
544
566
|
|
@@ -569,6 +591,7 @@ module Aws::ApplicationInsights
|
|
569
591
|
:resource_group_name,
|
570
592
|
:pattern_set_name,
|
571
593
|
:pattern_name)
|
594
|
+
SENSITIVE = []
|
572
595
|
include Aws::Structure
|
573
596
|
end
|
574
597
|
|
@@ -585,6 +608,7 @@ module Aws::ApplicationInsights
|
|
585
608
|
class DescribeLogPatternResponse < Struct.new(
|
586
609
|
:resource_group_name,
|
587
610
|
:log_pattern)
|
611
|
+
SENSITIVE = []
|
588
612
|
include Aws::Structure
|
589
613
|
end
|
590
614
|
|
@@ -603,6 +627,7 @@ module Aws::ApplicationInsights
|
|
603
627
|
#
|
604
628
|
class DescribeObservationRequest < Struct.new(
|
605
629
|
:observation_id)
|
630
|
+
SENSITIVE = []
|
606
631
|
include Aws::Structure
|
607
632
|
end
|
608
633
|
|
@@ -614,6 +639,7 @@ module Aws::ApplicationInsights
|
|
614
639
|
#
|
615
640
|
class DescribeObservationResponse < Struct.new(
|
616
641
|
:observation)
|
642
|
+
SENSITIVE = []
|
617
643
|
include Aws::Structure
|
618
644
|
end
|
619
645
|
|
@@ -632,6 +658,7 @@ module Aws::ApplicationInsights
|
|
632
658
|
#
|
633
659
|
class DescribeProblemObservationsRequest < Struct.new(
|
634
660
|
:problem_id)
|
661
|
+
SENSITIVE = []
|
635
662
|
include Aws::Structure
|
636
663
|
end
|
637
664
|
|
@@ -643,6 +670,7 @@ module Aws::ApplicationInsights
|
|
643
670
|
#
|
644
671
|
class DescribeProblemObservationsResponse < Struct.new(
|
645
672
|
:related_observations)
|
673
|
+
SENSITIVE = []
|
646
674
|
include Aws::Structure
|
647
675
|
end
|
648
676
|
|
@@ -661,6 +689,7 @@ module Aws::ApplicationInsights
|
|
661
689
|
#
|
662
690
|
class DescribeProblemRequest < Struct.new(
|
663
691
|
:problem_id)
|
692
|
+
SENSITIVE = []
|
664
693
|
include Aws::Structure
|
665
694
|
end
|
666
695
|
|
@@ -672,6 +701,7 @@ module Aws::ApplicationInsights
|
|
672
701
|
#
|
673
702
|
class DescribeProblemResponse < Struct.new(
|
674
703
|
:problem)
|
704
|
+
SENSITIVE = []
|
675
705
|
include Aws::Structure
|
676
706
|
end
|
677
707
|
|
@@ -685,6 +715,7 @@ module Aws::ApplicationInsights
|
|
685
715
|
#
|
686
716
|
class InternalServerException < Struct.new(
|
687
717
|
:message)
|
718
|
+
SENSITIVE = []
|
688
719
|
include Aws::Structure
|
689
720
|
end
|
690
721
|
|
@@ -711,6 +742,7 @@ module Aws::ApplicationInsights
|
|
711
742
|
class ListApplicationsRequest < Struct.new(
|
712
743
|
:max_results,
|
713
744
|
:next_token)
|
745
|
+
SENSITIVE = []
|
714
746
|
include Aws::Structure
|
715
747
|
end
|
716
748
|
|
@@ -728,6 +760,7 @@ module Aws::ApplicationInsights
|
|
728
760
|
class ListApplicationsResponse < Struct.new(
|
729
761
|
:application_info_list,
|
730
762
|
:next_token)
|
763
|
+
SENSITIVE = []
|
731
764
|
include Aws::Structure
|
732
765
|
end
|
733
766
|
|
@@ -760,6 +793,7 @@ module Aws::ApplicationInsights
|
|
760
793
|
:resource_group_name,
|
761
794
|
:max_results,
|
762
795
|
:next_token)
|
796
|
+
SENSITIVE = []
|
763
797
|
include Aws::Structure
|
764
798
|
end
|
765
799
|
|
@@ -776,6 +810,7 @@ module Aws::ApplicationInsights
|
|
776
810
|
class ListComponentsResponse < Struct.new(
|
777
811
|
:application_component_list,
|
778
812
|
:next_token)
|
813
|
+
SENSITIVE = []
|
779
814
|
include Aws::Structure
|
780
815
|
end
|
781
816
|
|
@@ -837,6 +872,7 @@ module Aws::ApplicationInsights
|
|
837
872
|
:event_status,
|
838
873
|
:max_results,
|
839
874
|
:next_token)
|
875
|
+
SENSITIVE = []
|
840
876
|
include Aws::Structure
|
841
877
|
end
|
842
878
|
|
@@ -857,6 +893,7 @@ module Aws::ApplicationInsights
|
|
857
893
|
class ListConfigurationHistoryResponse < Struct.new(
|
858
894
|
:event_list,
|
859
895
|
:next_token)
|
896
|
+
SENSITIVE = []
|
860
897
|
include Aws::Structure
|
861
898
|
end
|
862
899
|
|
@@ -889,6 +926,7 @@ module Aws::ApplicationInsights
|
|
889
926
|
:resource_group_name,
|
890
927
|
:max_results,
|
891
928
|
:next_token)
|
929
|
+
SENSITIVE = []
|
892
930
|
include Aws::Structure
|
893
931
|
end
|
894
932
|
|
@@ -911,6 +949,7 @@ module Aws::ApplicationInsights
|
|
911
949
|
:resource_group_name,
|
912
950
|
:log_pattern_sets,
|
913
951
|
:next_token)
|
952
|
+
SENSITIVE = []
|
914
953
|
include Aws::Structure
|
915
954
|
end
|
916
955
|
|
@@ -949,6 +988,7 @@ module Aws::ApplicationInsights
|
|
949
988
|
:pattern_set_name,
|
950
989
|
:max_results,
|
951
990
|
:next_token)
|
991
|
+
SENSITIVE = []
|
952
992
|
include Aws::Structure
|
953
993
|
end
|
954
994
|
|
@@ -971,6 +1011,7 @@ module Aws::ApplicationInsights
|
|
971
1011
|
:resource_group_name,
|
972
1012
|
:log_patterns,
|
973
1013
|
:next_token)
|
1014
|
+
SENSITIVE = []
|
974
1015
|
include Aws::Structure
|
975
1016
|
end
|
976
1017
|
|
@@ -1018,6 +1059,7 @@ module Aws::ApplicationInsights
|
|
1018
1059
|
:end_time,
|
1019
1060
|
:max_results,
|
1020
1061
|
:next_token)
|
1062
|
+
SENSITIVE = []
|
1021
1063
|
include Aws::Structure
|
1022
1064
|
end
|
1023
1065
|
|
@@ -1035,6 +1077,7 @@ module Aws::ApplicationInsights
|
|
1035
1077
|
class ListProblemsResponse < Struct.new(
|
1036
1078
|
:problem_list,
|
1037
1079
|
:next_token)
|
1080
|
+
SENSITIVE = []
|
1038
1081
|
include Aws::Structure
|
1039
1082
|
end
|
1040
1083
|
|
@@ -1054,6 +1097,7 @@ module Aws::ApplicationInsights
|
|
1054
1097
|
#
|
1055
1098
|
class ListTagsForResourceRequest < Struct.new(
|
1056
1099
|
:resource_arn)
|
1100
|
+
SENSITIVE = []
|
1057
1101
|
include Aws::Structure
|
1058
1102
|
end
|
1059
1103
|
|
@@ -1067,6 +1111,7 @@ module Aws::ApplicationInsights
|
|
1067
1111
|
#
|
1068
1112
|
class ListTagsForResourceResponse < Struct.new(
|
1069
1113
|
:tags)
|
1114
|
+
SENSITIVE = []
|
1070
1115
|
include Aws::Structure
|
1071
1116
|
end
|
1072
1117
|
|
@@ -1103,6 +1148,7 @@ module Aws::ApplicationInsights
|
|
1103
1148
|
:pattern_name,
|
1104
1149
|
:pattern,
|
1105
1150
|
:rank)
|
1151
|
+
SENSITIVE = []
|
1106
1152
|
include Aws::Structure
|
1107
1153
|
end
|
1108
1154
|
|
@@ -1289,6 +1335,7 @@ module Aws::ApplicationInsights
|
|
1289
1335
|
:x_ray_request_average_latency,
|
1290
1336
|
:x_ray_node_name,
|
1291
1337
|
:x_ray_node_type)
|
1338
|
+
SENSITIVE = []
|
1292
1339
|
include Aws::Structure
|
1293
1340
|
end
|
1294
1341
|
|
@@ -1347,6 +1394,7 @@ module Aws::ApplicationInsights
|
|
1347
1394
|
:severity_level,
|
1348
1395
|
:resource_group_name,
|
1349
1396
|
:feedback)
|
1397
|
+
SENSITIVE = []
|
1350
1398
|
include Aws::Structure
|
1351
1399
|
end
|
1352
1400
|
|
@@ -1360,6 +1408,7 @@ module Aws::ApplicationInsights
|
|
1360
1408
|
#
|
1361
1409
|
class RelatedObservations < Struct.new(
|
1362
1410
|
:observation_list)
|
1411
|
+
SENSITIVE = []
|
1363
1412
|
include Aws::Structure
|
1364
1413
|
end
|
1365
1414
|
|
@@ -1372,6 +1421,7 @@ module Aws::ApplicationInsights
|
|
1372
1421
|
#
|
1373
1422
|
class ResourceInUseException < Struct.new(
|
1374
1423
|
:message)
|
1424
|
+
SENSITIVE = []
|
1375
1425
|
include Aws::Structure
|
1376
1426
|
end
|
1377
1427
|
|
@@ -1384,6 +1434,7 @@ module Aws::ApplicationInsights
|
|
1384
1434
|
#
|
1385
1435
|
class ResourceNotFoundException < Struct.new(
|
1386
1436
|
:message)
|
1437
|
+
SENSITIVE = []
|
1387
1438
|
include Aws::Structure
|
1388
1439
|
end
|
1389
1440
|
|
@@ -1436,6 +1487,7 @@ module Aws::ApplicationInsights
|
|
1436
1487
|
class Tag < Struct.new(
|
1437
1488
|
:key,
|
1438
1489
|
:value)
|
1490
|
+
SENSITIVE = []
|
1439
1491
|
include Aws::Structure
|
1440
1492
|
end
|
1441
1493
|
|
@@ -1469,6 +1521,7 @@ module Aws::ApplicationInsights
|
|
1469
1521
|
class TagResourceRequest < Struct.new(
|
1470
1522
|
:resource_arn,
|
1471
1523
|
:tags)
|
1524
|
+
SENSITIVE = []
|
1472
1525
|
include Aws::Structure
|
1473
1526
|
end
|
1474
1527
|
|
@@ -1485,6 +1538,7 @@ module Aws::ApplicationInsights
|
|
1485
1538
|
#
|
1486
1539
|
class TagsAlreadyExistException < Struct.new(
|
1487
1540
|
:message)
|
1541
|
+
SENSITIVE = []
|
1488
1542
|
include Aws::Structure
|
1489
1543
|
end
|
1490
1544
|
|
@@ -1504,6 +1558,7 @@ module Aws::ApplicationInsights
|
|
1504
1558
|
class TooManyTagsException < Struct.new(
|
1505
1559
|
:message,
|
1506
1560
|
:resource_name)
|
1561
|
+
SENSITIVE = []
|
1507
1562
|
include Aws::Structure
|
1508
1563
|
end
|
1509
1564
|
|
@@ -1535,6 +1590,7 @@ module Aws::ApplicationInsights
|
|
1535
1590
|
class UntagResourceRequest < Struct.new(
|
1536
1591
|
:resource_arn,
|
1537
1592
|
:tag_keys)
|
1593
|
+
SENSITIVE = []
|
1538
1594
|
include Aws::Structure
|
1539
1595
|
end
|
1540
1596
|
|
@@ -1587,6 +1643,7 @@ module Aws::ApplicationInsights
|
|
1587
1643
|
:cwe_monitor_enabled,
|
1588
1644
|
:ops_item_sns_topic_arn,
|
1589
1645
|
:remove_sns_topic)
|
1646
|
+
SENSITIVE = []
|
1590
1647
|
include Aws::Structure
|
1591
1648
|
end
|
1592
1649
|
|
@@ -1598,6 +1655,7 @@ module Aws::ApplicationInsights
|
|
1598
1655
|
#
|
1599
1656
|
class UpdateApplicationResponse < Struct.new(
|
1600
1657
|
:application_info)
|
1658
|
+
SENSITIVE = []
|
1601
1659
|
include Aws::Structure
|
1602
1660
|
end
|
1603
1661
|
|
@@ -1653,6 +1711,7 @@ module Aws::ApplicationInsights
|
|
1653
1711
|
:monitor,
|
1654
1712
|
:tier,
|
1655
1713
|
:component_configuration)
|
1714
|
+
SENSITIVE = []
|
1656
1715
|
include Aws::Structure
|
1657
1716
|
end
|
1658
1717
|
|
@@ -1693,6 +1752,7 @@ module Aws::ApplicationInsights
|
|
1693
1752
|
:component_name,
|
1694
1753
|
:new_component_name,
|
1695
1754
|
:resource_list)
|
1755
|
+
SENSITIVE = []
|
1696
1756
|
include Aws::Structure
|
1697
1757
|
end
|
1698
1758
|
|
@@ -1739,6 +1799,7 @@ module Aws::ApplicationInsights
|
|
1739
1799
|
:pattern_name,
|
1740
1800
|
:pattern,
|
1741
1801
|
:rank)
|
1802
|
+
SENSITIVE = []
|
1742
1803
|
include Aws::Structure
|
1743
1804
|
end
|
1744
1805
|
|
@@ -1755,6 +1816,7 @@ module Aws::ApplicationInsights
|
|
1755
1816
|
class UpdateLogPatternResponse < Struct.new(
|
1756
1817
|
:resource_group_name,
|
1757
1818
|
:log_pattern)
|
1819
|
+
SENSITIVE = []
|
1758
1820
|
include Aws::Structure
|
1759
1821
|
end
|
1760
1822
|
|
@@ -1767,6 +1829,7 @@ module Aws::ApplicationInsights
|
|
1767
1829
|
#
|
1768
1830
|
class ValidationException < Struct.new(
|
1769
1831
|
:message)
|
1832
|
+
SENSITIVE = []
|
1770
1833
|
include Aws::Structure
|
1771
1834
|
end
|
1772
1835
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-applicationinsights
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.14.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-09-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.99.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.99.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|