aws-sdk-bedrockagentcore 1.27.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 95c36dfda3736bc62b7080884c06aa6f0ad99e39e246280ec8f7de28923c7bf9
4
- data.tar.gz: 427b46b13f95620bbe5fc9eda2ed4ab9a2439f173d1bc176e769b9fe173f3571
3
+ metadata.gz: 553a2b08a7189e5689c3d81feb0f7ff9581eca4d620fa2a424d18dfe962b4c15
4
+ data.tar.gz: f243f3e8444ba95db3a284688c99e1f1107c56ce83b27431240220643be54dd1
5
5
  SHA512:
6
- metadata.gz: f498cba57bbb03bbf8be38e9d22ad5987ce384e11f43ce0fe465cf277a02341eb2e1ae26e8212b445d59f3b74c9abd7bc5493edcd7889475f0406650c757d83f
7
- data.tar.gz: 8371f1b94b461dc234aaa3a03ffe49f4f50d99c01f303a92e5714e744ea202dd23c6658b3ed5f46675623c56e77b7fc254a25cc659ac955f1a0d9236b6a69b9b
6
+ metadata.gz: a8d47fb6833247e69e100d79d7914b1601ae020163a6633225784341f919e8c5d1e0b6d562772d0ae92a1d4166a2e0f8baf0e2c2a4cb38a963efeabc9dc5a1e0
7
+ data.tar.gz: a6caac35ba06e264f29cfa2db3fc2af650189bc0c1c5d77879bf9b17df1255db9703e550ca8f4ffe7bac94fc732ec6c104de10e3163c4501a42f46abaff1f84b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.28.0 (2026-04-16)
5
+ ------------------
6
+
7
+ * Feature - Introducing NamespacePath in AgentCore Memory to support hierarchical prefix based memory record retrieval.
8
+
4
9
  1.27.0 (2026-04-09)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.27.0
1
+ 1.28.0
@@ -2774,10 +2774,14 @@ module Aws::BedrockAgentCore
2774
2774
  # The identifier of the AgentCore Memory resource for which to list
2775
2775
  # memory records.
2776
2776
  #
2777
- # @option params [required, String] :namespace
2777
+ # @option params [String] :namespace
2778
2778
  # The namespace prefix to filter memory records by. Returns all memory
2779
2779
  # records in namespaces that start with the provided prefix.
2780
2780
  #
2781
+ # @option params [String] :namespace_path
2782
+ # Use namespacePath for hierarchical retrievals. Return all memory
2783
+ # records where namespace falls under the same parent hierarchy.
2784
+ #
2781
2785
  # @option params [String] :memory_strategy_id
2782
2786
  # The memory strategy identifier to filter memory records by. If
2783
2787
  # specified, only memory records with this strategy ID are returned.
@@ -2802,7 +2806,8 @@ module Aws::BedrockAgentCore
2802
2806
  #
2803
2807
  # resp = client.list_memory_records({
2804
2808
  # memory_id: "MemoryId", # required
2805
- # namespace: "Namespace", # required
2809
+ # namespace: "Namespace",
2810
+ # namespace_path: "Namespace",
2806
2811
  # memory_strategy_id: "MemoryStrategyId",
2807
2812
  # max_results: 1,
2808
2813
  # next_token: "PaginationToken",
@@ -2907,10 +2912,14 @@ module Aws::BedrockAgentCore
2907
2912
  # The identifier of the AgentCore Memory resource from which to retrieve
2908
2913
  # memory records.
2909
2914
  #
2910
- # @option params [required, String] :namespace
2915
+ # @option params [String] :namespace
2911
2916
  # The namespace prefix to filter memory records by. Searches for memory
2912
2917
  # records in namespaces that start with the provided prefix.
2913
2918
  #
