aws-sdk-bedrockagentcorecontrol 1.63.0 → 1.65.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.
data/sig/types.rbs CHANGED
@@ -757,7 +757,7 @@ module Aws::BedrockAgentCoreControl
757
757
  attr_accessor dataset_name: ::String
758
758
  attr_accessor description: ::String
759
759
  attr_accessor source: Types::DataSourceType
760
- attr_accessor schema_type: ("AGENTCORE_EVALUATION_PREDEFINED_V1" | "AGENTCORE_EVALUATION_SIMULATED_V1")
760
+ attr_accessor schema_type: ("AGENTCORE_EVALUATION_PREDEFINED_V1" | "AGENTCORE_EVALUATION_SIMULATED_V1" | "GENERIC_EVALUATION_PREDEFINED_V1")
761
761
  attr_accessor kms_key_arn: ::String
762
762
  attr_accessor tags: ::Hash[::String, ::String]
763
763
  SENSITIVE: []
@@ -1038,6 +1038,7 @@ module Aws::BedrockAgentCoreControl
1038
1038
  attr_accessor description: ::String
1039
1039
  attr_accessor type: ("CoinbaseCDP" | "StripePrivy")
1040
1040
  attr_accessor credential_provider_configurations: ::Array[Types::CredentialsProviderConfiguration]
1041
+ attr_accessor provision_mode: ("MANUAL" | "QUICK_CREATE")
1041
1042
  attr_accessor client_token: ::String
1042
1043
  SENSITIVE: []
1043
1044
  end
@@ -1049,7 +1050,8 @@ module Aws::BedrockAgentCoreControl
1049
1050
  attr_accessor type: ("CoinbaseCDP" | "StripePrivy")
1050
1051
  attr_accessor credential_provider_configurations: ::Array[Types::CredentialsProviderConfiguration]
1051
1052
  attr_accessor created_at: ::Time
1052
- attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "READY" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
1053
+ attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "READY" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED" | "AWS_MARKETPLACE_SUBSCRIPTION_REQUIRED" | "PENDING_AUTHENTICATION" | "PROVISIONING" | "AUTHENTICATION_EXPIRED" | "AUTHENTICATION_FAILED")
1054
+ attr_accessor authorization_url: ::String
1053
1055
  SENSITIVE: []
1054
1056
  end
1055
1057
 
@@ -1077,6 +1079,7 @@ module Aws::BedrockAgentCoreControl
1077
1079
  attr_accessor role_arn: ::String
1078
1080
  attr_accessor client_token: ::String
1079
1081
  attr_accessor tags: ::Hash[::String, ::String]
1082
+ attr_accessor kms_key_arn: ::String
1080
1083
  SENSITIVE: []
1081
1084
  end
1082
1085
 
@@ -1091,6 +1094,7 @@ module Aws::BedrockAgentCoreControl
1091
1094
  attr_accessor created_at: ::Time
1092
1095
  attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "READY" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
1093
1096
  attr_accessor tags: ::Hash[::String, ::String]
1097
+ attr_accessor kms_key_arn: ::String
1094
1098
  SENSITIVE: []
1095
1099
  end
1096
1100
 
@@ -1443,7 +1447,7 @@ module Aws::BedrockAgentCoreControl
1443
1447
  attr_accessor description: ::String
1444
1448
  attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
1445
1449
  attr_accessor draft_status: ("MODIFIED" | "UNMODIFIED")
1446
- attr_accessor schema_type: ("AGENTCORE_EVALUATION_PREDEFINED_V1" | "AGENTCORE_EVALUATION_SIMULATED_V1")
1450
+ attr_accessor schema_type: ("AGENTCORE_EVALUATION_PREDEFINED_V1" | "AGENTCORE_EVALUATION_SIMULATED_V1" | "GENERIC_EVALUATION_PREDEFINED_V1")
1447
1451
  attr_accessor example_count: ::Integer
1448
1452
  attr_accessor created_at: ::Time
1449
1453
  attr_accessor updated_at: ::Time
@@ -1724,7 +1728,7 @@ module Aws::BedrockAgentCoreControl
1724
1728
  end
1725
1729
 
1726
1730
  class DeletePaymentConnectorResponse
1727
- attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "READY" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
1731
+ attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "READY" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED" | "AWS_MARKETPLACE_SUBSCRIPTION_REQUIRED" | "PENDING_AUTHENTICATION" | "PROVISIONING" | "AUTHENTICATION_EXPIRED" | "AUTHENTICATION_FAILED")
1728
1732
  attr_accessor payment_connector_id: ::String
