aws-sdk-bedrockagentcore 1.55.0 → 1.56.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1181a63860f8fae8cd5587c0de88c067fa45f2126499567fa724b1df961bedaf
4
- data.tar.gz: 449a918f8e857751d65c865f6ba7c19ab5539c33790d0e3b84758cccabdab5f1
3
+ metadata.gz: bb7b52155366ef862784c13760dd432f6b3d131e90f7b1dd3022d0d6d35b1560
4
+ data.tar.gz: f6c1676399424a71b00b8a8ceb53a00b22e4cb1b4547c593e858a90937956054
5
5
  SHA512:
6
- metadata.gz: 7131efb74040dcd647ad39bdb2b89c5263e945ed0a24947c8c7173c8dccdba5960e27f9029cd33b804b2cb0b4ce21e5ddfc33c78c2b92f9ea65218777136b70d
7
- data.tar.gz: 0f22c856dbec3e493eeeafbfb54e45b5987c279532eef0e981f0eb4c9e2d0aa174369f2e9bb9a21f7ed818be75a0d73bb77ada0173b41b65e18f5767f973f9c4
6
+ metadata.gz: f794c438005da7371edc77ada944fd8a181bb1655d875399f1eb18bb311b3f53b84aec98b42fce9342575ce493d06308c4c8848992fcd391b03a7880148c057f
7
+ data.tar.gz: d24f39255446db5b0c233f7fc0b73303b781a90725a70ae41c47338a44440aa5d316d37d8b6fad887d7410236297f286a89df1ccf9e664a1ef8cd652d9d3d6f4
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.56.0 (2026-09-17)
5
+ ------------------
6
+
7
+ * Feature - Batch evaluation now supports evaluating specific traces within a session. Each session can specify up to 100 trace IDs to evaluate.
8
+
4
9
  1.55.0 (2026-09-11)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.55.0
1
+ 1.56.0
@@ -1753,6 +1753,10 @@ module Aws::BedrockAgentCore
1753
1753
  # resp.data_source_config.cloud_watch_logs.filter_config.session_ids[0] #=> String
1754
1754
  # resp.data_source_config.cloud_watch_logs.filter_config.time_range.start_time #=> Time
1755
1755
  # resp.data_source_config.cloud_watch_logs.filter_config.time_range.end_time #=> Time
1756
+ # resp.data_source_config.cloud_watch_logs.filter_config.session_trace_ids #=> Array
1757
+ # resp.data_source_config.cloud_watch_logs.filter_config.session_trace_ids[0].session_id #=> String
1758
+ # resp.data_source_config.cloud_watch_logs.filter_config.session_trace_ids[0].trace_ids #=> Array
1759
+ # resp.data_source_config.cloud_watch_logs.filter_config.session_trace_ids[0].trace_ids[0] #=> String
1756
1760
  # resp.data_source_config.online_evaluation_config_source.online_evaluation_config_arn #=> String
1757
1761
  # resp.data_source_config.online_evaluation_config_source.time_range.start_time #=> Time
1758
1762
  # resp.data_source_config.online_evaluation_config_source.time_range.end_time #=> Time
@@ -5452,6 +5456,12 @@ module Aws::BedrockAgentCore
5452
5456
  # start_time: Time.now,
5453
5457
  # end_time: Time.now,
5454
5458
  # },
5459
+ # session_trace_ids: [
5460
+ # {
5461
+ # session_id: "String", # required
5462
+ # trace_ids: ["TraceId"], # required
5463
+ # },
5464
+ # ],
5455
5465
  # },
5456
5466
  # },
5457
5467
  # online_evaluation_config_source: {
@@ -6556,7 +6566,7 @@ module Aws::BedrockAgentCore
6556
6566
  tracer: tracer
6557
6567
  )
6558
6568
  context[:gem_name] = 'aws-sdk-bedrockagentcore'
6559
- context[:gem_version] = '1.55.0'
6569
+ context[:gem_version] = '1.56.0'
6560
6570
  Seahorse::Client::Request.new(handlers, context)
6561
6571
  end
6562
6572
 
