aws-sdk-xray 1.22.0 → 1.27.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 43e730803966709850ffe2c4b469ae90182a4981
4
- data.tar.gz: 2fb535a3ddd482aa782feb725b780b75fe1a8095
2
+ SHA256:
3
+ metadata.gz: 50eeaa127792c4ac1dadce55aa26cd19d93c7b82dabb8178e960250b02670e80
4
+ data.tar.gz: 3378c424abef66825a35b39b0254e0701651f9717282c45b339f81bf683e467e
5
5
  SHA512:
6
- metadata.gz: 75b0b73872fd4c156eee099b3cb371b539719a638ff813d22f3867b15fb2ec4938f98eb0b8fc4d2e957da7c565912c449b19ba691f5ed953c47a4b91fe354379
7
- data.tar.gz: dc129737c40adafc2f665af5f966572d5ea3a2599e5b61514a9cd7e7702824067b62a6adaeb7bded12ce59313e389a10b3666cba3faf0dbe75830ab455dcf423
6
+ metadata.gz: 7e191451154d158fe6426998e61d9b7f7f7e22fa6bb6ecb6916d2629987c3ce57b8cd4ba3a9456f736022f4df73d0d3588e34aa71cb1924affbecad3fbec68e3
7
+ data.tar.gz: 2e9ee3f6513816c0f69756586f294d8478ce2e47edfa4472154fdf471c52b3156538ddc1193765bb532b39ed1eed3b0a216458be1737b9700aae3898dd16d7c6
@@ -24,17 +24,20 @@ require_relative 'aws-sdk-xray/customizations'
24
24
  # methods each accept a hash of request parameters and return a response
25
25
  # structure.
26
26
  #
27
+ # x_ray = Aws::XRay::Client.new
28
+ # resp = x_ray.batch_get_traces(params)
29
+ #
27
30
  # See {Client} for more information.
28
31
  #
29
32
  # # Errors
30
33
  #
31
- # Errors returned from AWS X-Ray all
32
- # extend {Errors::ServiceError}.
34
+ # Errors returned from AWS X-Ray are defined in the
35
+ # {Errors} module and all extend {Errors::ServiceError}.
33
36
  #
34
37
  # begin
35
38
  # # do stuff
36
39
  # rescue Aws::XRay::Errors::ServiceError
37
- # # rescues all service API errors
40
+ # # rescues all AWS X-Ray API errors
38
41
  # end
39
42
  #
40
43
  # See {Errors} for more information.
@@ -42,6 +45,6 @@ require_relative 'aws-sdk-xray/customizations'
42
45
  # @service
43
46
  module Aws::XRay
44
47
 
45
- GEM_VERSION = '1.22.0'
48
+ GEM_VERSION = '1.27.1'
46
49
 
47
50
  end
@@ -24,12 +24,25 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
24
24
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
25
25
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
26
26
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
27
+ require 'aws-sdk-core/plugins/http_checksum.rb'
27
28
  require 'aws-sdk-core/plugins/signature_v4.rb'
28
29
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
29
30
 
30
31
  Aws::Plugins::GlobalConfiguration.add_identifier(:xray)
31
32
 
32
33
  module Aws::XRay
34
+ # An API client for XRay. To construct a client, you need to configure a `:region` and `:credentials`.
35
+ #
36
+ # client = Aws::XRay::Client.new(
37
+ # region: region_name,
38
+ # credentials: credentials,
39
+ # # ...
40
+ # )
41
+ #
42
+ # For details on configuring region and credentials see
43
+ # the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
44
+ #
45
+ # See {#initialize} for a full list of supported configuration options.
33
46
  class Client < Seahorse::Client::Base
34
47
 
35
48
  include Aws::ClientStubs
@@ -57,6 +70,7 @@ module Aws::XRay
57
70
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
58
71
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
59
72
  add_plugin(Aws::Plugins::TransferEncoding)
73
+ add_plugin(Aws::Plugins::HttpChecksum)
60
74
  add_plugin(Aws::Plugins::SignatureV4)
61
75
  add_plugin(Aws::Plugins::Protocols::RestJson)
