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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockagentcorecontrol/client.rb +5 -1
- data/lib/aws-sdk-bedrockagentcorecontrol/client_api.rb +2 -0
- data/lib/aws-sdk-bedrockagentcorecontrol/types.rb +7 -1
- data/lib/aws-sdk-bedrockagentcorecontrol.rb +1 -1
- data/sig/params.rbs +3 -1
- data/sig/types.rbs +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6e793720e85e2f063328d4df470b764236008a72c2d285220b4fe859c64dffdd
|
|
4
|
+
data.tar.gz: 6441f9bbc058552fe3010d776260a4ee2a9c463294f2c49d011b089637a50d39
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
|
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.
|
|
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
|
data/sig/params.rbs
CHANGED
data/sig/types.rbs
CHANGED