@@ -699,6 +699,8 @@ module Aws::BedrockAgentCore
699
699
  SessionStatus = Shapes::StringShape.new(name: 'SessionStatus')
700
700
  SessionSummary = Shapes::StructureShape.new(name: 'SessionSummary')
701
701
  SessionSummaryList = Shapes::ListShape.new(name: 'SessionSummaryList')
702
+ SessionTraceIds = Shapes::StructureShape.new(name: 'SessionTraceIds')
703
+ SessionTraceIdsList = Shapes::ListShape.new(name: 'SessionTraceIdsList')
702
704
  SessionType = Shapes::StringShape.new(name: 'SessionType')
703
705
  SkillDefinition = Shapes::StructureShape.new(name: 'SkillDefinition')
704
706
  SkillMdDefinition = Shapes::StructureShape.new(name: 'SkillMdDefinition')
@@ -794,6 +796,7 @@ module Aws::BedrockAgentCore
794
796
  TopK = Shapes::IntegerShape.new(name: 'TopK')
795
797
  TopP = Shapes::FloatShape.new(name: 'TopP')
796
798
  TraceId = Shapes::StringShape.new(name: 'TraceId')
799
+ TraceIdList = Shapes::ListShape.new(name: 'TraceIdList')
797
800
  TraceIds = Shapes::ListShape.new(name: 'TraceIds')
798
801
  UnauthorizedException = Shapes::StructureShape.new(name: 'UnauthorizedException')
799
802
  Unit = Shapes::StructureShape.new(name: 'Unit')
@@ -1049,6 +1052,7 @@ module Aws::BedrockAgentCore
1049
1052
 
1050
1053
  CloudWatchFilterConfig.add_member(:session_ids, Shapes::ShapeRef.new(shape: CloudWatchFilterConfigSessionIdsList, location_name: "sessionIds"))
1051
1054
  CloudWatchFilterConfig.add_member(:time_range, Shapes::ShapeRef.new(shape: SessionFilterConfig, location_name: "timeRange"))
1055
+ CloudWatchFilterConfig.add_member(:session_trace_ids, Shapes::ShapeRef.new(shape: SessionTraceIdsList, location_name: "sessionTraceIds"))
1052
1056
  CloudWatchFilterConfig.struct_class = Types::CloudWatchFilterConfig
1053
1057
 
1054
1058
  CloudWatchFilterConfigSessionIdsList.member = Shapes::ShapeRef.new(shape: String)
@@ -3034,6 +3038,12 @@ module Aws::BedrockAgentCore
3034
3038
 
3035
3039
  SessionSummaryList.member = Shapes::ShapeRef.new(shape: SessionSummary)
3036
3040
 
3041
+ SessionTraceIds.add_member(:session_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "sessionId"))
3042
+ SessionTraceIds.add_member(:trace_ids, Shapes::ShapeRef.new(shape: TraceIdList, required: true, location_name: "traceIds"))
3043
+ SessionTraceIds.struct_class = Types::SessionTraceIds
3044
+
3045
+ SessionTraceIdsList.member = Shapes::ShapeRef.new(shape: SessionTraceIds)
3046
+
3037
3047
  SkillDefinition.add_member(:schema_version, Shapes::ShapeRef.new(shape: SchemaVersion, location_name: "schemaVersion"))
3038
3048
  SkillDefinition.add_member(:inline_content, Shapes::ShapeRef.new(shape: InlineContent, location_name: "inlineContent"))
3039
3049
  SkillDefinition.struct_class = Types::SkillDefinition
@@ -3346,6 +3356,8 @@ module Aws::BedrockAgentCore
3346
3356
 
3347
3357
  ToolsFileSystemConfigurations.member = Shapes::ShapeRef.new(shape: ToolsFileSystemConfiguration)
3348
3358
 
3359
+ TraceIdList.member = Shapes::ShapeRef.new(shape: TraceId)
3360
+
3349
3361
  TraceIds.member = Shapes::ShapeRef.new(shape: TraceId)
3350
3362
 
3351
3363
  UnauthorizedException.add_member(:message, Shapes::ShapeRef.new(shape: NonBlankString, location_name: "message"))