2919
+ # @option params [String] :namespace_path
2920
+ # Use namespacePath for hierarchical retrievals. Return all memory
2921
+ # records where namespace falls under the same parent hierarchy.
2922
+ #
2914
2923
  # @option params [required, Types::SearchCriteria] :search_criteria
2915
2924
  # The search criteria to use for finding relevant memory records. This
2916
2925
  # includes the search query, memory strategy ID, and other search
@@ -2936,7 +2945,8 @@ module Aws::BedrockAgentCore
2936
2945
  #
2937
2946
  # resp = client.retrieve_memory_records({
2938
2947
  # memory_id: "MemoryId", # required
2939
- # namespace: "Namespace", # required
2948
+ # namespace: "Namespace",
2949
+ # namespace_path: "Namespace",
2940
2950
  # search_criteria: { # required
2941
2951
  # search_query: "SearchCriteriaSearchQueryString", # required
2942
2952
  # memory_strategy_id: "MemoryStrategyId",
@@ -3752,7 +3762,7 @@ module Aws::BedrockAgentCore
3752
3762
  tracer: tracer
3753
3763
  )
3754
3764
  context[:gem_name] = 'aws-sdk-bedrockagentcore'
3755
- context[:gem_version] = '1.27.0'
3765
+ context[:gem_version] = '1.28.0'
3756
3766
  Seahorse::Client::Request.new(handlers, context)
3757
3767
  end
3758
3768
 
@@ -1067,7 +1067,8 @@ module Aws::BedrockAgentCore
1067
1067
  ListMemoryExtractionJobsOutput.struct_class = Types::ListMemoryExtractionJobsOutput
1068
1068
 
1069
1069
  ListMemoryRecordsInput.add_member(:memory_id, Shapes::ShapeRef.new(shape: MemoryId, required: true, location: "uri", location_name: "memoryId"))
1070
- ListMemoryRecordsInput.add_member(:namespace, Shapes::ShapeRef.new(shape: Namespace, required: true, location_name: "namespace"))
1070
+ ListMemoryRecordsInput.add_member(:namespace, Shapes::ShapeRef.new(shape: Namespace, location_name: "namespace"))
1071
+ ListMemoryRecordsInput.add_member(:namespace_path, Shapes::ShapeRef.new(shape: Namespace, location_name: "namespacePath"))
1071
1072
  ListMemoryRecordsInput.add_member(:memory_strategy_id, Shapes::ShapeRef.new(shape: MemoryStrategyId, location_name: "memoryStrategyId"))
1072
1073
  ListMemoryRecordsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "maxResults"))
1073
1074
  ListMemoryRecordsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
@@ -1283,7 +1284,8 @@ module Aws::BedrockAgentCore
1283
1284
  ResponseChunk.struct_class = Types::ResponseChunk
1284
1285
 
1285
1286
  RetrieveMemoryRecordsInput.add_member(:memory_id, Shapes::ShapeRef.new(shape: MemoryId, required: true, location: "uri", location_name: "memoryId"))
1286
- RetrieveMemoryRecordsInput.add_member(:namespace, Shapes::ShapeRef.new(shape: Namespace, required: true, location_name: "namespace"))
1287
+ RetrieveMemoryRecordsInput.add_member(:namespace, Shapes::ShapeRef.new(shape: Namespace, location_name: "namespace"))
1288
+ RetrieveMemoryRecordsInput.add_member(:namespace_path, Shapes::ShapeRef.new(shape: Namespace, location_name: "namespacePath"))
1287
1289
  RetrieveMemoryRecordsInput.add_member(:search_criteria, Shapes::ShapeRef.new(shape: SearchCriteria, required: true, location_name: "searchCriteria"))
1288
1290
  RetrieveMemoryRecordsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
1289
1291
  RetrieveMemoryRecordsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "maxResults"))
@@ -3073,6 +3073,11 @@ module Aws::BedrockAgentCore
3073
3073
  # records in namespaces that start with the provided prefix.
3074
3074
  # @return [String]
3075
3075
  #
