aws-sdk-bedrockagentruntime 1.22.0 → 1.24.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockagentruntime/client.rb +18 -7
- data/lib/aws-sdk-bedrockagentruntime/endpoints.rb +6 -24
- data/lib/aws-sdk-bedrockagentruntime/plugins/endpoints.rb +18 -6
- data/lib/aws-sdk-bedrockagentruntime/types.rb +7 -3
- data/lib/aws-sdk-bedrockagentruntime.rb +1 -1
- data/sig/client.rbs +1 -0
- data/sig/resource.rbs +1 -0
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5955ef5d25b46edf34a4c9c980ef6e32bfd22f5e6c5ac1abed7148ccd0dc0895
|
|
4
|
+
data.tar.gz: 669fcab0207065f68b653d3407e5142bbb587f3df2fa6a7798ca7a093b845fa7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 160c7f51ad71734850c5befb9f45eefd06c21663b8f0be31ec6b3c3deb3d6a39b8d47bfecd35bb7f635ba3741490e0be5dfbf7c994d20c49112f4728c6b08773
|
|
7
|
+
data.tar.gz: 7d8db3db80df067aecf4b21bd36d075940ea0ceabf6c0ac6c1f21d3cda181d4bf841f815d360fafe4d0252171681984dceea3c7ec93fb3a4a7e9a3deb748fefe
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.24.0 (2024-09-20)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
8
|
+
|
|
9
|
+
1.23.0 (2024-09-11)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Amazon Bedrock Knowledge Bases now supports using inference profiles to increase throughput and improve resilience.
|
|
13
|
+
|
|
4
14
|
1.22.0 (2024-09-10)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.24.0
|
|
@@ -132,13 +132,15 @@ module Aws::BedrockAgentRuntime
|
|
|
132
132
|
# locations will be searched for credentials:
|
|
133
133
|
#
|
|
134
134
|
# * `Aws.config[:credentials]`
|
|
135
|
-
# * The `:access_key_id`, `:secret_access_key`,
|
|
136
|
-
#
|
|
135
|
+
# * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
|
136
|
+
# `:account_id` options.
|
|
137
|
+
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'],
|
|
138
|
+
# ENV['AWS_SESSION_TOKEN'], and ENV['AWS_ACCOUNT_ID']
|
|
137
139
|
# * `~/.aws/credentials`
|
|
138
140
|
# * `~/.aws/config`
|
|
139
141
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
|
140
142
|
# are very aggressive. Construct and pass an instance of
|
|
141
|
-
# `Aws::
|
|
143
|
+
# `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
|
142
144
|
# enable retries and extended timeouts. Instance profile credential
|
|
143
145
|
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
|
144
146
|
# to true.
|
|
@@ -157,6 +159,8 @@ module Aws::BedrockAgentRuntime
|
|
|
157
159
|
#
|
|
158
160
|
# @option options [String] :access_key_id
|
|
159
161
|
#
|
|
162
|
+
# @option options [String] :account_id
|
|
163
|
+
#
|
|
160
164
|
# @option options [Boolean] :active_endpoint_cache (false)
|
|
161
165
|
# When set to `true`, a thread polling for endpoints will be running in
|
|
162
166
|
# the background every 60 secs (default). Defaults to `false`.
|
|
@@ -380,7 +384,9 @@ module Aws::BedrockAgentRuntime
|
|
|
380
384
|
# sending the request.
|
|
381
385
|
#
|
|
382
386
|
# @option options [Aws::BedrockAgentRuntime::EndpointProvider] :endpoint_provider
|
|
383
|
-
# The endpoint provider used to resolve endpoints. Any object that responds to
|
|
387
|
+
# The endpoint provider used to resolve endpoints. Any object that responds to
|
|
388
|
+
# `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to
|
|
389
|
+
# `Aws::BedrockAgentRuntime::EndpointParameters`.
|
|
384
390
|
#
|
|
385
391
|
# @option options [Float] :http_continue_timeout (1)
|
|
386
392
|
# The number of seconds to wait for a 100-continue response before sending the
|
|
@@ -1657,8 +1663,13 @@ module Aws::BedrockAgentRuntime
|
|
|
1657
1663
|
end
|
|
1658
1664
|
|
|
1659
1665
|
# Queries a knowledge base and generates responses based on the
|
|
1660
|
-
# retrieved results
|
|
1661
|
-
#
|
|
1666
|
+
# retrieved results and using the specified foundation model or
|
|
1667
|
+
# [inference profile][1]. The response only cites sources that are
|
|
1668
|
+
# relevant to the query.
|
|
1669
|
+
#
|
|
1670
|
+
#
|
|
1671
|
+
#
|
|
1672
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/cross-region-inference.html
|
|
1662
1673
|
#
|
|
1663
1674
|
# @option params [required, Types::RetrieveAndGenerateInput] :input
|
|
1664
1675
|
# Contains the query to be made to the knowledge base.
|
|
@@ -1890,7 +1901,7 @@ module Aws::BedrockAgentRuntime
|
|
|
1890
1901
|
tracer: tracer
|
|
1891
1902
|
)
|
|
1892
1903
|
context[:gem_name] = 'aws-sdk-bedrockagentruntime'
|
|
1893
|
-
context[:gem_version] = '1.
|
|
1904
|
+
context[:gem_version] = '1.24.0'
|
|
1894
1905
|
Seahorse::Client::Request.new(handlers, context)
|
|
1895
1906
|
end
|
|
1896
1907
|
|
|
@@ -14,84 +14,66 @@ module Aws::BedrockAgentRuntime
|
|
|
14
14
|
|
|
15
15
|
class DeleteAgentMemory
|
|
16
16
|
def self.build(context)
|
|
17
|
-
unless context.config.regional_endpoint
|
|
18
|
-
endpoint = context.config.endpoint.to_s
|
|
19
|
-
end
|
|
20
17
|
Aws::BedrockAgentRuntime::EndpointParameters.new(
|
|
21
18
|
region: context.config.region,
|
|
22
19
|
use_dual_stack: context.config.use_dualstack_endpoint,
|
|
23
20
|
use_fips: context.config.use_fips_endpoint,
|
|
24
|
-
endpoint: endpoint,
|
|
21
|
+
endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
|
|
25
22
|
)
|
|
26
23
|
end
|
|
27
24
|
end
|
|
28
25
|
|
|
29
26
|
class GetAgentMemory
|
|
30
27
|
def self.build(context)
|
|
31
|
-
unless context.config.regional_endpoint
|
|
32
|
-
endpoint = context.config.endpoint.to_s
|
|
33
|
-
end
|
|
34
28
|
Aws::BedrockAgentRuntime::EndpointParameters.new(
|
|
35
29
|
region: context.config.region,
|
|
36
30
|
use_dual_stack: context.config.use_dualstack_endpoint,
|
|
37
31
|
use_fips: context.config.use_fips_endpoint,
|
|
38
|
-
endpoint: endpoint,
|
|
32
|
+
endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
|
|
39
33
|
)
|
|
40
34
|
end
|
|
41
35
|
end
|
|
42
36
|
|
|
43
37
|
class InvokeAgent
|
|
44
38
|
def self.build(context)
|
|
45
|
-
unless context.config.regional_endpoint
|
|
46
|
-
endpoint = context.config.endpoint.to_s
|
|
47
|
-
end
|
|
48
39
|
Aws::BedrockAgentRuntime::EndpointParameters.new(
|
|
49
40
|
region: context.config.region,
|
|
50
41
|
use_dual_stack: context.config.use_dualstack_endpoint,
|
|
51
42
|
use_fips: context.config.use_fips_endpoint,
|
|
52
|
-
endpoint: endpoint,
|
|
43
|
+
endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
|
|
53
44
|
)
|
|
54
45
|
end
|
|
55
46
|
end
|
|
56
47
|
|
|
57
48
|
class InvokeFlow
|
|
58
49
|
def self.build(context)
|
|
59
|
-
unless context.config.regional_endpoint
|
|
60
|
-
endpoint = context.config.endpoint.to_s
|
|
61
|
-
end
|
|
62
50
|
Aws::BedrockAgentRuntime::EndpointParameters.new(
|
|
63
51
|
region: context.config.region,
|
|
64
52
|
use_dual_stack: context.config.use_dualstack_endpoint,
|
|
65
53
|
use_fips: context.config.use_fips_endpoint,
|
|
66
|
-
endpoint: endpoint,
|
|
54
|
+
endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
|
|
67
55
|
)
|
|
68
56
|
end
|
|
69
57
|
end
|
|
70
58
|
|
|
71
59
|
class Retrieve
|
|
72
60
|
def self.build(context)
|
|
73
|
-
unless context.config.regional_endpoint
|
|
74
|
-
endpoint = context.config.endpoint.to_s
|
|
75
|
-
end
|
|
76
61
|
Aws::BedrockAgentRuntime::EndpointParameters.new(
|
|
77
62
|
region: context.config.region,
|
|
78
63
|
use_dual_stack: context.config.use_dualstack_endpoint,
|
|
79
64
|
use_fips: context.config.use_fips_endpoint,
|
|
80
|
-
endpoint: endpoint,
|
|
65
|
+
endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
|
|
81
66
|
)
|
|
82
67
|
end
|
|
83
68
|
end
|
|
84
69
|
|
|
85
70
|
class RetrieveAndGenerate
|
|
86
71
|
def self.build(context)
|
|
87
|
-
unless context.config.regional_endpoint
|
|
88
|
-
endpoint = context.config.endpoint.to_s
|
|
89
|
-
end
|
|
90
72
|
Aws::BedrockAgentRuntime::EndpointParameters.new(
|
|
91
73
|
region: context.config.region,
|
|
92
74
|
use_dual_stack: context.config.use_dualstack_endpoint,
|
|
93
75
|
use_fips: context.config.use_fips_endpoint,
|
|
94
|
-
endpoint: endpoint,
|
|
76
|
+
endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
|
|
95
77
|
)
|
|
96
78
|
end
|
|
97
79
|
end
|
|
@@ -15,11 +15,11 @@ module Aws::BedrockAgentRuntime
|
|
|
15
15
|
:endpoint_provider,
|
|
16
16
|
doc_type: 'Aws::BedrockAgentRuntime::EndpointProvider',
|
|
17
17
|
rbs_type: 'untyped',
|
|
18
|
-
docstring:
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
18
|
+
docstring: <<~DOCS) do |_cfg|
|
|
19
|
+
The endpoint provider used to resolve endpoints. Any object that responds to
|
|
20
|
+
`#resolve_endpoint(parameters)` where `parameters` is a Struct similar to
|
|
21
|
+
`Aws::BedrockAgentRuntime::EndpointParameters`.
|
|
22
|
+
DOCS
|
|
23
23
|
Aws::BedrockAgentRuntime::EndpointProvider.new
|
|
24
24
|
end
|
|
25
25
|
|
|
@@ -40,11 +40,23 @@ module Aws::BedrockAgentRuntime
|
|
|
40
40
|
context[:auth_scheme] =
|
|
41
41
|
Aws::Endpoints.resolve_auth_scheme(context, endpoint)
|
|
42
42
|
|
|
43
|
-
@handler.call(context)
|
|
43
|
+
with_metrics(context) { @handler.call(context) }
|
|
44
44
|
end
|
|
45
45
|
|
|
46
46
|
private
|
|
47
47
|
|
|
48
|
+
def with_metrics(context, &block)
|
|
49
|
+
metrics = []
|
|
50
|
+
metrics << 'ENDPOINT_OVERRIDE' unless context.config.regional_endpoint
|
|
51
|
+
if context[:auth_scheme] && context[:auth_scheme]['name'] == 'sigv4a'
|
|
52
|
+
metrics << 'SIGV4A_SIGNING'
|
|
53
|
+
end
|
|
54
|
+
if context.config.credentials&.credentials&.account_id
|
|
55
|
+
metrics << 'RESOLVED_ACCOUNT_ID'
|
|
56
|
+
end
|
|
57
|
+
Aws::Plugins::UserAgent.metric(*metrics, &block)
|
|
58
|
+
end
|
|
59
|
+
|
|
48
60
|
def apply_endpoint_headers(context, headers)
|
|
49
61
|
headers.each do |key, values|
|
|
50
62
|
value = values
|
|
@@ -1985,12 +1985,16 @@ module Aws::BedrockAgentRuntime
|
|
|
1985
1985
|
# @return [Types::GenerationConfiguration]
|
|
1986
1986
|
#
|
|
1987
1987
|
# @!attribute [rw] knowledge_base_id
|
|
1988
|
-
# The unique identifier of the knowledge base that is queried
|
|
1989
|
-
# foundation model used for generation.
|
|
1988
|
+
# The unique identifier of the knowledge base that is queried.
|
|
1990
1989
|
# @return [String]
|
|
1991
1990
|
#
|
|
1992
1991
|
# @!attribute [rw] model_arn
|
|
1993
|
-
# The ARN of the foundation model
|
|
1992
|
+
# The ARN of the foundation model or [inference profile][1] used to
|
|
1993
|
+
# generate a response.
|
|
1994
|
+
#
|
|
1995
|
+
#
|
|
1996
|
+
#
|
|
1997
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/cross-region-inference.html
|
|
1994
1998
|
# @return [String]
|
|
1995
1999
|
#
|
|
1996
2000
|
# @!attribute [rw] orchestration_configuration
|
data/sig/client.rbs
CHANGED
data/sig/resource.rbs
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-bedrockagentruntime
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.24.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-09-
|
|
11
|
+
date: 2024-09-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|
|
@@ -19,7 +19,7 @@ dependencies:
|
|
|
19
19
|
version: '3'
|
|
20
20
|
- - ">="
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
|
-
version: 3.
|
|
22
|
+
version: 3.207.0
|
|
23
23
|
type: :runtime
|
|
24
24
|
prerelease: false
|
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -29,7 +29,7 @@ dependencies:
|
|
|
29
29
|
version: '3'
|
|
30
30
|
- - ">="
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: 3.
|
|
32
|
+
version: 3.207.0
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: aws-sigv4
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|