aws-sdk-bedrockagentcore 1.22.0 → 1.23.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: c287b59ab52fd5499281187aff3f044e0450d1b2b584a7e68cfb7d57a185090a
4
- data.tar.gz: 51c9490688c248761cc60913fe4f2e0e9bac4cd6641f6c828fe676b2671644f9
3
+ metadata.gz: d7585daa8e3d30666691dff8d13b97aa7c6cbb9947b2bd1fdce60cbfece5e5d0
4
+ data.tar.gz: a3b4336d566eeb26f178d22203c22ecc1b5b2539f9b2aee1fbbc0a558225c088
5
5
  SHA512:
6
- metadata.gz: 34b04a97d30d097f85aefb5651cad9013b9a188cb173e32b8df30bdf6ee00039d50a588deb839539b4121360812e630e018cba2dfb3df21b09414db1447baa2b
7
- data.tar.gz: a8dc8a594b59c1a9209b961c524935e851da30740c553cd7bc42dd30df46fc55336b0a9156a8a3ef278bdbbfbe2ed20e58f8d66480faffb7525061ad0018b2e1
6
+ metadata.gz: af6d2ae93e5a16a39748b23ece7b8b0c60161bc36d8a2e513474e4a2c0bb876ebe976774fa99eeabd86b4b6d09512b0e93b2b171445686dfc06ca6999d8a4070
7
+ data.tar.gz: 0dee934a0c1c78c6408b7921c945afb8136753f1a5dbd0f9d2a5dd74b8a5a2b0719c925b51b3c07cdde345f291cdd84c86f1c01f578593cae053f15f77182730
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.23.0 (2026-03-27)
5
+ ------------------
6
+
7
+ * Feature - Adding AgentCore Code Interpreter Node.js Runtime Support with an optional runtime field
8
+
4
9
  1.22.0 (2026-03-19)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.22.0
1
+ 1.23.0
@@ -885,7 +885,7 @@ module Aws::BedrockAgentCore
885
885
  # @option params [required, String] :evaluator_id
886
886
  # The unique identifier of the evaluator to use for scoring. Can be a
887
887
  # built-in evaluator (e.g., `Builtin.Helpfulness`,
888
- # `Builtin.Correctness`) or a custom evaluator ARN created through the
888
+ # `Builtin.Correctness`) or a custom evaluator Id created through the
889
889
  # control plane API.
890
890
  #
891
891
  # @option params [required, Types::EvaluationInput] :evaluation_input
@@ -2138,6 +2138,7 @@ module Aws::BedrockAgentCore
2138
2138
  # ],
2139
2139
  # directory_path: "MaxLenString",
2140
2140
  # task_id: "MaxLenString",
2141
+ # runtime: "nodejs", # accepts nodejs, deno, python
2141
2142
  # },
2142
2143
  # })
2143
2144
  #
@@ -3492,7 +3493,7 @@ module Aws::BedrockAgentCore
3492
3493
  tracer: tracer
3493
3494
  )
3494
3495
  context[:gem_name] = 'aws-sdk-bedrockagentcore'
3495
- context[:gem_version] = '1.22.0'
3496
+ context[:gem_version] = '1.23.0'
3496
3497
  Seahorse::Client::Request.new(handlers, context)
3497
3498
  end
3498
3499
 
@@ -167,6 +167,7 @@ module Aws::BedrockAgentCore
167
167
  InvokeCodeInterpreterRequestTraceIdString = Shapes::StringShape.new(name: 'InvokeCodeInterpreterRequestTraceIdString')
168
168
  InvokeCodeInterpreterRequestTraceParentString = Shapes::StringShape.new(name: 'InvokeCodeInterpreterRequestTraceParentString')
169
169
  InvokeCodeInterpreterResponse = Shapes::StructureShape.new(name: 'InvokeCodeInterpreterResponse')
170
+ LanguageRuntime = Shapes::StringShape.new(name: 'LanguageRuntime')
170
171
  LeftExpression = Shapes::UnionShape.new(name: 'LeftExpression')
171
172
  ListActorsInput = Shapes::StructureShape.new(name: 'ListActorsInput')