3076
+ # @!attribute [rw] namespace_path
3077
+ # Use namespacePath for hierarchical retrievals. Return all memory
3078
+ # records where namespace falls under the same parent hierarchy.
3079
+ # @return [String]
3080
+ #
3076
3081
  # @!attribute [rw] memory_strategy_id
3077
3082
  # The memory strategy identifier to filter memory records by. If
3078
3083
  # specified, only memory records with this strategy ID are returned.
@@ -3094,6 +3099,7 @@ module Aws::BedrockAgentCore
3094
3099
  class ListMemoryRecordsInput < Struct.new(
3095
3100
  :memory_id,
3096
3101
  :namespace,
3102
+ :namespace_path,
3097
3103
  :memory_strategy_id,
3098
3104
  :max_results,
3099
3105
  :next_token)
@@ -4010,6 +4016,11 @@ module Aws::BedrockAgentCore
4010
4016
  # memory records in namespaces that start with the provided prefix.
4011
4017
  # @return [String]
4012
4018
  #
4019
+ # @!attribute [rw] namespace_path
4020
+ # Use namespacePath for hierarchical retrievals. Return all memory
4021
+ # records where namespace falls under the same parent hierarchy.
4022
+ # @return [String]
4023
+ #
4013
4024
  # @!attribute [rw] search_criteria
4014
4025
  # The search criteria to use for finding relevant memory records. This
4015
4026
  # includes the search query, memory strategy ID, and other search
@@ -4032,6 +4043,7 @@ module Aws::BedrockAgentCore
4032
4043
  class RetrieveMemoryRecordsInput < Struct.new(
4033
4044
  :memory_id,
4034
4045
  :namespace,
4046
+ :namespace_path,
4035
4047
  :search_criteria,
4036
4048
  :next_token,
4037
4049
  :max_results)
@@ -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.27.0'
59
+ GEM_VERSION = '1.28.0'
60
60
 
61
61
  end
62
62
 
data/sig/client.rbs CHANGED
@@ -646,7 +646,8 @@ module Aws
646
646
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCore/Client.html#list_memory_records-instance_method
647
647
  def list_memory_records: (
648
648
  memory_id: ::String,
649
- namespace: ::String,
649
+ ?namespace: ::String,
650
+ ?namespace_path: ::String,
650
651
  ?memory_strategy_id: ::String,
651
652
  ?max_results: ::Integer,
652
653
  ?next_token: ::String
@@ -678,7 +679,8 @@ module Aws
678
679
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCore/Client.html#retrieve_memory_records-instance_method
679
680
  def retrieve_memory_records: (
680
681
  memory_id: ::String,
681
- namespace: ::String,
682
+ ?namespace: ::String,
683
+ ?namespace_path: ::String,
682
684
  search_criteria: {
683
685
  search_query: ::String,
684
686
  memory_strategy_id: ::String?,
data/sig/types.rbs CHANGED
@@ -882,6 +882,7 @@ module Aws::BedrockAgentCore
882
882
  class ListMemoryRecordsInput
883
883
  attr_accessor memory_id: ::String
884
884
  attr_accessor namespace: ::String
885
+ attr_accessor namespace_path: ::String
885
886
  attr_accessor memory_strategy_id: ::String
886
887
  attr_accessor max_results: ::Integer
887
888
  attr_accessor next_token: ::String
@@ -1162,6 +1163,7 @@ module Aws::BedrockAgentCore
1162
1163
  class RetrieveMemoryRecordsInput
1163
1164
  attr_accessor memory_id: ::String
1164
1165
  attr_accessor namespace: ::String
1166
+ attr_accessor namespace_path: ::String
1165
1167
  attr_accessor search_criteria: Types::SearchCriteria
1166
1168
  attr_accessor next_token: ::String
1167
1169
  attr_accessor max_results: ::Integer
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.27.0
4
+ version: 1.28.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services