aws-sdk-xray 1.23.0 → 1.28.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 +5 -5
- data/lib/aws-sdk-xray.rb +3 -1
- data/lib/aws-sdk-xray/client.rb +47 -21
- data/lib/aws-sdk-xray/client_api.rb +5 -0
- data/lib/aws-sdk-xray/errors.rb +2 -0
- data/lib/aws-sdk-xray/resource.rb +3 -7
- data/lib/aws-sdk-xray/types.rb +104 -3
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 5571bfaaba06d1bfeba874705b082671517517a1fefeb79672ada2a76ffa9553
|
4
|
+
data.tar.gz: b97078aa19e2eb61b4f195dec5e287b18acd56c378cfbe8e3f861575aabd30d7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 73feeec840386ca30598f54a3ce15d53a8efb9a1777e5d18eb1628b5b56a2fe8f1a0b37cdaf000c87b3b325b8b05e0424c239def70942d70e634fc1afe6ce50b
|
7
|
+
data.tar.gz: 4794472807ba98d9df54226d3de05eec263986b980feea23fd025710b0e7f437541ddd15051492bdebba5d747e0b7689ae44bbdf7a98f5a74f1440004b58fb94
|
data/lib/aws-sdk-xray.rb
CHANGED
@@ -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:
|
@@ -45,6 +47,6 @@ require_relative 'aws-sdk-xray/customizations'
|
|
45
47
|
# @service
|
46
48
|
module Aws::XRay
|
47
49
|
|
48
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.28.0'
|
49
51
|
|
50
52
|
end
|
data/lib/aws-sdk-xray/client.rb
CHANGED
@@ -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/rest_json.rb'
|
29
32
|
|
@@ -32,11 +35,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:xray)
|
|
32
35
|
module Aws::XRay
|
33
36
|
# An API client for XRay. To construct a client, you need to configure a `:region` and `:credentials`.
|
34
37
|
#
|
35
|
-
#
|
36
|
-
#
|
37
|
-
#
|
38
|
-
#
|
39
|
-
#
|
38
|
+
# client = Aws::XRay::Client.new(
|
39
|
+
# region: region_name,
|
40
|
+
# credentials: credentials,
|
41
|
+
# # ...
|
42
|
+
# )
|
40
43
|
#
|
41
44
|
# For details on configuring region and credentials see
|
42
45
|
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
@@ -69,6 +72,7 @@ module Aws::XRay
|
|
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::RestJson)
|
74
78
|
|
@@ -105,7 +109,7 @@ module Aws::XRay
|
|
105
109
|
# @option options [required, String] :region
|
106
110
|
# The AWS region to connect to. The configured `:region` is
|
107
111
|
# used to determine the service `:endpoint`. When not passed,
|
108
|
-
# a default `:region` is
|
112
|
+
# a default `:region` is searched for in the following locations:
|
109
113
|
#
|
110
114
|
# * `Aws.config[:region]`
|
111
115
|
# * `ENV['AWS_REGION']`
|
@@ -161,7 +165,7 @@ module Aws::XRay
|
|
161
165
|
# @option options [String] :endpoint
|
162
166
|
# The client endpoint is normally constructed from the `:region`
|
163
167
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
169
|
#
|
166
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +180,7 @@ module Aws::XRay
|
|
176
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
181
|
#
|
178
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
184
|
#
|
181
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
186
|
# The log formatter.
|
@@ -229,15 +233,19 @@ module Aws::XRay
|
|
229
233
|
#
|
230
234
|
# @option options [String] :retry_mode ("legacy")
|
231
235
|
# Specifies which retry algorithm to use. Values are:
|
232
|
-
#
|
233
|
-
#
|
234
|
-
#
|
235
|
-
#
|
236
|
-
#
|
237
|
-
#
|
238
|
-
#
|
239
|
-
#
|
240
|
-
#
|
236
|
+
#
|
237
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
238
|
+
# no retry mode is provided.
|
239
|
+
#
|
240
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
241
|
+
# This includes support for retry quotas, which limit the number of
|
242
|
+
# unsuccessful retries a client can make.
|
243
|
+
#
|
244
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
245
|
+
# functionality of `standard` mode along with automatic client side
|
246
|
+
# throttling. This is a provisional mode that may change behavior
|
247
|
+
# in the future.
|
248
|
+
#
|
241
249
|
#
|
242
250
|
# @option options [String] :secret_access_key
|
243
251
|
#
|
@@ -265,8 +273,7 @@ module Aws::XRay
|
|
265
273
|
#
|
266
274
|
# @option options [Integer] :http_read_timeout (60) The default
|
267
275
|
# number of seconds to wait for response data. This value can
|
268
|
-
# safely be set
|
269
|
-
# per-request on the session yielded by {#session_for}.
|
276
|
+
# safely be set per-request on the session.
|
270
277
|
#
|
271
278
|
# @option options [Float] :http_idle_timeout (5) The number of
|
272
279
|
# seconds a connection is allowed to sit idle before it is
|
@@ -278,7 +285,7 @@ module Aws::XRay
|
|
278
285
|
# request body. This option has no effect unless the request has
|
279
286
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
280
287
|
# disables this behaviour. This value can safely be set per
|
281
|
-
# request on the session
|
288
|
+
# request on the session.
|
282
289
|
#
|
283
290
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
284
291
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -321,6 +328,8 @@ module Aws::XRay
|
|
321
328
|
# * {Types::BatchGetTracesResult#unprocessed_trace_ids #unprocessed_trace_ids} => Array<String>
|
322
329
|
# * {Types::BatchGetTracesResult#next_token #next_token} => String
|
323
330
|
#
|
331
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
332
|
+
#
|
324
333
|
# @example Request syntax with placeholder values
|
325
334
|
#
|
326
335
|
# resp = client.batch_get_traces({
|
@@ -590,6 +599,8 @@ module Aws::XRay
|
|
590
599
|
# * {Types::GetGroupsResult#groups #groups} => Array<Types::GroupSummary>
|
591
600
|
# * {Types::GetGroupsResult#next_token #next_token} => String
|
592
601
|
#
|
602
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
603
|
+
#
|
593
604
|
# @example Request syntax with placeholder values
|
594
605
|
#
|
595
606
|
# resp = client.get_groups({
|
@@ -623,6 +634,8 @@ module Aws::XRay
|
|
623
634
|
# * {Types::GetSamplingRulesResult#sampling_rule_records #sampling_rule_records} => Array<Types::SamplingRuleRecord>
|
624
635
|
# * {Types::GetSamplingRulesResult#next_token #next_token} => String
|
625
636
|
#
|
637
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
638
|
+
#
|
626
639
|
# @example Request syntax with placeholder values
|
627
640
|
#
|
628
641
|
# resp = client.get_sampling_rules({
|
@@ -670,6 +683,8 @@ module Aws::XRay
|
|
670
683
|
# * {Types::GetSamplingStatisticSummariesResult#sampling_statistic_summaries #sampling_statistic_summaries} => Array<Types::SamplingStatisticSummary>
|
671
684
|
# * {Types::GetSamplingStatisticSummariesResult#next_token #next_token} => String
|
672
685
|
#
|
686
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
687
|
+
#
|
673
688
|
# @example Request syntax with placeholder values
|
674
689
|
#
|
675
690
|
# resp = client.get_sampling_statistic_summaries({
|
@@ -779,6 +794,8 @@ module Aws::XRay
|
|
779
794
|
# * {Types::GetServiceGraphResult#contains_old_group_versions #contains_old_group_versions} => Boolean
|
780
795
|
# * {Types::GetServiceGraphResult#next_token #next_token} => String
|
781
796
|
#
|
797
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
798
|
+
#
|
782
799
|
# @example Request syntax with placeholder values
|
783
800
|
#
|
784
801
|
# resp = client.get_service_graph({
|
@@ -883,6 +900,8 @@ module Aws::XRay
|
|
883
900
|
# * {Types::GetTimeSeriesServiceStatisticsResult#contains_old_group_versions #contains_old_group_versions} => Boolean
|
884
901
|
# * {Types::GetTimeSeriesServiceStatisticsResult#next_token #next_token} => String
|
885
902
|
#
|
903
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
904
|
+
#
|
886
905
|
# @example Request syntax with placeholder values
|
887
906
|
#
|
888
907
|
# resp = client.get_time_series_service_statistics({
|
@@ -943,6 +962,8 @@ module Aws::XRay
|
|
943
962
|
# * {Types::GetTraceGraphResult#services #services} => Array<Types::Service>
|
944
963
|
# * {Types::GetTraceGraphResult#next_token #next_token} => String
|
945
964
|
#
|
965
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
966
|
+
#
|
946
967
|
# @example Request syntax with placeholder values
|
947
968
|
#
|
948
969
|
# resp = client.get_trace_graph({
|
@@ -1064,6 +1085,8 @@ module Aws::XRay
|
|
1064
1085
|
# * {Types::GetTraceSummariesResult#traces_processed_count #traces_processed_count} => Integer
|
1065
1086
|
# * {Types::GetTraceSummariesResult#next_token #next_token} => String
|
1066
1087
|
#
|
1088
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1089
|
+
#
|
1067
1090
|
# @example Request syntax with placeholder values
|
1068
1091
|
#
|
1069
1092
|
# resp = client.get_trace_summaries({
|
@@ -1144,6 +1167,7 @@ module Aws::XRay
|
|
1144
1167
|
# resp.trace_summaries[0].fault_root_causes[0].services[0].entity_path[0].exceptions[0].message #=> String
|
1145
1168
|
# resp.trace_summaries[0].fault_root_causes[0].services[0].entity_path[0].remote #=> Boolean
|
1146
1169
|
# resp.trace_summaries[0].fault_root_causes[0].services[0].inferred #=> Boolean
|
1170
|
+
# resp.trace_summaries[0].fault_root_causes[0].client_impacting #=> Boolean
|
1147
1171
|
# resp.trace_summaries[0].error_root_causes #=> Array
|
1148
1172
|
# resp.trace_summaries[0].error_root_causes[0].services #=> Array
|
1149
1173
|
# resp.trace_summaries[0].error_root_causes[0].services[0].name #=> String
|
@@ -1158,6 +1182,7 @@ module Aws::XRay
|
|
1158
1182
|
# resp.trace_summaries[0].error_root_causes[0].services[0].entity_path[0].exceptions[0].message #=> String
|
1159
1183
|
# resp.trace_summaries[0].error_root_causes[0].services[0].entity_path[0].remote #=> Boolean
|
1160
1184
|
# resp.trace_summaries[0].error_root_causes[0].services[0].inferred #=> Boolean
|
1185
|
+
# resp.trace_summaries[0].error_root_causes[0].client_impacting #=> Boolean
|
1161
1186
|
# resp.trace_summaries[0].response_time_root_causes #=> Array
|
1162
1187
|
# resp.trace_summaries[0].response_time_root_causes[0].services #=> Array
|
1163
1188
|
# resp.trace_summaries[0].response_time_root_causes[0].services[0].name #=> String
|
@@ -1170,6 +1195,7 @@ module Aws::XRay
|
|
1170
1195
|
# resp.trace_summaries[0].response_time_root_causes[0].services[0].entity_path[0].coverage #=> Float
|
1171
1196
|
# resp.trace_summaries[0].response_time_root_causes[0].services[0].entity_path[0].remote #=> Boolean
|
1172
1197
|
# resp.trace_summaries[0].response_time_root_causes[0].services[0].inferred #=> Boolean
|
1198
|
+
# resp.trace_summaries[0].response_time_root_causes[0].client_impacting #=> Boolean
|
1173
1199
|
# resp.trace_summaries[0].revision #=> Integer
|
1174
1200
|
# resp.trace_summaries[0].matched_event_time #=> Time
|
1175
1201
|
# resp.approximate_time #=> Time
|
@@ -1472,7 +1498,7 @@ module Aws::XRay
|
|
1472
1498
|
params: params,
|
1473
1499
|
config: config)
|
1474
1500
|
context[:gem_name] = 'aws-sdk-xray'
|
1475
|
-
context[:gem_version] = '1.
|
1501
|
+
context[:gem_version] = '1.28.0'
|
1476
1502
|
Seahorse::Client::Request.new(handlers, context)
|
1477
1503
|
end
|
1478
1504
|
|
@@ -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:
|
@@ -271,6 +273,7 @@ module Aws::XRay
|
|
271
273
|
EncryptionConfig.struct_class = Types::EncryptionConfig
|
272
274
|
|
273
275
|
ErrorRootCause.add_member(:services, Shapes::ShapeRef.new(shape: ErrorRootCauseServices, location_name: "Services"))
|
276
|
+
ErrorRootCause.add_member(:client_impacting, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "ClientImpacting"))
|
274
277
|
ErrorRootCause.struct_class = Types::ErrorRootCause
|
275
278
|
|
276
279
|
ErrorRootCauseEntity.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "Name"))
|
@@ -298,6 +301,7 @@ module Aws::XRay
|
|
298
301
|
ErrorStatistics.struct_class = Types::ErrorStatistics
|
299
302
|
|
300
303
|
FaultRootCause.add_member(:services, Shapes::ShapeRef.new(shape: FaultRootCauseServices, location_name: "Services"))
|
304
|
+
FaultRootCause.add_member(:client_impacting, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "ClientImpacting"))
|
301
305
|
FaultRootCause.struct_class = Types::FaultRootCause
|
302
306
|
|
303
307
|
FaultRootCauseEntity.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "Name"))
|
@@ -471,6 +475,7 @@ module Aws::XRay
|
|
471
475
|
ResourceARNDetail.struct_class = Types::ResourceARNDetail
|
472
476
|
|
473
477
|
ResponseTimeRootCause.add_member(:services, Shapes::ShapeRef.new(shape: ResponseTimeRootCauseServices, location_name: "Services"))
|
478
|
+
ResponseTimeRootCause.add_member(:client_impacting, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "ClientImpacting"))
|
474
479
|
ResponseTimeRootCause.struct_class = Types::ResponseTimeRootCause
|
475
480
|
|
476
481
|
ResponseTimeRootCauseEntity.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "Name"))
|
data/lib/aws-sdk-xray/errors.rb
CHANGED
@@ -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:
|
@@ -6,13 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::XRay
|
9
|
-
|
10
|
-
# To create a resource object:
|
11
|
-
# resource = Aws::XRay::Resource.new(region: 'us-west-2')
|
12
|
-
# You can supply a client object with custom configuration that will be used for all resource operations.
|
13
|
-
# If you do not pass +:client+, a default client will be constructed.
|
14
|
-
# client = Aws::XRay::Client.new(region: 'us-west-2')
|
15
|
-
# resource = Aws::XRay::Resource.new(client: client)
|
11
|
+
|
16
12
|
class Resource
|
17
13
|
|
18
14
|
# @param options ({})
|
data/lib/aws-sdk-xray/types.rb
CHANGED
@@ -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:
|
@@ -28,6 +30,7 @@ module Aws::XRay
|
|
28
30
|
:name,
|
29
31
|
:names,
|
30
32
|
:type)
|
33
|
+
SENSITIVE = []
|
31
34
|
include Aws::Structure
|
32
35
|
end
|
33
36
|
|
@@ -52,6 +55,7 @@ module Aws::XRay
|
|
52
55
|
:number_value,
|
53
56
|
:boolean_value,
|
54
57
|
:string_value)
|
58
|
+
SENSITIVE = []
|
55
59
|
include Aws::Structure
|
56
60
|
end
|
57
61
|
|
@@ -65,6 +69,7 @@ module Aws::XRay
|
|
65
69
|
#
|
66
70
|
class AvailabilityZoneDetail < Struct.new(
|
67
71
|
:name)
|
72
|
+
SENSITIVE = []
|
68
73
|
include Aws::Structure
|
69
74
|
end
|
70
75
|
|
@@ -107,6 +112,7 @@ module Aws::XRay
|
|
107
112
|
:http_code_5_xx_count,
|
108
113
|
:unknown_host_count,
|
109
114
|
:other_count)
|
115
|
+
SENSITIVE = []
|
110
116
|
include Aws::Structure
|
111
117
|
end
|
112
118
|
|
@@ -131,6 +137,7 @@ module Aws::XRay
|
|
131
137
|
class BatchGetTracesRequest < Struct.new(
|
132
138
|
:trace_ids,
|
133
139
|
:next_token)
|
140
|
+
SENSITIVE = []
|
134
141
|
include Aws::Structure
|
135
142
|
end
|
136
143
|
|
@@ -152,6 +159,7 @@ module Aws::XRay
|
|
152
159
|
:traces,
|
153
160
|
:unprocessed_trace_ids,
|
154
161
|
:next_token)
|
162
|
+
SENSITIVE = []
|
155
163
|
include Aws::Structure
|
156
164
|
end
|
157
165
|
|
@@ -177,6 +185,7 @@ module Aws::XRay
|
|
177
185
|
class CreateGroupRequest < Struct.new(
|
178
186
|
:group_name,
|
179
187
|
:filter_expression)
|
188
|
+
SENSITIVE = []
|
180
189
|
include Aws::Structure
|
181
190
|
end
|
182
191
|
|
@@ -190,6 +199,7 @@ module Aws::XRay
|
|
190
199
|
#
|
191
200
|
class CreateGroupResult < Struct.new(
|
192
201
|
:group)
|
202
|
+
SENSITIVE = []
|
193
203
|
include Aws::Structure
|
194
204
|
end
|
195
205
|
|
@@ -224,6 +234,7 @@ module Aws::XRay
|
|
224
234
|
#
|
225
235
|
class CreateSamplingRuleRequest < Struct.new(
|
226
236
|
:sampling_rule)
|
237
|
+
SENSITIVE = []
|
227
238
|
include Aws::Structure
|
228
239
|
end
|
229
240
|
|
@@ -235,6 +246,7 @@ module Aws::XRay
|
|
235
246
|
#
|
236
247
|
class CreateSamplingRuleResult < Struct.new(
|
237
248
|
:sampling_rule_record)
|
249
|
+
SENSITIVE = []
|
238
250
|
include Aws::Structure
|
239
251
|
end
|
240
252
|
|
@@ -259,6 +271,7 @@ module Aws::XRay
|
|
259
271
|
class DeleteGroupRequest < Struct.new(
|
260
272
|
:group_name,
|
261
273
|
:group_arn)
|
274
|
+
SENSITIVE = []
|
262
275
|
include Aws::Structure
|
263
276
|
end
|
264
277
|
|
@@ -289,6 +302,7 @@ module Aws::XRay
|
|
289
302
|
class DeleteSamplingRuleRequest < Struct.new(
|
290
303
|
:rule_name,
|
291
304
|
:rule_arn)
|
305
|
+
SENSITIVE = []
|
292
306
|
include Aws::Structure
|
293
307
|
end
|
294
308
|
|
@@ -300,6 +314,7 @@ module Aws::XRay
|
|
300
314
|
#
|
301
315
|
class DeleteSamplingRuleResult < Struct.new(
|
302
316
|
:sampling_rule_record)
|
317
|
+
SENSITIVE = []
|
303
318
|
include Aws::Structure
|
304
319
|
end
|
305
320
|
|
@@ -339,6 +354,7 @@ module Aws::XRay
|
|
339
354
|
:summary_statistics,
|
340
355
|
:response_time_histogram,
|
341
356
|
:aliases)
|
357
|
+
SENSITIVE = []
|
342
358
|
include Aws::Structure
|
343
359
|
end
|
344
360
|
|
@@ -375,6 +391,7 @@ module Aws::XRay
|
|
375
391
|
:fault_statistics,
|
376
392
|
:total_count,
|
377
393
|
:total_response_time)
|
394
|
+
SENSITIVE = []
|
378
395
|
include Aws::Structure
|
379
396
|
end
|
380
397
|
|
@@ -402,6 +419,7 @@ module Aws::XRay
|
|
402
419
|
:key_id,
|
403
420
|
:status,
|
404
421
|
:type)
|
422
|
+
SENSITIVE = []
|
405
423
|
include Aws::Structure
|
406
424
|
end
|
407
425
|
|
@@ -412,10 +430,16 @@ module Aws::XRay
|
|
412
430
|
# segment and it contains a name, account ID, type, and inferred flag.
|
413
431
|
# @return [Array<Types::ErrorRootCauseService>]
|
414
432
|
#
|
433
|
+
# @!attribute [rw] client_impacting
|
434
|
+
# A flag that denotes that the root cause impacts the trace client.
|
435
|
+
# @return [Boolean]
|
436
|
+
#
|
415
437
|
# @see http://docs.aws.amazon.com/goto/WebAPI/xray-2016-04-12/ErrorRootCause AWS API Documentation
|
416
438
|
#
|
417
439
|
class ErrorRootCause < Struct.new(
|
418
|
-
:services
|
440
|
+
:services,
|
441
|
+
:client_impacting)
|
442
|
+
SENSITIVE = []
|
419
443
|
include Aws::Structure
|
420
444
|
end
|
421
445
|
|
@@ -440,6 +464,7 @@ module Aws::XRay
|
|
440
464
|
:name,
|
441
465
|
:exceptions,
|
442
466
|
:remote)
|
467
|
+
SENSITIVE = []
|
443
468
|
include Aws::Structure
|
444
469
|
end
|
445
470
|
|
@@ -480,6 +505,7 @@ module Aws::XRay
|
|
480
505
|
:account_id,
|
481
506
|
:entity_path,
|
482
507
|
:inferred)
|
508
|
+
SENSITIVE = []
|
483
509
|
include Aws::Structure
|
484
510
|
end
|
485
511
|
|
@@ -507,6 +533,7 @@ module Aws::XRay
|
|
507
533
|
:throttle_count,
|
508
534
|
:other_count,
|
509
535
|
:total_count)
|
536
|
+
SENSITIVE = []
|
510
537
|
include Aws::Structure
|
511
538
|
end
|
512
539
|
|
@@ -517,10 +544,16 @@ module Aws::XRay
|
|
517
544
|
# it contains a name, account ID, type, and inferred flag.
|
518
545
|
# @return [Array<Types::FaultRootCauseService>]
|
519
546
|
#
|
547
|
+
# @!attribute [rw] client_impacting
|
548
|
+
# A flag that denotes that the root cause impacts the trace client.
|
549
|
+
# @return [Boolean]
|
550
|
+
#
|
520
551
|
# @see http://docs.aws.amazon.com/goto/WebAPI/xray-2016-04-12/FaultRootCause AWS API Documentation
|
521
552
|
#
|
522
553
|
class FaultRootCause < Struct.new(
|
523
|
-
:services
|
554
|
+
:services,
|
555
|
+
:client_impacting)
|
556
|
+
SENSITIVE = []
|
524
557
|
include Aws::Structure
|
525
558
|
end
|
526
559
|
|
@@ -545,6 +578,7 @@ module Aws::XRay
|
|
545
578
|
:name,
|
546
579
|
:exceptions,
|
547
580
|
:remote)
|
581
|
+
SENSITIVE = []
|
548
582
|
include Aws::Structure
|
549
583
|
end
|
550
584
|
|
@@ -585,6 +619,7 @@ module Aws::XRay
|
|
585
619
|
:account_id,
|
586
620
|
:entity_path,
|
587
621
|
:inferred)
|
622
|
+
SENSITIVE = []
|
588
623
|
include Aws::Structure
|
589
624
|
end
|
590
625
|
|
@@ -606,6 +641,7 @@ module Aws::XRay
|
|
606
641
|
class FaultStatistics < Struct.new(
|
607
642
|
:other_count,
|
608
643
|
:total_count)
|
644
|
+
SENSITIVE = []
|
609
645
|
include Aws::Structure
|
610
646
|
end
|
611
647
|
|
@@ -623,6 +659,7 @@ module Aws::XRay
|
|
623
659
|
#
|
624
660
|
class GetEncryptionConfigResult < Struct.new(
|
625
661
|
:encryption_config)
|
662
|
+
SENSITIVE = []
|
626
663
|
include Aws::Structure
|
627
664
|
end
|
628
665
|
|
@@ -647,6 +684,7 @@ module Aws::XRay
|
|
647
684
|
class GetGroupRequest < Struct.new(
|
648
685
|
:group_name,
|
649
686
|
:group_arn)
|
687
|
+
SENSITIVE = []
|
650
688
|
include Aws::Structure
|
651
689
|
end
|
652
690
|
|
@@ -660,6 +698,7 @@ module Aws::XRay
|
|
660
698
|
#
|
661
699
|
class GetGroupResult < Struct.new(
|
662
700
|
:group)
|
701
|
+
SENSITIVE = []
|
663
702
|
include Aws::Structure
|
664
703
|
end
|
665
704
|
|
@@ -678,6 +717,7 @@ module Aws::XRay
|
|
678
717
|
#
|
679
718
|
class GetGroupsRequest < Struct.new(
|
680
719
|
:next_token)
|
720
|
+
SENSITIVE = []
|
681
721
|
include Aws::Structure
|
682
722
|
end
|
683
723
|
|
@@ -694,6 +734,7 @@ module Aws::XRay
|
|
694
734
|
class GetGroupsResult < Struct.new(
|
695
735
|
:groups,
|
696
736
|
:next_token)
|
737
|
+
SENSITIVE = []
|
697
738
|
include Aws::Structure
|
698
739
|
end
|
699
740
|
|
@@ -712,6 +753,7 @@ module Aws::XRay
|
|
712
753
|
#
|
713
754
|
class GetSamplingRulesRequest < Struct.new(
|
714
755
|
:next_token)
|
756
|
+
SENSITIVE = []
|
715
757
|
include Aws::Structure
|
716
758
|
end
|
717
759
|
|
@@ -728,6 +770,7 @@ module Aws::XRay
|
|
728
770
|
class GetSamplingRulesResult < Struct.new(
|
729
771
|
:sampling_rule_records,
|
730
772
|
:next_token)
|
773
|
+
SENSITIVE = []
|
731
774
|
include Aws::Structure
|
732
775
|
end
|
733
776
|
|
@@ -746,6 +789,7 @@ module Aws::XRay
|
|
746
789
|
#
|
747
790
|
class GetSamplingStatisticSummariesRequest < Struct.new(
|
748
791
|
:next_token)
|
792
|
+
SENSITIVE = []
|
749
793
|
include Aws::Structure
|
750
794
|
end
|
751
795
|
|
@@ -763,6 +807,7 @@ module Aws::XRay
|
|
763
807
|
class GetSamplingStatisticSummariesResult < Struct.new(
|
764
808
|
:sampling_statistic_summaries,
|
765
809
|
:next_token)
|
810
|
+
SENSITIVE = []
|
766
811
|
include Aws::Structure
|
767
812
|
end
|
768
813
|
|
@@ -791,6 +836,7 @@ module Aws::XRay
|
|
791
836
|
#
|
792
837
|
class GetSamplingTargetsRequest < Struct.new(
|
793
838
|
:sampling_statistics_documents)
|
839
|
+
SENSITIVE = []
|
794
840
|
include Aws::Structure
|
795
841
|
end
|
796
842
|
|
@@ -816,6 +862,7 @@ module Aws::XRay
|
|
816
862
|
:sampling_target_documents,
|
817
863
|
:last_rule_modification,
|
818
864
|
:unprocessed_statistics)
|
865
|
+
SENSITIVE = []
|
819
866
|
include Aws::Structure
|
820
867
|
end
|
821
868
|
|
@@ -858,6 +905,7 @@ module Aws::XRay
|
|
858
905
|
:group_name,
|
859
906
|
:group_arn,
|
860
907
|
:next_token)
|
908
|
+
SENSITIVE = []
|
861
909
|
include Aws::Structure
|
862
910
|
end
|
863
911
|
|
@@ -892,6 +940,7 @@ module Aws::XRay
|
|
892
940
|
:services,
|
893
941
|
:contains_old_group_versions,
|
894
942
|
:next_token)
|
943
|
+
SENSITIVE = []
|
895
944
|
include Aws::Structure
|
896
945
|
end
|
897
946
|
|
@@ -949,6 +998,7 @@ module Aws::XRay
|
|
949
998
|
:entity_selector_expression,
|
950
999
|
:period,
|
951
1000
|
:next_token)
|
1001
|
+
SENSITIVE = []
|
952
1002
|
include Aws::Structure
|
953
1003
|
end
|
954
1004
|
|
@@ -972,6 +1022,7 @@ module Aws::XRay
|
|
972
1022
|
:time_series_service_statistics,
|
973
1023
|
:contains_old_group_versions,
|
974
1024
|
:next_token)
|
1025
|
+
SENSITIVE = []
|
975
1026
|
include Aws::Structure
|
976
1027
|
end
|
977
1028
|
|
@@ -996,6 +1047,7 @@ module Aws::XRay
|
|
996
1047
|
class GetTraceGraphRequest < Struct.new(
|
997
1048
|
:trace_ids,
|
998
1049
|
:next_token)
|
1050
|
+
SENSITIVE = []
|
999
1051
|
include Aws::Structure
|
1000
1052
|
end
|
1001
1053
|
|
@@ -1012,6 +1064,7 @@ module Aws::XRay
|
|
1012
1064
|
class GetTraceGraphResult < Struct.new(
|
1013
1065
|
:services,
|
1014
1066
|
:next_token)
|
1067
|
+
SENSITIVE = []
|
1015
1068
|
include Aws::Structure
|
1016
1069
|
end
|
1017
1070
|
|
@@ -1074,6 +1127,7 @@ module Aws::XRay
|
|
1074
1127
|
:sampling_strategy,
|
1075
1128
|
:filter_expression,
|
1076
1129
|
:next_token)
|
1130
|
+
SENSITIVE = []
|
1077
1131
|
include Aws::Structure
|
1078
1132
|
end
|
1079
1133
|
|
@@ -1105,6 +1159,7 @@ module Aws::XRay
|
|
1105
1159
|
:approximate_time,
|
1106
1160
|
:traces_processed_count,
|
1107
1161
|
:next_token)
|
1162
|
+
SENSITIVE = []
|
1108
1163
|
include Aws::Structure
|
1109
1164
|
end
|
1110
1165
|
|
@@ -1128,6 +1183,7 @@ module Aws::XRay
|
|
1128
1183
|
:group_name,
|
1129
1184
|
:group_arn,
|
1130
1185
|
:filter_expression)
|
1186
|
+
SENSITIVE = []
|
1131
1187
|
include Aws::Structure
|
1132
1188
|
end
|
1133
1189
|
|
@@ -1151,6 +1207,7 @@ module Aws::XRay
|
|
1151
1207
|
:group_name,
|
1152
1208
|
:group_arn,
|
1153
1209
|
:filter_expression)
|
1210
|
+
SENSITIVE = []
|
1154
1211
|
include Aws::Structure
|
1155
1212
|
end
|
1156
1213
|
|
@@ -1171,6 +1228,7 @@ module Aws::XRay
|
|
1171
1228
|
class HistogramEntry < Struct.new(
|
1172
1229
|
:value,
|
1173
1230
|
:count)
|
1231
|
+
SENSITIVE = []
|
1174
1232
|
include Aws::Structure
|
1175
1233
|
end
|
1176
1234
|
|
@@ -1204,6 +1262,7 @@ module Aws::XRay
|
|
1204
1262
|
:http_method,
|
1205
1263
|
:user_agent,
|
1206
1264
|
:client_ip)
|
1265
|
+
SENSITIVE = []
|
1207
1266
|
include Aws::Structure
|
1208
1267
|
end
|
1209
1268
|
|
@@ -1217,6 +1276,7 @@ module Aws::XRay
|
|
1217
1276
|
#
|
1218
1277
|
class InstanceIdDetail < Struct.new(
|
1219
1278
|
:id)
|
1279
|
+
SENSITIVE = []
|
1220
1280
|
include Aws::Structure
|
1221
1281
|
end
|
1222
1282
|
|
@@ -1229,6 +1289,7 @@ module Aws::XRay
|
|
1229
1289
|
#
|
1230
1290
|
class InvalidRequestException < Struct.new(
|
1231
1291
|
:message)
|
1292
|
+
SENSITIVE = []
|
1232
1293
|
include Aws::Structure
|
1233
1294
|
end
|
1234
1295
|
|
@@ -1268,6 +1329,7 @@ module Aws::XRay
|
|
1268
1329
|
class PutEncryptionConfigRequest < Struct.new(
|
1269
1330
|
:key_id,
|
1270
1331
|
:type)
|
1332
|
+
SENSITIVE = []
|
1271
1333
|
include Aws::Structure
|
1272
1334
|
end
|
1273
1335
|
|
@@ -1279,6 +1341,7 @@ module Aws::XRay
|
|
1279
1341
|
#
|
1280
1342
|
class PutEncryptionConfigResult < Struct.new(
|
1281
1343
|
:encryption_config)
|
1344
|
+
SENSITIVE = []
|
1282
1345
|
include Aws::Structure
|
1283
1346
|
end
|
1284
1347
|
|
@@ -1327,6 +1390,7 @@ module Aws::XRay
|
|
1327
1390
|
:ec2_instance_id,
|
1328
1391
|
:hostname,
|
1329
1392
|
:resource_arn)
|
1393
|
+
SENSITIVE = []
|
1330
1394
|
include Aws::Structure
|
1331
1395
|
end
|
1332
1396
|
|
@@ -1350,6 +1414,7 @@ module Aws::XRay
|
|
1350
1414
|
#
|
1351
1415
|
class PutTraceSegmentsRequest < Struct.new(
|
1352
1416
|
:trace_segment_documents)
|
1417
|
+
SENSITIVE = []
|
1353
1418
|
include Aws::Structure
|
1354
1419
|
end
|
1355
1420
|
|
@@ -1361,6 +1426,7 @@ module Aws::XRay
|
|
1361
1426
|
#
|
1362
1427
|
class PutTraceSegmentsResult < Struct.new(
|
1363
1428
|
:unprocessed_trace_segments)
|
1429
|
+
SENSITIVE = []
|
1364
1430
|
include Aws::Structure
|
1365
1431
|
end
|
1366
1432
|
|
@@ -1374,6 +1440,7 @@ module Aws::XRay
|
|
1374
1440
|
#
|
1375
1441
|
class ResourceARNDetail < Struct.new(
|
1376
1442
|
:arn)
|
1443
|
+
SENSITIVE = []
|
1377
1444
|
include Aws::Structure
|
1378
1445
|
end
|
1379
1446
|
|
@@ -1384,10 +1451,16 @@ module Aws::XRay
|
|
1384
1451
|
# contains a name, account ID, type, and inferred flag.
|
1385
1452
|
# @return [Array<Types::ResponseTimeRootCauseService>]
|
1386
1453
|
#
|
1454
|
+
# @!attribute [rw] client_impacting
|
1455
|
+
# A flag that denotes that the root cause impacts the trace client.
|
1456
|
+
# @return [Boolean]
|
1457
|
+
#
|
1387
1458
|
# @see http://docs.aws.amazon.com/goto/WebAPI/xray-2016-04-12/ResponseTimeRootCause AWS API Documentation
|
1388
1459
|
#
|
1389
1460
|
class ResponseTimeRootCause < Struct.new(
|
1390
|
-
:services
|
1461
|
+
:services,
|
1462
|
+
:client_impacting)
|
1463
|
+
SENSITIVE = []
|
1391
1464
|
include Aws::Structure
|
1392
1465
|
end
|
1393
1466
|
|
@@ -1412,6 +1485,7 @@ module Aws::XRay
|
|
1412
1485
|
:name,
|
1413
1486
|
:coverage,
|
1414
1487
|
:remote)
|
1488
|
+
SENSITIVE = []
|
1415
1489
|
include Aws::Structure
|
1416
1490
|
end
|
1417
1491
|
|
@@ -1452,6 +1526,7 @@ module Aws::XRay
|
|
1452
1526
|
:account_id,
|
1453
1527
|
:entity_path,
|
1454
1528
|
:inferred)
|
1529
|
+
SENSITIVE = []
|
1455
1530
|
include Aws::Structure
|
1456
1531
|
end
|
1457
1532
|
|
@@ -1470,6 +1545,7 @@ module Aws::XRay
|
|
1470
1545
|
class RootCauseException < Struct.new(
|
1471
1546
|
:name,
|
1472
1547
|
:message)
|
1548
|
+
SENSITIVE = []
|
1473
1549
|
include Aws::Structure
|
1474
1550
|
end
|
1475
1551
|
|
@@ -1482,6 +1558,7 @@ module Aws::XRay
|
|
1482
1558
|
#
|
1483
1559
|
class RuleLimitExceededException < Struct.new(
|
1484
1560
|
:message)
|
1561
|
+
SENSITIVE = []
|
1485
1562
|
include Aws::Structure
|
1486
1563
|
end
|
1487
1564
|
|
@@ -1586,6 +1663,7 @@ module Aws::XRay
|
|
1586
1663
|
:url_path,
|
1587
1664
|
:version,
|
1588
1665
|
:attributes)
|
1666
|
+
SENSITIVE = []
|
1589
1667
|
include Aws::Structure
|
1590
1668
|
end
|
1591
1669
|
|
@@ -1609,6 +1687,7 @@ module Aws::XRay
|
|
1609
1687
|
:sampling_rule,
|
1610
1688
|
:created_at,
|
1611
1689
|
:modified_at)
|
1690
|
+
SENSITIVE = []
|
1612
1691
|
include Aws::Structure
|
1613
1692
|
end
|
1614
1693
|
|
@@ -1704,6 +1783,7 @@ module Aws::XRay
|
|
1704
1783
|
:http_method,
|
1705
1784
|
:url_path,
|
1706
1785
|
:attributes)
|
1786
|
+
SENSITIVE = []
|
1707
1787
|
include Aws::Structure
|
1708
1788
|
end
|
1709
1789
|
|
@@ -1738,6 +1818,7 @@ module Aws::XRay
|
|
1738
1818
|
:request_count,
|
1739
1819
|
:borrow_count,
|
1740
1820
|
:sampled_count)
|
1821
|
+
SENSITIVE = []
|
1741
1822
|
include Aws::Structure
|
1742
1823
|
end
|
1743
1824
|
|
@@ -1790,6 +1871,7 @@ module Aws::XRay
|
|
1790
1871
|
:request_count,
|
1791
1872
|
:sampled_count,
|
1792
1873
|
:borrow_count)
|
1874
|
+
SENSITIVE = []
|
1793
1875
|
include Aws::Structure
|
1794
1876
|
end
|
1795
1877
|
|
@@ -1816,6 +1898,7 @@ module Aws::XRay
|
|
1816
1898
|
class SamplingStrategy < Struct.new(
|
1817
1899
|
:name,
|
1818
1900
|
:value)
|
1901
|
+
SENSITIVE = []
|
1819
1902
|
include Aws::Structure
|
1820
1903
|
end
|
1821
1904
|
|
@@ -1854,6 +1937,7 @@ module Aws::XRay
|
|
1854
1937
|
:reservoir_quota,
|
1855
1938
|
:reservoir_quota_ttl,
|
1856
1939
|
:interval)
|
1940
|
+
SENSITIVE = []
|
1857
1941
|
include Aws::Structure
|
1858
1942
|
end
|
1859
1943
|
|
@@ -1882,6 +1966,7 @@ module Aws::XRay
|
|
1882
1966
|
class Segment < Struct.new(
|
1883
1967
|
:id,
|
1884
1968
|
:document)
|
1969
|
+
SENSITIVE = []
|
1885
1970
|
include Aws::Structure
|
1886
1971
|
end
|
1887
1972
|
|
@@ -1972,6 +2057,7 @@ module Aws::XRay
|
|
1972
2057
|
:summary_statistics,
|
1973
2058
|
:duration_histogram,
|
1974
2059
|
:response_time_histogram)
|
2060
|
+
SENSITIVE = []
|
1975
2061
|
include Aws::Structure
|
1976
2062
|
end
|
1977
2063
|
|
@@ -1994,6 +2080,7 @@ module Aws::XRay
|
|
1994
2080
|
:names,
|
1995
2081
|
:account_id,
|
1996
2082
|
:type)
|
2083
|
+
SENSITIVE = []
|
1997
2084
|
include Aws::Structure
|
1998
2085
|
end
|
1999
2086
|
|
@@ -2030,6 +2117,7 @@ module Aws::XRay
|
|
2030
2117
|
:fault_statistics,
|
2031
2118
|
:total_count,
|
2032
2119
|
:total_response_time)
|
2120
|
+
SENSITIVE = []
|
2033
2121
|
include Aws::Structure
|
2034
2122
|
end
|
2035
2123
|
|
@@ -2079,6 +2167,7 @@ module Aws::XRay
|
|
2079
2167
|
:segments_spillover_count,
|
2080
2168
|
:segments_rejected_count,
|
2081
2169
|
:backend_connection_errors)
|
2170
|
+
SENSITIVE = []
|
2082
2171
|
include Aws::Structure
|
2083
2172
|
end
|
2084
2173
|
|
@@ -2091,6 +2180,7 @@ module Aws::XRay
|
|
2091
2180
|
#
|
2092
2181
|
class ThrottledException < Struct.new(
|
2093
2182
|
:message)
|
2183
|
+
SENSITIVE = []
|
2094
2184
|
include Aws::Structure
|
2095
2185
|
end
|
2096
2186
|
|
@@ -2119,6 +2209,7 @@ module Aws::XRay
|
|
2119
2209
|
:edge_summary_statistics,
|
2120
2210
|
:service_summary_statistics,
|
2121
2211
|
:response_time_histogram)
|
2212
|
+
SENSITIVE = []
|
2122
2213
|
include Aws::Structure
|
2123
2214
|
end
|
2124
2215
|
|
@@ -2145,6 +2236,7 @@ module Aws::XRay
|
|
2145
2236
|
:id,
|
2146
2237
|
:duration,
|
2147
2238
|
:segments)
|
2239
|
+
SENSITIVE = []
|
2148
2240
|
include Aws::Structure
|
2149
2241
|
end
|
2150
2242
|
|
@@ -2265,6 +2357,7 @@ module Aws::XRay
|
|
2265
2357
|
:response_time_root_causes,
|
2266
2358
|
:revision,
|
2267
2359
|
:matched_event_time)
|
2360
|
+
SENSITIVE = []
|
2268
2361
|
include Aws::Structure
|
2269
2362
|
end
|
2270
2363
|
|
@@ -2283,6 +2376,7 @@ module Aws::XRay
|
|
2283
2376
|
class TraceUser < Struct.new(
|
2284
2377
|
:user_name,
|
2285
2378
|
:service_ids)
|
2379
|
+
SENSITIVE = []
|
2286
2380
|
include Aws::Structure
|
2287
2381
|
end
|
2288
2382
|
|
@@ -2307,6 +2401,7 @@ module Aws::XRay
|
|
2307
2401
|
:rule_name,
|
2308
2402
|
:error_code,
|
2309
2403
|
:message)
|
2404
|
+
SENSITIVE = []
|
2310
2405
|
include Aws::Structure
|
2311
2406
|
end
|
2312
2407
|
|
@@ -2330,6 +2425,7 @@ module Aws::XRay
|
|
2330
2425
|
:id,
|
2331
2426
|
:error_code,
|
2332
2427
|
:message)
|
2428
|
+
SENSITIVE = []
|
2333
2429
|
include Aws::Structure
|
2334
2430
|
end
|
2335
2431
|
|
@@ -2361,6 +2457,7 @@ module Aws::XRay
|
|
2361
2457
|
:group_name,
|
2362
2458
|
:group_arn,
|
2363
2459
|
:filter_expression)
|
2460
|
+
SENSITIVE = []
|
2364
2461
|
include Aws::Structure
|
2365
2462
|
end
|
2366
2463
|
|
@@ -2374,6 +2471,7 @@ module Aws::XRay
|
|
2374
2471
|
#
|
2375
2472
|
class UpdateGroupResult < Struct.new(
|
2376
2473
|
:group)
|
2474
|
+
SENSITIVE = []
|
2377
2475
|
include Aws::Structure
|
2378
2476
|
end
|
2379
2477
|
|
@@ -2407,6 +2505,7 @@ module Aws::XRay
|
|
2407
2505
|
#
|
2408
2506
|
class UpdateSamplingRuleRequest < Struct.new(
|
2409
2507
|
:sampling_rule_update)
|
2508
|
+
SENSITIVE = []
|
2410
2509
|
include Aws::Structure
|
2411
2510
|
end
|
2412
2511
|
|
@@ -2418,6 +2517,7 @@ module Aws::XRay
|
|
2418
2517
|
#
|
2419
2518
|
class UpdateSamplingRuleResult < Struct.new(
|
2420
2519
|
:sampling_rule_record)
|
2520
|
+
SENSITIVE = []
|
2421
2521
|
include Aws::Structure
|
2422
2522
|
end
|
2423
2523
|
|
@@ -2436,6 +2536,7 @@ module Aws::XRay
|
|
2436
2536
|
class ValueWithServiceIds < Struct.new(
|
2437
2537
|
:annotation_value,
|
2438
2538
|
:service_ids)
|
2539
|
+
SENSITIVE = []
|
2439
2540
|
include Aws::Structure
|
2440
2541
|
end
|
2441
2542
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-xray
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.28.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-06-23 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
|
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
81
81
|
version: '0'
|
82
82
|
requirements: []
|
83
83
|
rubyforge_project:
|
84
|
-
rubygems_version: 2.
|
84
|
+
rubygems_version: 2.7.6.2
|
85
85
|
signing_key:
|
86
86
|
specification_version: 4
|
87
87
|
summary: AWS SDK for Ruby - AWS X-Ray
|