aws-sdk-bedrockagentcorecontrol 1.12.0 → 1.13.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cba84feb90816b31077bf656b87aa586e1b26ebd7bb712c3153b531f68d88809
4
- data.tar.gz: c467a6fb32b8f263c28719acf02cee8cad3127a746fa4eb8301049e927ba83ef
3
+ metadata.gz: 2a0209ac8921a6957e03f29ca82d46b5e08c3297ab5bf9b04ccbfe7b2608092a
4
+ data.tar.gz: 6ce02e3096c35376499187a8e3a31693c4cb20ce1854d9fb62f0be757d81e6c7
5
5
  SHA512:
6
- metadata.gz: f248e3f29776ef19ce4231636f6aafb0236ec22ac37c5473f5fb8e6212be932d6b17892a6d2a72fb8ab9189c155be5f1bbef2b8dad5961a5504fb1b9c65c9f78
7
- data.tar.gz: 54dd6c4a89ae716f4b1191e1ea71b8cb6963ad42cd042694a3ff03fd0dbdacb89f639addbcd7ed9878a00bd9d79fafa8e085dbd30a11b95c3e71b08b1f85a8bc
6
+ metadata.gz: 1eeb30929c8f2f70b2fb5ae66e55ff1867266e67ae2aff06648a7400303d9821e62893272a4822d518ca16f71e0170f43f4179fbe4a88c9021ffe75732b802bd
7
+ data.tar.gz: e367b803c6e037128846f40a7abf1a3e750e9df457f04a53c492a86ba9c67fd942e89a14b572383652d20845e75a98f3916c744bfc7d04fad81d094755734273
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.13.0 (2025-10-30)
5
+ ------------------
6
+
7
+ * Feature - Web-Bot-Auth support for AgentCore Browser tool to help reduce captcha challenges.
8
+
4
9
  1.12.0 (2025-10-23)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.12.0
1
+ 1.13.0
@@ -728,6 +728,11 @@ module Aws::BedrockAgentCoreControl
728
728
  # The recording configuration for the browser. When enabled, browser
729
729
  # sessions are recorded and stored in the specified Amazon S3 location.
730
730
  #
731
+ # @option params [Types::BrowserSigningConfigInput] :browser_signing
732
+ # The browser signing configuration that enables cryptographic agent
733
+ # identification using HTTP message signatures for web bot
734
+ # authentication.
735
+ #
731
736
  # @option params [String] :client_token
732
737
  # A unique, case-sensitive identifier to ensure that the operation
733
738
  # completes no more than one time. If this token matches a previous
@@ -769,6 +774,9 @@ module Aws::BedrockAgentCoreControl
769
774
  # prefix: "S3LocationPrefixString", # required
770
775
  # },
771
776
  # },
777
+ # browser_signing: {
778
+ # enabled: false, # required
779
+ # },
772
780
  # client_token: "ClientToken",
773
781
  # tags: {
774
782
  # "TagKey" => "TagValue",
@@ -2141,6 +2149,7 @@ module Aws::BedrockAgentCoreControl
2141
2149
  # * {Types::GetBrowserResponse#execution_role_arn #execution_role_arn} => String
2142
2150
  # * {Types::GetBrowserResponse#network_configuration #network_configuration} => Types::BrowserNetworkConfiguration
2143
2151
  # * {Types::GetBrowserResponse#recording #recording} => Types::RecordingConfig
2152
+ # * {Types::GetBrowserResponse#browser_signing #browser_signing} => Types::BrowserSigningConfigOutput
2144
2153
  # * {Types::GetBrowserResponse#status #status} => String
2145
2154
  # * {Types::GetBrowserResponse#failure_reason #failure_reason} => String
2146
2155
  # * {Types::GetBrowserResponse#created_at #created_at} => Time
@@ -2167,6 +2176,7 @@ module Aws::BedrockAgentCoreControl
2167
2176
  # resp.recording.enabled #=> Boolean
2168
2177
  # resp.recording.s3_location.bucket #=> String
2169
2178
  # resp.recording.s3_location.prefix #=> String
2179
+ # resp.browser_signing.enabled #=> Boolean
2170
2180
  # resp.status #=> String, one of "CREATING", "CREATE_FAILED", "READY", "DELETING", "DELETE_FAILED", "DELETED"
2171
2181
  # resp.failure_reason #=> String
2172
2182
  # resp.created_at #=> Time
@@ -4373,7 +4383,7 @@ module Aws::BedrockAgentCoreControl
4373
4383
  tracer: tracer
4374
4384
  )
4375
4385
  context[:gem_name] = 'aws-sdk-bedrockagentcorecontrol'
4376
- context[:gem_version] = '1.12.0'
4386
+ context[:gem_version] = '1.13.0'
4377
4387
  Seahorse::Client::Request.new(handlers, context)
4378
4388
  end
4379
4389
 
@@ -55,6 +55,8 @@ module Aws::BedrockAgentCoreControl
55
55
  BrowserId = Shapes::StringShape.new(name: 'BrowserId')
56
56
  BrowserNetworkConfiguration = Shapes::StructureShape.new(name: 'BrowserNetworkConfiguration')
57
57
  BrowserNetworkMode = Shapes::StringShape.new(name: 'BrowserNetworkMode')
58
+ BrowserSigningConfigInput = Shapes::StructureShape.new(name: 'BrowserSigningConfigInput')
59
+ BrowserSigningConfigOutput = Shapes::StructureShape.new(name: 'BrowserSigningConfigOutput')
58
60
  BrowserStatus = Shapes::StringShape.new(name: 'BrowserStatus')
59
61
  BrowserSummaries = Shapes::ListShape.new(name: 'BrowserSummaries')
60
62
  BrowserSummary = Shapes::StructureShape.new(name: 'BrowserSummary')
@@ -505,6 +507,12 @@ module Aws::BedrockAgentCoreControl
505
507
  BrowserNetworkConfiguration.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VpcConfig, location_name: "vpcConfig"))
506
508
  BrowserNetworkConfiguration.struct_class = Types::BrowserNetworkConfiguration
507
509
 
510
+ BrowserSigningConfigInput.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "enabled"))
511
+ BrowserSigningConfigInput.struct_class = Types::BrowserSigningConfigInput
512
+
513
+ BrowserSigningConfigOutput.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "enabled"))
514
+ BrowserSigningConfigOutput.struct_class = Types::BrowserSigningConfigOutput
515
+
508
516
  BrowserSummaries.member = Shapes::ShapeRef.new(shape: BrowserSummary)
509
517
 
510
518
  BrowserSummary.add_member(:browser_id, Shapes::ShapeRef.new(shape: BrowserId, required: true, location_name: "browserId"))
@@ -600,6 +608,7 @@ module Aws::BedrockAgentCoreControl
600
608
  CreateBrowserRequest.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "executionRoleArn"))
601
609
  CreateBrowserRequest.add_member(:network_configuration, Shapes::ShapeRef.new(shape: BrowserNetworkConfiguration, required: true, location_name: "networkConfiguration"))
602
610
  CreateBrowserRequest.add_member(:recording, Shapes::ShapeRef.new(shape: RecordingConfig, location_name: "recording"))
611
+ CreateBrowserRequest.add_member(:browser_signing, Shapes::ShapeRef.new(shape: BrowserSigningConfigInput, location_name: "browserSigning"))
603
612
  CreateBrowserRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
604
613
  CreateBrowserRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
605
614
  CreateBrowserRequest.struct_class = Types::CreateBrowserRequest
@@ -984,6 +993,7 @@ module Aws::BedrockAgentCoreControl
984
993
  GetBrowserResponse.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "executionRoleArn"))
985
994
  GetBrowserResponse.add_member(:network_configuration, Shapes::ShapeRef.new(shape: BrowserNetworkConfiguration, required: true, location_name: "networkConfiguration"))
986
995
  GetBrowserResponse.add_member(:recording, Shapes::ShapeRef.new(shape: RecordingConfig, location_name: "recording"))
996
+ GetBrowserResponse.add_member(:browser_signing, Shapes::ShapeRef.new(shape: BrowserSigningConfigOutput, location_name: "browserSigning"))
987
997
  GetBrowserResponse.add_member(:status, Shapes::ShapeRef.new(shape: BrowserStatus, required: true, location_name: "status"))
988
998
  GetBrowserResponse.add_member(:failure_reason, Shapes::ShapeRef.new(shape: String, location_name: "failureReason"))
989
999
  GetBrowserResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "createdAt"))
@@ -339,6 +339,41 @@ module Aws::BedrockAgentCoreControl
339
339
  include Aws::Structure
340
340
  end
341
341
 
342
+ # Configuration for enabling browser signing capabilities that allow
343
+ # agents to cryptographically identify themselves to websites using HTTP
344
+ # message signatures.
345
+ #
346
+ # @!attribute [rw] enabled
347
+ # Specifies whether browser signing is enabled. When enabled, the
348
+ # browser will cryptographically sign HTTP requests to identify itself
349
+ # as an AI agent to bot control vendors.
350
+ # @return [Boolean]
351
+ #
352
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/BrowserSigningConfigInput AWS API Documentation
353
+ #
354
+ class BrowserSigningConfigInput < Struct.new(
355
+ :enabled)
356
+ SENSITIVE = []
357
+ include Aws::Structure
358
+ end
359
+
360
+ # The current browser signing configuration that shows whether
361
+ # cryptographic agent identification is enabled for web bot
362
+ # authentication.
363
+ #
364
+ # @!attribute [rw] enabled
365
+ # Indicates whether browser signing is currently enabled for
366
+ # cryptographic agent identification using HTTP message signatures.
367
+ # @return [Boolean]
368
+ #
369
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/BrowserSigningConfigOutput AWS API Documentation
370
+ #
371
+ class BrowserSigningConfigOutput < Struct.new(
372
+ :enabled)
373
+ SENSITIVE = []
374
+ include Aws::Structure
375
+ end
376
+
342
377
  # Contains summary information about a browser. A browser enables Amazon
