aws-sdk-xray 1.56.0 → 1.58.0

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
2
  SHA256:
3
- metadata.gz: f97db71967aec0892cccda039188cdbd4abc9ddda6ad979831574a68c7a5807d
4
- data.tar.gz: 99ae575d05ae56ed2b12c070b1fb8c6b4af6df404ef8728b9fbb5117767d7338
3
+ metadata.gz: 262c2e5df66d1cd5afbcc69ef575fc5020aa589971c5487472c140c06caf0cd6
4
+ data.tar.gz: 055b2f15a6de7d59a9ac65beb3359f4cc690acf8a70aa345aef0ec59912727a3
5
5
  SHA512:
6
- metadata.gz: b55c0461def06b8389321f0d9a9d33f67a250770056006f27e5a6a698e65d22793fb716f1eea3d0cef800d1ab973051735dca061952598c86b0f2b5cfd237165
7
- data.tar.gz: ffe7cdca95c13bcff4d3b57fcfa11daea9447f0aee9b5135d023022ed281687d3557e77d9832d7af977d934c9a5f8478b4f27105530878ef51a97dbbfaea96ed
6
+ metadata.gz: 1bf53c26e05a8a4f8bac5006a5903b74aabe053a2ebd3edf49b6f60ef956662b29be6aa73b2e6304570d9b0a0c4b2036548b344357ee0f6b84830a1bb186ac34
7
+ data.tar.gz: 5e772970a0b0753cab36fae715af34c7300ddcddab37b3db8895450aec21bcf4d7b872035fdd69c4db7a27f0bc65d0515ff5d278d7ef6420ec27d82ab1558b47
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.58.0 (2023-09-13)
5
+ ------------------
6
+
7
+ * Feature - Add StartTime field in GetTraceSummaries API response for each TraceSummary.
8
+
9
+ 1.57.0 (2023-07-11)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.56.0 (2023-07-06)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.56.0
1
+ 1.58.0
@@ -216,6 +216,10 @@ module Aws::XRay
216
216
  # @option options [Boolean] :endpoint_discovery (false)
217
217
  # When set to `true`, endpoint discovery will be enabled for operations when available.
218
218
  #
219
+ # @option options [Boolean] :ignore_configured_endpoint_urls
220
+ # Setting to true disables use of endpoint URLs provided via environment
221
+ # variables and the shared configuration file.
222
+ #
219
223
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
220
224
  # The log formatter.
221
225
  #
@@ -1585,6 +1589,7 @@ module Aws::XRay
1585
1589
  #
1586
1590
  # resp.trace_summaries #=> Array
1587
1591
  # resp.trace_summaries[0].id #=> String
1592
+ # resp.trace_summaries[0].start_time #=> Time
1588
1593
  # resp.trace_summaries[0].duration #=> Float
1589
1594
  # resp.trace_summaries[0].response_time #=> Float
1590
1595
  # resp.trace_summaries[0].has_fault #=> Boolean
@@ -2223,7 +2228,7 @@ module Aws::XRay
2223
2228
  params: params,
2224
2229
  config: config)
2225
2230
  context[:gem_name] = 'aws-sdk-xray'
2226
- context[:gem_version] = '1.56.0'
2231
+ context[:gem_version] = '1.58.0'
2227
2232
  Seahorse::Client::Request.new(handlers, context)
2228
2233
  end
2229
2234
 
@@ -921,6 +921,7 @@ module Aws::XRay
921
921
  TraceSegmentDocumentList.member = Shapes::ShapeRef.new(shape: TraceSegmentDocument)
922
922
 
923
923
  TraceSummary.add_member(:id, Shapes::ShapeRef.new(shape: TraceId, location_name: "Id"))
924
+ TraceSummary.add_member(:start_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "StartTime"))
924
925
  TraceSummary.add_member(:duration, Shapes::ShapeRef.new(shape: NullableDouble, location_name: "Duration"))
925
926
  TraceSummary.add_member(:response_time, Shapes::ShapeRef.new(shape: NullableDouble, location_name: "ResponseTime"))
926
927
  TraceSummary.add_member(:has_fault, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "HasFault"))
@@ -3058,6 +3058,11 @@ module Aws::XRay
3058
3058
  # segments and subsegments.
3059
3059
  # @return [String]
3060
3060
  #
3061
+ # @!attribute [rw] start_time
3062
+ # The start time of a trace, based on the earliest trace segment start
3063
+ # time.
3064
+ # @return [Time]
3065
+ #
3061
3066
  # @!attribute [rw] duration
3062
3067
  # The length of time in seconds between the start time of the root
3063
3068
  # segment and the end time of the last segment that completed.
@@ -3149,6 +3154,7 @@ module Aws::XRay
3149
3154
  #
3150
3155
  class TraceSummary < Struct.new(
3151
3156
  :id,
3157
+ :start_time,
3152
3158
  :duration,
3153
3159
  :response_time,
3154
3160
  :has_fault,
data/lib/aws-sdk-xray.rb CHANGED
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-xray/customizations'
52
52
  # @!group service
53
53
  module Aws::XRay
54
54
 
55
- GEM_VERSION = '1.56.0'
55
+ GEM_VERSION = '1.58.0'
56
56
 
57
57
  end
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.56.0
4
+ version: 1.58.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: 2023-07-06 00:00:00.000000000 Z
11
+ date: 2023-09-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core