aws-sdk-bedrockagentcorecontrol 1.20.0 → 1.21.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: 00121aab722e85ad3954487a241a6e7a0be7d3d06123067d971137d1eca3a02b
4
- data.tar.gz: 944c57ca36b1c53c4f53763648a21b8379436780e91d1af372378bc8bf57a57f
3
+ metadata.gz: a933c0922b0d0034bc0dc8e98af0f2cb0277a9bea1d04199e3babcd0573cc12e
4
+ data.tar.gz: d9b2fa903a0a71ebc15f174ea81d5efc0cbacfbcc4f5e93fcc58525a704ae96a
5
5
  SHA512:
6
- metadata.gz: cb8d45e090b719fdddc48ef683cf35076f124c53691aef644299a2bf461e6e61b9c6ba816b2c1bea5f198e837400afb6bd991414849ead09a25367a92d247daa
7
- data.tar.gz: 7c1b47e1336690eb902bae6cc9b1ffcdadfbe322bc243d09fb5f3abec5e6abbb0adfe1536ec630fdf7c631dee2ec335a89e40036a00b6caf8ecde932cd298f08
6
+ metadata.gz: fae9e6524272f3056eab536015bd89c92c60e335ab1375f0623c822934219cc6b0e5d4dbafb05d631237b3bfd259ef7395448724ab1c41dbdebc63d054fbb40b
7
+ data.tar.gz: 6734cbbc8e37ad99d6257354162f1cf7a8a0a1a98b729a471d482b5dabbf6d66ad27e63e1be15754cd33e0abc4c1eac40c43ba65aea22582f5917522de5a00b8
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.21.0 (2026-01-09)
5
+ ------------------
6
+
7
+ * Feature - Adds optional field "view" to GetMemory API input to give customers control over whether CMK encrypted data such as strategy decryption or override prompts is returned or not.
8
+
4
9
  1.20.0 (2026-01-08)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.20.0
1
+ 1.21.0
@@ -3316,6 +3316,9 @@ module Aws::BedrockAgentCoreControl
3316
3316
  # @option params [required, String] :memory_id
3317
3317
  # The unique identifier of the memory to retrieve.
3318
3318
  #
3319
+ # @option params [String] :view
3320
+ # The level of detail to return for the memory.
3321
+ #
3319
3322
  # @return [Types::GetMemoryOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3320
3323
  #
3321
3324
  # * {Types::GetMemoryOutput#memory #memory} => Types::Memory
@@ -3324,6 +3327,7 @@ module Aws::BedrockAgentCoreControl
3324
3327
  #
3325
3328
  # resp = client.get_memory({
3326
3329
  # memory_id: "MemoryId", # required
3330
+ # view: "full", # accepts full, without_decryption
3327
3331
  # })
3328
3332
  #
3329
3333
  # @example Response structure
@@ -6628,7 +6632,7 @@ module Aws::BedrockAgentCoreControl
6628
6632
  tracer: tracer
6629
6633
  )
6630
6634
  context[:gem_name] = 'aws-sdk-bedrockagentcorecontrol'
6631
- context[:gem_version] = '1.20.0'
6635
+ context[:gem_version] = '1.21.0'
6632
6636
  Seahorse::Client::Request.new(handlers, context)
6633
6637
  end
6634
6638
 
@@ -397,6 +397,7 @@ module Aws::BedrockAgentCoreControl
397
397
  MemoryStrategyType = Shapes::StringShape.new(name: 'MemoryStrategyType')
398
398
  MemorySummary = Shapes::StructureShape.new(name: 'MemorySummary')
399
399
  MemorySummaryList = Shapes::ListShape.new(name: 'MemorySummaryList')
400
+ MemoryView = Shapes::StringShape.new(name: 'MemoryView')
400
401
  MessageBasedTrigger = Shapes::StructureShape.new(name: 'MessageBasedTrigger')
401
402
  MessageBasedTriggerInput = Shapes::StructureShape.new(name: 'MessageBasedTriggerInput')