62
76
 
@@ -93,7 +107,7 @@ module Aws::XRay
93
107
  # @option options [required, String] :region
94
108
  # The AWS region to connect to. The configured `:region` is
95
109
  # used to determine the service `:endpoint`. When not passed,
96
- # a default `:region` is search for in the following locations:
110
+ # a default `:region` is searched for in the following locations:
97
111
  #
98
112
  # * `Aws.config[:region]`
99
113
  # * `ENV['AWS_REGION']`
@@ -108,6 +122,12 @@ module Aws::XRay
108
122
  # When set to `true`, a thread polling for endpoints will be running in
109
123
  # the background every 60 secs (default). Defaults to `false`.
110
124
  #
125
+ # @option options [Boolean] :adaptive_retry_wait_to_fill (true)
126
+ # Used only in `adaptive` retry mode. When true, the request will sleep
127
+ # until there is sufficent client side capacity to retry the request.
128
+ # When false, the request will raise a `RetryCapacityNotAvailableError` and will
129
+ # not retry instead of sleeping.
130
+ #
111
131
  # @option options [Boolean] :client_side_monitoring (false)
112
132
  # When `true`, client-side metrics will be collected for all API requests from
113
133
  # this client.
@@ -132,6 +152,10 @@ module Aws::XRay
132
152
  # When `true`, an attempt is made to coerce request parameters into
133
153
  # the required types.
134
154
  #
155
+ # @option options [Boolean] :correct_clock_skew (true)
156
+ # Used only in `standard` and adaptive retry modes. Specifies whether to apply
157
+ # a clock skew correction and retry requests with skewed client clocks.
158
+ #
135
159
  # @option options [Boolean] :disable_host_prefix_injection (false)
136
160
  # Set to true to disable SDK automatically adding host prefix
137
161
  # to default service endpoint when available.
@@ -139,7 +163,7 @@ module Aws::XRay
139
163
  # @option options [String] :endpoint
140
164
  # The client endpoint is normally constructed from the `:region`
141
165
  # option. You should only configure an `:endpoint` when connecting
142
- # to test endpoints. This should be avalid HTTP(S) URI.
166
+ # to test or custom endpoints. This should be a valid HTTP(S) URI.
143
167
  #
144
168
  # @option options [Integer] :endpoint_cache_max_entries (1000)
145
169
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -154,7 +178,7 @@ module Aws::XRay
154
178
  # requests fetching endpoints information. Defaults to 60 sec.
155
179
  #
156
180
  # @option options [Boolean] :endpoint_discovery (false)
157
- # When set to `true`, endpoint discovery will be enabled for operations when available. Defaults to `false`.
181
+ # When set to `true`, endpoint discovery will be enabled for operations when available.
158
182
  #
159
183
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
160
184
  # The log formatter.
@@ -166,15 +190,29 @@ module Aws::XRay
166
190
  # The Logger instance to send log messages to. If this option
167
191
  # is not set, logging will be disabled.
168
192
  #
193
+ # @option options [Integer] :max_attempts (3)
194
+ # An integer representing the maximum number attempts that will be made for
195
+ # a single request, including the initial attempt. For example,
196
+ # setting this value to 5 will result in a request being retried up to
197
+ # 4 times. Used in `standard` and `adaptive` retry modes.
198
+ #
169
199
  # @option options [String] :profile ("default")
170
200
  # Used when loading credentials from the shared credentials file
171
201
  # at HOME/.aws/credentials. When not specified, 'default' is used.
172
202
  #
203
+ # @option options [Proc] :retry_backoff
204
+ # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
205
+ # This option is only used in the `legacy` retry mode.
206
+ #
173
207
  # @option options [Float] :retry_base_delay (0.3)
174
- # The base delay in seconds used by the default backoff function.
208
+ # The base delay in seconds used by the default backoff function. This option
209
+ # is only used in the `legacy` retry mode.
175
210
  #
176
211
  # @option options [Symbol] :retry_jitter (:none)
