aws-sdk-bedrockagentcore 1.33.0 → 1.35.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-bedrockagentcore/client.rb +44 -83
- data/lib/aws-sdk-bedrockagentcore/client_api.rb +2 -0
- data/lib/aws-sdk-bedrockagentcore/types.rb +144 -158
- data/lib/aws-sdk-bedrockagentcore.rb +1 -1
- data/sig/client.rbs +36 -134
- data/sig/params.rbs +78 -0
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ee5d326cf64f99c675f47b2f96f9d1c17eb9954c769106575eb6046f9efb027b
|
|
4
|
+
data.tar.gz: 67ffde0b216bb2af82abe2a4cef93862c9731bb37dfe387f5db2785192e2e075
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3b046f4e269dff5ecf397164709dc3961e9115dd3856606d6028fc7fab9b97d4477f85415b5385424f062a197973f45cfef7538b1077d78788955ad9d614256a
|
|
7
|
+
data.tar.gz: f2e40d83e1cf8ee03cd1330fdd3095cf9be0fec3e0e3a24d1b2d41c0ee610b3ccc3bca2d095586112448e4d6c1f0e85b6e817873c4a50ef53ac1a7f6413110a7
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.35.0 (2026-05-21)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
8
|
+
|
|
9
|
+
1.34.0 (2026-05-19)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Add RetryableConflictException (HTTP 409) to InvokeAgentRuntime and StopRuntimeSession to prevent orphaned VMs during concurrent session access. The SDK automatically retries this exception with backoff. Enforcement is not yet active and will be enabled in a future service update.
|
|
13
|
+
|
|
4
14
|
1.33.0 (2026-05-13)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.35.0
|
|
@@ -201,7 +201,7 @@ module Aws::BedrockAgentCore
|
|
|
201
201
|
# the required types.
|
|
202
202
|
#
|
|
203
203
|
# @option options [Boolean] :correct_clock_skew (true)
|
|
204
|
-
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
|
204
|
+
# Used only in `standard` and `adaptive` retry modes. Specifies whether to apply
|
|
205
205
|
# a clock skew correction and retry requests with skewed client clocks.
|
|
206
206
|
#
|
|
207
207
|
# @option options [String] :defaults_mode ("legacy")
|
|
@@ -334,17 +334,15 @@ module Aws::BedrockAgentCore
|
|
|
334
334
|
# @option options [String] :retry_mode ("legacy")
|
|
335
335
|
# Specifies which retry algorithm to use. Values are:
|
|
336
336
|
#
|
|
337
|
-
# * `legacy` - The pre-existing retry behavior.
|
|
338
|
-
# no retry mode is provided.
|
|
337
|
+
# * `legacy` - The pre-existing retry behavior. This is the default
|
|
338
|
+
# value if no retry mode is provided.
|
|
339
339
|
#
|
|
340
340
|
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
|
341
341
|
# This includes support for retry quotas, which limit the number of
|
|
342
342
|
# unsuccessful retries a client can make.
|
|
343
343
|
#
|
|
344
|
-
# * `adaptive` -
|
|
345
|
-
#
|
|
346
|
-
# throttling. This is a provisional mode that may change behavior
|
|
347
|
-
# in the future.
|
|
344
|
+
# * `adaptive` - A retry mode that includes all the functionality of
|
|
345
|
+
# `standard` mode along with automatic client side throttling.
|
|
348
346
|
#
|
|
349
347
|
# @option options [String] :sdk_ua_app_id
|
|
350
348
|
# A unique and opaque application ID that is appended to the
|
|
@@ -922,7 +920,7 @@ module Aws::BedrockAgentCore
|
|
|
922
920
|
req.send_request(options)
|
|
923
921
|
end
|
|
924
922
|
|
|
925
|
-
# Create a new payment instrument for a connector
|
|
923
|
+
# Create a new payment instrument for a connector.
|
|
926
924
|
#
|
|
927
925
|
# @option params [String] :user_id
|
|
928
926
|
# The user ID associated with this payment instrument.
|
|
@@ -943,7 +941,8 @@ module Aws::BedrockAgentCore
|
|
|
943
941
|
# The details of the payment instrument.
|
|
944
942
|
#
|
|
945
943
|
# @option params [String] :client_token
|
|
946
|
-
#
|
|
944
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
|
945
|
+
# idempotency of the request.
|
|
947
946
|
#
|
|
948
947
|
# **A suitable default value is auto-generated.** You should normally
|
|
949
948
|
# not need to pass this option.**
|
|
@@ -1064,7 +1063,7 @@ module Aws::BedrockAgentCore
|
|
|
1064
1063
|
req.send_request(options)
|
|
1065
1064
|
end
|
|
1066
1065
|
|
|
1067
|
-
# Create a new payment
|
|
1066
|
+
# Create a new payment session.
|
|
1068
1067
|
#
|
|
1069
1068
|
# @option params [String] :user_id
|
|
1070
1069
|
# The user ID associated with this payment session.
|
|
@@ -1083,7 +1082,8 @@ module Aws::BedrockAgentCore
|
|
|
1083
1082
|
# minutes.
|
|
1084
1083
|
#
|
|
1085
1084
|
# @option params [String] :client_token
|
|
1086
|
-
#
|
|
1085
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
|
1086
|
+
# idempotency of the request.
|
|
1087
1087
|
#
|
|
1088
1088
|
# **A suitable default value is auto-generated.** You should normally
|
|
1089
1089
|
# not need to pass this option.**
|
|
@@ -1277,33 +1277,8 @@ module Aws::BedrockAgentCore
|
|
|
1277
1277
|
req.send_request(options)
|
|
1278
1278
|
end
|
|
1279
1279
|
|
|
1280
|
-
#
|
|
1281
|
-
#
|
|
1282
|
-
# Marks a payment instrument as deleted by updating its status to
|
|
1283
|
-
# DELETED. This is a soft delete operation that preserves the record in
|
|
1284
|
-
# the database for audit and compliance purposes. The record remains
|
|
1285
|
-
# queryable for audit purposes but is excluded from normal list and get
|
|
1286
|
-
# operations.
|
|
1287
|
-
#
|
|
1288
|
-
# Deleting an already-deleted or non-existent instrument returns
|
|
1289
|
-
# ResourceNotFoundException (404).
|
|
1290
|
-
#
|
|
1291
|
-
# Authorization: The caller must own the instrument (accountId, userId,
|
|
1292
|
-
# and paymentManagerId must match). If authorization fails, a 403
|
|
1293
|
-
# Forbidden error is returned.
|
|
1294
|
-
#
|
|
1295
|
-
# Timestamp Management: The updatedAt timestamp is set to the current
|
|
1296
|
-
# time, while createdAt is preserved. The version field is incremented
|
|
1297
|
-
# for optimistic locking.
|
|
1298
|
-
#
|
|
1299
|
-
# Errors:
|
|
1300
|
-
#
|
|
1301
|
-
# * ResourceNotFoundException: The instrument does not exist or is
|
|
1302
|
-
# already deleted
|
|
1303
|
-
# * AccessDeniedException: The caller is not authorized to delete this
|
|
1304
|
-
# instrument
|
|
1305
|
-
# * ValidationException: Required fields are missing or invalid
|
|
1306
|
-
# * InternalServerException: An unexpected server error occurred
|
|
1280
|
+
# Deletes a payment instrument. This is a soft delete operation that
|
|
1281
|
+
# preserves the record for audit and compliance purposes.
|
|
1307
1282
|
#
|
|
1308
1283
|
# @option params [String] :user_id
|
|
1309
1284
|
# The user ID making the delete request. Must match the instrument's
|
|
@@ -1346,26 +1321,8 @@ module Aws::BedrockAgentCore
|
|
|
1346
1321
|
req.send_request(options)
|
|
1347
1322
|
end
|
|
1348
1323
|
|
|
1349
|
-
#
|
|
1350
|
-
#
|
|
1351
|
-
# Permanently removes a payment session record from the database. This
|
|
1352
|
-
# is a hard delete operation that removes the session completely.
|
|
1353
|
-
#
|
|
1354
|
-
# Deleting a non-existent or already-deleted session returns
|
|
1355
|
-
# ResourceNotFoundException (404).
|
|
1356
|
-
#
|
|
1357
|
-
# Authorization: The caller must own the session (accountId, userId, and
|
|
1358
|
-
# paymentManagerId must match). If authorization fails, a 403 Forbidden
|
|
1359
|
-
# error is returned.
|
|
1360
|
-
#
|
|
1361
|
-
# Errors:
|
|
1362
|
-
#
|
|
1363
|
-
# * ResourceNotFoundException: The session does not exist or has already
|
|
1364
|
-
# been deleted
|
|
1365
|
-
# * AccessDeniedException: The caller is not authorized to delete this
|
|
1366
|
-
# session
|
|
1367
|
-
# * ValidationException: Required fields are missing or invalid
|
|
1368
|
-
# * InternalServerException: An unexpected server error occurred
|
|
1324
|
+
# Deletes a payment session. This permanently removes the payment
|
|
1325
|
+
# session record.
|
|
1369
1326
|
#
|
|
1370
1327
|
# @option params [String] :user_id
|
|
1371
1328
|
# The user ID making the delete request. Must match the session's
|
|
@@ -2005,7 +1962,7 @@ module Aws::BedrockAgentCore
|
|
|
2005
1962
|
req.send_request(options)
|
|
2006
1963
|
end
|
|
2007
1964
|
|
|
2008
|
-
# Get a payment instrument by ID
|
|
1965
|
+
# Get a payment instrument by ID.
|
|
2009
1966
|
#
|
|
2010
1967
|
# @option params [String] :user_id
|
|
2011
1968
|
# The user ID associated with this payment instrument.
|
|
@@ -2084,7 +2041,7 @@ module Aws::BedrockAgentCore
|
|
|
2084
2041
|
req.send_request(options)
|
|
2085
2042
|
end
|
|
2086
2043
|
|
|
2087
|
-
# Get the balance of a payment instrument
|
|
2044
|
+
# Get the balance of a payment instrument.
|
|
2088
2045
|
#
|
|
2089
2046
|
# @option params [String] :user_id
|
|
2090
2047
|
# The user ID associated with this payment instrument.
|
|
@@ -2103,12 +2060,11 @@ module Aws::BedrockAgentCore
|
|
|
2103
2060
|
#
|
|
2104
2061
|
# @option params [required, String] :chain
|
|
2105
2062
|
# The specific blockchain chain to query balance on. Required because
|
|
2106
|
-
# balances are chain-specific
|
|
2107
|
-
# different token balances on different chains.
|
|
2063
|
+
# balances are chain-specific.
|
|
2108
2064
|
#
|
|
2109
2065
|
# @option params [required, String] :token
|
|
2110
|
-
# The token to query balance for.
|
|
2111
|
-
#
|
|
2066
|
+
# The token to query balance for. Only tokens supported for X402
|
|
2067
|
+
# payments are returned.
|
|
2112
2068
|
#
|
|
2113
2069
|
# @return [Types::GetPaymentInstrumentBalanceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2114
2070
|
#
|
|
@@ -2145,7 +2101,7 @@ module Aws::BedrockAgentCore
|
|
|
2145
2101
|
req.send_request(options)
|
|
2146
2102
|
end
|
|
2147
2103
|
|
|
2148
|
-
# Get a payment session
|
|
2104
|
+
# Get a payment session.
|
|
2149
2105
|
#
|
|
2150
2106
|
# @option params [String] :user_id
|
|
2151
2107
|
# The user ID associated with this payment session.
|
|
@@ -2421,15 +2377,14 @@ module Aws::BedrockAgentCore
|
|
|
2421
2377
|
# vendor-specific authentication mechanisms.
|
|
2422
2378
|
#
|
|
2423
2379
|
# @option params [required, String] :workload_identity_token
|
|
2424
|
-
# Workload access token for authorization.
|
|
2425
|
-
# for consistency with APIKey and OAuth2CredentialProvider.
|
|
2380
|
+
# Workload access token for authorization.
|
|
2426
2381
|
#
|
|
2427
2382
|
# @option params [required, String] :resource_credential_provider_name
|
|
2428
|
-
# Name of the payment credential provider to use
|
|
2383
|
+
# Name of the payment credential provider to use.
|
|
2429
2384
|
#
|
|
2430
2385
|
# @option params [required, Types::PaymentTokenRequestInput] :payment_token_request
|
|
2431
|
-
# Vendor-specific token request input Contains all request parameters
|
|
2432
|
-
# a type-safe, vendor-specific structure
|
|
2386
|
+
# Vendor-specific token request input. Contains all request parameters
|
|
2387
|
+
# in a type-safe, vendor-specific structure.
|
|
2433
2388
|
#
|
|
2434
2389
|
# @return [Types::GetResourcePaymentTokenResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2435
2390
|
#
|
|
@@ -4385,11 +4340,13 @@ module Aws::BedrockAgentCore
|
|
|
4385
4340
|
#
|
|
4386
4341
|
# @option params [String] :namespace
|
|
4387
4342
|
# The namespace prefix to filter memory records by. Returns all memory
|
|
4388
|
-
# records in namespaces that start with the provided prefix.
|
|
4343
|
+
# records in namespaces that start with the provided prefix. Either
|
|
4344
|
+
# `namespace` or `namespacePath` is required.
|
|
4389
4345
|
#
|
|
4390
4346
|
# @option params [String] :namespace_path
|
|
4391
4347
|
# Use namespacePath for hierarchical retrievals. Return all memory
|
|
4392
|
-
# records where namespace falls under the same parent hierarchy.
|
|
4348
|
+
# records where namespace falls under the same parent hierarchy. Either
|
|
4349
|
+
# `namespace` or `namespacePath` is required.
|
|
4393
4350
|
#
|
|
4394
4351
|
# @option params [String] :memory_strategy_id
|
|
4395
4352
|
# The memory strategy identifier to filter memory records by. If
|
|
@@ -4469,7 +4426,7 @@ module Aws::BedrockAgentCore
|
|
|
4469
4426
|
req.send_request(options)
|
|
4470
4427
|
end
|
|
4471
4428
|
|
|
4472
|
-
# List payment instruments for a manager
|
|
4429
|
+
# List payment instruments for a manager.
|
|
4473
4430
|
#
|
|
4474
4431
|
# @option params [String] :user_id
|
|
4475
4432
|
# The user ID associated with the payment instruments.
|
|
@@ -4529,7 +4486,7 @@ module Aws::BedrockAgentCore
|
|
|
4529
4486
|
req.send_request(options)
|
|
4530
4487
|
end
|
|
4531
4488
|
|
|
4532
|
-
# List payment
|
|
4489
|
+
# List payment sessions.
|
|
4533
4490
|
#
|
|
4534
4491
|
# @option params [String] :user_id
|
|
4535
4492
|
# The user ID associated with the payment sessions.
|
|
@@ -4703,7 +4660,8 @@ module Aws::BedrockAgentCore
|
|
|
4703
4660
|
req.send_request(options)
|
|
4704
4661
|
end
|
|
4705
4662
|
|
|
4706
|
-
#
|
|
4663
|
+
# Processes a payment using a payment instrument within a payment
|
|
4664
|
+
# session.
|
|
4707
4665
|
#
|
|
4708
4666
|
# @option params [String] :user_id
|
|
4709
4667
|
# The user ID associated with this payment.
|
|
@@ -4712,22 +4670,23 @@ module Aws::BedrockAgentCore
|
|
|
4712
4670
|
# The agent name associated with this request, used for observability.
|
|
4713
4671
|
#
|
|
4714
4672
|
# @option params [required, String] :payment_manager_arn
|
|
4715
|
-
# The ARN of the payment manager
|
|
4673
|
+
# The ARN of the payment manager.
|
|
4716
4674
|
#
|
|
4717
4675
|
# @option params [required, String] :payment_session_id
|
|
4718
|
-
# The ID of the payment session
|
|
4676
|
+
# The ID of the payment session.
|
|
4719
4677
|
#
|
|
4720
4678
|
# @option params [required, String] :payment_instrument_id
|
|
4721
|
-
# The ID of the payment instrument to use
|
|
4679
|
+
# The ID of the payment instrument to use.
|
|
4722
4680
|
#
|
|
4723
4681
|
# @option params [required, String] :payment_type
|
|
4724
|
-
# The type of payment
|
|
4682
|
+
# The type of payment to process.
|
|
4725
4683
|
#
|
|
4726
4684
|
# @option params [required, Types::PaymentInput] :payment_input
|
|
4727
4685
|
# The payment input details specific to the payment type.
|
|
4728
4686
|
#
|
|
4729
4687
|
# @option params [String] :client_token
|
|
4730
|
-
#
|
|
4688
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
|
4689
|
+
# idempotency of the request.
|
|
4731
4690
|
#
|
|
4732
4691
|
# **A suitable default value is auto-generated.** You should normally
|
|
4733
4692
|
# not need to pass this option.**
|
|
@@ -4798,11 +4757,13 @@ module Aws::BedrockAgentCore
|
|
|
4798
4757
|
#
|
|
4799
4758
|
# @option params [String] :namespace
|
|
4800
4759
|
# The namespace prefix to filter memory records by. Searches for memory
|
|
4801
|
-
# records in namespaces that start with the provided prefix.
|
|
4760
|
+
# records in namespaces that start with the provided prefix. Either
|
|
4761
|
+
# `namespace` or `namespacePath` is required.
|
|
4802
4762
|
#
|
|
4803
4763
|
# @option params [String] :namespace_path
|
|
4804
4764
|
# Use namespacePath for hierarchical retrievals. Return all memory
|
|
4805
|
-
# records where namespace falls under the same parent hierarchy.
|
|
4765
|
+
# records where namespace falls under the same parent hierarchy. Either
|
|
4766
|
+
# `namespace` or `namespacePath` is required.
|
|
4806
4767
|
#
|
|
4807
4768
|
# @option params [required, Types::SearchCriteria] :search_criteria
|
|
4808
4769
|
# The search criteria to use for finding relevant memory records. This
|
|
@@ -6114,7 +6075,7 @@ module Aws::BedrockAgentCore
|
|
|
6114
6075
|
tracer: tracer
|
|
6115
6076
|
)
|
|
6116
6077
|
context[:gem_name] = 'aws-sdk-bedrockagentcore'
|
|
6117
|
-
context[:gem_version] = '1.
|
|
6078
|
+
context[:gem_version] = '1.35.0'
|
|
6118
6079
|
Seahorse::Client::Request.new(handlers, context)
|
|
6119
6080
|
end
|
|
6120
6081
|
|
|
@@ -3540,6 +3540,7 @@ module Aws::BedrockAgentCore
|
|
|
3540
3540
|
o.input = Shapes::ShapeRef.new(shape: InvokeAgentRuntimeRequest)
|
|
3541
3541
|
o.output = Shapes::ShapeRef.new(shape: InvokeAgentRuntimeResponse)
|
|
3542
3542
|
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
3543
|
+
o.errors << Shapes::ShapeRef.new(shape: RetryableConflictException)
|
|
3543
3544
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
3544
3545
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3545
3546
|
o.errors << Shapes::ShapeRef.new(shape: RuntimeClientError)
|
|
@@ -4016,6 +4017,7 @@ module Aws::BedrockAgentCore
|
|
|
4016
4017
|
o.output = Shapes::ShapeRef.new(shape: StopRuntimeSessionResponse)
|
|
4017
4018
|
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
4018
4019
|
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
|
4020
|
+
o.errors << Shapes::ShapeRef.new(shape: RetryableConflictException)
|
|
4019
4021
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
4020
4022
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
4021
4023
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|