aws-sdk-bedrockagentcorecontrol 1.56.0 → 1.57.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: e66c518fb42c32867ec6d56ff1ae3880774f8118e91d82fa10d21b82375e0c3f
4
- data.tar.gz: f4e985d0435e4fb7c8e3dd5850c69fce878d2df29c31b499e186caa90ce44f3a
3
+ metadata.gz: 6e793720e85e2f063328d4df470b764236008a72c2d285220b4fe859c64dffdd
4
+ data.tar.gz: 6441f9bbc058552fe3010d776260a4ee2a9c463294f2c49d011b089637a50d39
5
5
  SHA512:
6
- metadata.gz: 48b10cf5308d6e3de77b15b34257714c051ed20dbb398958ae63f04ac42b04f011dbd20e5dd998b17f38dc0a6cda8e42fdc437d827008ffecdd44b80c47fc47e
7
- data.tar.gz: 6afbeb878cb53808c6205e4954a63ba57266f192fd700a16a882324a3055530bfc3b28346051d7417355a20ece6d21479ef4e0711f40679311a6ed18b4dce3b5
6
+ metadata.gz: 9fb8e654d3b2d27453f7b51302647ba3451f15b128e8b1021d952b89cbace7e0e4b834d0bd5b94c8050dbac92d9e506f2f7967963c5ae2cdf737d464100d510d
7
+ data.tar.gz: 49f4c67c26e69b82d0e9fb854505e4fa79f8fd7146a498942afb18713243682d88d1e72c2f35d7c260bf43da309564762803c29e7f13182fec045599f2ca0888
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.57.0 (2026-07-15)
5
+ ------------------
6
+
7
+ * Feature - Fix HarnessEndpointArn pattern to match the actual service-emitted ARN format ('harness-endpoint' instead of 'endpoint'). Add additionalParams to Gemini model configuration for passing provider-specific parameters through to the model unchanged.
8
+
4
9
  1.56.0 (2026-07-09)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.56.0
1
+ 1.57.0
@@ -2643,6 +2643,8 @@ module Aws::BedrockAgentCoreControl
2643
2643
  # temperature: 1.0,
2644
2644
  # top_p: 1.0,
2645
2645
  # top_k: 1,
2646
+ # additional_params: {
2647
+ # },
2646
2648
  # },
2647
2649
  # lite_llm_model_config: {
2648
2650
  # model_id: "ModelId", # required
@@ -12607,6 +12609,8 @@ module Aws::BedrockAgentCoreControl
12607
12609
  # temperature: 1.0,
12608
12610
  # top_p: 1.0,
12609
12611
  # top_k: 1,
12612
+ # additional_params: {
12613
+ # },
12610
12614
  # },
12611
12615
  # lite_llm_model_config: {
12612
12616
  # model_id: "ModelId", # required
@@ -15011,7 +15015,7 @@ module Aws::BedrockAgentCoreControl
15011
15015
  tracer: tracer
15012
15016
  )
15013
15017
  context[:gem_name] = 'aws-sdk-bedrockagentcorecontrol'
15014
- context[:gem_version] = '1.56.0'
15018
+ context[:gem_version] = '1.57.0'
15015
15019
  Seahorse::Client::Request.new(handlers, context)
15016
15020
  end
15017
15021
 
@@ -3382,6 +3382,7 @@ module Aws::BedrockAgentCoreControl
3382
3382
  HarnessGeminiModelConfig.add_member(:temperature, Shapes::ShapeRef.new(shape: Temperature, location_name: "temperature"))
3383
3383
  HarnessGeminiModelConfig.add_member(:top_p, Shapes::ShapeRef.new(shape: TopP, location_name: "topP"))
3384
3384
  HarnessGeminiModelConfig.add_member(:top_k, Shapes::ShapeRef.new(shape: TopK, location_name: "topK"))
3385
+ HarnessGeminiModelConfig.add_member(:additional_params, Shapes::ShapeRef.new(shape: Document, location_name: "additionalParams"))
3385
3386
  HarnessGeminiModelConfig.struct_class = Types::HarnessGeminiModelConfig
3386
3387
 
3387
3388
  HarnessInlineFunctionConfig.add_member(:description, Shapes::ShapeRef.new(shape: HarnessInlineFunctionDescription, required: true, location_name: "description"))
@@ -7963,6 +7964,7 @@ module Aws::BedrockAgentCoreControl
7963
7964
  o.http_request_uri = "/policy-engines/{policyEngineId}/policies/{policyId}"
7964
7965
  o.input = Shapes::ShapeRef.new(shape: UpdatePolicyRequest)
7965
7966
  o.output = Shapes::ShapeRef.new(shape: UpdatePolicyResponse)
7967
+ o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
7966
7968
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
7967
7969
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
7968
7970
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
@@ -10346,6 +10346,11 @@ module Aws::BedrockAgentCoreControl
10346
10346
  # The topK set when calling the model.
10347
10347
  # @return [Integer]
10348
10348
  #
10349
+ # @!attribute [rw] additional_params
10350
+ # Provider-specific parameters passed through to the Gemini model
10351
+ # provider unchanged.
10352
+ # @return [Hash,Array,String,Numeric,Boolean]
10353
+ #
10349
10354
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/HarnessGeminiModelConfig AWS API Documentation
10350
10355
  #
10351
10356
  class HarnessGeminiModelConfig < Struct.new(
@@ -10354,7 +10359,8 @@ module Aws::BedrockAgentCoreControl
10354
10359
  :max_tokens,
10355
10360
  :temperature,
10356
10361
  :top_p,
10357
- :top_k)
10362
+ :top_k,
10363
+ :additional_params)
10358
10364
  SENSITIVE = []
10359
10365
  include Aws::Structure
10360
10366
  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.56.0'
58
+ GEM_VERSION = '1.57.0'
59
59
 
60
60
  end
61
61
 
data/sig/params.rbs CHANGED
@@ -531,7 +531,9 @@ module Aws
531
531
  max_tokens: ::Integer?,
532
532
  temperature: ::Float?,
533
533
  top_p: ::Float?,
534
- top_k: ::Integer?
534
+ top_k: ::Integer?,
535
+ additional_params: {
536
+ }?
535
537
  }
536
538
 
537
539
  type harness_lite_llm_model_config = {
data/sig/types.rbs CHANGED
@@ -2776,6 +2776,7 @@ module Aws::BedrockAgentCoreControl
2776
2776
  attr_accessor temperature: ::Float
2777
2777
  attr_accessor top_p: ::Float
2778
2778
  attr_accessor top_k: ::Integer
2779
+ attr_accessor additional_params: untyped
2779
2780
  SENSITIVE: []
2780
2781
  end
2781
2782
 
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.56.0
4
+ version: 1.57.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services