177
- # A delay randomiser function used by the default backoff function. Some predefined functions can be referenced by name - :none, :equal, :full, otherwise a Proc that takes and returns a number.
212
+ # A delay randomiser function used by the default backoff function.
213
+ # Some predefined functions can be referenced by name - :none, :equal, :full,
214
+ # otherwise a Proc that takes and returns a number. This option is only used
215
+ # in the `legacy` retry mode.
178
216
  #
179
217
  # @see https://www.awsarchitectureblog.com/2015/03/backoff.html
180
218
  #
@@ -182,11 +220,30 @@ module Aws::XRay
182
220
  # The maximum number of times to retry failed requests. Only
183
221
  # ~ 500 level server errors and certain ~ 400 level client errors
184
222
  # are retried. Generally, these are throttling errors, data
185
- # checksum errors, networking errors, timeout errors and auth
186
- # errors from expired credentials.
223
+ # checksum errors, networking errors, timeout errors, auth errors,
224
+ # endpoint discovery, and errors from expired credentials.
225
+ # This option is only used in the `legacy` retry mode.
187
226
  #
188
227
  # @option options [Integer] :retry_max_delay (0)
189
- # The maximum number of seconds to delay between retries (0 for no limit) used by the default backoff function.
228
+ # The maximum number of seconds to delay between retries (0 for no limit)
229
+ # used by the default backoff function. This option is only used in the
230
+ # `legacy` retry mode.
231
+ #
232
+ # @option options [String] :retry_mode ("legacy")
233
+ # Specifies which retry algorithm to use. Values are:
234
+ #
235
+ # * `legacy` - The pre-existing retry behavior. This is default value if
236
+ # no retry mode is provided.
237
+ #
238
+ # * `standard` - A standardized set of retry rules across the AWS SDKs.
239
+ # This includes support for retry quotas, which limit the number of
240
+ # unsuccessful retries a client can make.
241
+ #
242
+ # * `adaptive` - An experimental retry mode that includes all the
243
+ # functionality of `standard` mode along with automatic client side
244
+ # throttling. This is a provisional mode that may change behavior
245
+ # in the future.
246
+ #
190
247
  #
191
248
  # @option options [String] :secret_access_key
192
249
  #
@@ -209,16 +266,15 @@ module Aws::XRay
209
266
  # requests through. Formatted like 'http://proxy.com:123'.
210
267
  #
211
268
  # @option options [Float] :http_open_timeout (15) The number of
212
- # seconds to wait when opening a HTTP session before rasing a
269
+ # seconds to wait when opening a HTTP session before raising a
213
270
  # `Timeout::Error`.
214
271
  #
215
272
  # @option options [Integer] :http_read_timeout (60) The default
216
273
  # number of seconds to wait for response data. This value can
217
- # safely be set
218
- # per-request on the session yeidled by {#session_for}.
274
+ # safely be set per-request on the session.
219
275
  #
220
276
  # @option options [Float] :http_idle_timeout (5) The number of
221
- # seconds a connection is allowed to sit idble before it is
277
+ # seconds a connection is allowed to sit idle before it is
222
278
  # considered stale. Stale connections are closed and removed
223
279
  # from the pool before making a request.
224
280
  #
@@ -227,7 +283,7 @@ module Aws::XRay
227
283
  # request body. This option has no effect unless the request has
228
284
  # "Expect" header set to "100-continue". Defaults to `nil` which
229
285
  # disables this behaviour. This value can safely be set per
230
- # request on the session yeidled by {#session_for}.
286
+ # request on the session.
231
287
  #
232
288
  # @option options [Boolean] :http_wire_trace (false) When `true`,
233
289
  # HTTP debug output will be sent to the `:logger`.
@@ -270,6 +326,8 @@ module Aws::XRay
270
326
  # * {Types::BatchGetTracesResult#unprocessed_trace_ids #unprocessed_trace_ids} => Array&lt;String&gt;
271
327
  # * {Types::BatchGetTracesResult#next_token #next_token} => String
272
328
  #
329
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
330
+ #
273
331
  # @example Request syntax with placeholder values
274
332
  #
275
333
  # resp = client.batch_get_traces({
@@ -539,6 +597,8 @@ module Aws::XRay
539
597
  # * {Types::GetGroupsResult#groups #groups} => Array&lt;Types::GroupSummary&gt;