172
173
  ListActorsOutput = Shapes::StructureShape.new(name: 'ListActorsOutput')
@@ -1213,6 +1214,7 @@ module Aws::BedrockAgentCore
1213
1214
  ToolArguments.add_member(:content, Shapes::ShapeRef.new(shape: InputContentBlockList, location_name: "content"))
1214
1215
  ToolArguments.add_member(:directory_path, Shapes::ShapeRef.new(shape: MaxLenString, location_name: "directoryPath"))
1215
1216
  ToolArguments.add_member(:task_id, Shapes::ShapeRef.new(shape: MaxLenString, location_name: "taskId"))
1217
+ ToolArguments.add_member(:runtime, Shapes::ShapeRef.new(shape: LanguageRuntime, location_name: "runtime"))
1216
1218
  ToolArguments.struct_class = Types::ToolArguments
1217
1219
 
1218
1220
  ToolResultStructuredContent.add_member(:task_id, Shapes::ShapeRef.new(shape: String, location_name: "taskId"))
@@ -891,7 +891,7 @@ module Aws::BedrockAgentCore
891
891
  # @!attribute [rw] evaluator_id
892
892
  # The unique identifier of the evaluator to use for scoring. Can be a
893
893
  # built-in evaluator (e.g., `Builtin.Helpfulness`,
894
- # `Builtin.Correctness`) or a custom evaluator ARN created through the
894
+ # `Builtin.Correctness`) or a custom evaluator Id created through the
895
895
  # control plane API.
896
896
  # @return [String]
897
897
  #
@@ -4059,8 +4059,7 @@ module Aws::BedrockAgentCore
4059
4059
  #
4060
4060
  # @!attribute [rw] language
4061
4061
  # The programming language of the code to execute. This tells the code
4062
- # interpreter which language runtime to use for execution. Common
4063
- # values include 'python', 'javascript', and 'r'.
4062
+ # interpreter which language runtime to use for execution.
4064
4063
  # @return [String]
4065
4064
  #
4066
4065
  # @!attribute [rw] clear_context
@@ -4091,6 +4090,11 @@ module Aws::BedrockAgentCore
4091
4090
  # The identifier of the task for the tool operation.
4092
4091
  # @return [String]
4093
4092
  #
4093
+ # @!attribute [rw] runtime
4094
+ # The runtime environment to use for code execution. If not specified,
4095
+ # defaults to `deno` for JavaScript and TypeScript.
4096
+ # @return [String]
4097
+ #
4094
4098
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-2024-02-28/ToolArguments AWS API Documentation
4095
4099
  #
4096
4100
  class ToolArguments < Struct.new(
@@ -4102,7 +4106,8 @@ module Aws::BedrockAgentCore
4102
4106
  :paths,
4103
4107
  :content,
4104
4108
  :directory_path,
4105
- :task_id)
4109
+ :task_id,
4110
+ :runtime)
4106
4111
  SENSITIVE = []
4107
4112
  include Aws::Structure
4108
4113
  end
@@ -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.22.0'
59
+ GEM_VERSION = '1.23.0'
60
60
 
61
61
  end
62
62
 
data/sig/client.rbs CHANGED
@@ -465,7 +465,8 @@ module Aws
465
465
  },
466
466
  ]?,
467
467
  directory_path: ::String?,
468
- task_id: ::String?
468
+ task_id: ::String?,
469
+ runtime: ("nodejs" | "deno" | "python")?
469
470
  }
470
471
  ) ?{ (*untyped) -> void } -> _InvokeCodeInterpreterResponseSuccess
471
472
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) ?{ (*untyped) -> void } -> _InvokeCodeInterpreterResponseSuccess
data/sig/types.rbs CHANGED
@@ -1154,6 +1154,7 @@ module Aws::BedrockAgentCore
1154
1154
  attr_accessor content: ::Array[Types::InputContentBlock]
1155
1155
  attr_accessor directory_path: ::String
1156
1156
  attr_accessor task_id: ::String
1157
+ attr_accessor runtime: ("nodejs" | "deno" | "python")
1157
1158
  SENSITIVE: []
1158
1159
  end
1159
1160
 
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.22.0
4
+ version: 1.23.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services