aws-sdk-bedrockagentcorecontrol 1.23.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockagentcorecontrol/client.rb +205 -8
- data/lib/aws-sdk-bedrockagentcorecontrol/client_api.rb +134 -0
- data/lib/aws-sdk-bedrockagentcorecontrol/types.rb +296 -7
- data/lib/aws-sdk-bedrockagentcorecontrol.rb +1 -1
- data/sig/client.rbs +62 -0
- data/sig/types.rbs +76 -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: 97dd61c2fb0f815d976a2464c1c7d560d0e14f28625d206dbb261c843885e612
|
|
4
|
+
data.tar.gz: f172032ce2df54822433145c039bad7ee268360b3774951e066d8bd9de91408a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e8ec44f836328a751f607ceb4a441703cb1d4b7ff658bfbd82736bfc734522c4beb623f8a925015149758b4544434ef5f00100d826b375788e32915c5fae39eb
|
|
7
|
+
data.tar.gz: be1b58ce2de8435604d5c439db4c576d3c5f1f78714ca3aa22258ae1f273cc31a7e9edbb3bfe893a1f6e1aa54905aae4665e2aca6895e274f6aea2c1da984af9
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.24.0
|
|
@@ -761,8 +761,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
761
761
|
# @option params [String] :client_token
|
|
762
762
|
# A unique, case-sensitive identifier to ensure that the operation
|
|
763
763
|
# completes no more than one time. If this token matches a previous
|
|
764
|
-
# request, Amazon Bedrock ignores the request but does not
|
|
765
|
-
# error.
|
|
764
|
+
# request, Amazon Bedrock AgentCore ignores the request but does not
|
|
765
|
+
# return an error.
|
|
766
766
|
#
|
|
767
767
|
# **A suitable default value is auto-generated.** You should normally
|
|
768
768
|
# not need to pass this option.**
|
|
@@ -825,6 +825,67 @@ module Aws::BedrockAgentCoreControl
|
|
|
825
825
|
req.send_request(options)
|
|
826
826
|
end
|
|
827
827
|
|
|
828
|
+
# Creates a browser profile in Amazon Bedrock AgentCore. A browser
|
|
829
|
+
# profile stores persistent browser data such as cookies, local storage,
|
|
830
|
+
# session storage, and browsing history that can be saved from browser
|
|
831
|
+
# sessions and reused in subsequent sessions.
|
|
832
|
+
#
|
|
833
|
+
# @option params [required, String] :name
|
|
834
|
+
# The name of the browser profile. The name must be unique within your
|
|
835
|
+
# account and can contain alphanumeric characters and underscores.
|
|
836
|
+
#
|
|
837
|
+
# @option params [String] :description
|
|
838
|
+
# A description of the browser profile. Use this field to describe the
|
|
839
|
+
# purpose or contents of the profile.
|
|
840
|
+
#
|
|
841
|
+
# @option params [String] :client_token
|
|
842
|
+
# A unique, case-sensitive identifier to ensure that the operation
|
|
843
|
+
# completes no more than one time. If this token matches a previous
|
|
844
|
+
# request, Amazon Bedrock AgentCore ignores the request but does not
|
|
845
|
+
# return an error.
|
|
846
|
+
#
|
|
847
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
848
|
+
# not need to pass this option.**
|
|
849
|
+
#
|
|
850
|
+
# @option params [Hash<String,String>] :tags
|
|
851
|
+
# A map of tag keys and values to assign to the browser profile. Tags
|
|
852
|
+
# enable you to categorize your resources in different ways, for
|
|
853
|
+
# example, by purpose, owner, or environment.
|
|
854
|
+
#
|
|
855
|
+
# @return [Types::CreateBrowserProfileResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
856
|
+
#
|
|
857
|
+
# * {Types::CreateBrowserProfileResponse#profile_id #profile_id} => String
|
|
858
|
+
# * {Types::CreateBrowserProfileResponse#profile_arn #profile_arn} => String
|
|
859
|
+
# * {Types::CreateBrowserProfileResponse#created_at #created_at} => Time
|
|
860
|
+
# * {Types::CreateBrowserProfileResponse#status #status} => String
|
|
861
|
+
#
|
|
862
|
+
# @example Request syntax with placeholder values
|
|
863
|
+
#
|
|
864
|
+
# resp = client.create_browser_profile({
|
|
865
|
+
# name: "BrowserProfileName", # required
|
|
866
|
+
# description: "Description",
|
|
867
|
+
# client_token: "ClientToken",
|
|
868
|
+
# tags: {
|
|
869
|
+
# "TagKey" => "TagValue",
|
|
870
|
+
# },
|
|
871
|
+
# })
|
|
872
|
+
#
|
|
873
|
+
# @example Response structure
|
|
874
|
+
#
|
|
875
|
+
# resp.profile_id #=> String
|
|
876
|
+
# resp.profile_arn #=> String
|
|
877
|
+
# resp.created_at #=> Time
|
|
878
|
+
# resp.status #=> String, one of "READY", "DELETING", "DELETED", "SAVING"
|
|
879
|
+
#
|
|
880
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateBrowserProfile AWS API Documentation
|
|
881
|
+
#
|
|
882
|
+
# @overload create_browser_profile(params = {})
|
|
883
|
+
# @param [Hash] params ({})
|
|
884
|
+
def create_browser_profile(params = {}, options = {})
|
|
885
|
+
req = build_request(:create_browser_profile, params)
|
|
886
|
+
req.send_request(options)
|
|
887
|
+
end
|
|
888
|
+
|
|
828
889
|
# Creates a custom code interpreter.
|
|
829
890
|
#
|
|
830
891
|
# @option params [required, String] :name
|
|
@@ -846,8 +907,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
846
907
|
# @option params [String] :client_token
|
|
847
908
|
# A unique, case-sensitive identifier to ensure that the operation
|
|
848
909
|
# completes no more than one time. If this token matches a previous
|
|
849
|
-
# request, Amazon Bedrock ignores the request but does not
|
|
850
|
-
# error.
|
|
910
|
+
# request, Amazon Bedrock AgentCore ignores the request but does not
|
|
911
|
+
# return an error.
|
|
851
912
|
#
|
|
852
913
|
# **A suitable default value is auto-generated.** You should normally
|
|
853
914
|
# not need to pass this option.**
|
|
@@ -2384,6 +2445,50 @@ module Aws::BedrockAgentCoreControl
|
|
|
2384
2445
|
req.send_request(options)
|
|
2385
2446
|
end
|
|
2386
2447
|
|
|
2448
|
+
# Deletes a browser profile.
|
|
2449
|
+
#
|
|
2450
|
+
# @option params [required, String] :profile_id
|
|
2451
|
+
# The unique identifier of the browser profile to delete.
|
|
2452
|
+
#
|
|
2453
|
+
# @option params [String] :client_token
|
|
2454
|
+
# A unique, case-sensitive identifier to ensure idempotency of the
|
|
2455
|
+
# request.
|
|
2456
|
+
#
|
|
2457
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
2458
|
+
# not need to pass this option.**
|
|
2459
|
+
#
|
|
2460
|
+
# @return [Types::DeleteBrowserProfileResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2461
|
+
#
|
|
2462
|
+
# * {Types::DeleteBrowserProfileResponse#profile_id #profile_id} => String
|
|
2463
|
+
# * {Types::DeleteBrowserProfileResponse#profile_arn #profile_arn} => String
|
|
2464
|
+
# * {Types::DeleteBrowserProfileResponse#status #status} => String
|
|
2465
|
+
# * {Types::DeleteBrowserProfileResponse#last_updated_at #last_updated_at} => Time
|
|
2466
|
+
# * {Types::DeleteBrowserProfileResponse#last_saved_at #last_saved_at} => Time
|
|
2467
|
+
#
|
|
2468
|
+
# @example Request syntax with placeholder values
|
|
2469
|
+
#
|
|
2470
|
+
# resp = client.delete_browser_profile({
|
|
2471
|
+
# profile_id: "BrowserProfileId", # required
|
|
2472
|
+
# client_token: "ClientToken",
|
|
2473
|
+
# })
|
|
2474
|
+
#
|
|
2475
|
+
# @example Response structure
|
|
2476
|
+
#
|
|
2477
|
+
# resp.profile_id #=> String
|
|
2478
|
+
# resp.profile_arn #=> String
|
|
2479
|
+
# resp.status #=> String, one of "READY", "DELETING", "DELETED", "SAVING"
|
|
2480
|
+
# resp.last_updated_at #=> Time
|
|
2481
|
+
# resp.last_saved_at #=> Time
|
|
2482
|
+
#
|
|
2483
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteBrowserProfile AWS API Documentation
|
|
2484
|
+
#
|
|
2485
|
+
# @overload delete_browser_profile(params = {})
|
|
2486
|
+
# @param [Hash] params ({})
|
|
2487
|
+
def delete_browser_profile(params = {}, options = {})
|
|
2488
|
+
req = build_request(:delete_browser_profile, params)
|
|
2489
|
+
req.send_request(options)
|
|
2490
|
+
end
|
|
2491
|
+
|
|
2387
2492
|
# Deletes a custom code interpreter.
|
|
2388
2493
|
#
|
|
2389
2494
|
# @option params [required, String] :code_interpreter_id
|
|
@@ -3020,6 +3125,52 @@ module Aws::BedrockAgentCoreControl
|
|
|
3020
3125
|
req.send_request(options)
|
|
3021
3126
|
end
|
|
3022
3127
|
|
|
3128
|
+
# Gets information about a browser profile.
|
|
3129
|
+
#
|
|
3130
|
+
# @option params [required, String] :profile_id
|
|
3131
|
+
# The unique identifier of the browser profile to retrieve.
|
|
3132
|
+
#
|
|
3133
|
+
# @return [Types::GetBrowserProfileResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
3134
|
+
#
|
|
3135
|
+
# * {Types::GetBrowserProfileResponse#profile_id #profile_id} => String
|
|
3136
|
+
# * {Types::GetBrowserProfileResponse#profile_arn #profile_arn} => String
|
|
3137
|
+
# * {Types::GetBrowserProfileResponse#name #name} => String
|
|
3138
|
+
# * {Types::GetBrowserProfileResponse#description #description} => String
|
|
3139
|
+
# * {Types::GetBrowserProfileResponse#status #status} => String
|
|
3140
|
+
# * {Types::GetBrowserProfileResponse#created_at #created_at} => Time
|
|
3141
|
+
# * {Types::GetBrowserProfileResponse#last_updated_at #last_updated_at} => Time
|
|
3142
|
+
# * {Types::GetBrowserProfileResponse#last_saved_at #last_saved_at} => Time
|
|
3143
|
+
# * {Types::GetBrowserProfileResponse#last_saved_browser_session_id #last_saved_browser_session_id} => String
|
|
3144
|
+
# * {Types::GetBrowserProfileResponse#last_saved_browser_id #last_saved_browser_id} => String
|
|
3145
|
+
#
|
|
3146
|
+
# @example Request syntax with placeholder values
|
|
3147
|
+
#
|
|
3148
|
+
# resp = client.get_browser_profile({
|
|
3149
|
+
# profile_id: "BrowserProfileId", # required
|
|
3150
|
+
# })
|
|
3151
|
+
#
|
|
3152
|
+
# @example Response structure
|
|
3153
|
+
#
|
|
3154
|
+
# resp.profile_id #=> String
|
|
3155
|
+
# resp.profile_arn #=> String
|
|
3156
|
+
# resp.name #=> String
|
|
3157
|
+
# resp.description #=> String
|
|
3158
|
+
# resp.status #=> String, one of "READY", "DELETING", "DELETED", "SAVING"
|
|
3159
|
+
# resp.created_at #=> Time
|
|
3160
|
+
# resp.last_updated_at #=> Time
|
|
3161
|
+
# resp.last_saved_at #=> Time
|
|
3162
|
+
# resp.last_saved_browser_session_id #=> String
|
|
3163
|
+
# resp.last_saved_browser_id #=> String
|
|
3164
|
+
#
|
|
3165
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetBrowserProfile AWS API Documentation
|
|
3166
|
+
#
|
|
3167
|
+
# @overload get_browser_profile(params = {})
|
|
3168
|
+
# @param [Hash] params ({})
|
|
3169
|
+
def get_browser_profile(params = {}, options = {})
|
|
3170
|
+
req = build_request(:get_browser_profile, params)
|
|
3171
|
+
req.send_request(options)
|
|
3172
|
+
end
|
|
3173
|
+
|
|
3023
3174
|
# Gets information about a custom code interpreter.
|
|
3024
3175
|
#
|
|
3025
3176
|
# @option params [required, String] :code_interpreter_id
|
|
@@ -4068,6 +4219,52 @@ module Aws::BedrockAgentCoreControl
|
|
|
4068
4219
|
req.send_request(options)
|
|
4069
4220
|
end
|
|
4070
4221
|
|
|
4222
|
+
# Lists all browser profiles in your account.
|
|
4223
|
+
#
|
|
4224
|
+
# @option params [Integer] :max_results
|
|
4225
|
+
# The maximum number of results to return in the response.
|
|
4226
|
+
#
|
|
4227
|
+
# @option params [String] :next_token
|
|
4228
|
+
# A token to retrieve the next page of results.
|
|
4229
|
+
#
|
|
4230
|
+
# @return [Types::ListBrowserProfilesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
4231
|
+
#
|
|
4232
|
+
# * {Types::ListBrowserProfilesResponse#profile_summaries #profile_summaries} => Array<Types::BrowserProfileSummary>
|
|
4233
|
+
# * {Types::ListBrowserProfilesResponse#next_token #next_token} => String
|
|
4234
|
+
#
|
|
4235
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
4236
|
+
#
|
|
4237
|
+
# @example Request syntax with placeholder values
|
|
4238
|
+
#
|
|
4239
|
+
# resp = client.list_browser_profiles({
|
|
4240
|
+
# max_results: 1,
|
|
4241
|
+
# next_token: "NextToken",
|
|
4242
|
+
# })
|
|
4243
|
+
#
|
|
4244
|
+
# @example Response structure
|
|
4245
|
+
#
|
|
4246
|
+
# resp.profile_summaries #=> Array
|
|
4247
|
+
# resp.profile_summaries[0].profile_id #=> String
|
|
4248
|
+
# resp.profile_summaries[0].profile_arn #=> String
|
|
4249
|
+
# resp.profile_summaries[0].name #=> String
|
|
4250
|
+
# resp.profile_summaries[0].description #=> String
|
|
4251
|
+
# resp.profile_summaries[0].status #=> String, one of "READY", "DELETING", "DELETED", "SAVING"
|
|
4252
|
+
# resp.profile_summaries[0].created_at #=> Time
|
|
4253
|
+
# resp.profile_summaries[0].last_updated_at #=> Time
|
|
4254
|
+
# resp.profile_summaries[0].last_saved_at #=> Time
|
|
4255
|
+
# resp.profile_summaries[0].last_saved_browser_session_id #=> String
|
|
4256
|
+
# resp.profile_summaries[0].last_saved_browser_id #=> String
|
|
4257
|
+
# resp.next_token #=> String
|
|
4258
|
+
#
|
|
4259
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListBrowserProfiles AWS API Documentation
|
|
4260
|
+
#
|
|
4261
|
+
# @overload list_browser_profiles(params = {})
|
|
4262
|
+
# @param [Hash] params ({})
|
|
4263
|
+
def list_browser_profiles(params = {}, options = {})
|
|
4264
|
+
req = build_request(:list_browser_profiles, params)
|
|
4265
|
+
req.send_request(options)
|
|
4266
|
+
end
|
|
4267
|
+
|
|
4071
4268
|
# Lists all custom browsers in your account.
|
|
4072
4269
|
#
|
|
4073
4270
|
# @option params [Integer] :max_results
|
|
@@ -4708,7 +4905,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
4708
4905
|
# Lists the tags associated with the specified resource.
|
|
4709
4906
|
#
|
|
4710
4907
|
# <note markdown="1"> This feature is currently available only for AgentCore Runtime,
|
|
4711
|
-
# Browser, Code Interpreter tool, and Gateway.
|
|
4908
|
+
# Browser, Browser Profile, Code Interpreter tool, and Gateway.
|
|
4712
4909
|
#
|
|
4713
4910
|
# </note>
|
|
4714
4911
|
#
|
|
@@ -5059,7 +5256,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
5059
5256
|
# the tags associated with that resource are also deleted.
|
|
5060
5257
|
#
|
|
5061
5258
|
# <note markdown="1"> This feature is currently available only for AgentCore Runtime,
|
|
5062
|
-
# Browser, Code Interpreter tool, and Gateway.
|
|
5259
|
+
# Browser, Browser Profile, Code Interpreter tool, and Gateway.
|
|
5063
5260
|
#
|
|
5064
5261
|
# </note>
|
|
5065
5262
|
#
|
|
@@ -5092,7 +5289,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
5092
5289
|
# Removes the specified tags from the specified resource.
|
|
5093
5290
|
#
|
|
5094
5291
|
# <note markdown="1"> This feature is currently available only for AgentCore Runtime,
|
|
5095
|
-
# Browser, Code Interpreter tool, and Gateway.
|
|
5292
|
+
# Browser, Browser Profile, Code Interpreter tool, and Gateway.
|
|
5096
5293
|
#
|
|
5097
5294
|
# </note>
|
|
5098
5295
|
#
|
|
@@ -6648,7 +6845,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
6648
6845
|
tracer: tracer
|
|
6649
6846
|
)
|
|
6650
6847
|
context[:gem_name] = 'aws-sdk-bedrockagentcorecontrol'
|
|
6651
|
-
context[:gem_version] = '1.
|
|
6848
|
+
context[:gem_version] = '1.24.0'
|
|
6652
6849
|
Seahorse::Client::Request.new(handlers, context)
|
|
6653
6850
|
end
|
|
6654
6851
|
|
|
@@ -71,6 +71,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
71
71
|
BrowserId = Shapes::StringShape.new(name: 'BrowserId')
|
|
72
72
|
BrowserNetworkConfiguration = Shapes::StructureShape.new(name: 'BrowserNetworkConfiguration')
|
|
73
73
|
BrowserNetworkMode = Shapes::StringShape.new(name: 'BrowserNetworkMode')
|
|
74
|
+
BrowserProfileArn = Shapes::StringShape.new(name: 'BrowserProfileArn')
|
|
75
|
+
BrowserProfileId = Shapes::StringShape.new(name: 'BrowserProfileId')
|
|
76
|
+
BrowserProfileName = Shapes::StringShape.new(name: 'BrowserProfileName')
|
|
77
|
+
BrowserProfileStatus = Shapes::StringShape.new(name: 'BrowserProfileStatus')
|
|
78
|
+
BrowserProfileSummaries = Shapes::ListShape.new(name: 'BrowserProfileSummaries')
|
|
79
|
+
BrowserProfileSummary = Shapes::StructureShape.new(name: 'BrowserProfileSummary')
|
|
80
|
+
BrowserSessionId = Shapes::StringShape.new(name: 'BrowserSessionId')
|
|
74
81
|
BrowserSigningConfigInput = Shapes::StructureShape.new(name: 'BrowserSigningConfigInput')
|
|
75
82
|
BrowserSigningConfigOutput = Shapes::StructureShape.new(name: 'BrowserSigningConfigOutput')
|
|
76
83
|
BrowserStatus = Shapes::StringShape.new(name: 'BrowserStatus')
|
|
@@ -110,6 +117,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
110
117
|
CreateAgentRuntimeResponse = Shapes::StructureShape.new(name: 'CreateAgentRuntimeResponse')
|
|
111
118
|
CreateApiKeyCredentialProviderRequest = Shapes::StructureShape.new(name: 'CreateApiKeyCredentialProviderRequest')
|
|
112
119
|
CreateApiKeyCredentialProviderResponse = Shapes::StructureShape.new(name: 'CreateApiKeyCredentialProviderResponse')
|
|
120
|
+
CreateBrowserProfileRequest = Shapes::StructureShape.new(name: 'CreateBrowserProfileRequest')
|
|
121
|
+
CreateBrowserProfileResponse = Shapes::StructureShape.new(name: 'CreateBrowserProfileResponse')
|
|
113
122
|
CreateBrowserRequest = Shapes::StructureShape.new(name: 'CreateBrowserRequest')
|
|
114
123
|
CreateBrowserResponse = Shapes::StructureShape.new(name: 'CreateBrowserResponse')
|
|
115
124
|
CreateCodeInterpreterRequest = Shapes::StructureShape.new(name: 'CreateCodeInterpreterRequest')
|
|
@@ -165,6 +174,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
165
174
|
DeleteAgentRuntimeResponse = Shapes::StructureShape.new(name: 'DeleteAgentRuntimeResponse')
|
|
166
175
|
DeleteApiKeyCredentialProviderRequest = Shapes::StructureShape.new(name: 'DeleteApiKeyCredentialProviderRequest')
|
|
167
176
|
DeleteApiKeyCredentialProviderResponse = Shapes::StructureShape.new(name: 'DeleteApiKeyCredentialProviderResponse')
|
|
177
|
+
DeleteBrowserProfileRequest = Shapes::StructureShape.new(name: 'DeleteBrowserProfileRequest')
|
|
178
|
+
DeleteBrowserProfileResponse = Shapes::StructureShape.new(name: 'DeleteBrowserProfileResponse')
|
|
168
179
|
DeleteBrowserRequest = Shapes::StructureShape.new(name: 'DeleteBrowserRequest')
|
|
169
180
|
DeleteBrowserResponse = Shapes::StructureShape.new(name: 'DeleteBrowserResponse')
|
|
170
181
|
DeleteCodeInterpreterRequest = Shapes::StructureShape.new(name: 'DeleteCodeInterpreterRequest')
|
|
@@ -266,6 +277,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
266
277
|
GetAgentRuntimeResponse = Shapes::StructureShape.new(name: 'GetAgentRuntimeResponse')
|
|
267
278
|
GetApiKeyCredentialProviderRequest = Shapes::StructureShape.new(name: 'GetApiKeyCredentialProviderRequest')
|
|
268
279
|
GetApiKeyCredentialProviderResponse = Shapes::StructureShape.new(name: 'GetApiKeyCredentialProviderResponse')
|
|
280
|
+
GetBrowserProfileRequest = Shapes::StructureShape.new(name: 'GetBrowserProfileRequest')
|
|
281
|
+
GetBrowserProfileResponse = Shapes::StructureShape.new(name: 'GetBrowserProfileResponse')
|
|
269
282
|
GetBrowserRequest = Shapes::StructureShape.new(name: 'GetBrowserRequest')
|
|
270
283
|
GetBrowserResponse = Shapes::StructureShape.new(name: 'GetBrowserResponse')
|
|
271
284
|
GetCodeInterpreterRequest = Shapes::StructureShape.new(name: 'GetCodeInterpreterRequest')
|
|
@@ -337,6 +350,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
337
350
|
ListAgentRuntimesResponse = Shapes::StructureShape.new(name: 'ListAgentRuntimesResponse')
|
|
338
351
|
ListApiKeyCredentialProvidersRequest = Shapes::StructureShape.new(name: 'ListApiKeyCredentialProvidersRequest')
|
|
339
352
|
ListApiKeyCredentialProvidersResponse = Shapes::StructureShape.new(name: 'ListApiKeyCredentialProvidersResponse')
|
|
353
|
+
ListBrowserProfilesRequest = Shapes::StructureShape.new(name: 'ListBrowserProfilesRequest')
|
|
354
|
+
ListBrowserProfilesResponse = Shapes::StructureShape.new(name: 'ListBrowserProfilesResponse')
|
|
340
355
|
ListBrowsersRequest = Shapes::StructureShape.new(name: 'ListBrowsersRequest')
|
|
341
356
|
ListBrowsersResponse = Shapes::StructureShape.new(name: 'ListBrowsersResponse')
|
|
342
357
|
ListCodeInterpretersRequest = Shapes::StructureShape.new(name: 'ListCodeInterpretersRequest')
|
|
@@ -756,6 +771,20 @@ module Aws::BedrockAgentCoreControl
|
|
|
756
771
|
BrowserNetworkConfiguration.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VpcConfig, location_name: "vpcConfig"))
|
|
757
772
|
BrowserNetworkConfiguration.struct_class = Types::BrowserNetworkConfiguration
|
|
758
773
|
|
|
774
|
+
BrowserProfileSummaries.member = Shapes::ShapeRef.new(shape: BrowserProfileSummary)
|
|
775
|
+
|
|
776
|
+
BrowserProfileSummary.add_member(:profile_id, Shapes::ShapeRef.new(shape: BrowserProfileId, required: true, location_name: "profileId"))
|
|
777
|
+
BrowserProfileSummary.add_member(:profile_arn, Shapes::ShapeRef.new(shape: BrowserProfileArn, required: true, location_name: "profileArn"))
|
|
778
|
+
BrowserProfileSummary.add_member(:name, Shapes::ShapeRef.new(shape: BrowserProfileName, required: true, location_name: "name"))
|
|
779
|
+
BrowserProfileSummary.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
|
780
|
+
BrowserProfileSummary.add_member(:status, Shapes::ShapeRef.new(shape: BrowserProfileStatus, required: true, location_name: "status"))
|
|
781
|
+
BrowserProfileSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "createdAt"))
|
|
782
|
+
BrowserProfileSummary.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "lastUpdatedAt"))
|
|
783
|
+
BrowserProfileSummary.add_member(:last_saved_at, Shapes::ShapeRef.new(shape: DateTimestamp, location_name: "lastSavedAt"))
|
|
784
|
+
BrowserProfileSummary.add_member(:last_saved_browser_session_id, Shapes::ShapeRef.new(shape: BrowserSessionId, location_name: "lastSavedBrowserSessionId"))
|
|
785
|
+
BrowserProfileSummary.add_member(:last_saved_browser_id, Shapes::ShapeRef.new(shape: BrowserId, location_name: "lastSavedBrowserId"))
|
|
786
|
+
BrowserProfileSummary.struct_class = Types::BrowserProfileSummary
|
|
787
|
+
|
|
759
788
|
BrowserSigningConfigInput.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "enabled"))
|
|
760
789
|
BrowserSigningConfigInput.struct_class = Types::BrowserSigningConfigInput
|
|
761
790
|
|
|
@@ -899,6 +928,18 @@ module Aws::BedrockAgentCoreControl
|
|
|
899
928
|
CreateApiKeyCredentialProviderResponse.add_member(:credential_provider_arn, Shapes::ShapeRef.new(shape: ApiKeyCredentialProviderArnType, required: true, location_name: "credentialProviderArn"))
|
|
900
929
|
CreateApiKeyCredentialProviderResponse.struct_class = Types::CreateApiKeyCredentialProviderResponse
|
|
901
930
|
|
|
931
|
+
CreateBrowserProfileRequest.add_member(:name, Shapes::ShapeRef.new(shape: BrowserProfileName, required: true, location_name: "name"))
|
|
932
|
+
CreateBrowserProfileRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
|
933
|
+
CreateBrowserProfileRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
934
|
+
CreateBrowserProfileRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
|
|
935
|
+
CreateBrowserProfileRequest.struct_class = Types::CreateBrowserProfileRequest
|
|
936
|
+
|
|
937
|
+
CreateBrowserProfileResponse.add_member(:profile_id, Shapes::ShapeRef.new(shape: BrowserProfileId, required: true, location_name: "profileId"))
|
|
938
|
+
CreateBrowserProfileResponse.add_member(:profile_arn, Shapes::ShapeRef.new(shape: BrowserProfileArn, required: true, location_name: "profileArn"))
|
|
939
|
+
CreateBrowserProfileResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "createdAt"))
|
|
940
|
+
CreateBrowserProfileResponse.add_member(:status, Shapes::ShapeRef.new(shape: BrowserProfileStatus, required: true, location_name: "status"))
|
|
941
|
+
CreateBrowserProfileResponse.struct_class = Types::CreateBrowserProfileResponse
|
|
942
|
+
|
|
902
943
|
CreateBrowserRequest.add_member(:name, Shapes::ShapeRef.new(shape: SandboxName, required: true, location_name: "name"))
|
|
903
944
|
CreateBrowserRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
|
904
945
|
CreateBrowserRequest.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "executionRoleArn"))
|
|
@@ -1238,6 +1279,17 @@ module Aws::BedrockAgentCoreControl
|
|
|
1238
1279
|
|
|
1239
1280
|
DeleteApiKeyCredentialProviderResponse.struct_class = Types::DeleteApiKeyCredentialProviderResponse
|
|
1240
1281
|
|
|
1282
|
+
DeleteBrowserProfileRequest.add_member(:profile_id, Shapes::ShapeRef.new(shape: BrowserProfileId, required: true, location: "uri", location_name: "profileId"))
|
|
1283
|
+
DeleteBrowserProfileRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location: "querystring", location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
1284
|
+
DeleteBrowserProfileRequest.struct_class = Types::DeleteBrowserProfileRequest
|
|
1285
|
+
|
|
1286
|
+
DeleteBrowserProfileResponse.add_member(:profile_id, Shapes::ShapeRef.new(shape: BrowserProfileId, required: true, location_name: "profileId"))
|
|
1287
|
+
DeleteBrowserProfileResponse.add_member(:profile_arn, Shapes::ShapeRef.new(shape: BrowserProfileArn, required: true, location_name: "profileArn"))
|
|
1288
|
+
DeleteBrowserProfileResponse.add_member(:status, Shapes::ShapeRef.new(shape: BrowserProfileStatus, required: true, location_name: "status"))
|
|
1289
|
+
DeleteBrowserProfileResponse.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "lastUpdatedAt"))
|
|
1290
|
+
DeleteBrowserProfileResponse.add_member(:last_saved_at, Shapes::ShapeRef.new(shape: DateTimestamp, location_name: "lastSavedAt"))
|
|
1291
|
+
DeleteBrowserProfileResponse.struct_class = Types::DeleteBrowserProfileResponse
|
|
1292
|
+
|
|
1241
1293
|
DeleteBrowserRequest.add_member(:browser_id, Shapes::ShapeRef.new(shape: BrowserId, required: true, location: "uri", location_name: "browserId"))
|
|
1242
1294
|
DeleteBrowserRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location: "querystring", location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
1243
1295
|
DeleteBrowserRequest.struct_class = Types::DeleteBrowserRequest
|
|
@@ -1557,6 +1609,21 @@ module Aws::BedrockAgentCoreControl
|
|
|
1557
1609
|
GetApiKeyCredentialProviderResponse.add_member(:last_updated_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "lastUpdatedTime"))
|
|
1558
1610
|
GetApiKeyCredentialProviderResponse.struct_class = Types::GetApiKeyCredentialProviderResponse
|
|
1559
1611
|
|
|
1612
|
+
GetBrowserProfileRequest.add_member(:profile_id, Shapes::ShapeRef.new(shape: BrowserProfileId, required: true, location: "uri", location_name: "profileId"))
|
|
1613
|
+
GetBrowserProfileRequest.struct_class = Types::GetBrowserProfileRequest
|
|
1614
|
+
|
|
1615
|
+
GetBrowserProfileResponse.add_member(:profile_id, Shapes::ShapeRef.new(shape: BrowserProfileId, required: true, location_name: "profileId"))
|
|
1616
|
+
GetBrowserProfileResponse.add_member(:profile_arn, Shapes::ShapeRef.new(shape: BrowserProfileArn, required: true, location_name: "profileArn"))
|
|
1617
|
+
GetBrowserProfileResponse.add_member(:name, Shapes::ShapeRef.new(shape: BrowserProfileName, required: true, location_name: "name"))
|
|
1618
|
+
GetBrowserProfileResponse.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
|
1619
|
+
GetBrowserProfileResponse.add_member(:status, Shapes::ShapeRef.new(shape: BrowserProfileStatus, required: true, location_name: "status"))
|
|
1620
|
+
GetBrowserProfileResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "createdAt"))
|
|
1621
|
+
GetBrowserProfileResponse.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "lastUpdatedAt"))
|
|
1622
|
+
GetBrowserProfileResponse.add_member(:last_saved_at, Shapes::ShapeRef.new(shape: DateTimestamp, location_name: "lastSavedAt"))
|
|
1623
|
+
GetBrowserProfileResponse.add_member(:last_saved_browser_session_id, Shapes::ShapeRef.new(shape: BrowserSessionId, location_name: "lastSavedBrowserSessionId"))
|
|
1624
|
+
GetBrowserProfileResponse.add_member(:last_saved_browser_id, Shapes::ShapeRef.new(shape: BrowserId, location_name: "lastSavedBrowserId"))
|
|
1625
|
+
GetBrowserProfileResponse.struct_class = Types::GetBrowserProfileResponse
|
|
1626
|
+
|
|
1560
1627
|
GetBrowserRequest.add_member(:browser_id, Shapes::ShapeRef.new(shape: BrowserId, required: true, location: "uri", location_name: "browserId"))
|
|
1561
1628
|
GetBrowserRequest.struct_class = Types::GetBrowserRequest
|
|
1562
1629
|
|
|
@@ -1862,6 +1929,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
1862
1929
|
ListApiKeyCredentialProvidersResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "nextToken"))
|
|
1863
1930
|
ListApiKeyCredentialProvidersResponse.struct_class = Types::ListApiKeyCredentialProvidersResponse
|
|
1864
1931
|
|
|
1932
|
+
ListBrowserProfilesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
|
1933
|
+
ListBrowserProfilesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
1934
|
+
ListBrowserProfilesRequest.struct_class = Types::ListBrowserProfilesRequest
|
|
1935
|
+
|
|
1936
|
+
ListBrowserProfilesResponse.add_member(:profile_summaries, Shapes::ShapeRef.new(shape: BrowserProfileSummaries, required: true, location_name: "profileSummaries"))
|
|
1937
|
+
ListBrowserProfilesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
1938
|
+
ListBrowserProfilesResponse.struct_class = Types::ListBrowserProfilesResponse
|
|
1939
|
+
|
|
1865
1940
|
ListBrowsersRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
|
1866
1941
|
ListBrowsersRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
1867
1942
|
ListBrowsersRequest.add_member(:type, Shapes::ShapeRef.new(shape: ResourceType, location: "querystring", location_name: "type"))
|
|
@@ -2948,6 +3023,20 @@ module Aws::BedrockAgentCoreControl
|
|
|
2948
3023
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
2949
3024
|
end)
|
|
2950
3025
|
|
|
3026
|
+
api.add_operation(:create_browser_profile, Seahorse::Model::Operation.new.tap do |o|
|
|
3027
|
+
o.name = "CreateBrowserProfile"
|
|
3028
|
+
o.http_method = "PUT"
|
|
3029
|
+
o.http_request_uri = "/browser-profiles"
|
|
3030
|
+
o.input = Shapes::ShapeRef.new(shape: CreateBrowserProfileRequest)
|
|
3031
|
+
o.output = Shapes::ShapeRef.new(shape: CreateBrowserProfileResponse)
|
|
3032
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
3033
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3034
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
3035
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
3036
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
3037
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
3038
|
+
end)
|
|
3039
|
+
|
|
2951
3040
|
api.add_operation(:create_code_interpreter, Seahorse::Model::Operation.new.tap do |o|
|
|
2952
3041
|
o.name = "CreateCodeInterpreter"
|
|
2953
3042
|
o.http_method = "PUT"
|
|
@@ -3151,6 +3240,20 @@ module Aws::BedrockAgentCoreControl
|
|
|
3151
3240
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
3152
3241
|
end)
|
|
3153
3242
|
|
|
3243
|
+
api.add_operation(:delete_browser_profile, Seahorse::Model::Operation.new.tap do |o|
|
|
3244
|
+
o.name = "DeleteBrowserProfile"
|
|
3245
|
+
o.http_method = "DELETE"
|
|
3246
|
+
o.http_request_uri = "/browser-profiles/{profileId}"
|
|
3247
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteBrowserProfileRequest)
|
|
3248
|
+
o.output = Shapes::ShapeRef.new(shape: DeleteBrowserProfileResponse)
|
|
3249
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3250
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
3251
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
3252
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
3253
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
3254
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
3255
|
+
end)
|
|
3256
|
+
|
|
3154
3257
|
api.add_operation(:delete_code_interpreter, Seahorse::Model::Operation.new.tap do |o|
|
|
3155
3258
|
o.name = "DeleteCodeInterpreter"
|
|
3156
3259
|
o.http_method = "DELETE"
|
|
@@ -3359,6 +3462,19 @@ module Aws::BedrockAgentCoreControl
|
|
|
3359
3462
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
3360
3463
|
end)
|
|
3361
3464
|
|
|
3465
|
+
api.add_operation(:get_browser_profile, Seahorse::Model::Operation.new.tap do |o|
|
|
3466
|
+
o.name = "GetBrowserProfile"
|
|
3467
|
+
o.http_method = "GET"
|
|
3468
|
+
o.http_request_uri = "/browser-profiles/{profileId}"
|
|
3469
|
+
o.input = Shapes::ShapeRef.new(shape: GetBrowserProfileRequest)
|
|
3470
|
+
o.output = Shapes::ShapeRef.new(shape: GetBrowserProfileResponse)
|
|
3471
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3472
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
3473
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
3474
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
3475
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
3476
|
+
end)
|
|
3477
|
+
|
|
3362
3478
|
api.add_operation(:get_code_interpreter, Seahorse::Model::Operation.new.tap do |o|
|
|
3363
3479
|
o.name = "GetCodeInterpreter"
|
|
3364
3480
|
o.http_method = "GET"
|
|
@@ -3607,6 +3723,24 @@ module Aws::BedrockAgentCoreControl
|
|
|
3607
3723
|
)
|
|
3608
3724
|
end)
|
|
3609
3725
|
|
|
3726
|
+
api.add_operation(:list_browser_profiles, Seahorse::Model::Operation.new.tap do |o|
|
|
3727
|
+
o.name = "ListBrowserProfiles"
|
|
3728
|
+
o.http_method = "POST"
|
|
3729
|
+
o.http_request_uri = "/browser-profiles"
|
|
3730
|
+
o.input = Shapes::ShapeRef.new(shape: ListBrowserProfilesRequest)
|
|
3731
|
+
o.output = Shapes::ShapeRef.new(shape: ListBrowserProfilesResponse)
|
|
3732
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3733
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
3734
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
3735
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
3736
|
+
o[:pager] = Aws::Pager.new(
|
|
3737
|
+
limit_key: "max_results",
|
|
3738
|
+
tokens: {
|
|
3739
|
+
"next_token" => "next_token"
|
|
3740
|
+
}
|
|
3741
|
+
)
|
|
3742
|
+
end)
|
|
3743
|
+
|
|
3610
3744
|
api.add_operation(:list_browsers, Seahorse::Model::Operation.new.tap do |o|
|
|
3611
3745
|
o.name = "ListBrowsers"
|
|
3612
3746
|
o.http_method = "POST"
|
|
@@ -25,7 +25,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
25
25
|
end
|
|
26
26
|
|
|
27
27
|
# Contains information about an agent runtime. An agent runtime is the
|
|
28
|
-
# execution environment for a Amazon Bedrock Agent.
|
|
28
|
+
# execution environment for a Amazon Bedrock AgentCore Agent.
|
|
29
29
|
#
|
|
30
30
|
# @!attribute [rw] agent_runtime_arn
|
|
31
31
|
# The Amazon Resource Name (ARN) of the agent runtime.
|
|
@@ -498,6 +498,71 @@ module Aws::BedrockAgentCoreControl
|
|
|
498
498
|
include Aws::Structure
|
|
499
499
|
end
|
|
500
500
|
|
|
501
|
+
# Contains summary information about a browser profile. A browser
|
|
502
|
+
# profile stores persistent browser data that can be reused across
|
|
503
|
+
# browser sessions.
|
|
504
|
+
#
|
|
505
|
+
# @!attribute [rw] profile_id
|
|
506
|
+
# The unique identifier of the browser profile.
|
|
507
|
+
# @return [String]
|
|
508
|
+
#
|
|
509
|
+
# @!attribute [rw] profile_arn
|
|
510
|
+
# The Amazon Resource Name (ARN) of the browser profile.
|
|
511
|
+
# @return [String]
|
|
512
|
+
#
|
|
513
|
+
# @!attribute [rw] name
|
|
514
|
+
# The name of the browser profile.
|
|
515
|
+
# @return [String]
|
|
516
|
+
#
|
|
517
|
+
# @!attribute [rw] description
|
|
518
|
+
# The description of the browser profile.
|
|
519
|
+
# @return [String]
|
|
520
|
+
#
|
|
521
|
+
# @!attribute [rw] status
|
|
522
|
+
# The current status of the browser profile. Possible values include
|
|
523
|
+
# READY, SAVING, DELETING, and DELETED.
|
|
524
|
+
# @return [String]
|
|
525
|
+
#
|
|
526
|
+
# @!attribute [rw] created_at
|
|
527
|
+
# The timestamp when the browser profile was created.
|
|
528
|
+
# @return [Time]
|
|
529
|
+
#
|
|
530
|
+
# @!attribute [rw] last_updated_at
|
|
531
|
+
# The timestamp when the browser profile was last updated.
|
|
532
|
+
# @return [Time]
|
|
533
|
+
#
|
|
534
|
+
# @!attribute [rw] last_saved_at
|
|
535
|
+
# The timestamp when browser session data was last saved to this
|
|
536
|
+
# profile.
|
|
537
|
+
# @return [Time]
|
|
538
|
+
#
|
|
539
|
+
# @!attribute [rw] last_saved_browser_session_id
|
|
540
|
+
# The identifier of the browser session from which data was last saved
|
|
541
|
+
# to this profile.
|
|
542
|
+
# @return [String]
|
|
543
|
+
#
|
|
544
|
+
# @!attribute [rw] last_saved_browser_id
|
|
545
|
+
# The identifier of the browser from which data was last saved to this
|
|
546
|
+
# profile.
|
|
547
|
+
# @return [String]
|
|
548
|
+
#
|
|
549
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/BrowserProfileSummary AWS API Documentation
|
|
550
|
+
#
|
|
551
|
+
class BrowserProfileSummary < Struct.new(
|
|
552
|
+
:profile_id,
|
|
553
|
+
:profile_arn,
|
|
554
|
+
:name,
|
|
555
|
+
:description,
|
|
556
|
+
:status,
|
|
557
|
+
:created_at,
|
|
558
|
+
:last_updated_at,
|
|
559
|
+
:last_saved_at,
|
|
560
|
+
:last_saved_browser_session_id,
|
|
561
|
+
:last_saved_browser_id)
|
|
562
|
+
SENSITIVE = [:description]
|
|
563
|
+
include Aws::Structure
|
|
564
|
+
end
|
|
565
|
+
|
|
501
566
|
# Configuration for enabling browser signing capabilities that allow
|
|
502
567
|
# agents to cryptographically identify themselves to websites using HTTP
|
|
503
568
|
# message signatures.
|
|
@@ -534,7 +599,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
534
599
|
end
|
|
535
600
|
|
|
536
601
|
# Contains summary information about a browser. A browser enables Amazon
|
|
537
|
-
# Bedrock Agent to interact with web content.
|
|
602
|
+
# Bedrock AgentCore Agent to interact with web content.
|
|
538
603
|
#
|
|
539
604
|
# @!attribute [rw] browser_id
|
|
540
605
|
# The unique identifier of the browser.
|
|
@@ -772,7 +837,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
772
837
|
end
|
|
773
838
|
|
|
774
839
|
# Contains summary information about a code interpreter. A code
|
|
775
|
-
# interpreter enables Amazon Bedrock Agent to execute code.
|
|
840
|
+
# interpreter enables Amazon Bedrock AgentCore Agent to execute code.
|
|
776
841
|
#
|
|
777
842
|
# @!attribute [rw] code_interpreter_id
|
|
778
843
|
# The unique identifier of the code interpreter.
|
|
@@ -1155,6 +1220,70 @@ module Aws::BedrockAgentCoreControl
|
|
|
1155
1220
|
include Aws::Structure
|
|
1156
1221
|
end
|
|
1157
1222
|
|
|
1223
|
+
# @!attribute [rw] name
|
|
1224
|
+
# The name of the browser profile. The name must be unique within your
|
|
1225
|
+
# account and can contain alphanumeric characters and underscores.
|
|
1226
|
+
# @return [String]
|
|
1227
|
+
#
|
|
1228
|
+
# @!attribute [rw] description
|
|
1229
|
+
# A description of the browser profile. Use this field to describe the
|
|
1230
|
+
# purpose or contents of the profile.
|
|
1231
|
+
# @return [String]
|
|
1232
|
+
#
|
|
1233
|
+
# @!attribute [rw] client_token
|
|
1234
|
+
# A unique, case-sensitive identifier to ensure that the operation
|
|
1235
|
+
# completes no more than one time. If this token matches a previous
|
|
1236
|
+
# request, Amazon Bedrock AgentCore ignores the request but does not
|
|
1237
|
+
# return an error.
|
|
1238
|
+
#
|
|
1239
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
1240
|
+
# not need to pass this option.
|
|
1241
|
+
# @return [String]
|
|
1242
|
+
#
|
|
1243
|
+
# @!attribute [rw] tags
|
|
1244
|
+
# A map of tag keys and values to assign to the browser profile. Tags
|
|
1245
|
+
# enable you to categorize your resources in different ways, for
|
|
1246
|
+
# example, by purpose, owner, or environment.
|
|
1247
|
+
# @return [Hash<String,String>]
|
|
1248
|
+
#
|
|
1249
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateBrowserProfileRequest AWS API Documentation
|
|
1250
|
+
#
|
|
1251
|
+
class CreateBrowserProfileRequest < Struct.new(
|
|
1252
|
+
:name,
|
|
1253
|
+
:description,
|
|
1254
|
+
:client_token,
|
|
1255
|
+
:tags)
|
|
1256
|
+
SENSITIVE = [:description]
|
|
1257
|
+
include Aws::Structure
|
|
1258
|
+
end
|
|
1259
|
+
|
|
1260
|
+
# @!attribute [rw] profile_id
|
|
1261
|
+
# The unique identifier of the created browser profile.
|
|
1262
|
+
# @return [String]
|
|
1263
|
+
#
|
|
1264
|
+
# @!attribute [rw] profile_arn
|
|
1265
|
+
# The Amazon Resource Name (ARN) of the created browser profile.
|
|
1266
|
+
# @return [String]
|
|
1267
|
+
#
|
|
1268
|
+
# @!attribute [rw] created_at
|
|
1269
|
+
# The timestamp when the browser profile was created.
|
|
1270
|
+
# @return [Time]
|
|
1271
|
+
#
|
|
1272
|
+
# @!attribute [rw] status
|
|
1273
|
+
# The current status of the browser profile.
|
|
1274
|
+
# @return [String]
|
|
1275
|
+
#
|
|
1276
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateBrowserProfileResponse AWS API Documentation
|
|
1277
|
+
#
|
|
1278
|
+
class CreateBrowserProfileResponse < Struct.new(
|
|
1279
|
+
:profile_id,
|
|
1280
|
+
:profile_arn,
|
|
1281
|
+
:created_at,
|
|
1282
|
+
:status)
|
|
1283
|
+
SENSITIVE = []
|
|
1284
|
+
include Aws::Structure
|
|
1285
|
+
end
|
|
1286
|
+
|
|
1158
1287
|
# @!attribute [rw] name
|
|
1159
1288
|
# The name of the browser. The name must be unique within your
|
|
1160
1289
|
# account.
|
|
@@ -1189,8 +1318,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
1189
1318
|
# @!attribute [rw] client_token
|
|
1190
1319
|
# A unique, case-sensitive identifier to ensure that the operation
|
|
1191
1320
|
# completes no more than one time. If this token matches a previous
|
|
1192
|
-
# request, Amazon Bedrock ignores the request but does not
|
|
1193
|
-
# error.
|
|
1321
|
+
# request, Amazon Bedrock AgentCore ignores the request but does not
|
|
1322
|
+
# return an error.
|
|
1194
1323
|
#
|
|
1195
1324
|
# **A suitable default value is auto-generated.** You should normally
|
|
1196
1325
|
# not need to pass this option.
|
|
@@ -1267,8 +1396,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
1267
1396
|
# @!attribute [rw] client_token
|
|
1268
1397
|
# A unique, case-sensitive identifier to ensure that the operation
|
|
1269
1398
|
# completes no more than one time. If this token matches a previous
|
|
1270
|
-
# request, Amazon Bedrock ignores the request but does not
|
|
1271
|
-
# error.
|
|
1399
|
+
# request, Amazon Bedrock AgentCore ignores the request but does not
|
|
1400
|
+
# return an error.
|
|
1272
1401
|
#
|
|
1273
1402
|
# **A suitable default value is auto-generated.** You should normally
|
|
1274
1403
|
# not need to pass this option.
|
|
@@ -2878,6 +3007,60 @@ module Aws::BedrockAgentCoreControl
|
|
|
2878
3007
|
#
|
|
2879
3008
|
class DeleteApiKeyCredentialProviderResponse < Aws::EmptyStructure; end
|
|
2880
3009
|
|
|
3010
|
+
# @!attribute [rw] profile_id
|
|
3011
|
+
# The unique identifier of the browser profile to delete.
|
|
3012
|
+
# @return [String]
|
|
3013
|
+
#
|
|
3014
|
+
# @!attribute [rw] client_token
|
|
3015
|
+
# A unique, case-sensitive identifier to ensure idempotency of the
|
|
3016
|
+
# request.
|
|
3017
|
+
#
|
|
3018
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
3019
|
+
# not need to pass this option.
|
|
3020
|
+
# @return [String]
|
|
3021
|
+
#
|
|
3022
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteBrowserProfileRequest AWS API Documentation
|
|
3023
|
+
#
|
|
3024
|
+
class DeleteBrowserProfileRequest < Struct.new(
|
|
3025
|
+
:profile_id,
|
|
3026
|
+
:client_token)
|
|
3027
|
+
SENSITIVE = []
|
|
3028
|
+
include Aws::Structure
|
|
3029
|
+
end
|
|
3030
|
+
|
|
3031
|
+
# @!attribute [rw] profile_id
|
|
3032
|
+
# The unique identifier of the deleted browser profile.
|
|
3033
|
+
# @return [String]
|
|
3034
|
+
#
|
|
3035
|
+
# @!attribute [rw] profile_arn
|
|
3036
|
+
# The Amazon Resource Name (ARN) of the deleted browser profile.
|
|
3037
|
+
# @return [String]
|
|
3038
|
+
#
|
|
3039
|
+
# @!attribute [rw] status
|
|
3040
|
+
# The current status of the browser profile deletion.
|
|
3041
|
+
# @return [String]
|
|
3042
|
+
#
|
|
3043
|
+
# @!attribute [rw] last_updated_at
|
|
3044
|
+
# The timestamp when the browser profile was last updated.
|
|
3045
|
+
# @return [Time]
|
|
3046
|
+
#
|
|
3047
|
+
# @!attribute [rw] last_saved_at
|
|
3048
|
+
# The timestamp when browser session data was last saved to this
|
|
3049
|
+
# profile before deletion.
|
|
3050
|
+
# @return [Time]
|
|
3051
|
+
#
|
|
3052
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteBrowserProfileResponse AWS API Documentation
|
|
3053
|
+
#
|
|
3054
|
+
class DeleteBrowserProfileResponse < Struct.new(
|
|
3055
|
+
:profile_id,
|
|
3056
|
+
:profile_arn,
|
|
3057
|
+
:status,
|
|
3058
|
+
:last_updated_at,
|
|
3059
|
+
:last_saved_at)
|
|
3060
|
+
SENSITIVE = []
|
|
3061
|
+
include Aws::Structure
|
|
3062
|
+
end
|
|
3063
|
+
|
|
2881
3064
|
# @!attribute [rw] browser_id
|
|
2882
3065
|
# The unique identifier of the browser to delete.
|
|
2883
3066
|
# @return [String]
|
|
@@ -4333,6 +4516,78 @@ module Aws::BedrockAgentCoreControl
|
|
|
4333
4516
|
include Aws::Structure
|
|
4334
4517
|
end
|
|
4335
4518
|
|
|
4519
|
+
# @!attribute [rw] profile_id
|
|
4520
|
+
# The unique identifier of the browser profile to retrieve.
|
|
4521
|
+
# @return [String]
|
|
4522
|
+
#
|
|
4523
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetBrowserProfileRequest AWS API Documentation
|
|
4524
|
+
#
|
|
4525
|
+
class GetBrowserProfileRequest < Struct.new(
|
|
4526
|
+
:profile_id)
|
|
4527
|
+
SENSITIVE = []
|
|
4528
|
+
include Aws::Structure
|
|
4529
|
+
end
|
|
4530
|
+
|
|
4531
|
+
# @!attribute [rw] profile_id
|
|
4532
|
+
# The unique identifier of the browser profile.
|
|
4533
|
+
# @return [String]
|
|
4534
|
+
#
|
|
4535
|
+
# @!attribute [rw] profile_arn
|
|
4536
|
+
# The Amazon Resource Name (ARN) of the browser profile.
|
|
4537
|
+
# @return [String]
|
|
4538
|
+
#
|
|
4539
|
+
# @!attribute [rw] name
|
|
4540
|
+
# The name of the browser profile.
|
|
4541
|
+
# @return [String]
|
|
4542
|
+
#
|
|
4543
|
+
# @!attribute [rw] description
|
|
4544
|
+
# The description of the browser profile.
|
|
4545
|
+
# @return [String]
|
|
4546
|
+
#
|
|
4547
|
+
# @!attribute [rw] status
|
|
4548
|
+
# The current status of the browser profile.
|
|
4549
|
+
# @return [String]
|
|
4550
|
+
#
|
|
4551
|
+
# @!attribute [rw] created_at
|
|
4552
|
+
# The timestamp when the browser profile was created.
|
|
4553
|
+
# @return [Time]
|
|
4554
|
+
#
|
|
4555
|
+
# @!attribute [rw] last_updated_at
|
|
4556
|
+
# The timestamp when the browser profile was last updated.
|
|
4557
|
+
# @return [Time]
|
|
4558
|
+
#
|
|
4559
|
+
# @!attribute [rw] last_saved_at
|
|
4560
|
+
# The timestamp when browser session data was last saved to this
|
|
4561
|
+
# profile.
|
|
4562
|
+
# @return [Time]
|
|
4563
|
+
#
|
|
4564
|
+
# @!attribute [rw] last_saved_browser_session_id
|
|
4565
|
+
# The identifier of the browser session from which data was last saved
|
|
4566
|
+
# to this profile.
|
|
4567
|
+
# @return [String]
|
|
4568
|
+
#
|
|
4569
|
+
# @!attribute [rw] last_saved_browser_id
|
|
4570
|
+
# The identifier of the browser from which data was last saved to this
|
|
4571
|
+
# profile.
|
|
4572
|
+
# @return [String]
|
|
4573
|
+
#
|
|
4574
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetBrowserProfileResponse AWS API Documentation
|
|
4575
|
+
#
|
|
4576
|
+
class GetBrowserProfileResponse < Struct.new(
|
|
4577
|
+
:profile_id,
|
|
4578
|
+
:profile_arn,
|
|
4579
|
+
:name,
|
|
4580
|
+
:description,
|
|
4581
|
+
:status,
|
|
4582
|
+
:created_at,
|
|
4583
|
+
:last_updated_at,
|
|
4584
|
+
:last_saved_at,
|
|
4585
|
+
:last_saved_browser_session_id,
|
|
4586
|
+
:last_saved_browser_id)
|
|
4587
|
+
SENSITIVE = [:description]
|
|
4588
|
+
include Aws::Structure
|
|
4589
|
+
end
|
|
4590
|
+
|
|
4336
4591
|
# @!attribute [rw] browser_id
|
|
4337
4592
|
# The unique identifier of the browser to retrieve.
|
|
4338
4593
|
# @return [String]
|
|
@@ -5840,6 +6095,40 @@ module Aws::BedrockAgentCoreControl
|
|
|
5840
6095
|
include Aws::Structure
|
|
5841
6096
|
end
|
|
5842
6097
|
|
|
6098
|
+
# @!attribute [rw] max_results
|
|
6099
|
+
# The maximum number of results to return in the response.
|
|
6100
|
+
# @return [Integer]
|
|
6101
|
+
#
|
|
6102
|
+
# @!attribute [rw] next_token
|
|
6103
|
+
# A token to retrieve the next page of results.
|
|
6104
|
+
# @return [String]
|
|
6105
|
+
#
|
|
6106
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListBrowserProfilesRequest AWS API Documentation
|
|
6107
|
+
#
|
|
6108
|
+
class ListBrowserProfilesRequest < Struct.new(
|
|
6109
|
+
:max_results,
|
|
6110
|
+
:next_token)
|
|
6111
|
+
SENSITIVE = []
|
|
6112
|
+
include Aws::Structure
|
|
6113
|
+
end
|
|
6114
|
+
|
|
6115
|
+
# @!attribute [rw] profile_summaries
|
|
6116
|
+
# The list of browser profile summaries.
|
|
6117
|
+
# @return [Array<Types::BrowserProfileSummary>]
|
|
6118
|
+
#
|
|
6119
|
+
# @!attribute [rw] next_token
|
|
6120
|
+
# A token to retrieve the next page of results.
|
|
6121
|
+
# @return [String]
|
|
6122
|
+
#
|
|
6123
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListBrowserProfilesResponse AWS API Documentation
|
|
6124
|
+
#
|
|
6125
|
+
class ListBrowserProfilesResponse < Struct.new(
|
|
6126
|
+
:profile_summaries,
|
|
6127
|
+
:next_token)
|
|
6128
|
+
SENSITIVE = []
|
|
6129
|
+
include Aws::Structure
|
|
6130
|
+
end
|
|
6131
|
+
|
|
5843
6132
|
# @!attribute [rw] max_results
|
|
5844
6133
|
# The maximum number of results to return in a single call. The
|
|
5845
6134
|
# default value is 10. The maximum value is 50.
|
data/sig/client.rbs
CHANGED
|
@@ -222,6 +222,22 @@ module Aws
|
|
|
222
222
|
) -> _CreateBrowserResponseSuccess
|
|
223
223
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateBrowserResponseSuccess
|
|
224
224
|
|
|
225
|
+
interface _CreateBrowserProfileResponseSuccess
|
|
226
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateBrowserProfileResponse]
|
|
227
|
+
def profile_id: () -> ::String
|
|
228
|
+
def profile_arn: () -> ::String
|
|
229
|
+
def created_at: () -> ::Time
|
|
230
|
+
def status: () -> ("READY" | "DELETING" | "DELETED" | "SAVING")
|
|
231
|
+
end
|
|
232
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_browser_profile-instance_method
|
|
233
|
+
def create_browser_profile: (
|
|
234
|
+
name: ::String,
|
|
235
|
+
?description: ::String,
|
|
236
|
+
?client_token: ::String,
|
|
237
|
+
?tags: Hash[::String, ::String]
|
|
238
|
+
) -> _CreateBrowserProfileResponseSuccess
|
|
239
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateBrowserProfileResponseSuccess
|
|
240
|
+
|
|
225
241
|
interface _CreateCodeInterpreterResponseSuccess
|
|
226
242
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateCodeInterpreterResponse]
|
|
227
243
|
def code_interpreter_id: () -> ::String
|
|
@@ -835,6 +851,21 @@ module Aws
|
|
|
835
851
|
) -> _DeleteBrowserResponseSuccess
|
|
836
852
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteBrowserResponseSuccess
|
|
837
853
|
|
|
854
|
+
interface _DeleteBrowserProfileResponseSuccess
|
|
855
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteBrowserProfileResponse]
|
|
856
|
+
def profile_id: () -> ::String
|
|
857
|
+
def profile_arn: () -> ::String
|
|
858
|
+
def status: () -> ("READY" | "DELETING" | "DELETED" | "SAVING")
|
|
859
|
+
def last_updated_at: () -> ::Time
|
|
860
|
+
def last_saved_at: () -> ::Time
|
|
861
|
+
end
|
|
862
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#delete_browser_profile-instance_method
|
|
863
|
+
def delete_browser_profile: (
|
|
864
|
+
profile_id: ::String,
|
|
865
|
+
?client_token: ::String
|
|
866
|
+
) -> _DeleteBrowserProfileResponseSuccess
|
|
867
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteBrowserProfileResponseSuccess
|
|
868
|
+
|
|
838
869
|
interface _DeleteCodeInterpreterResponseSuccess
|
|
839
870
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteCodeInterpreterResponse]
|
|
840
871
|
def code_interpreter_id: () -> ::String
|
|
@@ -1058,6 +1089,25 @@ module Aws
|
|
|
1058
1089
|
) -> _GetBrowserResponseSuccess
|
|
1059
1090
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBrowserResponseSuccess
|
|
1060
1091
|
|
|
1092
|
+
interface _GetBrowserProfileResponseSuccess
|
|
1093
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetBrowserProfileResponse]
|
|
1094
|
+
def profile_id: () -> ::String
|
|
1095
|
+
def profile_arn: () -> ::String
|
|
1096
|
+
def name: () -> ::String
|
|
1097
|
+
def description: () -> ::String
|
|
1098
|
+
def status: () -> ("READY" | "DELETING" | "DELETED" | "SAVING")
|
|
1099
|
+
def created_at: () -> ::Time
|
|
1100
|
+
def last_updated_at: () -> ::Time
|
|
1101
|
+
def last_saved_at: () -> ::Time
|
|
1102
|
+
def last_saved_browser_session_id: () -> ::String
|
|
1103
|
+
def last_saved_browser_id: () -> ::String
|
|
1104
|
+
end
|
|
1105
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_browser_profile-instance_method
|
|
1106
|
+
def get_browser_profile: (
|
|
1107
|
+
profile_id: ::String
|
|
1108
|
+
) -> _GetBrowserProfileResponseSuccess
|
|
1109
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBrowserProfileResponseSuccess
|
|
1110
|
+
|
|
1061
1111
|
interface _GetCodeInterpreterResponseSuccess
|
|
1062
1112
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetCodeInterpreterResponse]
|
|
1063
1113
|
def code_interpreter_id: () -> ::String
|
|
@@ -1340,6 +1390,18 @@ module Aws
|
|
|
1340
1390
|
) -> _ListApiKeyCredentialProvidersResponseSuccess
|
|
1341
1391
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListApiKeyCredentialProvidersResponseSuccess
|
|
1342
1392
|
|
|
1393
|
+
interface _ListBrowserProfilesResponseSuccess
|
|
1394
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListBrowserProfilesResponse]
|
|
1395
|
+
def profile_summaries: () -> ::Array[Types::BrowserProfileSummary]
|
|
1396
|
+
def next_token: () -> ::String
|
|
1397
|
+
end
|
|
1398
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_browser_profiles-instance_method
|
|
1399
|
+
def list_browser_profiles: (
|
|
1400
|
+
?max_results: ::Integer,
|
|
1401
|
+
?next_token: ::String
|
|
1402
|
+
) -> _ListBrowserProfilesResponseSuccess
|
|
1403
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBrowserProfilesResponseSuccess
|
|
1404
|
+
|
|
1343
1405
|
interface _ListBrowsersResponseSuccess
|
|
1344
1406
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListBrowsersResponse]
|
|
1345
1407
|
def browser_summaries: () -> ::Array[Types::BrowserSummary]
|
data/sig/types.rbs
CHANGED
|
@@ -151,6 +151,20 @@ module Aws::BedrockAgentCoreControl
|
|
|
151
151
|
SENSITIVE: []
|
|
152
152
|
end
|
|
153
153
|
|
|
154
|
+
class BrowserProfileSummary
|
|
155
|
+
attr_accessor profile_id: ::String
|
|
156
|
+
attr_accessor profile_arn: ::String
|
|
157
|
+
attr_accessor name: ::String
|
|
158
|
+
attr_accessor description: ::String
|
|
159
|
+
attr_accessor status: ("READY" | "DELETING" | "DELETED" | "SAVING")
|
|
160
|
+
attr_accessor created_at: ::Time
|
|
161
|
+
attr_accessor last_updated_at: ::Time
|
|
162
|
+
attr_accessor last_saved_at: ::Time
|
|
163
|
+
attr_accessor last_saved_browser_session_id: ::String
|
|
164
|
+
attr_accessor last_saved_browser_id: ::String
|
|
165
|
+
SENSITIVE: [:description]
|
|
166
|
+
end
|
|
167
|
+
|
|
154
168
|
class BrowserSigningConfigInput
|
|
155
169
|
attr_accessor enabled: bool
|
|
156
170
|
SENSITIVE: []
|
|
@@ -341,6 +355,22 @@ module Aws::BedrockAgentCoreControl
|
|
|
341
355
|
SENSITIVE: []
|
|
342
356
|
end
|
|
343
357
|
|
|
358
|
+
class CreateBrowserProfileRequest
|
|
359
|
+
attr_accessor name: ::String
|
|
360
|
+
attr_accessor description: ::String
|
|
361
|
+
attr_accessor client_token: ::String
|
|
362
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
363
|
+
SENSITIVE: [:description]
|
|
364
|
+
end
|
|
365
|
+
|
|
366
|
+
class CreateBrowserProfileResponse
|
|
367
|
+
attr_accessor profile_id: ::String
|
|
368
|
+
attr_accessor profile_arn: ::String
|
|
369
|
+
attr_accessor created_at: ::Time
|
|
370
|
+
attr_accessor status: ("READY" | "DELETING" | "DELETED" | "SAVING")
|
|
371
|
+
SENSITIVE: []
|
|
372
|
+
end
|
|
373
|
+
|
|
344
374
|
class CreateBrowserRequest
|
|
345
375
|
attr_accessor name: ::String
|
|
346
376
|
attr_accessor description: ::String
|
|
@@ -805,6 +835,21 @@ module Aws::BedrockAgentCoreControl
|
|
|
805
835
|
class DeleteApiKeyCredentialProviderResponse < Aws::EmptyStructure
|
|
806
836
|
end
|
|
807
837
|
|
|
838
|
+
class DeleteBrowserProfileRequest
|
|
839
|
+
attr_accessor profile_id: ::String
|
|
840
|
+
attr_accessor client_token: ::String
|
|
841
|
+
SENSITIVE: []
|
|
842
|
+
end
|
|
843
|
+
|
|
844
|
+
class DeleteBrowserProfileResponse
|
|
845
|
+
attr_accessor profile_id: ::String
|
|
846
|
+
attr_accessor profile_arn: ::String
|
|
847
|
+
attr_accessor status: ("READY" | "DELETING" | "DELETED" | "SAVING")
|
|
848
|
+
attr_accessor last_updated_at: ::Time
|
|
849
|
+
attr_accessor last_saved_at: ::Time
|
|
850
|
+
SENSITIVE: []
|
|
851
|
+
end
|
|
852
|
+
|
|
808
853
|
class DeleteBrowserRequest
|
|
809
854
|
attr_accessor browser_id: ::String
|
|
810
855
|
attr_accessor client_token: ::String
|
|
@@ -1230,6 +1275,25 @@ module Aws::BedrockAgentCoreControl
|
|
|
1230
1275
|
SENSITIVE: []
|
|
1231
1276
|
end
|
|
1232
1277
|
|
|
1278
|
+
class GetBrowserProfileRequest
|
|
1279
|
+
attr_accessor profile_id: ::String
|
|
1280
|
+
SENSITIVE: []
|
|
1281
|
+
end
|
|
1282
|
+
|
|
1283
|
+
class GetBrowserProfileResponse
|
|
1284
|
+
attr_accessor profile_id: ::String
|
|
1285
|
+
attr_accessor profile_arn: ::String
|
|
1286
|
+
attr_accessor name: ::String
|
|
1287
|
+
attr_accessor description: ::String
|
|
1288
|
+
attr_accessor status: ("READY" | "DELETING" | "DELETED" | "SAVING")
|
|
1289
|
+
attr_accessor created_at: ::Time
|
|
1290
|
+
attr_accessor last_updated_at: ::Time
|
|
1291
|
+
attr_accessor last_saved_at: ::Time
|
|
1292
|
+
attr_accessor last_saved_browser_session_id: ::String
|
|
1293
|
+
attr_accessor last_saved_browser_id: ::String
|
|
1294
|
+
SENSITIVE: [:description]
|
|
1295
|
+
end
|
|
1296
|
+
|
|
1233
1297
|
class GetBrowserRequest
|
|
1234
1298
|
attr_accessor browser_id: ::String
|
|
1235
1299
|
SENSITIVE: []
|
|
@@ -1642,6 +1706,18 @@ module Aws::BedrockAgentCoreControl
|
|
|
1642
1706
|
SENSITIVE: []
|
|
1643
1707
|
end
|
|
1644
1708
|
|
|
1709
|
+
class ListBrowserProfilesRequest
|
|
1710
|
+
attr_accessor max_results: ::Integer
|
|
1711
|
+
attr_accessor next_token: ::String
|
|
1712
|
+
SENSITIVE: []
|
|
1713
|
+
end
|
|
1714
|
+
|
|
1715
|
+
class ListBrowserProfilesResponse
|
|
1716
|
+
attr_accessor profile_summaries: ::Array[Types::BrowserProfileSummary]
|
|
1717
|
+
attr_accessor next_token: ::String
|
|
1718
|
+
SENSITIVE: []
|
|
1719
|
+
end
|
|
1720
|
+
|
|
1645
1721
|
class ListBrowsersRequest
|
|
1646
1722
|
attr_accessor max_results: ::Integer
|
|
1647
1723
|
attr_accessor next_token: ::String
|