540
598
  # * {Types::GetGroupsResult#next_token #next_token} => String
541
599
  #
600
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
601
+ #
542
602
  # @example Request syntax with placeholder values
543
603
  #
544
604
  # resp = client.get_groups({
@@ -572,6 +632,8 @@ module Aws::XRay
572
632
  # * {Types::GetSamplingRulesResult#sampling_rule_records #sampling_rule_records} => Array&lt;Types::SamplingRuleRecord&gt;
573
633
  # * {Types::GetSamplingRulesResult#next_token #next_token} => String
574
634
  #
635
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
636
+ #
575
637
  # @example Request syntax with placeholder values
576
638
  #
577
639
  # resp = client.get_sampling_rules({
@@ -619,6 +681,8 @@ module Aws::XRay
619
681
  # * {Types::GetSamplingStatisticSummariesResult#sampling_statistic_summaries #sampling_statistic_summaries} => Array&lt;Types::SamplingStatisticSummary&gt;
620
682
  # * {Types::GetSamplingStatisticSummariesResult#next_token #next_token} => String
621
683
  #
684
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
685
+ #
622
686
  # @example Request syntax with placeholder values
623
687
  #
624
688
  # resp = client.get_sampling_statistic_summaries({
@@ -728,6 +792,8 @@ module Aws::XRay
728
792
  # * {Types::GetServiceGraphResult#contains_old_group_versions #contains_old_group_versions} => Boolean
729
793
  # * {Types::GetServiceGraphResult#next_token #next_token} => String
730
794
  #
795
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
796
+ #
731
797
  # @example Request syntax with placeholder values
732
798
  #
733
799
  # resp = client.get_service_graph({
@@ -832,6 +898,8 @@ module Aws::XRay
832
898
  # * {Types::GetTimeSeriesServiceStatisticsResult#contains_old_group_versions #contains_old_group_versions} => Boolean
833
899
  # * {Types::GetTimeSeriesServiceStatisticsResult#next_token #next_token} => String
834
900
  #
901
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
902
+ #
835
903
  # @example Request syntax with placeholder values
836
904
  #
837
905
  # resp = client.get_time_series_service_statistics({
@@ -892,6 +960,8 @@ module Aws::XRay
892
960
  # * {Types::GetTraceGraphResult#services #services} => Array&lt;Types::Service&gt;
893
961
  # * {Types::GetTraceGraphResult#next_token #next_token} => String
894
962
  #
963
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
964
+ #
895
965
  # @example Request syntax with placeholder values
896
966
  #
897
967
  # resp = client.get_trace_graph({
@@ -1013,6 +1083,8 @@ module Aws::XRay
1013
1083
  # * {Types::GetTraceSummariesResult#traces_processed_count #traces_processed_count} => Integer
1014
1084
  # * {Types::GetTraceSummariesResult#next_token #next_token} => String
1015
1085
  #
1086
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1087
+ #
1016
1088
  # @example Request syntax with placeholder values
1017
1089
  #
1018
1090
  # resp = client.get_trace_summaries({
@@ -1093,6 +1165,7 @@ module Aws::XRay
1093
1165
  # resp.trace_summaries[0].fault_root_causes[0].services[0].entity_path[0].exceptions[0].message #=> String
1094
1166
  # resp.trace_summaries[0].fault_root_causes[0].services[0].entity_path[0].remote #=> Boolean
1095
1167
  # resp.trace_summaries[0].fault_root_causes[0].services[0].inferred #=> Boolean
1168
+ # resp.trace_summaries[0].fault_root_causes[0].client_impacting #=> Boolean
1096
1169
  # resp.trace_summaries[0].error_root_causes #=> Array
1097
1170
  # resp.trace_summaries[0].error_root_causes[0].services #=> Array
1098
1171
  # resp.trace_summaries[0].error_root_causes[0].services[0].name #=> String
@@ -1107,6 +1180,7 @@ module Aws::XRay
1107
1180
  # resp.trace_summaries[0].error_root_causes[0].services[0].entity_path[0].exceptions[0].message #=> String