1729
1733
  SENSITIVE: []
1730
1734
  end
@@ -1823,6 +1827,12 @@ module Aws::BedrockAgentCoreControl
1823
1827
  class DeleteWorkloadIdentityResponse < Aws::EmptyStructure
1824
1828
  end
1825
1829
 
1830
+ class DerivedEvaluatorConfig
1831
+ attr_accessor base_evaluator_id: ::String
1832
+ attr_accessor model_config: Types::EvaluatorModelConfig
1833
+ SENSITIVE: []
1834
+ end
1835
+
1826
1836
  class Descriptors
1827
1837
  attr_accessor mcp: Types::McpDescriptor
1828
1838
  attr_accessor a2a: Types::A2aDescriptor
@@ -1966,6 +1976,7 @@ module Aws::BedrockAgentCoreControl
1966
1976
  class EvaluatorConfig
1967
1977
  attr_accessor llm_as_a_judge: Types::LlmAsAJudgeEvaluatorConfig
1968
1978
  attr_accessor code_based: Types::CodeBasedEvaluatorConfig
1979
+ attr_accessor derived: Types::DerivedEvaluatorConfig
1969
1980
  attr_accessor unknown: untyped
1970
1981
  SENSITIVE: []
1971
1982
 
@@ -1973,6 +1984,8 @@ module Aws::BedrockAgentCoreControl
1973
1984
  end
1974
1985
  class CodeBased < EvaluatorConfig
1975
1986
  end
1987
+ class Derived < EvaluatorConfig
1988
+ end
1976
1989
  class Unknown < EvaluatorConfig
1977
1990
  end
1978
1991
  end
@@ -2007,7 +2020,8 @@ module Aws::BedrockAgentCoreControl
2007
2020
  attr_accessor evaluator_id: ::String
2008
2021
  attr_accessor evaluator_name: ::String
2009
2022
  attr_accessor description: ::String
2010
- attr_accessor evaluator_type: ("Builtin" | "Custom" | "CustomCode")
2023
+ attr_accessor evaluator_type: ("Builtin" | "ThirdParty" | "Custom" | "CustomCode" | "CustomDerived")
2024
+ attr_accessor provider: ("AWS" | "DeepEval" | "AutoEval" | "Custom")
2011
2025
  attr_accessor level: ("TOOL_CALL" | "TRACE" | "SESSION")