402
403
  MessageBasedTriggerInputMessageCountInteger = Shapes::IntegerShape.new(name: 'MessageBasedTriggerInputMessageCountInteger')
@@ -1644,6 +1645,7 @@ module Aws::BedrockAgentCoreControl
1644
1645
  GetGatewayTargetResponse.struct_class = Types::GetGatewayTargetResponse
1645
1646
 
1646
1647
  GetMemoryInput.add_member(:memory_id, Shapes::ShapeRef.new(shape: MemoryId, required: true, location: "uri", location_name: "memoryId"))
1648
+ GetMemoryInput.add_member(:view, Shapes::ShapeRef.new(shape: MemoryView, location: "querystring", location_name: "view"))
1647
1649
  GetMemoryInput.struct_class = Types::GetMemoryInput
1648
1650
 
1649
1651
  GetMemoryOutput.add_member(:memory, Shapes::ShapeRef.new(shape: Memory, required: true, location_name: "memory"))
@@ -4758,10 +4758,15 @@ module Aws::BedrockAgentCoreControl
4758
4758
  # The unique identifier of the memory to retrieve.
4759
4759
  # @return [String]
4760
4760
  #
4761
+ # @!attribute [rw] view
4762
+ # The level of detail to return for the memory.
4763
+ # @return [String]
4764
+ #
4761
4765
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetMemoryInput AWS API Documentation
4762
4766
  #
4763
4767
  class GetMemoryInput < Struct.new(
4764
- :memory_id)
4768
+ :memory_id,
4769
+ :view)
4765
4770
  SENSITIVE = []
4766
4771
  include Aws::Structure
4767
4772
  end
@@ -55,7 +55,7 @@ module Aws::BedrockAgentCoreControl
55
55
  autoload :EndpointProvider, 'aws-sdk-bedrockagentcorecontrol/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-bedrockagentcorecontrol/endpoints'
57
57
 
58
- GEM_VERSION = '1.20.0'
58
+ GEM_VERSION = '1.21.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -1150,7 +1150,8 @@ module Aws
1150
1150
  end
1151
1151
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_memory-instance_method
1152
1152
  def get_memory: (
1153
- memory_id: ::String
1153
+ memory_id: ::String,
1154
+ ?view: ("full" | "without_decryption")
1154
1155
  ) -> _GetMemoryResponseSuccess
1155
1156
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetMemoryResponseSuccess
1156
1157
 
@@ -2327,7 +2328,8 @@ module Aws
2327
2328
 
2328
2329
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#wait_until-instance_method
2329
2330
  def wait_until: (:memory_created waiter_name,
2330
- memory_id: ::String
2331
+ memory_id: ::String,
2332
+ ?view: ("full" | "without_decryption")
2331
2333
  ) -> Client::_GetMemoryResponseSuccess
2332
2334
  | (:memory_created waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetMemoryResponseSuccess
2333
2335
  | (:policy_active waiter_name,
data/sig/types.rbs CHANGED
@@ -1339,6 +1339,7 @@ module Aws::BedrockAgentCoreControl
1339
1339
 
1340
1340
  class GetMemoryInput
1341
1341
  attr_accessor memory_id: ::String
1342
+ attr_accessor view: ("full" | "without_decryption")
1342
1343
  SENSITIVE: []
1343
1344
  end
1344
1345
 
data/sig/waiters.rbs CHANGED
@@ -14,7 +14,8 @@ module Aws
14
14
  | (?Hash[Symbol, untyped]) -> void
15
15
 
16
16
  def wait: (
17
- memory_id: ::String
17
+ memory_id: ::String,
18
+ ?view: ("full" | "without_decryption")
18
19
  ) -> Client::_GetMemoryResponseSuccess
19
20
  | (Hash[Symbol, untyped]) -> Client::_GetMemoryResponseSuccess
20
21
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-bedrockagentcorecontrol
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.20.0
4
+ version: 1.21.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services