1108
1181
  # resp.trace_summaries[0].error_root_causes[0].services[0].entity_path[0].remote #=> Boolean
1109
1182
  # resp.trace_summaries[0].error_root_causes[0].services[0].inferred #=> Boolean
1183
+ # resp.trace_summaries[0].error_root_causes[0].client_impacting #=> Boolean
1110
1184
  # resp.trace_summaries[0].response_time_root_causes #=> Array
1111
1185
  # resp.trace_summaries[0].response_time_root_causes[0].services #=> Array
1112
1186
  # resp.trace_summaries[0].response_time_root_causes[0].services[0].name #=> String
@@ -1119,6 +1193,7 @@ module Aws::XRay
1119
1193
  # resp.trace_summaries[0].response_time_root_causes[0].services[0].entity_path[0].coverage #=> Float
1120
1194
  # resp.trace_summaries[0].response_time_root_causes[0].services[0].entity_path[0].remote #=> Boolean
1121
1195
  # resp.trace_summaries[0].response_time_root_causes[0].services[0].inferred #=> Boolean
1196
+ # resp.trace_summaries[0].response_time_root_causes[0].client_impacting #=> Boolean
1122
1197
  # resp.trace_summaries[0].revision #=> Integer
1123
1198
  # resp.trace_summaries[0].matched_event_time #=> Time
1124
1199
  # resp.approximate_time #=> Time
@@ -1421,7 +1496,7 @@ module Aws::XRay
1421
1496
  params: params,
1422
1497
  config: config)
1423
1498
  context[:gem_name] = 'aws-sdk-xray'
1424
- context[:gem_version] = '1.22.0'
1499
+ context[:gem_version] = '1.27.1'
1425
1500
  Seahorse::Client::Request.new(handlers, context)
1426
1501
  end
1427
1502
 
@@ -271,6 +271,7 @@ module Aws::XRay
271
271
  EncryptionConfig.struct_class = Types::EncryptionConfig
272
272
 
273
273
  ErrorRootCause.add_member(:services, Shapes::ShapeRef.new(shape: ErrorRootCauseServices, location_name: "Services"))
274
+ ErrorRootCause.add_member(:client_impacting, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "ClientImpacting"))
274
275
  ErrorRootCause.struct_class = Types::ErrorRootCause
275
276
 
276
277
  ErrorRootCauseEntity.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "Name"))
@@ -298,6 +299,7 @@ module Aws::XRay
298
299
  ErrorStatistics.struct_class = Types::ErrorStatistics
299
300
 
300
301
  FaultRootCause.add_member(:services, Shapes::ShapeRef.new(shape: FaultRootCauseServices, location_name: "Services"))
302
+ FaultRootCause.add_member(:client_impacting, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "ClientImpacting"))
301
303
  FaultRootCause.struct_class = Types::FaultRootCause
302
304
 
303
305
  FaultRootCauseEntity.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "Name"))
@@ -471,6 +473,7 @@ module Aws::XRay
471
473
  ResourceARNDetail.struct_class = Types::ResourceARNDetail
472
474
 
473
475
  ResponseTimeRootCause.add_member(:services, Shapes::ShapeRef.new(shape: ResponseTimeRootCauseServices, location_name: "Services"))
476
+ ResponseTimeRootCause.add_member(:client_impacting, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "ClientImpacting"))
474
477
  ResponseTimeRootCause.struct_class = Types::ResponseTimeRootCause
475
478
 
476
479
  ResponseTimeRootCauseEntity.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "Name"))
@@ -6,6 +6,31 @@
6
6
  # WARNING ABOUT GENERATED CODE
7
7
 
8
8
  module Aws::XRay