2012
2026
  attr_accessor status: ("ACTIVE" | "CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "DELETING")
2013
2027
  attr_accessor created_at: ::Time
@@ -2384,7 +2398,7 @@ module Aws::BedrockAgentCoreControl
2384
2398
  attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
2385
2399
  attr_accessor draft_status: ("MODIFIED" | "UNMODIFIED")
2386
2400
  attr_accessor failure_reason: ::String
2387
- attr_accessor schema_type: ("AGENTCORE_EVALUATION_PREDEFINED_V1" | "AGENTCORE_EVALUATION_SIMULATED_V1")
2401
+ attr_accessor schema_type: ("AGENTCORE_EVALUATION_PREDEFINED_V1" | "AGENTCORE_EVALUATION_SIMULATED_V1" | "GENERIC_EVALUATION_PREDEFINED_V1")
2388
2402
  attr_accessor kms_key_arn: ::String
2389
2403
  attr_accessor example_count: ::Integer
2390
2404
  attr_accessor download_url: ::String
@@ -2407,6 +2421,8 @@ module Aws::BedrockAgentCoreControl
2407
2421
  attr_accessor evaluator_name: ::String
2408
2422
  attr_accessor description: ::String
2409
2423
  attr_accessor evaluator_config: Types::EvaluatorConfig
2424
+ attr_accessor evaluator_type: ("Builtin" | "ThirdParty" | "Custom" | "CustomCode" | "CustomDerived")
2425
+ attr_accessor provider: ("AWS" | "DeepEval" | "AutoEval" | "Custom")
2410
2426
  attr_accessor level: ("TOOL_CALL" | "TRACE" | "SESSION")
2411
2427
  attr_accessor status: ("ACTIVE" | "CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "DELETING")
2412
2428
  attr_accessor created_at: ::Time
@@ -2604,7 +2620,8 @@ module Aws::BedrockAgentCoreControl
2604
2620
  attr_accessor credential_provider_configurations: ::Array[Types::CredentialsProviderConfiguration]
2605
2621
  attr_accessor created_at: ::Time
2606
2622
  attr_accessor last_updated_at: ::Time
2607
- attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "READY" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
2623
+ attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "READY" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED" | "AWS_MARKETPLACE_SUBSCRIPTION_REQUIRED" | "PENDING_AUTHENTICATION" | "PROVISIONING" | "AUTHENTICATION_EXPIRED" | "AUTHENTICATION_FAILED")
2624
+ attr_accessor authorization_url: ::String
2608
2625
  SENSITIVE: []
2609
2626
  end
2610
2627
 
@@ -2642,6 +2659,7 @@ module Aws::BedrockAgentCoreControl
2642
2659
  attr_accessor last_updated_at: ::Time
2643
2660
  attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "READY" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
2644
2661
  attr_accessor tags: ::Hash[::String, ::String]
2662
+ attr_accessor kms_key_arn: ::String
2645
2663
  SENSITIVE: []
2646
2664
  end
2647
2665
 
@@ -4527,7 +4545,7 @@ module Aws::BedrockAgentCoreControl
4527
4545
  attr_accessor payment_connector_id: ::String
4528
4546
  attr_accessor name: ::String
4529
4547
  attr_accessor type: ("CoinbaseCDP" | "StripePrivy")
4530
- attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "READY" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
4548
+ attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "READY" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED" | "AWS_MARKETPLACE_SUBSCRIPTION_REQUIRED" | "PENDING_AUTHENTICATION" | "PROVISIONING" | "AUTHENTICATION_EXPIRED" | "AUTHENTICATION_FAILED")
4531
4549
  attr_accessor last_updated_at: ::Time
4532
4550
  SENSITIVE: []
4533
4551
  end
@@ -4556,6 +4574,7 @@ module Aws::BedrockAgentCoreControl
4556
4574
  attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "READY" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
4557
4575
  attr_accessor created_at: ::Time
4558
4576
  attr_accessor last_updated_at: ::Time
4577
+ attr_accessor kms_key_arn: ::String
4559
4578
  SENSITIVE: []
4560
4579
  end
4561
4580
 
@@ -5293,6 +5312,13 @@ module Aws::BedrockAgentCoreControl
5293
5312
  SENSITIVE: []
5294
5313
  end
5295
5314
 
5315
+ class SubscriptionRequiredException
5316
+ attr_accessor message: ::String
5317
+ attr_accessor subscription_url: ::String
5318
+ attr_accessor product_name: ::String
5319
+ SENSITIVE: []
5320
+ end
5321
+
5296
5322
  class SummaryConsolidationOverride
5297
5323
  attr_accessor append_to_prompt: ::String
5298
5324
  attr_accessor model_id: ::String
@@ -5923,7 +5949,8 @@ module Aws::BedrockAgentCoreControl
5923
5949
  attr_accessor type: ("CoinbaseCDP" | "StripePrivy")
5924
5950
  attr_accessor credential_provider_configurations: ::Array[Types::CredentialsProviderConfiguration]
5925
5951
  attr_accessor last_updated_at: ::Time
5926
- attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "READY" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
5952
+ attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "READY" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED" | "AWS_MARKETPLACE_SUBSCRIPTION_REQUIRED" | "PENDING_AUTHENTICATION" | "PROVISIONING" | "AUTHENTICATION_EXPIRED" | "AUTHENTICATION_FAILED")
5953
+ attr_accessor authorization_url: ::String
5927
5954
  SENSITIVE: []
5928
5955
  end
5929
5956
 
@@ -5951,6 +5978,7 @@ module Aws::BedrockAgentCoreControl
5951
5978
  attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
5952
5979
  attr_accessor role_arn: ::String
5953
5980
  attr_accessor client_token: ::String
5981
+ attr_accessor kms_key_arn: ::String
5954
5982
  SENSITIVE: []
5955
5983
  end
5956
5984
 
@@ -5963,6 +5991,7 @@ module Aws::BedrockAgentCoreControl
5963
5991
  attr_accessor workload_identity_details: Types::WorkloadIdentityDetails
5964
5992
  attr_accessor last_updated_at: ::Time
5965
5993
  attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "READY" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
5994
+ attr_accessor kms_key_arn: ::String
5966
5995
  SENSITIVE: []
5967
5996
  end
5968
5997
 
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.63.0
4
+ version: 1.65.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services