aws-sdk-bedrockagentcorecontrol 1.30.0 → 1.31.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 +52 -1
- data/lib/aws-sdk-bedrockagentcorecontrol/client_api.rb +41 -0
- data/lib/aws-sdk-bedrockagentcorecontrol/types.rb +126 -0
- data/lib/aws-sdk-bedrockagentcorecontrol.rb +1 -1
- data/sig/client.rbs +33 -0
- data/sig/types.rbs +44 -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: 601bf326f5ee14066167f8695a9cdb172cdbac77c34ae7aed59f2e882b8b03a7
|
|
4
|
+
data.tar.gz: f3a8ab39d2ded56fd35b2d399e88d304dcf8aba5b1a82ccace5da0c27b071fc7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5018165f8e9bc6e5e2f9babd67ee40755a0619ec1fa1ecb5ad016234054bd80f6857e3db2403410ab8bccd7bae2a76d893b82578e794156875f49d1ed4a6ebdd
|
|
7
|
+
data.tar.gz: f5f5ad415da0311d210e16243acc247f181aac5e8784ecc31e2bc4a49d5368adc7c537afd10d68972293d3fde509855e2517c2f2c39aec63520f2bff08a4a264
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.31.0 (2026-03-19)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Adds support for the following new features. 1. Enterprise Policies support for AgentCore Browser Tool. 2. Root CA Configuration support for AgentCore Browser Tool and Code Interpreter.
|
|
8
|
+
|
|
4
9
|
1.30.0 (2026-03-18)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.31.0
|
|
@@ -758,6 +758,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
758
758
|
# identification using HTTP message signatures for web bot
|
|
759
759
|
# authentication.
|
|
760
760
|
#
|
|
761
|
+
# @option params [Array<Types::BrowserEnterprisePolicy>] :enterprise_policies
|
|
762
|
+
# A list of enterprise policy files for the browser.
|
|
763
|
+
#
|
|
764
|
+
# @option params [Array<Types::Certificate>] :certificates
|
|
765
|
+
# A list of certificates to install in the browser.
|
|
766
|
+
#
|
|
761
767
|
# @option params [String] :client_token
|
|
762
768
|
# A unique, case-sensitive identifier to ensure that the operation
|
|
763
769
|
# completes no more than one time. If this token matches a previous
|
|
@@ -803,6 +809,27 @@ module Aws::BedrockAgentCoreControl
|
|
|
803
809
|
# browser_signing: {
|
|
804
810
|
# enabled: false, # required
|
|
805
811
|
# },
|
|
812
|
+
# enterprise_policies: [
|
|
813
|
+
# {
|
|
814
|
+
# location: { # required
|
|
815
|
+
# s3: {
|
|
816
|
+
# bucket: "S3LocationBucketString", # required
|
|
817
|
+
# prefix: "S3LocationPrefixString", # required
|
|
818
|
+
# version_id: "S3LocationVersionIdString",
|
|
819
|
+
# },
|
|
820
|
+
# },
|
|
821
|
+
# type: "MANAGED", # accepts MANAGED, RECOMMENDED
|
|
822
|
+
# },
|
|
823
|
+
# ],
|
|
824
|
+
# certificates: [
|
|
825
|
+
# {
|
|
826
|
+
# location: { # required
|
|
827
|
+
# secrets_manager: {
|
|
828
|
+
# secret_arn: "ToolSecretArn", # required
|
|
829
|
+
# },
|
|
830
|
+
# },
|
|
831
|
+
# },
|
|
832
|
+
# ],
|
|
806
833
|
# client_token: "ClientToken",
|
|
807
834
|
# tags: {
|
|
808
835
|
# "TagKey" => "TagValue",
|
|
@@ -904,6 +931,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
904
931
|
# The network configuration for the code interpreter. This configuration
|
|
905
932
|
# specifies the network mode for the code interpreter.
|
|
906
933
|
#
|
|
934
|
+
# @option params [Array<Types::Certificate>] :certificates
|
|
935
|
+
# A list of certificates to install in the code interpreter.
|
|
936
|
+
#
|
|
907
937
|
# @option params [String] :client_token
|
|
908
938
|
# A unique, case-sensitive identifier to ensure that the operation
|
|
909
939
|
# completes no more than one time. If this token matches a previous
|
|
@@ -938,6 +968,15 @@ module Aws::BedrockAgentCoreControl
|
|
|
938
968
|
# subnets: ["SubnetId"], # required
|
|
939
969
|
# },
|
|
940
970
|
# },
|
|
971
|
+
# certificates: [
|
|
972
|
+
# {
|
|
973
|
+
# location: { # required
|
|
974
|
+
# secrets_manager: {
|
|
975
|
+
# secret_arn: "ToolSecretArn", # required
|
|
976
|
+
# },
|
|
977
|
+
# },
|
|
978
|
+
# },
|
|
979
|
+
# ],
|
|
941
980
|
# client_token: "ClientToken",
|
|
942
981
|
# tags: {
|
|
943
982
|
# "TagKey" => "TagValue",
|
|
@@ -3146,6 +3185,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
3146
3185
|
# * {Types::GetBrowserResponse#network_configuration #network_configuration} => Types::BrowserNetworkConfiguration
|
|
3147
3186
|
# * {Types::GetBrowserResponse#recording #recording} => Types::RecordingConfig
|
|
3148
3187
|
# * {Types::GetBrowserResponse#browser_signing #browser_signing} => Types::BrowserSigningConfigOutput
|
|
3188
|
+
# * {Types::GetBrowserResponse#enterprise_policies #enterprise_policies} => Array<Types::BrowserEnterprisePolicy>
|
|
3189
|
+
# * {Types::GetBrowserResponse#certificates #certificates} => Array<Types::Certificate>
|
|
3149
3190
|
# * {Types::GetBrowserResponse#status #status} => String
|
|
3150
3191
|
# * {Types::GetBrowserResponse#failure_reason #failure_reason} => String
|
|
3151
3192
|
# * {Types::GetBrowserResponse#created_at #created_at} => Time
|
|
@@ -3174,6 +3215,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
3174
3215
|
# resp.recording.s3_location.prefix #=> String
|
|
3175
3216
|
# resp.recording.s3_location.version_id #=> String
|
|
3176
3217
|
# resp.browser_signing.enabled #=> Boolean
|
|
3218
|
+
# resp.enterprise_policies #=> Array
|
|
3219
|
+
# resp.enterprise_policies[0].location.s3.bucket #=> String
|
|
3220
|
+
# resp.enterprise_policies[0].location.s3.prefix #=> String
|
|
3221
|
+
# resp.enterprise_policies[0].location.s3.version_id #=> String
|
|
3222
|
+
# resp.enterprise_policies[0].type #=> String, one of "MANAGED", "RECOMMENDED"
|
|
3223
|
+
# resp.certificates #=> Array
|
|
3224
|
+
# resp.certificates[0].location.secrets_manager.secret_arn #=> String
|
|
3177
3225
|
# resp.status #=> String, one of "CREATING", "CREATE_FAILED", "READY", "DELETING", "DELETE_FAILED", "DELETED"
|
|
3178
3226
|
# resp.failure_reason #=> String
|
|
3179
3227
|
# resp.created_at #=> Time
|
|
@@ -3248,6 +3296,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3248
3296
|
# * {Types::GetCodeInterpreterResponse#execution_role_arn #execution_role_arn} => String
|
|
3249
3297
|
# * {Types::GetCodeInterpreterResponse#network_configuration #network_configuration} => Types::CodeInterpreterNetworkConfiguration
|
|
3250
3298
|
# * {Types::GetCodeInterpreterResponse#status #status} => String
|
|
3299
|
+
# * {Types::GetCodeInterpreterResponse#certificates #certificates} => Array<Types::Certificate>
|
|
3251
3300
|
# * {Types::GetCodeInterpreterResponse#failure_reason #failure_reason} => String
|
|
3252
3301
|
# * {Types::GetCodeInterpreterResponse#created_at #created_at} => Time
|
|
3253
3302
|
# * {Types::GetCodeInterpreterResponse#last_updated_at #last_updated_at} => Time
|
|
@@ -3271,6 +3320,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
3271
3320
|
# resp.network_configuration.vpc_config.subnets #=> Array
|
|
3272
3321
|
# resp.network_configuration.vpc_config.subnets[0] #=> String
|
|
3273
3322
|
# resp.status #=> String, one of "CREATING", "CREATE_FAILED", "READY", "DELETING", "DELETE_FAILED", "DELETED"
|
|
3323
|
+
# resp.certificates #=> Array
|
|
3324
|
+
# resp.certificates[0].location.secrets_manager.secret_arn #=> String
|
|
3274
3325
|
# resp.failure_reason #=> String
|
|
3275
3326
|
# resp.created_at #=> Time
|
|
3276
3327
|
# resp.last_updated_at #=> Time
|
|
@@ -6986,7 +7037,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
6986
7037
|
tracer: tracer
|
|
6987
7038
|
)
|
|
6988
7039
|
context[:gem_name] = 'aws-sdk-bedrockagentcorecontrol'
|
|
6989
|
-
context[:gem_version] = '1.
|
|
7040
|
+
context[:gem_version] = '1.31.0'
|
|
6990
7041
|
Seahorse::Client::Request.new(handlers, context)
|
|
6991
7042
|
end
|
|
6992
7043
|
|
|
@@ -68,6 +68,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
68
68
|
BedrockEvaluatorModelConfig = Shapes::StructureShape.new(name: 'BedrockEvaluatorModelConfig')
|
|
69
69
|
Boolean = Shapes::BooleanShape.new(name: 'Boolean')
|
|
70
70
|
BrowserArn = Shapes::StringShape.new(name: 'BrowserArn')
|
|
71
|
+
BrowserEnterprisePolicies = Shapes::ListShape.new(name: 'BrowserEnterprisePolicies')
|
|
72
|
+
BrowserEnterprisePolicy = Shapes::StructureShape.new(name: 'BrowserEnterprisePolicy')
|
|
73
|
+
BrowserEnterprisePolicyType = Shapes::StringShape.new(name: 'BrowserEnterprisePolicyType')
|
|
71
74
|
BrowserId = Shapes::StringShape.new(name: 'BrowserId')
|
|
72
75
|
BrowserNetworkConfiguration = Shapes::StructureShape.new(name: 'BrowserNetworkConfiguration')
|
|
73
76
|
BrowserNetworkMode = Shapes::StringShape.new(name: 'BrowserNetworkMode')
|
|
@@ -87,6 +90,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
87
90
|
CategoricalScaleDefinitionLabelString = Shapes::StringShape.new(name: 'CategoricalScaleDefinitionLabelString')
|
|
88
91
|
CategoricalScaleDefinitions = Shapes::ListShape.new(name: 'CategoricalScaleDefinitions')
|
|
89
92
|
CedarPolicy = Shapes::StructureShape.new(name: 'CedarPolicy')
|
|
93
|
+
Certificate = Shapes::StructureShape.new(name: 'Certificate')
|
|
94
|
+
CertificateLocation = Shapes::UnionShape.new(name: 'CertificateLocation')
|
|
95
|
+
Certificates = Shapes::ListShape.new(name: 'Certificates')
|
|
90
96
|
ClaimMatchOperatorType = Shapes::StringShape.new(name: 'ClaimMatchOperatorType')
|
|
91
97
|
ClaimMatchValueType = Shapes::UnionShape.new(name: 'ClaimMatchValueType')
|
|
92
98
|
ClientIdType = Shapes::StringShape.new(name: 'ClientIdType')
|
|
@@ -506,6 +512,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
506
512
|
Resource = Shapes::UnionShape.new(name: 'Resource')
|
|
507
513
|
ResourceId = Shapes::StringShape.new(name: 'ResourceId')
|
|
508
514
|
ResourceLimitExceededException = Shapes::StructureShape.new(name: 'ResourceLimitExceededException')
|
|
515
|
+
ResourceLocation = Shapes::UnionShape.new(name: 'ResourceLocation')
|
|
509
516
|
ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
|
|
510
517
|
ResourceOauth2ReturnUrlListType = Shapes::ListShape.new(name: 'ResourceOauth2ReturnUrlListType')
|
|
511
518
|
ResourceOauth2ReturnUrlType = Shapes::StringShape.new(name: 'ResourceOauth2ReturnUrlType')
|
|
@@ -536,6 +543,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
536
543
|
SearchType = Shapes::StringShape.new(name: 'SearchType')
|
|
537
544
|
Secret = Shapes::StructureShape.new(name: 'Secret')
|
|
538
545
|
SecretArn = Shapes::StringShape.new(name: 'SecretArn')
|
|
546
|
+
SecretsManagerLocation = Shapes::StructureShape.new(name: 'SecretsManagerLocation')
|
|
539
547
|
SecurityGroupId = Shapes::StringShape.new(name: 'SecurityGroupId')
|
|
540
548
|
SecurityGroups = Shapes::ListShape.new(name: 'SecurityGroups')
|
|
541
549
|
SelfManagedConfiguration = Shapes::StructureShape.new(name: 'SelfManagedConfiguration')
|
|
@@ -609,6 +617,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
609
617
|
ToolDefinition = Shapes::StructureShape.new(name: 'ToolDefinition')
|
|
610
618
|
ToolDefinitions = Shapes::ListShape.new(name: 'ToolDefinitions')
|
|
611
619
|
ToolSchema = Shapes::UnionShape.new(name: 'ToolSchema')
|
|
620
|
+
ToolSecretArn = Shapes::StringShape.new(name: 'ToolSecretArn')
|
|
612
621
|
TriggerCondition = Shapes::UnionShape.new(name: 'TriggerCondition')
|
|
613
622
|
TriggerConditionInput = Shapes::UnionShape.new(name: 'TriggerConditionInput')
|
|
614
623
|
TriggerConditionInputList = Shapes::ListShape.new(name: 'TriggerConditionInputList')
|
|
@@ -778,6 +787,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
778
787
|
BedrockEvaluatorModelConfig.add_member(:additional_model_request_fields, Shapes::ShapeRef.new(shape: AdditionalModelRequestFields, location_name: "additionalModelRequestFields"))
|
|
779
788
|
BedrockEvaluatorModelConfig.struct_class = Types::BedrockEvaluatorModelConfig
|
|
780
789
|
|
|
790
|
+
BrowserEnterprisePolicies.member = Shapes::ShapeRef.new(shape: BrowserEnterprisePolicy)
|
|
791
|
+
|
|
792
|
+
BrowserEnterprisePolicy.add_member(:location, Shapes::ShapeRef.new(shape: ResourceLocation, required: true, location_name: "location"))
|
|
793
|
+
BrowserEnterprisePolicy.add_member(:type, Shapes::ShapeRef.new(shape: BrowserEnterprisePolicyType, location_name: "type"))
|
|
794
|
+
BrowserEnterprisePolicy.struct_class = Types::BrowserEnterprisePolicy
|
|
795
|
+
|
|
781
796
|
BrowserNetworkConfiguration.add_member(:network_mode, Shapes::ShapeRef.new(shape: BrowserNetworkMode, required: true, location_name: "networkMode"))
|
|
782
797
|
BrowserNetworkConfiguration.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VpcConfig, location_name: "vpcConfig"))
|
|
783
798
|
BrowserNetworkConfiguration.struct_class = Types::BrowserNetworkConfiguration
|
|
@@ -822,6 +837,17 @@ module Aws::BedrockAgentCoreControl
|
|
|
822
837
|
CedarPolicy.add_member(:statement, Shapes::ShapeRef.new(shape: Statement, required: true, location_name: "statement"))
|
|
823
838
|
CedarPolicy.struct_class = Types::CedarPolicy
|
|
824
839
|
|
|
840
|
+
Certificate.add_member(:location, Shapes::ShapeRef.new(shape: CertificateLocation, required: true, location_name: "location"))
|
|
841
|
+
Certificate.struct_class = Types::Certificate
|
|
842
|
+
|
|
843
|
+
CertificateLocation.add_member(:secrets_manager, Shapes::ShapeRef.new(shape: SecretsManagerLocation, location_name: "secretsManager"))
|
|
844
|
+
CertificateLocation.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
845
|
+
CertificateLocation.add_member_subclass(:secrets_manager, Types::CertificateLocation::SecretsManager)
|
|
846
|
+
CertificateLocation.add_member_subclass(:unknown, Types::CertificateLocation::Unknown)
|
|
847
|
+
CertificateLocation.struct_class = Types::CertificateLocation
|
|
848
|
+
|
|
849
|
+
Certificates.member = Shapes::ShapeRef.new(shape: Certificate)
|
|
850
|
+
|
|
825
851
|
ClaimMatchValueType.add_member(:match_value_string, Shapes::ShapeRef.new(shape: MatchValueString, location_name: "matchValueString"))
|
|
826
852
|
ClaimMatchValueType.add_member(:match_value_string_list, Shapes::ShapeRef.new(shape: MatchValueStringList, location_name: "matchValueStringList"))
|
|
827
853
|
ClaimMatchValueType.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
@@ -961,6 +987,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
961
987
|
CreateBrowserRequest.add_member(:network_configuration, Shapes::ShapeRef.new(shape: BrowserNetworkConfiguration, required: true, location_name: "networkConfiguration"))
|
|
962
988
|
CreateBrowserRequest.add_member(:recording, Shapes::ShapeRef.new(shape: RecordingConfig, location_name: "recording"))
|
|
963
989
|
CreateBrowserRequest.add_member(:browser_signing, Shapes::ShapeRef.new(shape: BrowserSigningConfigInput, location_name: "browserSigning"))
|
|
990
|
+
CreateBrowserRequest.add_member(:enterprise_policies, Shapes::ShapeRef.new(shape: BrowserEnterprisePolicies, location_name: "enterprisePolicies"))
|
|
991
|
+
CreateBrowserRequest.add_member(:certificates, Shapes::ShapeRef.new(shape: Certificates, location_name: "certificates"))
|
|
964
992
|
CreateBrowserRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
965
993
|
CreateBrowserRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
|
|
966
994
|
CreateBrowserRequest.struct_class = Types::CreateBrowserRequest
|
|
@@ -975,6 +1003,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
975
1003
|
CreateCodeInterpreterRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
|
976
1004
|
CreateCodeInterpreterRequest.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "executionRoleArn"))
|
|
977
1005
|
CreateCodeInterpreterRequest.add_member(:network_configuration, Shapes::ShapeRef.new(shape: CodeInterpreterNetworkConfiguration, required: true, location_name: "networkConfiguration"))
|
|
1006
|
+
CreateCodeInterpreterRequest.add_member(:certificates, Shapes::ShapeRef.new(shape: Certificates, location_name: "certificates"))
|
|
978
1007
|
CreateCodeInterpreterRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
979
1008
|
CreateCodeInterpreterRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
|
|
980
1009
|
CreateCodeInterpreterRequest.struct_class = Types::CreateCodeInterpreterRequest
|
|
@@ -1662,6 +1691,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
1662
1691
|
GetBrowserResponse.add_member(:network_configuration, Shapes::ShapeRef.new(shape: BrowserNetworkConfiguration, required: true, location_name: "networkConfiguration"))
|
|
1663
1692
|
GetBrowserResponse.add_member(:recording, Shapes::ShapeRef.new(shape: RecordingConfig, location_name: "recording"))
|
|
1664
1693
|
GetBrowserResponse.add_member(:browser_signing, Shapes::ShapeRef.new(shape: BrowserSigningConfigOutput, location_name: "browserSigning"))
|
|
1694
|
+
GetBrowserResponse.add_member(:enterprise_policies, Shapes::ShapeRef.new(shape: BrowserEnterprisePolicies, location_name: "enterprisePolicies"))
|
|
1695
|
+
GetBrowserResponse.add_member(:certificates, Shapes::ShapeRef.new(shape: Certificates, location_name: "certificates"))
|
|
1665
1696
|
GetBrowserResponse.add_member(:status, Shapes::ShapeRef.new(shape: BrowserStatus, required: true, location_name: "status"))
|
|
1666
1697
|
GetBrowserResponse.add_member(:failure_reason, Shapes::ShapeRef.new(shape: String, location_name: "failureReason"))
|
|
1667
1698
|
GetBrowserResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "createdAt"))
|
|
@@ -1678,6 +1709,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1678
1709
|
GetCodeInterpreterResponse.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "executionRoleArn"))
|
|
1679
1710
|
GetCodeInterpreterResponse.add_member(:network_configuration, Shapes::ShapeRef.new(shape: CodeInterpreterNetworkConfiguration, required: true, location_name: "networkConfiguration"))
|
|
1680
1711
|
GetCodeInterpreterResponse.add_member(:status, Shapes::ShapeRef.new(shape: CodeInterpreterStatus, required: true, location_name: "status"))
|
|
1712
|
+
GetCodeInterpreterResponse.add_member(:certificates, Shapes::ShapeRef.new(shape: Certificates, location_name: "certificates"))
|
|
1681
1713
|
GetCodeInterpreterResponse.add_member(:failure_reason, Shapes::ShapeRef.new(shape: String, location_name: "failureReason"))
|
|
1682
1714
|
GetCodeInterpreterResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "createdAt"))
|
|
1683
1715
|
GetCodeInterpreterResponse.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "lastUpdatedAt"))
|
|
@@ -2468,6 +2500,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
2468
2500
|
ResourceLimitExceededException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
|
2469
2501
|
ResourceLimitExceededException.struct_class = Types::ResourceLimitExceededException
|
|
2470
2502
|
|
|
2503
|
+
ResourceLocation.add_member(:s3, Shapes::ShapeRef.new(shape: S3Location, location_name: "s3"))
|
|
2504
|
+
ResourceLocation.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
2505
|
+
ResourceLocation.add_member_subclass(:s3, Types::ResourceLocation::S3)
|
|
2506
|
+
ResourceLocation.add_member_subclass(:unknown, Types::ResourceLocation::Unknown)
|
|
2507
|
+
ResourceLocation.struct_class = Types::ResourceLocation
|
|
2508
|
+
|
|
2471
2509
|
ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: NonBlankString, location_name: "message"))
|
|
2472
2510
|
ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
|
|
2473
2511
|
|
|
@@ -2518,6 +2556,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
2518
2556
|
Secret.add_member(:secret_arn, Shapes::ShapeRef.new(shape: SecretArn, required: true, location_name: "secretArn"))
|
|
2519
2557
|
Secret.struct_class = Types::Secret
|
|
2520
2558
|
|
|
2559
|
+
SecretsManagerLocation.add_member(:secret_arn, Shapes::ShapeRef.new(shape: ToolSecretArn, required: true, location_name: "secretArn"))
|
|
2560
|
+
SecretsManagerLocation.struct_class = Types::SecretsManagerLocation
|
|
2561
|
+
|
|
2521
2562
|
SecurityGroups.member = Shapes::ShapeRef.new(shape: SecurityGroupId)
|
|
2522
2563
|
|
|
2523
2564
|
SelfManagedConfiguration.add_member(:trigger_conditions, Shapes::ShapeRef.new(shape: TriggerConditionsList, required: true, location_name: "triggerConditions"))
|
|
@@ -477,6 +477,26 @@ module Aws::BedrockAgentCoreControl
|
|
|
477
477
|
include Aws::Structure
|
|
478
478
|
end
|
|
479
479
|
|
|
480
|
+
# Browser enterprise policy configuration.
|
|
481
|
+
#
|
|
482
|
+
# @!attribute [rw] location
|
|
483
|
+
# The location of the enterprise policy file.
|
|
484
|
+
# @return [Types::ResourceLocation]
|
|
485
|
+
#
|
|
486
|
+
# @!attribute [rw] type
|
|
487
|
+
# The type of browser enterprise policy. Available values are
|
|
488
|
+
# `MANAGED` and `RECOMMENDED`.
|
|
489
|
+
# @return [String]
|
|
490
|
+
#
|
|
491
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/BrowserEnterprisePolicy AWS API Documentation
|
|
492
|
+
#
|
|
493
|
+
class BrowserEnterprisePolicy < Struct.new(
|
|
494
|
+
:location,
|
|
495
|
+
:type)
|
|
496
|
+
SENSITIVE = []
|
|
497
|
+
include Aws::Structure
|
|
498
|
+
end
|
|
499
|
+
|
|
480
500
|
# The network configuration for a browser. This structure defines how
|
|
481
501
|
# the browser connects to the network.
|
|
482
502
|
#
|
|
@@ -684,6 +704,43 @@ module Aws::BedrockAgentCoreControl
|
|
|
684
704
|
include Aws::Structure
|
|
685
705
|
end
|
|
686
706
|
|
|
707
|
+
# A certificate to install in the browser or code interpreter.
|
|
708
|
+
#
|
|
709
|
+
# @!attribute [rw] location
|
|
710
|
+
# The location of the certificate.
|
|
711
|
+
# @return [Types::CertificateLocation]
|
|
712
|
+
#
|
|
713
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/Certificate AWS API Documentation
|
|
714
|
+
#
|
|
715
|
+
class Certificate < Struct.new(
|
|
716
|
+
:location)
|
|
717
|
+
SENSITIVE = []
|
|
718
|
+
include Aws::Structure
|
|
719
|
+
end
|
|
720
|
+
|
|
721
|
+
# The location from which to retrieve a certificate.
|
|
722
|
+
#
|
|
723
|
+
# @note CertificateLocation is a union - when making an API calls you must set exactly one of the members.
|
|
724
|
+
#
|
|
725
|
+
# @note CertificateLocation is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of CertificateLocation corresponding to the set member.
|
|
726
|
+
#
|
|
727
|
+
# @!attribute [rw] secrets_manager
|
|
728
|
+
# The Amazon Web Services Secrets Manager location of the certificate.
|
|
729
|
+
# @return [Types::SecretsManagerLocation]
|
|
730
|
+
#
|
|
731
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CertificateLocation AWS API Documentation
|
|
732
|
+
#
|
|
733
|
+
class CertificateLocation < Struct.new(
|
|
734
|
+
:secrets_manager,
|
|
735
|
+
:unknown)
|
|
736
|
+
SENSITIVE = []
|
|
737
|
+
include Aws::Structure
|
|
738
|
+
include Aws::Structure::Union
|
|
739
|
+
|
|
740
|
+
class SecretsManager < CertificateLocation; end
|
|
741
|
+
class Unknown < CertificateLocation; end
|
|
742
|
+
end
|
|
743
|
+
|
|
687
744
|
# The value or values to match for.
|
|
688
745
|
#
|
|
689
746
|
# * Include a `matchValueString` with the `EQUALS` operator to specify a
|
|
@@ -1334,6 +1391,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
1334
1391
|
# authentication.
|
|
1335
1392
|
# @return [Types::BrowserSigningConfigInput]
|
|
1336
1393
|
#
|
|
1394
|
+
# @!attribute [rw] enterprise_policies
|
|
1395
|
+
# A list of enterprise policy files for the browser.
|
|
1396
|
+
# @return [Array<Types::BrowserEnterprisePolicy>]
|
|
1397
|
+
#
|
|
1398
|
+
# @!attribute [rw] certificates
|
|
1399
|
+
# A list of certificates to install in the browser.
|
|
1400
|
+
# @return [Array<Types::Certificate>]
|
|
1401
|
+
#
|
|
1337
1402
|
# @!attribute [rw] client_token
|
|
1338
1403
|
# A unique, case-sensitive identifier to ensure that the operation
|
|
1339
1404
|
# completes no more than one time. If this token matches a previous
|
|
@@ -1359,6 +1424,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
1359
1424
|
:network_configuration,
|
|
1360
1425
|
:recording,
|
|
1361
1426
|
:browser_signing,
|
|
1427
|
+
:enterprise_policies,
|
|
1428
|
+
:certificates,
|
|
1362
1429
|
:client_token,
|
|
1363
1430
|
:tags)
|
|
1364
1431
|
SENSITIVE = [:description]
|
|
@@ -1412,6 +1479,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
1412
1479
|
# configuration specifies the network mode for the code interpreter.
|
|
1413
1480
|
# @return [Types::CodeInterpreterNetworkConfiguration]
|
|
1414
1481
|
#
|
|
1482
|
+
# @!attribute [rw] certificates
|
|
1483
|
+
# A list of certificates to install in the code interpreter.
|
|
1484
|
+
# @return [Array<Types::Certificate>]
|
|
1485
|
+
#
|
|
1415
1486
|
# @!attribute [rw] client_token
|
|
1416
1487
|
# A unique, case-sensitive identifier to ensure that the operation
|
|
1417
1488
|
# completes no more than one time. If this token matches a previous
|
|
@@ -1435,6 +1506,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1435
1506
|
:description,
|
|
1436
1507
|
:execution_role_arn,
|
|
1437
1508
|
:network_configuration,
|
|
1509
|
+
:certificates,
|
|
1438
1510
|
:client_token,
|
|
1439
1511
|
:tags)
|
|
1440
1512
|
SENSITIVE = [:description]
|
|
@@ -4725,6 +4797,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
4725
4797
|
# agent identification is enabled for web bot authentication.
|
|
4726
4798
|
# @return [Types::BrowserSigningConfigOutput]
|
|
4727
4799
|
#
|
|
4800
|
+
# @!attribute [rw] enterprise_policies
|
|
4801
|
+
# The list of enterprise policy files configured for the browser.
|
|
4802
|
+
# @return [Array<Types::BrowserEnterprisePolicy>]
|
|
4803
|
+
#
|
|
4804
|
+
# @!attribute [rw] certificates
|
|
4805
|
+
# The list of certificates configured for the browser.
|
|
4806
|
+
# @return [Array<Types::Certificate>]
|
|
4807
|
+
#
|
|
4728
4808
|
# @!attribute [rw] status
|
|
4729
4809
|
# The current status of the browser.
|
|
4730
4810
|
# @return [String]
|
|
@@ -4752,6 +4832,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
4752
4832
|
:network_configuration,
|
|
4753
4833
|
:recording,
|
|
4754
4834
|
:browser_signing,
|
|
4835
|
+
:enterprise_policies,
|
|
4836
|
+
:certificates,
|
|
4755
4837
|
:status,
|
|
4756
4838
|
:failure_reason,
|
|
4757
4839
|
:created_at,
|
|
@@ -4801,6 +4883,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
4801
4883
|
# The current status of the code interpreter.
|
|
4802
4884
|
# @return [String]
|
|
4803
4885
|
#
|
|
4886
|
+
# @!attribute [rw] certificates
|
|
4887
|
+
# The list of certificates configured for the code interpreter.
|
|
4888
|
+
# @return [Array<Types::Certificate>]
|
|
4889
|
+
#
|
|
4804
4890
|
# @!attribute [rw] failure_reason
|
|
4805
4891
|
# The reason for failure if the code interpreter is in a failed state.
|
|
4806
4892
|
# @return [String]
|
|
@@ -4823,6 +4909,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
4823
4909
|
:execution_role_arn,
|
|
4824
4910
|
:network_configuration,
|
|
4825
4911
|
:status,
|
|
4912
|
+
:certificates,
|
|
4826
4913
|
:failure_reason,
|
|
4827
4914
|
:created_at,
|
|
4828
4915
|
:last_updated_at)
|
|
@@ -8477,6 +8564,30 @@ module Aws::BedrockAgentCoreControl
|
|
|
8477
8564
|
include Aws::Structure
|
|
8478
8565
|
end
|
|
8479
8566
|
|
|
8567
|
+
# The location of a resource.
|
|
8568
|
+
#
|
|
8569
|
+
# @note ResourceLocation is a union - when making an API calls you must set exactly one of the members.
|
|
8570
|
+
#
|
|
8571
|
+
# @note ResourceLocation is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ResourceLocation corresponding to the set member.
|
|
8572
|
+
#
|
|
8573
|
+
# @!attribute [rw] s3
|
|
8574
|
+
# The Amazon S3 location for storing data. This structure defines
|
|
8575
|
+
# where in Amazon S3 data is stored.
|
|
8576
|
+
# @return [Types::S3Location]
|
|
8577
|
+
#
|
|
8578
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ResourceLocation AWS API Documentation
|
|
8579
|
+
#
|
|
8580
|
+
class ResourceLocation < Struct.new(
|
|
8581
|
+
:s3,
|
|
8582
|
+
:unknown)
|
|
8583
|
+
SENSITIVE = []
|
|
8584
|
+
include Aws::Structure
|
|
8585
|
+
include Aws::Structure::Union
|
|
8586
|
+
|
|
8587
|
+
class S3 < ResourceLocation; end
|
|
8588
|
+
class Unknown < ResourceLocation; end
|
|
8589
|
+
end
|
|
8590
|
+
|
|
8480
8591
|
# This exception is thrown when a resource referenced by the operation
|
|
8481
8592
|
# does not exist
|
|
8482
8593
|
#
|
|
@@ -8693,6 +8804,21 @@ module Aws::BedrockAgentCoreControl
|
|
|
8693
8804
|
include Aws::Structure
|
|
8694
8805
|
end
|
|
8695
8806
|
|
|
8807
|
+
# The Amazon Web Services Secrets Manager location configuration.
|
|
8808
|
+
#
|
|
8809
|
+
# @!attribute [rw] secret_arn
|
|
8810
|
+
# The ARN of the Amazon Web Services Secrets Manager secret containing
|
|
8811
|
+
# the certificate.
|
|
8812
|
+
# @return [String]
|
|
8813
|
+
#
|
|
8814
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/SecretsManagerLocation AWS API Documentation
|
|
8815
|
+
#
|
|
8816
|
+
class SecretsManagerLocation < Struct.new(
|
|
8817
|
+
:secret_arn)
|
|
8818
|
+
SENSITIVE = []
|
|
8819
|
+
include Aws::Structure
|
|
8820
|
+
end
|
|
8821
|
+
|
|
8696
8822
|
# A configuration for a self-managed memory strategy.
|
|
8697
8823
|
#
|
|
8698
8824
|
# @!attribute [rw] trigger_conditions
|
data/sig/client.rbs
CHANGED
|
@@ -217,6 +217,27 @@ module Aws
|
|
|
217
217
|
?browser_signing: {
|
|
218
218
|
enabled: bool
|
|
219
219
|
},
|
|
220
|
+
?enterprise_policies: Array[
|
|
221
|
+
{
|
|
222
|
+
location: {
|
|
223
|
+
s3: {
|
|
224
|
+
bucket: ::String,
|
|
225
|
+
prefix: ::String,
|
|
226
|
+
version_id: ::String?
|
|
227
|
+
}?
|
|
228
|
+
},
|
|
229
|
+
type: ("MANAGED" | "RECOMMENDED")?
|
|
230
|
+
},
|
|
231
|
+
],
|
|
232
|
+
?certificates: Array[
|
|
233
|
+
{
|
|
234
|
+
location: {
|
|
235
|
+
secrets_manager: {
|
|
236
|
+
secret_arn: ::String
|
|
237
|
+
}?
|
|
238
|
+
}
|
|
239
|
+
},
|
|
240
|
+
],
|
|
220
241
|
?client_token: ::String,
|
|
221
242
|
?tags: Hash[::String, ::String]
|
|
222
243
|
) -> _CreateBrowserResponseSuccess
|
|
@@ -257,6 +278,15 @@ module Aws
|
|
|
257
278
|
subnets: Array[::String]
|
|
258
279
|
}?
|
|
259
280
|
},
|
|
281
|
+
?certificates: Array[
|
|
282
|
+
{
|
|
283
|
+
location: {
|
|
284
|
+
secrets_manager: {
|
|
285
|
+
secret_arn: ::String
|
|
286
|
+
}?
|
|
287
|
+
}
|
|
288
|
+
},
|
|
289
|
+
],
|
|
260
290
|
?client_token: ::String,
|
|
261
291
|
?tags: Hash[::String, ::String]
|
|
262
292
|
) -> _CreateCodeInterpreterResponseSuccess
|
|
@@ -1109,6 +1139,8 @@ module Aws
|
|
|
1109
1139
|
def network_configuration: () -> Types::BrowserNetworkConfiguration
|
|
1110
1140
|
def recording: () -> Types::RecordingConfig
|
|
1111
1141
|
def browser_signing: () -> Types::BrowserSigningConfigOutput
|
|
1142
|
+
def enterprise_policies: () -> ::Array[Types::BrowserEnterprisePolicy]
|
|
1143
|
+
def certificates: () -> ::Array[Types::Certificate]
|
|
1112
1144
|
def status: () -> ("CREATING" | "CREATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED" | "DELETED")
|
|
1113
1145
|
def failure_reason: () -> ::String
|
|
1114
1146
|
def created_at: () -> ::Time
|
|
@@ -1148,6 +1180,7 @@ module Aws
|
|
|
1148
1180
|
def execution_role_arn: () -> ::String
|
|
1149
1181
|
def network_configuration: () -> Types::CodeInterpreterNetworkConfiguration
|
|
1150
1182
|
def status: () -> ("CREATING" | "CREATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED" | "DELETED")
|
|
1183
|
+
def certificates: () -> ::Array[Types::Certificate]
|
|
1151
1184
|
def failure_reason: () -> ::String
|
|
1152
1185
|
def created_at: () -> ::Time
|
|
1153
1186
|
def last_updated_at: () -> ::Time
|
data/sig/types.rbs
CHANGED
|
@@ -145,6 +145,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
145
145
|
SENSITIVE: []
|
|
146
146
|
end
|
|
147
147
|
|
|
148
|
+
class BrowserEnterprisePolicy
|
|
149
|
+
attr_accessor location: Types::ResourceLocation
|
|
150
|
+
attr_accessor type: ("MANAGED" | "RECOMMENDED")
|
|
151
|
+
SENSITIVE: []
|
|
152
|
+
end
|
|
153
|
+
|
|
148
154
|
class BrowserNetworkConfiguration
|
|
149
155
|
attr_accessor network_mode: ("PUBLIC" | "VPC")
|
|
150
156
|
attr_accessor vpc_config: Types::VpcConfig
|
|
@@ -197,6 +203,22 @@ module Aws::BedrockAgentCoreControl
|
|
|
197
203
|
SENSITIVE: []
|
|
198
204
|
end
|
|
199
205
|
|
|
206
|
+
class Certificate
|
|
207
|
+
attr_accessor location: Types::CertificateLocation
|
|
208
|
+
SENSITIVE: []
|
|
209
|
+
end
|
|
210
|
+
|
|
211
|
+
class CertificateLocation
|
|
212
|
+
attr_accessor secrets_manager: Types::SecretsManagerLocation
|
|
213
|
+
attr_accessor unknown: untyped
|
|
214
|
+
SENSITIVE: []
|
|
215
|
+
|
|
216
|
+
class SecretsManager < CertificateLocation
|
|
217
|
+
end
|
|
218
|
+
class Unknown < CertificateLocation
|
|
219
|
+
end
|
|
220
|
+
end
|
|
221
|
+
|
|
200
222
|
class ClaimMatchValueType
|
|
201
223
|
attr_accessor match_value_string: ::String
|
|
202
224
|
attr_accessor match_value_string_list: ::Array[::String]
|
|
@@ -384,6 +406,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
384
406
|
attr_accessor network_configuration: Types::BrowserNetworkConfiguration
|
|
385
407
|
attr_accessor recording: Types::RecordingConfig
|
|
386
408
|
attr_accessor browser_signing: Types::BrowserSigningConfigInput
|
|
409
|
+
attr_accessor enterprise_policies: ::Array[Types::BrowserEnterprisePolicy]
|
|
410
|
+
attr_accessor certificates: ::Array[Types::Certificate]
|
|
387
411
|
attr_accessor client_token: ::String
|
|
388
412
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
389
413
|
SENSITIVE: [:description]
|
|
@@ -402,6 +426,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
402
426
|
attr_accessor description: ::String
|
|
403
427
|
attr_accessor execution_role_arn: ::String
|
|
404
428
|
attr_accessor network_configuration: Types::CodeInterpreterNetworkConfiguration
|
|
429
|
+
attr_accessor certificates: ::Array[Types::Certificate]
|
|
405
430
|
attr_accessor client_token: ::String
|
|
406
431
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
407
432
|
SENSITIVE: [:description]
|
|
@@ -1326,6 +1351,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
1326
1351
|
attr_accessor network_configuration: Types::BrowserNetworkConfiguration
|
|
1327
1352
|
attr_accessor recording: Types::RecordingConfig
|
|
1328
1353
|
attr_accessor browser_signing: Types::BrowserSigningConfigOutput
|
|
1354
|
+
attr_accessor enterprise_policies: ::Array[Types::BrowserEnterprisePolicy]
|
|
1355
|
+
attr_accessor certificates: ::Array[Types::Certificate]
|
|
1329
1356
|
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED" | "DELETED")
|
|
1330
1357
|
attr_accessor failure_reason: ::String
|
|
1331
1358
|
attr_accessor created_at: ::Time
|
|
@@ -1346,6 +1373,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1346
1373
|
attr_accessor execution_role_arn: ::String
|
|
1347
1374
|
attr_accessor network_configuration: Types::CodeInterpreterNetworkConfiguration
|
|
1348
1375
|
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED" | "DELETED")
|
|
1376
|
+
attr_accessor certificates: ::Array[Types::Certificate]
|
|
1349
1377
|
attr_accessor failure_reason: ::String
|
|
1350
1378
|
attr_accessor created_at: ::Time
|
|
1351
1379
|
attr_accessor last_updated_at: ::Time
|
|
@@ -2419,6 +2447,17 @@ module Aws::BedrockAgentCoreControl
|
|
|
2419
2447
|
SENSITIVE: []
|
|
2420
2448
|
end
|
|
2421
2449
|
|
|
2450
|
+
class ResourceLocation
|
|
2451
|
+
attr_accessor s3: Types::S3Location
|
|
2452
|
+
attr_accessor unknown: untyped
|
|
2453
|
+
SENSITIVE: []
|
|
2454
|
+
|
|
2455
|
+
class S3 < ResourceLocation
|
|
2456
|
+
end
|
|
2457
|
+
class Unknown < ResourceLocation
|
|
2458
|
+
end
|
|
2459
|
+
end
|
|
2460
|
+
|
|
2422
2461
|
class ResourceNotFoundException
|
|
2423
2462
|
attr_accessor message: ::String
|
|
2424
2463
|
SENSITIVE: []
|
|
@@ -2480,6 +2519,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
2480
2519
|
SENSITIVE: []
|
|
2481
2520
|
end
|
|
2482
2521
|
|
|
2522
|
+
class SecretsManagerLocation
|
|
2523
|
+
attr_accessor secret_arn: ::String
|
|
2524
|
+
SENSITIVE: []
|
|
2525
|
+
end
|
|
2526
|
+
|
|
2483
2527
|
class SelfManagedConfiguration
|
|
2484
2528
|
attr_accessor trigger_conditions: ::Array[Types::TriggerCondition]
|
|
2485
2529
|
attr_accessor invocation_configuration: Types::InvocationConfiguration
|