9
+
10
+ # When XRay returns an error response, the Ruby SDK constructs and raises an error.
11
+ # These errors all extend Aws::XRay::Errors::ServiceError < {Aws::Errors::ServiceError}
12
+ #
13
+ # You can rescue all XRay errors using ServiceError:
14
+ #
15
+ # begin
16
+ # # do stuff
17
+ # rescue Aws::XRay::Errors::ServiceError
18
+ # # rescues all XRay API errors
19
+ # end
20
+ #
21
+ #
22
+ # ## Request Context
23
+ # ServiceError objects have a {Aws::Errors::ServiceError#context #context} method that returns
24
+ # information about the request that generated the error.
25
+ # See {Seahorse::Client::RequestContext} for more information.
26
+ #
27
+ # ## Error Classes
28
+ # * {InvalidRequestException}
29
+ # * {RuleLimitExceededException}
30
+ # * {ThrottledException}
31
+ #
32
+ # Additionally, error classes are dynamically generated for service errors based on the error code
33
+ # if they are not defined above.
9
34
  module Errors
10
35
 
11
36
  extend Aws::Errors::DynamicErrors
@@ -23,7 +48,6 @@ module Aws::XRay
23
48
  def message
24
49
  @message || @data[:message]
25
50
  end
26
-
27
51
  end
28
52
 
29
53
  class RuleLimitExceededException < ServiceError
@@ -39,7 +63,6 @@ module Aws::XRay
39
63
  def message
40
64
  @message || @data[:message]
41
65
  end
42
-
43
66
  end
44
67
 
45
68
  class ThrottledException < ServiceError
@@ -55,7 +78,6 @@ module Aws::XRay
55
78
  def message
56
79
  @message || @data[:message]
57
80
  end
58
-
59
81
  end
60
82
 
61
83
  end
@@ -6,6 +6,7 @@
6
6
  # WARNING ABOUT GENERATED CODE
7
7
 
8
8
  module Aws::XRay
9
+
9
10
  class Resource
10
11
 
11
12
  # @param options ({})
@@ -412,10 +412,15 @@ module Aws::XRay
412
412
  # segment and it contains a name, account ID, type, and inferred flag.
413
413
  # @return [Array<Types::ErrorRootCauseService>]
414
414
  #
415
+ # @!attribute [rw] client_impacting
416
+ # A flag that denotes that the root cause impacts the trace client.
417
+ # @return [Boolean]
418
+ #
415
419
  # @see http://docs.aws.amazon.com/goto/WebAPI/xray-2016-04-12/ErrorRootCause AWS API Documentation
416
420
  #
417
421
  class ErrorRootCause < Struct.new(
418
- :services)
422
+ :services,
423
+ :client_impacting)
419
424
  include Aws::Structure
420
425
  end
421
426
 
@@ -517,10 +522,15 @@ module Aws::XRay
517
522
  # it contains a name, account ID, type, and inferred flag.
518
523
  # @return [Array<Types::FaultRootCauseService>]
519
524
  #
525
+ # @!attribute [rw] client_impacting
526
+ # A flag that denotes that the root cause impacts the trace client.
527
+ # @return [Boolean]
528
+ #
520
529
  # @see http://docs.aws.amazon.com/goto/WebAPI/xray-2016-04-12/FaultRootCause AWS API Documentation
521
530
  #
522
531
  class FaultRootCause < Struct.new(
523
- :services)
532
+ :services,
533
+ :client_impacting)
524
534
  include Aws::Structure
525
535
  end
526
536
 
@@ -1384,10 +1394,15 @@ module Aws::XRay
1384
1394
  # contains a name, account ID, type, and inferred flag.
1385
1395
  # @return [Array<Types::ResponseTimeRootCauseService>]
1386
1396
  #
1397
+ # @!attribute [rw] client_impacting
1398
+ # A flag that denotes that the root cause impacts the trace client.
1399
+ # @return [Boolean]
1400
+ #
1387
1401
  # @see http://docs.aws.amazon.com/goto/WebAPI/xray-2016-04-12/ResponseTimeRootCause AWS API Documentation
1388
1402
  #
1389
1403
  class ResponseTimeRootCause < Struct.new(
1390
- :services)
1404
+ :services,
1405
+ :client_impacting)
1391
1406
  include Aws::Structure
1392
1407
  end
1393
1408
 
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.22.0
4
+ version: 1.27.1
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-01-07 00:00:00.000000000 Z
11
+ date: 2020-06-11 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.71.0
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.71.0
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.5.2.3
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