aws-sdk-xray 1.57.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: 2eafabca4a3e9d278c22d87f4a87e23537aa111118787175359ee489e192d0f3
4
- data.tar.gz: f77ff979d6c09d6322d62d2a2276ef54172655960c3f1f1a7353a87b22789936
3
+ metadata.gz: 262c2e5df66d1cd5afbcc69ef575fc5020aa589971c5487472c140c06caf0cd6
4
+ data.tar.gz: 055b2f15a6de7d59a9ac65beb3359f4cc690acf8a70aa345aef0ec59912727a3
5
5
  SHA512:
6
- metadata.gz: af0b3f5590d5bd571a128900e97d055eebb7a4ee9dab2d7ca24298b8d98e196190d9d96ffba709dab8d4a037657bbaa0e1723a36caaa3b193e8deaf9a3d3bc57
7
- data.tar.gz: 2fdcec80e78faf06a8ad08ecdf8f44725be279962aef18b9a2d2e297d8c886a48aec30f658870233e891e9701fd4b583ad5dffae4492165460e20b6eb7cddb84
6
+ metadata.gz: 1bf53c26e05a8a4f8bac5006a5903b74aabe053a2ebd3edf49b6f60ef956662b29be6aa73b2e6304570d9b0a0c4b2036548b344357ee0f6b84830a1bb186ac34
7
+ data.tar.gz: 5e772970a0b0753cab36fae715af34c7300ddcddab37b3db8895450aec21bcf4d7b872035fdd69c4db7a27f0bc65d0515ff5d278d7ef6420ec27d82ab1558b47
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.57.0 (2023-07-11)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.57.0
1
+ 1.58.0
@@ -1589,6 +1589,7 @@ module Aws::XRay
1589
1589
  #
1590
1590
  # resp.trace_summaries #=> Array
1591
1591
  # resp.trace_summaries[0].id #=> String
1592
+ # resp.trace_summaries[0].start_time #=> Time
1592
1593
  # resp.trace_summaries[0].duration #=> Float
1593
1594
  # resp.trace_summaries[0].response_time #=> Float
1594
1595
  # resp.trace_summaries[0].has_fault #=> Boolean
@@ -2227,7 +2228,7 @@ module Aws::XRay
2227
2228
  params: params,
2228
2229
  config: config)
2229
2230
  context[:gem_name] = 'aws-sdk-xray'
2230
- context[:gem_version] = '1.57.0'
2231
+ context[:gem_version] = '1.58.0'
2231
2232
  Seahorse::Client::Request.new(handlers, context)
2232
2233
  end
2233
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.57.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.57.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-11 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