aws-sdk-bedrockagentcorecontrol 1.21.0 → 1.23.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: a933c0922b0d0034bc0dc8e98af0f2cb0277a9bea1d04199e3babcd0573cc12e
4
- data.tar.gz: d9b2fa903a0a71ebc15f174ea81d5efc0cbacfbcc4f5e93fcc58525a704ae96a
3
+ metadata.gz: c57ca5977ac6a3130e4dd112ac2ca466d4890004e3082131be44c324e326a57d
4
+ data.tar.gz: 4c2935786db8f0f351fe161c032c593ab54e5335ddcb8a321636dd5281c75448
5
5
  SHA512:
6
- metadata.gz: fae9e6524272f3056eab536015bd89c92c60e335ab1375f0623c822934219cc6b0e5d4dbafb05d631237b3bfd259ef7395448724ab1c41dbdebc63d054fbb40b
7
- data.tar.gz: 6734cbbc8e37ad99d6257354162f1cf7a8a0a1a98b729a471d482b5dabbf6d66ad27e63e1be15754cd33e0abc4c1eac40c43ba65aea22582f5917522de5a00b8
6
+ metadata.gz: f1af98ddf50a103dd55cb710fd9b5cd9c313c91a9da307287e2df97269c99243078f2b6b8d53c8e755d3298844e5165633437f31bec84558a52e6e216944a35d
7
+ data.tar.gz: 3080d07bd8a86d6c7f0aca680f2d73b8d9e71b0db1aae9cd86f0a90cc7b915a323baa0e8d1b189d252db8032866c5e12a8be78a2ac2b9304ba51d1e1d2782c58
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.23.0 (2026-02-02)
5
+ ------------------
6
+
7
+ * Feature - Adds tagging support for AgentCore Evaluations (evaluator and online evaluation config)
8
+
9
+ 1.22.0 (2026-01-16)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.21.0 (2026-01-09)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.21.0
1
+ 1.23.0
@@ -935,6 +935,11 @@ module Aws::BedrockAgentCoreControl
935
935
  # single request-response interactions, or `SESSION` for entire
936
936
  # conversation sessions.
937
937
  #
938
+ # @option params [Hash<String,String>] :tags
939
+ # A map of tag keys and values to assign to an AgentCore Evaluator. Tags
940
+ # enable you to categorize your resources in different ways, for
941
+ # example, by purpose, owner, or environment.
942
+ #
938
943
  # @return [Types::CreateEvaluatorResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
939
944
  #
940
945
  # * {Types::CreateEvaluatorResponse#evaluator_arn #evaluator_arn} => String
@@ -982,6 +987,9 @@ module Aws::BedrockAgentCoreControl
982
987
  # },
983
988
  # },
984
989
  # level: "TOOL_CALL", # required, accepts TOOL_CALL, TRACE, SESSION
990
+ # tags: {
991
+ # "TagKey" => "TagValue",
992
+ # },
985
993
  # })
986
994
  #
987
995
  # @example Response structure
@@ -1915,6 +1923,11 @@ module Aws::BedrockAgentCoreControl
1915
1923
  # Whether to enable the online evaluation configuration immediately upon
1916
1924
  # creation. If true, evaluation begins automatically.
1917
1925
  #
1926
+ # @option params [Hash<String,String>] :tags
1927
+ # A map of tag keys and values to assign to an AgentCore Online
1928
+ # Evaluation Config. Tags enable you to categorize your resources in
1929
+ # different ways, for example, by purpose, owner, or environment.
1930
+ #
1918
1931
  # @return [Types::CreateOnlineEvaluationConfigResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1919
1932
  #
1920
1933
  # * {Types::CreateOnlineEvaluationConfigResponse#online_evaluation_config_arn #online_evaluation_config_arn} => String
@@ -1963,6 +1976,9 @@ module Aws::BedrockAgentCoreControl
1963
1976
  # ],
1964
1977
  # evaluation_execution_role_arn: "RoleArn", # required
1965
1978
  # enable_on_create: false, # required
1979
+ # tags: {
1980
+ # "TagKey" => "TagValue",
1981
+ # },
1966
1982
  # })
1967
1983
  #
1968
1984
  # @example Response structure
@@ -6632,7 +6648,7 @@ module Aws::BedrockAgentCoreControl
6632
6648
  tracer: tracer
6633
6649
  )
6634
6650
  context[:gem_name] = 'aws-sdk-bedrockagentcorecontrol'
6635
- context[:gem_version] = '1.21.0'
6651
+ context[:gem_version] = '1.23.0'
6636
6652
  Seahorse::Client::Request.new(handlers, context)
6637
6653
  end
6638
6654
 
@@ -934,6 +934,7 @@ module Aws::BedrockAgentCoreControl
934
934
  CreateEvaluatorRequest.add_member(:description, Shapes::ShapeRef.new(shape: EvaluatorDescription, location_name: "description"))
935
935
  CreateEvaluatorRequest.add_member(:evaluator_config, Shapes::ShapeRef.new(shape: EvaluatorConfig, required: true, location_name: "evaluatorConfig"))
936
936
  CreateEvaluatorRequest.add_member(:level, Shapes::ShapeRef.new(shape: EvaluatorLevel, required: true, location_name: "level"))
937
+ CreateEvaluatorRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
937
938
  CreateEvaluatorRequest.struct_class = Types::CreateEvaluatorRequest
938
939
 