@@ -940,11 +940,18 @@ module Aws::BedrockAgentCore
940
940
  # The time range filter for selecting sessions to evaluate.
941
941
  # @return [Types::SessionFilterConfig]
942
942
  #
943
+ # @!attribute [rw] session_trace_ids
944
+ # A list of session and trace ID pairs that restrict evaluation to
945
+ # specific traces within a session. If specified, only the listed
946
+ # traces are evaluated instead of the entire session.
947
+ # @return [Array<Types::SessionTraceIds>]
948
+ #
943
949
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-2024-02-28/CloudWatchFilterConfig AWS API Documentation
944
950
  #
945
951
  class CloudWatchFilterConfig < Struct.new(
946
952
  :session_ids,
947
- :time_range)
953
+ :time_range,
954
+ :session_trace_ids)
948
955
  SENSITIVE = []
949
956
  include Aws::Structure
950
957
  end
@@ -9615,6 +9622,28 @@ module Aws::BedrockAgentCore
9615
9622
  include Aws::Structure
9616
9623
  end
9617
9624
 
9625
+ # A pairing of a session with the specific trace IDs to evaluate within
9626
+ # that session. Use this to evaluate individual traces rather than an
9627
+ # entire session.
9628
+ #
9629
+ # @!attribute [rw] session_id
9630
+ # The unique identifier of the session that contains the traces to
9631
+ # evaluate.
9632
+ # @return [String]
9633
+ #
9634
+ # @!attribute [rw] trace_ids
9635
+ # The list of trace IDs within the session to evaluate.
9636
+ # @return [Array<String>]
9637
+ #
9638
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-2024-02-28/SessionTraceIds AWS API Documentation
9639
+ #
9640
+ class SessionTraceIds < Struct.new(
9641
+ :session_id,
9642
+ :trace_ids)
9643
+ SENSITIVE = []
9644
+ include Aws::Structure
9645
+ end
9646
+
9618
9647
  # The structured skill definition with a schema version and inline
9619
9648
  # content.
9620
9649
  #
@@ -56,7 +56,7 @@ module Aws::BedrockAgentCore
56
56
  autoload :Endpoints, 'aws-sdk-bedrockagentcore/endpoints'
57
57
  autoload :EventStreams, 'aws-sdk-bedrockagentcore/event_streams'
58
58
 
59
- GEM_VERSION = '1.55.0'
59
+ GEM_VERSION = '1.56.0'
60
60
 
61
61
  end
62
62
 
data/sig/client.rbs CHANGED
@@ -1443,7 +1443,13 @@ module Aws
1443
1443
  time_range: {
1444
1444
  start_time: ::Time?,
1445
1445
  end_time: ::Time?
1446
- }?
1446
+ }?,
1447
+ session_trace_ids: Array[
1448
+ {
1449
+ session_id: ::String,
1450
+ trace_ids: Array[::String]
1451
+ }
1452
+ ]?
1447
1453
  }?
1448
1454
  }?,
1449
1455
  online_evaluation_config_source: {
data/sig/types.rbs CHANGED
@@ -311,6 +311,7 @@ module Aws::BedrockAgentCore
311
311
  class CloudWatchFilterConfig
312
312
  attr_accessor session_ids: ::Array[::String]
313
313
  attr_accessor time_range: Types::SessionFilterConfig
314
+ attr_accessor session_trace_ids: ::Array[Types::SessionTraceIds]
314
315
  SENSITIVE: []
315
316
  end
316
317
 
@@ -2911,6 +2912,12 @@ module Aws::BedrockAgentCore
2911
2912
  SENSITIVE: []
2912
2913
  end
2913
2914
 
2915
+ class SessionTraceIds
2916
+ attr_accessor session_id: ::String
2917
+ attr_accessor trace_ids: ::Array[::String]
2918
+ SENSITIVE: []
2919
+ end
2920
+
2914
2921
  class SkillDefinition
2915
2922
  attr_accessor schema_version: ::String
2916
2923
  attr_accessor inline_content: ::String
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-bedrockagentcore
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.55.0
4
+ version: 1.56.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services