343
378
  # Bedrock Agent to interact with web content.
344
379
  #
@@ -787,6 +822,12 @@ module Aws::BedrockAgentCoreControl
787
822
  # location.
788
823
  # @return [Types::RecordingConfig]
789
824
  #
825
+ # @!attribute [rw] browser_signing
826
+ # The browser signing configuration that enables cryptographic agent
827
+ # identification using HTTP message signatures for web bot
828
+ # authentication.
829
+ # @return [Types::BrowserSigningConfigInput]
830
+ #
790
831
  # @!attribute [rw] client_token
791
832
  # A unique, case-sensitive identifier to ensure that the operation
792
833
  # completes no more than one time. If this token matches a previous
@@ -811,6 +852,7 @@ module Aws::BedrockAgentCoreControl
811
852
  :execution_role_arn,
812
853
  :network_configuration,
813
854
  :recording,
855
+ :browser_signing,
814
856
  :client_token,
815
857
  :tags)
816
858
  SENSITIVE = [:description]
@@ -2542,6 +2584,11 @@ module Aws::BedrockAgentCoreControl
2542
2584
  # how browser sessions are recorded.
2543
2585
  # @return [Types::RecordingConfig]
2544
2586
  #
2587
+ # @!attribute [rw] browser_signing
2588
+ # The browser signing configuration that shows whether cryptographic
2589
+ # agent identification is enabled for web bot authentication.
2590
+ # @return [Types::BrowserSigningConfigOutput]
2591
+ #
2545
2592
  # @!attribute [rw] status
2546
2593
  # The current status of the browser.
2547
2594
  # @return [String]
@@ -2568,6 +2615,7 @@ module Aws::BedrockAgentCoreControl
2568
2615
  :execution_role_arn,
2569
2616
  :network_configuration,
2570
2617
  :recording,
2618
+ :browser_signing,
2571
2619
  :status,
2572
2620
  :failure_reason,
2573
2621
  :created_at,
@@ -55,7 +55,7 @@ module Aws::BedrockAgentCoreControl
55
55
  autoload :EndpointProvider, 'aws-sdk-bedrockagentcorecontrol/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-bedrockagentcorecontrol/endpoints'
57
57
 
58
- GEM_VERSION = '1.12.0'
58
+ GEM_VERSION = '1.13.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -188,6 +188,9 @@ module Aws
188
188
  prefix: ::String
189
189
  }?
190
190
  },
191
+ ?browser_signing: {
192
+ enabled: bool
193
+ },
191
194
  ?client_token: ::String,
192
195
  ?tags: Hash[::String, ::String]
193
196
  ) -> _CreateBrowserResponseSuccess
@@ -713,6 +716,7 @@ module Aws
713
716
  def execution_role_arn: () -> ::String
714
717
  def network_configuration: () -> Types::BrowserNetworkConfiguration
715
718
  def recording: () -> Types::RecordingConfig
719
+ def browser_signing: () -> Types::BrowserSigningConfigOutput
716
720
  def status: () -> ("CREATING" | "CREATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED" | "DELETED")
717
721
  def failure_reason: () -> ::String
718
722
  def created_at: () -> ::Time
data/sig/types.rbs CHANGED
@@ -108,6 +108,16 @@ module Aws::BedrockAgentCoreControl
108
108
  SENSITIVE: []
109
109
  end
110
110
 
111
+ class BrowserSigningConfigInput
112
+ attr_accessor enabled: bool
113
+ SENSITIVE: []
114
+ end
115
+
116
+ class BrowserSigningConfigOutput
117
+ attr_accessor enabled: bool
118
+ SENSITIVE: []
119
+ end
120
+
111
121
  class BrowserSummary
112
122
  attr_accessor browser_id: ::String
113
123
  attr_accessor browser_arn: ::String
@@ -229,6 +239,7 @@ module Aws::BedrockAgentCoreControl
229
239
  attr_accessor execution_role_arn: ::String
230
240
  attr_accessor network_configuration: Types::BrowserNetworkConfiguration
231
241
  attr_accessor recording: Types::RecordingConfig
242
+ attr_accessor browser_signing: Types::BrowserSigningConfigInput
232
243
  attr_accessor client_token: ::String
233
244
  attr_accessor tags: ::Hash[::String, ::String]
234
245
  SENSITIVE: [:description]
@@ -751,6 +762,7 @@ module Aws::BedrockAgentCoreControl
751
762
  attr_accessor execution_role_arn: ::String
752
763
  attr_accessor network_configuration: Types::BrowserNetworkConfiguration
753
764
  attr_accessor recording: Types::RecordingConfig
765
+ attr_accessor browser_signing: Types::BrowserSigningConfigOutput
754
766
  attr_accessor status: ("CREATING" | "CREATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED" | "DELETED")
755
767
  attr_accessor failure_reason: ::String
756
768
  attr_accessor created_at: ::Time
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-bedrockagentcorecontrol
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.12.0
4
+ version: 1.13.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services