939
940
  CreateEvaluatorResponse.add_member(:evaluator_arn, Shapes::ShapeRef.new(shape: CustomEvaluatorArn, required: true, location_name: "evaluatorArn"))
@@ -1035,6 +1036,7 @@ module Aws::BedrockAgentCoreControl
1035
1036
  CreateOnlineEvaluationConfigRequest.add_member(:evaluators, Shapes::ShapeRef.new(shape: EvaluatorList, required: true, location_name: "evaluators"))
1036
1037
  CreateOnlineEvaluationConfigRequest.add_member(:evaluation_execution_role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "evaluationExecutionRoleArn"))
1037
1038
  CreateOnlineEvaluationConfigRequest.add_member(:enable_on_create, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "enableOnCreate"))
1039
+ CreateOnlineEvaluationConfigRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
1038
1040
  CreateOnlineEvaluationConfigRequest.struct_class = Types::CreateOnlineEvaluationConfigRequest
1039
1041
 
1040
1042
  CreateOnlineEvaluationConfigResponse.add_member(:online_evaluation_config_arn, Shapes::ShapeRef.new(shape: OnlineEvaluationConfigArn, required: true, location_name: "onlineEvaluationConfigArn"))
@@ -1357,6 +1357,12 @@ module Aws::BedrockAgentCoreControl
1357
1357
  # conversation sessions.
1358
1358
  # @return [String]
1359
1359
  #
1360
+ # @!attribute [rw] tags
1361
+ # A map of tag keys and values to assign to an AgentCore Evaluator.
1362
+ # Tags enable you to categorize your resources in different ways, for
1363
+ # example, by purpose, owner, or environment.
1364
+ # @return [Hash<String,String>]
1365
+ #
1360
1366
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateEvaluatorRequest AWS API Documentation
1361
1367
  #
1362
1368
  class CreateEvaluatorRequest < Struct.new(
@@ -1364,7 +1370,8 @@ module Aws::BedrockAgentCoreControl
1364
1370
  :evaluator_name,
1365
1371
  :description,
1366
1372
  :evaluator_config,
1367
- :level)
1373
+ :level,
1374
+ :tags)
1368
1375
  SENSITIVE = [:description]
1369
1376
  include Aws::Structure
1370
1377
  end
@@ -1936,6 +1943,12 @@ module Aws::BedrockAgentCoreControl
1936
1943
  # upon creation. If true, evaluation begins automatically.
1937
1944
  # @return [Boolean]
1938
1945
  #
1946
+ # @!attribute [rw] tags
1947
+ # A map of tag keys and values to assign to an AgentCore Online
1948
+ # Evaluation Config. Tags enable you to categorize your resources in
1949
+ # different ways, for example, by purpose, owner, or environment.
1950
+ # @return [Hash<String,String>]
1951
+ #
1939
1952
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateOnlineEvaluationConfigRequest AWS API Documentation
1940
1953
  #
1941
1954
  class CreateOnlineEvaluationConfigRequest < Struct.new(
@@ -1946,7 +1959,8 @@ module Aws::BedrockAgentCoreControl
1946
1959
  :data_source_config,
1947
1960
  :evaluators,
1948
1961
  :evaluation_execution_role_arn,
1949
- :enable_on_create)
1962
+ :enable_on_create,
1963
+ :tags)
1950
1964
  SENSITIVE = [:description]
1951
1965
  include Aws::Structure
1952
1966
  end
@@ -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.21.0'
58
+ GEM_VERSION = '1.23.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -291,7 +291,8 @@ module Aws
291
291
  }
292
292
  }?
293
293
  },
294
- level: ("TOOL_CALL" | "TRACE" | "SESSION")
294
+ level: ("TOOL_CALL" | "TRACE" | "SESSION"),
295
+ ?tags: Hash[::String, ::String]
295
296
  ) -> _CreateEvaluatorResponseSuccess
296
297
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEvaluatorResponseSuccess
297
298
 
@@ -720,7 +721,8 @@ module Aws
720
721
  },
721
722
  ],
722
723
  evaluation_execution_role_arn: ::String,
723
- enable_on_create: bool
724
+ enable_on_create: bool,
725
+ ?tags: Hash[::String, ::String]
724
726
  ) -> _CreateOnlineEvaluationConfigResponseSuccess
725
727
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateOnlineEvaluationConfigResponseSuccess
726
728
 
data/sig/types.rbs CHANGED
@@ -385,6 +385,7 @@ module Aws::BedrockAgentCoreControl
385
385
  attr_accessor description: ::String
386
386
  attr_accessor evaluator_config: Types::EvaluatorConfig
387
387
  attr_accessor level: ("TOOL_CALL" | "TRACE" | "SESSION")
388
+ attr_accessor tags: ::Hash[::String, ::String]
388
389
  SENSITIVE: [:description]
389
390
  end
390
391
 
@@ -506,6 +507,7 @@ module Aws::BedrockAgentCoreControl
506
507
  attr_accessor evaluators: ::Array[Types::EvaluatorReference]
507
508
  attr_accessor evaluation_execution_role_arn: ::String
508
509
  attr_accessor enable_on_create: bool
510
+ attr_accessor tags: ::Hash[::String, ::String]
509
511
  SENSITIVE: [:description]
510
512
  end
511
513
 
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.21.0
4
+ version: 1.23.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.241.3
21
+ version: 3.241.4
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.241.3
31
+ version: 3.241.4
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement