aws-sdk-bedrockagentcorecontrol 1.12.0 → 1.14.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-bedrockagentcorecontrol/client.rb +50 -1
- data/lib/aws-sdk-bedrockagentcorecontrol/client_api.rb +33 -0
- data/lib/aws-sdk-bedrockagentcorecontrol/types.rb +127 -2
- data/lib/aws-sdk-bedrockagentcorecontrol.rb +1 -1
- data/sig/client.rbs +30 -2
- data/sig/types.rbs +35 -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: ed09ddd82e1cccc46ff28d6643442f086e9a0271aa136c8a8f5a83abc61d76f6
|
|
4
|
+
data.tar.gz: cc9a2648ce01392a6b4171300dcfab528dcd3413cf35935367b03838e8926904
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dcb0d28c96352e846b1049bad9cdf4c48d2094ee3d5f36995b7d7e7b680d1d19b116c72fb7b2faf0ab331777b99de05e2d19c5be690c82e3988c6a53ad961e66
|
|
7
|
+
data.tar.gz: 82640d7f265d234592cc06469f16f0bc4b44d30130d8dd1cfef7eda9d515d65ac8721ccfbe258fba8df487098529bfff59207ede57bdfc2c461d63cf7a34a7b4
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.14.0 (2025-11-03)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Adds support for direct code deploy with CreateAgentRuntime and UpdateAgentRuntime
|
|
8
|
+
|
|
9
|
+
1.13.0 (2025-10-30)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Web-Bot-Auth support for AgentCore Browser tool to help reduce captcha challenges.
|
|
13
|
+
|
|
4
14
|
1.12.0 (2025-10-23)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.14.0
|
|
@@ -539,6 +539,17 @@ module Aws::BedrockAgentCoreControl
|
|
|
539
539
|
# container_configuration: {
|
|
540
540
|
# container_uri: "RuntimeContainerUri", # required
|
|
541
541
|
# },
|
|
542
|
+
# code_configuration: {
|
|
543
|
+
# code: { # required
|
|
544
|
+
# s3: {
|
|
545
|
+
# bucket: "S3LocationBucketString", # required
|
|
546
|
+
# prefix: "S3LocationPrefixString", # required
|
|
547
|
+
# version_id: "S3LocationVersionIdString",
|
|
548
|
+
# },
|
|
549
|
+
# },
|
|
550
|
+
# runtime: "PYTHON_3_10", # required, accepts PYTHON_3_10, PYTHON_3_11, PYTHON_3_12, PYTHON_3_13
|
|
551
|
+
# entry_point: ["entryPoint"], # required
|
|
552
|
+
# },
|
|
542
553
|
# },
|
|
543
554
|
# role_arn: "RoleArn", # required
|
|
544
555
|
# network_configuration: { # required
|
|
@@ -728,6 +739,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
728
739
|
# The recording configuration for the browser. When enabled, browser
|
|
729
740
|
# sessions are recorded and stored in the specified Amazon S3 location.
|
|
730
741
|
#
|
|
742
|
+
# @option params [Types::BrowserSigningConfigInput] :browser_signing
|
|
743
|
+
# The browser signing configuration that enables cryptographic agent
|
|
744
|
+
# identification using HTTP message signatures for web bot
|
|
745
|
+
# authentication.
|
|
746
|
+
#
|
|
731
747
|
# @option params [String] :client_token
|
|
732
748
|
# A unique, case-sensitive identifier to ensure that the operation
|
|
733
749
|
# completes no more than one time. If this token matches a previous
|
|
@@ -767,8 +783,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
767
783
|
# s3_location: {
|
|
768
784
|
# bucket: "S3LocationBucketString", # required
|
|
769
785
|
# prefix: "S3LocationPrefixString", # required
|
|
786
|
+
# version_id: "S3LocationVersionIdString",
|
|
770
787
|
# },
|
|
771
788
|
# },
|
|
789
|
+
# browser_signing: {
|
|
790
|
+
# enabled: false, # required
|
|
791
|
+
# },
|
|
772
792
|
# client_token: "ClientToken",
|
|
773
793
|
# tags: {
|
|
774
794
|
# "TagKey" => "TagValue",
|
|
@@ -1636,6 +1656,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
1636
1656
|
# @option params [required, String] :agent_runtime_id
|
|
1637
1657
|
# The unique identifier of the AgentCore Runtime to delete.
|
|
1638
1658
|
#
|
|
1659
|
+
# @option params [String] :client_token
|
|
1660
|
+
# A unique, case-sensitive identifier to ensure that the operation
|
|
1661
|
+
# completes no more than one time. If this token matches a previous
|
|
1662
|
+
# request, the service ignores the request but does not return an error.
|
|
1663
|
+
#
|
|
1664
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
1665
|
+
# not need to pass this option.**
|
|
1666
|
+
#
|
|
1639
1667
|
# @return [Types::DeleteAgentRuntimeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1640
1668
|
#
|
|
1641
1669
|
# * {Types::DeleteAgentRuntimeResponse#status #status} => String
|
|
@@ -1645,6 +1673,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1645
1673
|
#
|
|
1646
1674
|
# resp = client.delete_agent_runtime({
|
|
1647
1675
|
# agent_runtime_id: "AgentRuntimeId", # required
|
|
1676
|
+
# client_token: "ClientToken",
|
|
1648
1677
|
# })
|
|
1649
1678
|
#
|
|
1650
1679
|
# @example Response structure
|
|
@@ -2018,6 +2047,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
2018
2047
|
# resp.description #=> String
|
|
2019
2048
|
# resp.workload_identity_details.workload_identity_arn #=> String
|
|
2020
2049
|
# resp.agent_runtime_artifact.container_configuration.container_uri #=> String
|
|
2050
|
+
# resp.agent_runtime_artifact.code_configuration.code.s3.bucket #=> String
|
|
2051
|
+
# resp.agent_runtime_artifact.code_configuration.code.s3.prefix #=> String
|
|
2052
|
+
# resp.agent_runtime_artifact.code_configuration.code.s3.version_id #=> String
|
|
2053
|
+
# resp.agent_runtime_artifact.code_configuration.runtime #=> String, one of "PYTHON_3_10", "PYTHON_3_11", "PYTHON_3_12", "PYTHON_3_13"
|
|
2054
|
+
# resp.agent_runtime_artifact.code_configuration.entry_point #=> Array
|
|
2055
|
+
# resp.agent_runtime_artifact.code_configuration.entry_point[0] #=> String
|
|
2021
2056
|
# resp.protocol_configuration.server_protocol #=> String, one of "MCP", "HTTP", "A2A"
|
|
2022
2057
|
# resp.environment_variables #=> Hash
|
|
2023
2058
|
# resp.environment_variables["EnvironmentVariableKey"] #=> String
|
|
@@ -2141,6 +2176,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2141
2176
|
# * {Types::GetBrowserResponse#execution_role_arn #execution_role_arn} => String
|
|
2142
2177
|
# * {Types::GetBrowserResponse#network_configuration #network_configuration} => Types::BrowserNetworkConfiguration
|
|
2143
2178
|
# * {Types::GetBrowserResponse#recording #recording} => Types::RecordingConfig
|
|
2179
|
+
# * {Types::GetBrowserResponse#browser_signing #browser_signing} => Types::BrowserSigningConfigOutput
|
|
2144
2180
|
# * {Types::GetBrowserResponse#status #status} => String
|
|
2145
2181
|
# * {Types::GetBrowserResponse#failure_reason #failure_reason} => String
|
|
2146
2182
|
# * {Types::GetBrowserResponse#created_at #created_at} => Time
|
|
@@ -2167,6 +2203,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
2167
2203
|
# resp.recording.enabled #=> Boolean
|
|
2168
2204
|
# resp.recording.s3_location.bucket #=> String
|
|
2169
2205
|
# resp.recording.s3_location.prefix #=> String
|
|
2206
|
+
# resp.recording.s3_location.version_id #=> String
|
|
2207
|
+
# resp.browser_signing.enabled #=> Boolean
|
|
2170
2208
|
# resp.status #=> String, one of "CREATING", "CREATE_FAILED", "READY", "DELETING", "DELETE_FAILED", "DELETED"
|
|
2171
2209
|
# resp.failure_reason #=> String
|
|
2172
2210
|
# resp.created_at #=> Time
|
|
@@ -3439,6 +3477,17 @@ module Aws::BedrockAgentCoreControl
|
|
|
3439
3477
|
# container_configuration: {
|
|
3440
3478
|
# container_uri: "RuntimeContainerUri", # required
|
|
3441
3479
|
# },
|
|
3480
|
+
# code_configuration: {
|
|
3481
|
+
# code: { # required
|
|
3482
|
+
# s3: {
|
|
3483
|
+
# bucket: "S3LocationBucketString", # required
|
|
3484
|
+
# prefix: "S3LocationPrefixString", # required
|
|
3485
|
+
# version_id: "S3LocationVersionIdString",
|
|
3486
|
+
# },
|
|
3487
|
+
# },
|
|
3488
|
+
# runtime: "PYTHON_3_10", # required, accepts PYTHON_3_10, PYTHON_3_11, PYTHON_3_12, PYTHON_3_13
|
|
3489
|
+
# entry_point: ["entryPoint"], # required
|
|
3490
|
+
# },
|
|
3442
3491
|
# },
|
|
3443
3492
|
# role_arn: "RoleArn", # required
|
|
3444
3493
|
# network_configuration: { # required
|
|
@@ -4373,7 +4422,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
4373
4422
|
tracer: tracer
|
|
4374
4423
|
)
|
|
4375
4424
|
context[:gem_name] = 'aws-sdk-bedrockagentcorecontrol'
|
|
4376
|
-
context[:gem_version] = '1.
|
|
4425
|
+
context[:gem_version] = '1.14.0'
|
|
4377
4426
|
Seahorse::Client::Request.new(handlers, context)
|
|
4378
4427
|
end
|
|
4379
4428
|
|
|
@@ -16,6 +16,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
16
16
|
|
|
17
17
|
AccessDeniedException = Shapes::StructureShape.new(name: 'AccessDeniedException')
|
|
18
18
|
AgentEndpointDescription = Shapes::StringShape.new(name: 'AgentEndpointDescription')
|
|
19
|
+
AgentManagedRuntimeType = Shapes::StringShape.new(name: 'AgentManagedRuntimeType')
|
|
19
20
|
AgentRuntime = Shapes::StructureShape.new(name: 'AgentRuntime')
|
|
20
21
|
AgentRuntimeArn = Shapes::StringShape.new(name: 'AgentRuntimeArn')
|
|
21
22
|
AgentRuntimeArtifact = Shapes::UnionShape.new(name: 'AgentRuntimeArtifact')
|
|
@@ -55,12 +56,17 @@ module Aws::BedrockAgentCoreControl
|
|
|
55
56
|
BrowserId = Shapes::StringShape.new(name: 'BrowserId')
|
|
56
57
|
BrowserNetworkConfiguration = Shapes::StructureShape.new(name: 'BrowserNetworkConfiguration')
|
|
57
58
|
BrowserNetworkMode = Shapes::StringShape.new(name: 'BrowserNetworkMode')
|
|
59
|
+
BrowserSigningConfigInput = Shapes::StructureShape.new(name: 'BrowserSigningConfigInput')
|
|
60
|
+
BrowserSigningConfigOutput = Shapes::StructureShape.new(name: 'BrowserSigningConfigOutput')
|
|
58
61
|
BrowserStatus = Shapes::StringShape.new(name: 'BrowserStatus')
|
|
59
62
|
BrowserSummaries = Shapes::ListShape.new(name: 'BrowserSummaries')
|
|
60
63
|
BrowserSummary = Shapes::StructureShape.new(name: 'BrowserSummary')
|
|
61
64
|
ClientIdType = Shapes::StringShape.new(name: 'ClientIdType')
|
|
62
65
|
ClientSecretType = Shapes::StringShape.new(name: 'ClientSecretType')
|
|
63
66
|
ClientToken = Shapes::StringShape.new(name: 'ClientToken')
|
|
67
|
+
Code = Shapes::UnionShape.new(name: 'Code')
|
|
68
|
+
CodeConfiguration = Shapes::StructureShape.new(name: 'CodeConfiguration')
|
|
69
|
+
CodeConfigurationEntryPointList = Shapes::ListShape.new(name: 'CodeConfigurationEntryPointList')
|
|
64
70
|
CodeInterpreterArn = Shapes::StringShape.new(name: 'CodeInterpreterArn')
|
|
65
71
|
CodeInterpreterId = Shapes::StringShape.new(name: 'CodeInterpreterId')
|
|
66
72
|
CodeInterpreterNetworkConfiguration = Shapes::StructureShape.new(name: 'CodeInterpreterNetworkConfiguration')
|
|
@@ -311,6 +317,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
311
317
|
S3Location = Shapes::StructureShape.new(name: 'S3Location')
|
|
312
318
|
S3LocationBucketString = Shapes::StringShape.new(name: 'S3LocationBucketString')
|
|
313
319
|
S3LocationPrefixString = Shapes::StringShape.new(name: 'S3LocationPrefixString')
|
|
320
|
+
S3LocationVersionIdString = Shapes::StringShape.new(name: 'S3LocationVersionIdString')
|
|
314
321
|
SalesforceOauth2ProviderConfigInput = Shapes::StructureShape.new(name: 'SalesforceOauth2ProviderConfigInput')
|
|
315
322
|
SalesforceOauth2ProviderConfigOutput = Shapes::StructureShape.new(name: 'SalesforceOauth2ProviderConfigOutput')
|
|
316
323
|
SandboxName = Shapes::StringShape.new(name: 'SandboxName')
|
|
@@ -426,6 +433,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
426
433
|
WorkloadIdentityList = Shapes::ListShape.new(name: 'WorkloadIdentityList')
|
|
427
434
|
WorkloadIdentityNameType = Shapes::StringShape.new(name: 'WorkloadIdentityNameType')
|
|
428
435
|
WorkloadIdentityType = Shapes::StructureShape.new(name: 'WorkloadIdentityType')
|
|
436
|
+
entryPoint = Shapes::StringShape.new(name: 'entryPoint')
|
|
429
437
|
|
|
430
438
|
AccessDeniedException.add_member(:message, Shapes::ShapeRef.new(shape: NonBlankString, location_name: "message"))
|
|
431
439
|
AccessDeniedException.struct_class = Types::AccessDeniedException
|
|
@@ -440,8 +448,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
440
448
|
AgentRuntime.struct_class = Types::AgentRuntime
|
|
441
449
|
|
|
442
450
|
AgentRuntimeArtifact.add_member(:container_configuration, Shapes::ShapeRef.new(shape: ContainerConfiguration, location_name: "containerConfiguration"))
|
|
451
|
+
AgentRuntimeArtifact.add_member(:code_configuration, Shapes::ShapeRef.new(shape: CodeConfiguration, location_name: "codeConfiguration"))
|
|
443
452
|
AgentRuntimeArtifact.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
444
453
|
AgentRuntimeArtifact.add_member_subclass(:container_configuration, Types::AgentRuntimeArtifact::ContainerConfiguration)
|
|
454
|
+
AgentRuntimeArtifact.add_member_subclass(:code_configuration, Types::AgentRuntimeArtifact::CodeConfiguration)
|
|
445
455
|
AgentRuntimeArtifact.add_member_subclass(:unknown, Types::AgentRuntimeArtifact::Unknown)
|
|
446
456
|
AgentRuntimeArtifact.struct_class = Types::AgentRuntimeArtifact
|
|
447
457
|
|
|
@@ -505,6 +515,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
505
515
|
BrowserNetworkConfiguration.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VpcConfig, location_name: "vpcConfig"))
|
|
506
516
|
BrowserNetworkConfiguration.struct_class = Types::BrowserNetworkConfiguration
|
|
507
517
|
|
|
518
|
+
BrowserSigningConfigInput.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "enabled"))
|
|
519
|
+
BrowserSigningConfigInput.struct_class = Types::BrowserSigningConfigInput
|
|
520
|
+
|
|
521
|
+
BrowserSigningConfigOutput.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "enabled"))
|
|
522
|
+
BrowserSigningConfigOutput.struct_class = Types::BrowserSigningConfigOutput
|
|
523
|
+
|
|
508
524
|
BrowserSummaries.member = Shapes::ShapeRef.new(shape: BrowserSummary)
|
|
509
525
|
|
|
510
526
|
BrowserSummary.add_member(:browser_id, Shapes::ShapeRef.new(shape: BrowserId, required: true, location_name: "browserId"))
|
|
@@ -516,6 +532,19 @@ module Aws::BedrockAgentCoreControl
|
|
|
516
532
|
BrowserSummary.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: DateTimestamp, location_name: "lastUpdatedAt"))
|
|
517
533
|
BrowserSummary.struct_class = Types::BrowserSummary
|
|
518
534
|
|
|
535
|
+
Code.add_member(:s3, Shapes::ShapeRef.new(shape: S3Location, location_name: "s3"))
|
|
536
|
+
Code.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
537
|
+
Code.add_member_subclass(:s3, Types::Code::S3)
|
|
538
|
+
Code.add_member_subclass(:unknown, Types::Code::Unknown)
|
|
539
|
+
Code.struct_class = Types::Code
|
|
540
|
+
|
|
541
|
+
CodeConfiguration.add_member(:code, Shapes::ShapeRef.new(shape: Code, required: true, location_name: "code"))
|
|
542
|
+
CodeConfiguration.add_member(:runtime, Shapes::ShapeRef.new(shape: AgentManagedRuntimeType, required: true, location_name: "runtime"))
|
|
543
|
+
CodeConfiguration.add_member(:entry_point, Shapes::ShapeRef.new(shape: CodeConfigurationEntryPointList, required: true, location_name: "entryPoint"))
|
|
544
|
+
CodeConfiguration.struct_class = Types::CodeConfiguration
|
|
545
|
+
|
|
546
|
+
CodeConfigurationEntryPointList.member = Shapes::ShapeRef.new(shape: entryPoint)
|
|
547
|
+
|
|
519
548
|
CodeInterpreterNetworkConfiguration.add_member(:network_mode, Shapes::ShapeRef.new(shape: CodeInterpreterNetworkMode, required: true, location_name: "networkMode"))
|
|
520
549
|
CodeInterpreterNetworkConfiguration.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VpcConfig, location_name: "vpcConfig"))
|
|
521
550
|
CodeInterpreterNetworkConfiguration.struct_class = Types::CodeInterpreterNetworkConfiguration
|
|
@@ -600,6 +629,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
600
629
|
CreateBrowserRequest.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "executionRoleArn"))
|
|
601
630
|
CreateBrowserRequest.add_member(:network_configuration, Shapes::ShapeRef.new(shape: BrowserNetworkConfiguration, required: true, location_name: "networkConfiguration"))
|
|
602
631
|
CreateBrowserRequest.add_member(:recording, Shapes::ShapeRef.new(shape: RecordingConfig, location_name: "recording"))
|
|
632
|
+
CreateBrowserRequest.add_member(:browser_signing, Shapes::ShapeRef.new(shape: BrowserSigningConfigInput, location_name: "browserSigning"))
|
|
603
633
|
CreateBrowserRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
604
634
|
CreateBrowserRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
|
|
605
635
|
CreateBrowserRequest.struct_class = Types::CreateBrowserRequest
|
|
@@ -809,6 +839,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
809
839
|
DeleteAgentRuntimeEndpointResponse.struct_class = Types::DeleteAgentRuntimeEndpointResponse
|
|
810
840
|
|
|
811
841
|
DeleteAgentRuntimeRequest.add_member(:agent_runtime_id, Shapes::ShapeRef.new(shape: AgentRuntimeId, required: true, location: "uri", location_name: "agentRuntimeId"))
|
|
842
|
+
DeleteAgentRuntimeRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location: "querystring", location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
812
843
|
DeleteAgentRuntimeRequest.struct_class = Types::DeleteAgentRuntimeRequest
|
|
813
844
|
|
|
814
845
|
DeleteAgentRuntimeResponse.add_member(:status, Shapes::ShapeRef.new(shape: AgentRuntimeStatus, required: true, location_name: "status"))
|
|
@@ -984,6 +1015,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
984
1015
|
GetBrowserResponse.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "executionRoleArn"))
|
|
985
1016
|
GetBrowserResponse.add_member(:network_configuration, Shapes::ShapeRef.new(shape: BrowserNetworkConfiguration, required: true, location_name: "networkConfiguration"))
|
|
986
1017
|
GetBrowserResponse.add_member(:recording, Shapes::ShapeRef.new(shape: RecordingConfig, location_name: "recording"))
|
|
1018
|
+
GetBrowserResponse.add_member(:browser_signing, Shapes::ShapeRef.new(shape: BrowserSigningConfigOutput, location_name: "browserSigning"))
|
|
987
1019
|
GetBrowserResponse.add_member(:status, Shapes::ShapeRef.new(shape: BrowserStatus, required: true, location_name: "status"))
|
|
988
1020
|
GetBrowserResponse.add_member(:failure_reason, Shapes::ShapeRef.new(shape: String, location_name: "failureReason"))
|
|
989
1021
|
GetBrowserResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "createdAt"))
|
|
@@ -1481,6 +1513,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1481
1513
|
|
|
1482
1514
|
S3Location.add_member(:bucket, Shapes::ShapeRef.new(shape: S3LocationBucketString, required: true, location_name: "bucket"))
|
|
1483
1515
|
S3Location.add_member(:prefix, Shapes::ShapeRef.new(shape: S3LocationPrefixString, required: true, location_name: "prefix"))
|
|
1516
|
+
S3Location.add_member(:version_id, Shapes::ShapeRef.new(shape: S3LocationVersionIdString, location_name: "versionId"))
|
|
1484
1517
|
S3Location.struct_class = Types::S3Location
|
|
1485
1518
|
|
|
1486
1519
|
SalesforceOauth2ProviderConfigInput.add_member(:client_id, Shapes::ShapeRef.new(shape: ClientIdType, required: true, location_name: "clientId"))
|
|
@@ -79,16 +79,23 @@ module Aws::BedrockAgentCoreControl
|
|
|
79
79
|
# The container configuration for the agent artifact.
|
|
80
80
|
# @return [Types::ContainerConfiguration]
|
|
81
81
|
#
|
|
82
|
+
# @!attribute [rw] code_configuration
|
|
83
|
+
# The code configuration for the agent runtime artifact, including the
|
|
84
|
+
# source code location and execution settings.
|
|
85
|
+
# @return [Types::CodeConfiguration]
|
|
86
|
+
#
|
|
82
87
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/AgentRuntimeArtifact AWS API Documentation
|
|
83
88
|
#
|
|
84
89
|
class AgentRuntimeArtifact < Struct.new(
|
|
85
90
|
:container_configuration,
|
|
91
|
+
:code_configuration,
|
|
86
92
|
:unknown)
|
|
87
93
|
SENSITIVE = []
|
|
88
94
|
include Aws::Structure
|
|
89
95
|
include Aws::Structure::Union
|
|
90
96
|
|
|
91
97
|
class ContainerConfiguration < AgentRuntimeArtifact; end
|
|
98
|
+
class CodeConfiguration < AgentRuntimeArtifact; end
|
|
92
99
|
class Unknown < AgentRuntimeArtifact; end
|
|
93
100
|
end
|
|
94
101
|
|
|
@@ -339,6 +346,41 @@ module Aws::BedrockAgentCoreControl
|
|
|
339
346
|
include Aws::Structure
|
|
340
347
|
end
|
|
341
348
|
|
|
349
|
+
# Configuration for enabling browser signing capabilities that allow
|
|
350
|
+
# agents to cryptographically identify themselves to websites using HTTP
|
|
351
|
+
# message signatures.
|
|
352
|
+
#
|
|
353
|
+
# @!attribute [rw] enabled
|
|
354
|
+
# Specifies whether browser signing is enabled. When enabled, the
|
|
355
|
+
# browser will cryptographically sign HTTP requests to identify itself
|
|
356
|
+
# as an AI agent to bot control vendors.
|
|
357
|
+
# @return [Boolean]
|
|
358
|
+
#
|
|
359
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/BrowserSigningConfigInput AWS API Documentation
|
|
360
|
+
#
|
|
361
|
+
class BrowserSigningConfigInput < Struct.new(
|
|
362
|
+
:enabled)
|
|
363
|
+
SENSITIVE = []
|
|
364
|
+
include Aws::Structure
|
|
365
|
+
end
|
|
366
|
+
|
|
367
|
+
# The current browser signing configuration that shows whether
|
|
368
|
+
# cryptographic agent identification is enabled for web bot
|
|
369
|
+
# authentication.
|
|
370
|
+
#
|
|
371
|
+
# @!attribute [rw] enabled
|
|
372
|
+
# Indicates whether browser signing is currently enabled for
|
|
373
|
+
# cryptographic agent identification using HTTP message signatures.
|
|
374
|
+
# @return [Boolean]
|
|
375
|
+
#
|
|
376
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/BrowserSigningConfigOutput AWS API Documentation
|
|
377
|
+
#
|
|
378
|
+
class BrowserSigningConfigOutput < Struct.new(
|
|
379
|
+
:enabled)
|
|
380
|
+
SENSITIVE = []
|
|
381
|
+
include Aws::Structure
|
|
382
|
+
end
|
|
383
|
+
|
|
342
384
|
# Contains summary information about a browser. A browser enables Amazon
|
|
343
385
|
# Bedrock Agent to interact with web content.
|
|
344
386
|
#
|
|
@@ -384,6 +426,59 @@ module Aws::BedrockAgentCoreControl
|
|
|
384
426
|
include Aws::Structure
|
|
385
427
|
end
|
|
386
428
|
|
|
429
|
+
# The source code configuration that specifies the location and details
|
|
430
|
+
# of the code to be executed.
|
|
431
|
+
#
|
|
432
|
+
# @note Code is a union - when making an API calls you must set exactly one of the members.
|
|
433
|
+
#
|
|
434
|
+
# @note Code is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of Code corresponding to the set member.
|
|
435
|
+
#
|
|
436
|
+
# @!attribute [rw] s3
|
|
437
|
+
# The Amazon Amazon S3 object that contains the source code for the
|
|
438
|
+
# agent runtime.
|
|
439
|
+
# @return [Types::S3Location]
|
|
440
|
+
#
|
|
441
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/Code AWS API Documentation
|
|
442
|
+
#
|
|
443
|
+
class Code < Struct.new(
|
|
444
|
+
:s3,
|
|
445
|
+
:unknown)
|
|
446
|
+
SENSITIVE = []
|
|
447
|
+
include Aws::Structure
|
|
448
|
+
include Aws::Structure::Union
|
|
449
|
+
|
|
450
|
+
class S3 < Code; end
|
|
451
|
+
class Unknown < Code; end
|
|
452
|
+
end
|
|
453
|
+
|
|
454
|
+
# The configuration for the source code that defines how the agent
|
|
455
|
+
# runtime code should be executed, including the code location, runtime
|
|
456
|
+
# environment, and entry point.
|
|
457
|
+
#
|
|
458
|
+
# @!attribute [rw] code
|
|
459
|
+
# The source code location and configuration details.
|
|
460
|
+
# @return [Types::Code]
|
|
461
|
+
#
|
|
462
|
+
# @!attribute [rw] runtime
|
|
463
|
+
# The runtime environment for executing the code (for example, Python
|
|
464
|
+
# 3.9 or Node.js 18).
|
|
465
|
+
# @return [String]
|
|
466
|
+
#
|
|
467
|
+
# @!attribute [rw] entry_point
|
|
468
|
+
# The entry point for the code execution, specifying the function or
|
|
469
|
+
# method that should be invoked when the code runs.
|
|
470
|
+
# @return [Array<String>]
|
|
471
|
+
#
|
|
472
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CodeConfiguration AWS API Documentation
|
|
473
|
+
#
|
|
474
|
+
class CodeConfiguration < Struct.new(
|
|
475
|
+
:code,
|
|
476
|
+
:runtime,
|
|
477
|
+
:entry_point)
|
|
478
|
+
SENSITIVE = []
|
|
479
|
+
include Aws::Structure
|
|
480
|
+
end
|
|
481
|
+
|
|
387
482
|
# The network configuration for a code interpreter. This structure
|
|
388
483
|
# defines how the code interpreter connects to the network.
|
|
389
484
|
#
|
|
@@ -787,6 +882,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
787
882
|
# location.
|
|
788
883
|
# @return [Types::RecordingConfig]
|
|
789
884
|
#
|
|
885
|
+
# @!attribute [rw] browser_signing
|
|
886
|
+
# The browser signing configuration that enables cryptographic agent
|
|
887
|
+
# identification using HTTP message signatures for web bot
|
|
888
|
+
# authentication.
|
|
889
|
+
# @return [Types::BrowserSigningConfigInput]
|
|
890
|
+
#
|
|
790
891
|
# @!attribute [rw] client_token
|
|
791
892
|
# A unique, case-sensitive identifier to ensure that the operation
|
|
792
893
|
# completes no more than one time. If this token matches a previous
|
|
@@ -811,6 +912,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
811
912
|
:execution_role_arn,
|
|
812
913
|
:network_configuration,
|
|
813
914
|
:recording,
|
|
915
|
+
:browser_signing,
|
|
814
916
|
:client_token,
|
|
815
917
|
:tags)
|
|
816
918
|
SENSITIVE = [:description]
|
|
@@ -1797,10 +1899,21 @@ module Aws::BedrockAgentCoreControl
|
|
|
1797
1899
|
# The unique identifier of the AgentCore Runtime to delete.
|
|
1798
1900
|
# @return [String]
|
|
1799
1901
|
#
|
|
1902
|
+
# @!attribute [rw] client_token
|
|
1903
|
+
# A unique, case-sensitive identifier to ensure that the operation
|
|
1904
|
+
# completes no more than one time. If this token matches a previous
|
|
1905
|
+
# request, the service ignores the request but does not return an
|
|
1906
|
+
# error.
|
|
1907
|
+
#
|
|
1908
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
1909
|
+
# not need to pass this option.
|
|
1910
|
+
# @return [String]
|
|
1911
|
+
#
|
|
1800
1912
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteAgentRuntimeRequest AWS API Documentation
|
|
1801
1913
|
#
|
|
1802
1914
|
class DeleteAgentRuntimeRequest < Struct.new(
|
|
1803
|
-
:agent_runtime_id
|
|
1915
|
+
:agent_runtime_id,
|
|
1916
|
+
:client_token)
|
|
1804
1917
|
SENSITIVE = []
|
|
1805
1918
|
include Aws::Structure
|
|
1806
1919
|
end
|
|
@@ -2542,6 +2655,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
2542
2655
|
# how browser sessions are recorded.
|
|
2543
2656
|
# @return [Types::RecordingConfig]
|
|
2544
2657
|
#
|
|
2658
|
+
# @!attribute [rw] browser_signing
|
|
2659
|
+
# The browser signing configuration that shows whether cryptographic
|
|
2660
|
+
# agent identification is enabled for web bot authentication.
|
|
2661
|
+
# @return [Types::BrowserSigningConfigOutput]
|
|
2662
|
+
#
|
|
2545
2663
|
# @!attribute [rw] status
|
|
2546
2664
|
# The current status of the browser.
|
|
2547
2665
|
# @return [String]
|
|
@@ -2568,6 +2686,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2568
2686
|
:execution_role_arn,
|
|
2569
2687
|
:network_configuration,
|
|
2570
2688
|
:recording,
|
|
2689
|
+
:browser_signing,
|
|
2571
2690
|
:status,
|
|
2572
2691
|
:failure_reason,
|
|
2573
2692
|
:created_at,
|
|
@@ -4699,11 +4818,17 @@ module Aws::BedrockAgentCoreControl
|
|
|
4699
4818
|
# to the object keys to organize the data.
|
|
4700
4819
|
# @return [String]
|
|
4701
4820
|
#
|
|
4821
|
+
# @!attribute [rw] version_id
|
|
4822
|
+
# The version ID of the Amazon Amazon S3 object. If not specified, the
|
|
4823
|
+
# latest version of the object is used.
|
|
4824
|
+
# @return [String]
|
|
4825
|
+
#
|
|
4702
4826
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/S3Location AWS API Documentation
|
|
4703
4827
|
#
|
|
4704
4828
|
class S3Location < Struct.new(
|
|
4705
4829
|
:bucket,
|
|
4706
|
-
:prefix
|
|
4830
|
+
:prefix,
|
|
4831
|
+
:version_id)
|
|
4707
4832
|
SENSITIVE = []
|
|
4708
4833
|
include Aws::Structure
|
|
4709
4834
|
end
|
data/sig/client.rbs
CHANGED
|
@@ -93,6 +93,17 @@ module Aws
|
|
|
93
93
|
agent_runtime_artifact: {
|
|
94
94
|
container_configuration: {
|
|
95
95
|
container_uri: ::String
|
|
96
|
+
}?,
|
|
97
|
+
code_configuration: {
|
|
98
|
+
code: {
|
|
99
|
+
s3: {
|
|
100
|
+
bucket: ::String,
|
|
101
|
+
prefix: ::String,
|
|
102
|
+
version_id: ::String?
|
|
103
|
+
}?
|
|
104
|
+
},
|
|
105
|
+
runtime: ("PYTHON_3_10" | "PYTHON_3_11" | "PYTHON_3_12" | "PYTHON_3_13"),
|
|
106
|
+
entry_point: Array[::String]
|
|
96
107
|
}?
|
|
97
108
|
},
|
|
98
109
|
role_arn: ::String,
|
|
@@ -185,9 +196,13 @@ module Aws
|
|
|
185
196
|
enabled: bool?,
|
|
186
197
|
s3_location: {
|
|
187
198
|
bucket: ::String,
|
|
188
|
-
prefix: ::String
|
|
199
|
+
prefix: ::String,
|
|
200
|
+
version_id: ::String?
|
|
189
201
|
}?
|
|
190
202
|
},
|
|
203
|
+
?browser_signing: {
|
|
204
|
+
enabled: bool
|
|
205
|
+
},
|
|
191
206
|
?client_token: ::String,
|
|
192
207
|
?tags: Hash[::String, ::String]
|
|
193
208
|
) -> _CreateBrowserResponseSuccess
|
|
@@ -533,7 +548,8 @@ module Aws
|
|
|
533
548
|
end
|
|
534
549
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#delete_agent_runtime-instance_method
|
|
535
550
|
def delete_agent_runtime: (
|
|
536
|
-
agent_runtime_id: ::String
|
|
551
|
+
agent_runtime_id: ::String,
|
|
552
|
+
?client_token: ::String
|
|
537
553
|
) -> _DeleteAgentRuntimeResponseSuccess
|
|
538
554
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAgentRuntimeResponseSuccess
|
|
539
555
|
|
|
@@ -713,6 +729,7 @@ module Aws
|
|
|
713
729
|
def execution_role_arn: () -> ::String
|
|
714
730
|
def network_configuration: () -> Types::BrowserNetworkConfiguration
|
|
715
731
|
def recording: () -> Types::RecordingConfig
|
|
732
|
+
def browser_signing: () -> Types::BrowserSigningConfigOutput
|
|
716
733
|
def status: () -> ("CREATING" | "CREATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED" | "DELETED")
|
|
717
734
|
def failure_reason: () -> ::String
|
|
718
735
|
def created_at: () -> ::Time
|
|
@@ -1053,6 +1070,17 @@ module Aws
|
|
|
1053
1070
|
agent_runtime_artifact: {
|
|
1054
1071
|
container_configuration: {
|
|
1055
1072
|
container_uri: ::String
|
|
1073
|
+
}?,
|
|
1074
|
+
code_configuration: {
|
|
1075
|
+
code: {
|
|
1076
|
+
s3: {
|
|
1077
|
+
bucket: ::String,
|
|
1078
|
+
prefix: ::String,
|
|
1079
|
+
version_id: ::String?
|
|
1080
|
+
}?
|
|
1081
|
+
},
|
|
1082
|
+
runtime: ("PYTHON_3_10" | "PYTHON_3_11" | "PYTHON_3_12" | "PYTHON_3_13"),
|
|
1083
|
+
entry_point: Array[::String]
|
|
1056
1084
|
}?
|
|
1057
1085
|
},
|
|
1058
1086
|
role_arn: ::String,
|
data/sig/types.rbs
CHANGED
|
@@ -26,11 +26,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
26
26
|
|
|
27
27
|
class AgentRuntimeArtifact
|
|
28
28
|
attr_accessor container_configuration: Types::ContainerConfiguration
|
|
29
|
+
attr_accessor code_configuration: Types::CodeConfiguration
|
|
29
30
|
attr_accessor unknown: untyped
|
|
30
31
|
SENSITIVE: []
|
|
31
32
|
|
|
32
33
|
class ContainerConfiguration < AgentRuntimeArtifact
|
|
33
34
|
end
|
|
35
|
+
class CodeConfiguration < AgentRuntimeArtifact
|
|
36
|
+
end
|
|
34
37
|
class Unknown < AgentRuntimeArtifact
|
|
35
38
|
end
|
|
36
39
|
end
|
|
@@ -108,6 +111,16 @@ module Aws::BedrockAgentCoreControl
|
|
|
108
111
|
SENSITIVE: []
|
|
109
112
|
end
|
|
110
113
|
|
|
114
|
+
class BrowserSigningConfigInput
|
|
115
|
+
attr_accessor enabled: bool
|
|
116
|
+
SENSITIVE: []
|
|
117
|
+
end
|
|
118
|
+
|
|
119
|
+
class BrowserSigningConfigOutput
|
|
120
|
+
attr_accessor enabled: bool
|
|
121
|
+
SENSITIVE: []
|
|
122
|
+
end
|
|
123
|
+
|
|
111
124
|
class BrowserSummary
|
|
112
125
|
attr_accessor browser_id: ::String
|
|
113
126
|
attr_accessor browser_arn: ::String
|
|
@@ -119,6 +132,24 @@ module Aws::BedrockAgentCoreControl
|
|
|
119
132
|
SENSITIVE: [:description]
|
|
120
133
|
end
|
|
121
134
|
|
|
135
|
+
class Code
|
|
136
|
+
attr_accessor s3: Types::S3Location
|
|
137
|
+
attr_accessor unknown: untyped
|
|
138
|
+
SENSITIVE: []
|
|
139
|
+
|
|
140
|
+
class S3 < Code
|
|
141
|
+
end
|
|
142
|
+
class Unknown < Code
|
|
143
|
+
end
|
|
144
|
+
end
|
|
145
|
+
|
|
146
|
+
class CodeConfiguration
|
|
147
|
+
attr_accessor code: Types::Code
|
|
148
|
+
attr_accessor runtime: ("PYTHON_3_10" | "PYTHON_3_11" | "PYTHON_3_12" | "PYTHON_3_13")
|
|
149
|
+
attr_accessor entry_point: ::Array[::String]
|
|
150
|
+
SENSITIVE: []
|
|
151
|
+
end
|
|
152
|
+
|
|
122
153
|
class CodeInterpreterNetworkConfiguration
|
|
123
154
|
attr_accessor network_mode: ("PUBLIC" | "SANDBOX" | "VPC")
|
|
124
155
|
attr_accessor vpc_config: Types::VpcConfig
|
|
@@ -229,6 +260,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
229
260
|
attr_accessor execution_role_arn: ::String
|
|
230
261
|
attr_accessor network_configuration: Types::BrowserNetworkConfiguration
|
|
231
262
|
attr_accessor recording: Types::RecordingConfig
|
|
263
|
+
attr_accessor browser_signing: Types::BrowserSigningConfigInput
|
|
232
264
|
attr_accessor client_token: ::String
|
|
233
265
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
234
266
|
SENSITIVE: [:description]
|
|
@@ -520,6 +552,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
520
552
|
|
|
521
553
|
class DeleteAgentRuntimeRequest
|
|
522
554
|
attr_accessor agent_runtime_id: ::String
|
|
555
|
+
attr_accessor client_token: ::String
|
|
523
556
|
SENSITIVE: []
|
|
524
557
|
end
|
|
525
558
|
|
|
@@ -751,6 +784,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
751
784
|
attr_accessor execution_role_arn: ::String
|
|
752
785
|
attr_accessor network_configuration: Types::BrowserNetworkConfiguration
|
|
753
786
|
attr_accessor recording: Types::RecordingConfig
|
|
787
|
+
attr_accessor browser_signing: Types::BrowserSigningConfigOutput
|
|
754
788
|
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED" | "DELETED")
|
|
755
789
|
attr_accessor failure_reason: ::String
|
|
756
790
|
attr_accessor created_at: ::Time
|
|
@@ -1436,6 +1470,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1436
1470
|
class S3Location
|
|
1437
1471
|
attr_accessor bucket: ::String
|
|
1438
1472
|
attr_accessor prefix: ::String
|
|
1473
|
+
attr_accessor version_id: ::String
|
|
1439
1474
|
SENSITIVE: []
|
|
1440
1475
|
end
|
|
1441
1476
|
|