aws-sdk-bedrockagentcorecontrol 1.47.0 → 1.48.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.
@@ -23,7 +23,7 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:bedrockagentcorecontrol)
23
23
  # structure.
24
24
  #
25
25
  # bedrock_agent_core_control = Aws::BedrockAgentCoreControl::Client.new
26
- # resp = bedrock_agent_core_control.create_agent_runtime(params)
26
+ # resp = bedrock_agent_core_control.add_dataset_examples(params)
27
27
  #
28
28
  # See {Client} for more information.
29
29
  #
@@ -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.47.0'
58
+ GEM_VERSION = '1.48.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -78,6 +78,23 @@ module Aws
78
78
  | (?Hash[Symbol, untyped]) -> instance
79
79
 
80
80
 
81
+ interface _AddDatasetExamplesResponseSuccess
82
+ include ::Seahorse::Client::_ResponseSuccess[Types::AddDatasetExamplesResponse]
83
+ def dataset_arn: () -> ::String
84
+ def dataset_id: () -> ::String
85
+ def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
86
+ def added_count: () -> ::Integer
87
+ def updated_at: () -> ::Time
88
+ def example_ids: () -> ::Array[::String]
89
+ end
90
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#add_dataset_examples-instance_method
91
+ def add_dataset_examples: (
92
+ dataset_id: ::String,
93
+ ?client_token: ::String,
94
+ source: Params::data_source_type
95
+ ) -> _AddDatasetExamplesResponseSuccess
96
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AddDatasetExamplesResponseSuccess
97
+
81
98
  interface _CreateAgentRuntimeResponseSuccess
82
99
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateAgentRuntimeResponse]
83
100
  def agent_runtime_arn: () -> ::String
@@ -282,6 +299,40 @@ module Aws
282
299
  ) -> _CreateConfigurationBundleResponseSuccess
283
300
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConfigurationBundleResponseSuccess
284
301
 
302
+ interface _CreateDatasetResponseSuccess
303
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateDatasetResponse]
304
+ def dataset_arn: () -> ::String
305
+ def dataset_id: () -> ::String
306
+ def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
307
+ def created_at: () -> ::Time
308
+ end
309
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_dataset-instance_method
310
+ def create_dataset: (
311
+ ?client_token: ::String,
312
+ dataset_name: ::String,
313
+ ?description: ::String,
314
+ source: Params::data_source_type,
315
+ schema_type: ("AGENTCORE_EVALUATION_PREDEFINED_V1" | "AGENTCORE_EVALUATION_SIMULATED_V1"),
316
+ ?kms_key_arn: ::String,
317
+ ?tags: Hash[::String, ::String]
318
+ ) -> _CreateDatasetResponseSuccess
319
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDatasetResponseSuccess
320
+
321
+ interface _CreateDatasetVersionResponseSuccess
322
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateDatasetVersionResponse]
323
+ def dataset_arn: () -> ::String
324
+ def dataset_id: () -> ::String
325
+ def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
326
+ def dataset_version: () -> ::String
327
+ def created_at: () -> ::Time
328
+ end
329
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_dataset_version-instance_method
330
+ def create_dataset_version: (
331
+ dataset_id: ::String,
332
+ ?client_token: ::String
333
+ ) -> _CreateDatasetVersionResponseSuccess
334
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDatasetVersionResponseSuccess
335
+
285
336
  interface _CreateEvaluatorResponseSuccess
286
337
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateEvaluatorResponse]
287
338
  def evaluator_arn: () -> ::String
@@ -805,6 +856,37 @@ module Aws
805
856
  ) -> _DeleteConfigurationBundleResponseSuccess
806
857
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteConfigurationBundleResponseSuccess
807
858
 
859
+ interface _DeleteDatasetResponseSuccess
860
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDatasetResponse]
861
+ def dataset_arn: () -> ::String
862
+ def dataset_id: () -> ::String
863
+ def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
864
+ def dataset_version: () -> ::String
865
+ def updated_at: () -> ::Time
866
+ end
867
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#delete_dataset-instance_method
868
+ def delete_dataset: (
869
+ dataset_id: ::String,
870
+ ?dataset_version: ::String
871
+ ) -> _DeleteDatasetResponseSuccess
872
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDatasetResponseSuccess
873
+
874
+ interface _DeleteDatasetExamplesResponseSuccess
875
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDatasetExamplesResponse]
876
+ def dataset_arn: () -> ::String
877
+ def dataset_id: () -> ::String
878
+ def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
879
+ def deleted_count: () -> ::Integer
880
+ def updated_at: () -> ::Time
881
+ end
882
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#delete_dataset_examples-instance_method
883
+ def delete_dataset_examples: (
884
+ dataset_id: ::String,
885
+ ?client_token: ::String,
886
+ example_ids: Array[::String]
887
+ ) -> _DeleteDatasetExamplesResponseSuccess
888
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDatasetExamplesResponseSuccess
889
+
808
890
  interface _DeleteEvaluatorResponseSuccess
809
891
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteEvaluatorResponse]
810
892
  def evaluator_arn: () -> ::String
@@ -1174,6 +1256,32 @@ module Aws
1174
1256
  ) -> _GetConfigurationBundleVersionResponseSuccess
1175
1257
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConfigurationBundleVersionResponseSuccess
1176
1258
 
1259
+ interface _GetDatasetResponseSuccess
1260
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetDatasetResponse]
1261
+ def dataset_arn: () -> ::String
1262
+ def dataset_id: () -> ::String
1263
+ def dataset_version: () -> ::String
1264
+ def dataset_name: () -> ::String
1265
+ def description: () -> ::String
1266
+ def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
1267
+ def draft_status: () -> ("MODIFIED" | "UNMODIFIED")
1268
+ def failure_reason: () -> ::String
1269
+ def schema_type: () -> ("AGENTCORE_EVALUATION_PREDEFINED_V1" | "AGENTCORE_EVALUATION_SIMULATED_V1")
1270
+ def kms_key_arn: () -> ::String
1271
+ def example_count: () -> ::Integer
1272
+ def download_url: () -> ::String
1273
+ def download_url_expires_at: () -> ::Time
1274
+ def created_at: () -> ::Time
1275
+ def updated_at: () -> ::Time
1276
+ def tags: () -> ::Hash[::String, ::String]
1277
+ end
1278
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_dataset-instance_method
1279
+ def get_dataset: (
1280
+ dataset_id: ::String,
1281
+ ?dataset_version: ::String
1282
+ ) -> _GetDatasetResponseSuccess
1283
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDatasetResponseSuccess
1284
+
1177
1285
  interface _GetEvaluatorResponseSuccess
1178
1286
  include ::Seahorse::Client::_ResponseSuccess[Types::GetEvaluatorResponse]
1179
1287
  def evaluator_arn: () -> ::String
@@ -1696,6 +1804,48 @@ module Aws
1696
1804
  ) -> _ListConfigurationBundlesResponseSuccess
1697
1805
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConfigurationBundlesResponseSuccess
1698
1806
 
1807
+ interface _ListDatasetExamplesResponseSuccess
1808
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDatasetExamplesResponse]
1809
+ def dataset_arn: () -> ::String
1810
+ def dataset_id: () -> ::String
1811
+ def dataset_version: () -> ::String
1812
+ def examples: () -> ::Array[untyped]
1813
+ def next_token: () -> ::String
1814
+ end
1815
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_dataset_examples-instance_method
1816
+ def list_dataset_examples: (
1817
+ dataset_id: ::String,
1818
+ ?dataset_version: ::String,
1819
+ ?max_results: ::Integer,
1820
+ ?next_token: ::String
1821
+ ) -> _ListDatasetExamplesResponseSuccess
1822
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDatasetExamplesResponseSuccess
1823
+
1824
+ interface _ListDatasetVersionsResponseSuccess
1825
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDatasetVersionsResponse]
1826
+ def versions: () -> ::Array[Types::DatasetVersionSummary]
1827
+ def next_token: () -> ::String
1828
+ end
1829
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_dataset_versions-instance_method
1830
+ def list_dataset_versions: (
1831
+ dataset_id: ::String,
1832
+ ?next_token: ::String,
1833
+ ?max_results: ::Integer
1834
+ ) -> _ListDatasetVersionsResponseSuccess
1835
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDatasetVersionsResponseSuccess
1836
+
1837
+ interface _ListDatasetsResponseSuccess
1838
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDatasetsResponse]
1839
+ def datasets: () -> ::Array[Types::DatasetSummary]
1840
+ def next_token: () -> ::String
1841
+ end
1842
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_datasets-instance_method
1843
+ def list_datasets: (
1844
+ ?next_token: ::String,
1845
+ ?max_results: ::Integer
1846
+ ) -> _ListDatasetsResponseSuccess
1847
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDatasetsResponseSuccess
1848
+
1699
1849
  interface _ListEvaluatorsResponseSuccess
1700
1850
  include ::Seahorse::Client::_ResponseSuccess[Types::ListEvaluatorsResponse]
1701
1851
  def evaluators: () -> ::Array[Types::EvaluatorSummary]
@@ -2176,6 +2326,39 @@ module Aws
2176
2326
  ) -> _UpdateConfigurationBundleResponseSuccess
2177
2327
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConfigurationBundleResponseSuccess
2178
2328
 
2329
+ interface _UpdateDatasetResponseSuccess
2330
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDatasetResponse]
2331
+ def dataset_arn: () -> ::String
2332
+ def dataset_id: () -> ::String
2333
+ def updated_at: () -> ::Time
2334
+ end
2335
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#update_dataset-instance_method
2336
+ def update_dataset: (
2337
+ dataset_id: ::String,
2338
+ ?client_token: ::String,
2339
+ ?description: ::String
2340
+ ) -> _UpdateDatasetResponseSuccess
2341
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDatasetResponseSuccess
2342
+
2343
+ interface _UpdateDatasetExamplesResponseSuccess
2344
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDatasetExamplesResponse]
2345
+ def dataset_arn: () -> ::String
2346
+ def dataset_id: () -> ::String
2347
+ def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
2348
+ def updated_count: () -> ::Integer
2349
+ def updated_at: () -> ::Time
2350
+ end
2351
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#update_dataset_examples-instance_method
2352
+ def update_dataset_examples: (
2353
+ dataset_id: ::String,
2354
+ ?client_token: ::String,
2355
+ examples: Array[
2356
+ {
2357
+ }
2358
+ ]
2359
+ ) -> _UpdateDatasetExamplesResponseSuccess
2360
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDatasetExamplesResponseSuccess
2361
+
2179
2362
  interface _UpdateEvaluatorResponseSuccess
2180
2363
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateEvaluatorResponse]
2181
2364
  def evaluator_arn: () -> ::String
data/sig/params.rbs CHANGED
@@ -8,6 +8,18 @@
8
8
  module Aws
9
9
  module BedrockAgentCoreControl
10
10
  module Params
11
+ type data_source_type = {
12
+ inline_examples: {
13
+ examples: Array[
14
+ {
15
+ }
16
+ ]
17
+ }?,
18
+ s3_source: {
19
+ s3_uri: ::String
20
+ }?
21
+ }
22
+
11
23
  type code_configuration = {
12
24
  code: {
13
25
  s3: {
data/sig/types.rbs CHANGED
@@ -32,6 +32,23 @@ module Aws::BedrockAgentCoreControl
32
32
  end
33
33
  end
34
34
 
35
+ class AddDatasetExamplesRequest
36
+ attr_accessor dataset_id: ::String
37
+ attr_accessor client_token: ::String
38
+ attr_accessor source: Types::DataSourceType
39
+ SENSITIVE: []
40
+ end
41
+
42
+ class AddDatasetExamplesResponse
43
+ attr_accessor dataset_arn: ::String
44
+ attr_accessor dataset_id: ::String
45
+ attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
46
+ attr_accessor added_count: ::Integer
47
+ attr_accessor updated_at: ::Time
48
+ attr_accessor example_ids: ::Array[::String]
49
+ SENSITIVE: []
50
+ end
51
+
35
52
  class AgentCardDefinition
36
53
  attr_accessor schema_version: ::String
37
54
  attr_accessor inline_content: ::String
@@ -589,6 +606,40 @@ module Aws::BedrockAgentCoreControl
589
606
  SENSITIVE: []
590
607
  end
591
608
 
609
+ class CreateDatasetRequest
610
+ attr_accessor client_token: ::String
611
+ attr_accessor dataset_name: ::String
612
+ attr_accessor description: ::String
613
+ attr_accessor source: Types::DataSourceType
614
+ attr_accessor schema_type: ("AGENTCORE_EVALUATION_PREDEFINED_V1" | "AGENTCORE_EVALUATION_SIMULATED_V1")
615
+ attr_accessor kms_key_arn: ::String
616
+ attr_accessor tags: ::Hash[::String, ::String]
617
+ SENSITIVE: []
618
+ end
619
+
620
+ class CreateDatasetResponse
621
+ attr_accessor dataset_arn: ::String
622
+ attr_accessor dataset_id: ::String
623
+ attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
624
+ attr_accessor created_at: ::Time
625
+ SENSITIVE: []
626
+ end
627
+
628
+ class CreateDatasetVersionRequest
629
+ attr_accessor dataset_id: ::String
630
+ attr_accessor client_token: ::String
631
+ SENSITIVE: []
632
+ end
633
+
634
+ class CreateDatasetVersionResponse
635
+ attr_accessor dataset_arn: ::String
636
+ attr_accessor dataset_id: ::String
637
+ attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
638
+ attr_accessor dataset_version: ::String
639
+ attr_accessor created_at: ::Time
640
+ SENSITIVE: []
641
+ end
642
+
592
643
  class CreateEvaluatorRequest
593
644
  attr_accessor client_token: ::String
594
645
  attr_accessor evaluator_name: ::String
@@ -1168,6 +1219,41 @@ module Aws::BedrockAgentCoreControl
1168
1219
  end
1169
1220
  end
1170
1221
 
1222
+ class DataSourceType
1223
+ attr_accessor inline_examples: Types::InlineExamplesSource
1224
+ attr_accessor s3_source: Types::S3Source
1225
+ attr_accessor unknown: untyped
1226
+ SENSITIVE: []
1227
+
1228
+ class InlineExamples < DataSourceType
1229
+ end
1230
+ class S3Source < DataSourceType
1231
+ end
1232
+ class Unknown < DataSourceType
1233
+ end
1234
+ end
1235
+
1236
+ class DatasetSummary
1237
+ attr_accessor dataset_arn: ::String
1238
+ attr_accessor dataset_id: ::String
1239
+ attr_accessor dataset_name: ::String
1240
+ attr_accessor description: ::String
1241
+ attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
1242
+ attr_accessor draft_status: ("MODIFIED" | "UNMODIFIED")
1243
+ attr_accessor schema_type: ("AGENTCORE_EVALUATION_PREDEFINED_V1" | "AGENTCORE_EVALUATION_SIMULATED_V1")
1244
+ attr_accessor example_count: ::Integer
1245
+ attr_accessor created_at: ::Time
1246
+ attr_accessor updated_at: ::Time
1247
+ SENSITIVE: []
1248
+ end
1249
+
1250
+ class DatasetVersionSummary
1251
+ attr_accessor dataset_version: ::String
1252
+ attr_accessor example_count: ::Integer
1253
+ attr_accessor created_at: ::Time
1254
+ SENSITIVE: []
1255
+ end
1256
+
1171
1257
  class DecryptionFailure
1172
1258
  attr_accessor message: ::String
1173
1259
  SENSITIVE: []
@@ -1259,6 +1345,37 @@ module Aws::BedrockAgentCoreControl
1259
1345
  SENSITIVE: []
1260
1346
  end
1261
1347
 
1348
+ class DeleteDatasetExamplesRequest
1349
+ attr_accessor dataset_id: ::String
1350
+ attr_accessor client_token: ::String
1351
+ attr_accessor example_ids: ::Array[::String]
1352
+ SENSITIVE: []
1353
+ end
1354
+
1355
+ class DeleteDatasetExamplesResponse
1356
+ attr_accessor dataset_arn: ::String
1357
+ attr_accessor dataset_id: ::String
1358
+ attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
1359
+ attr_accessor deleted_count: ::Integer
1360
+ attr_accessor updated_at: ::Time
1361
+ SENSITIVE: []
1362
+ end
1363
+
1364
+ class DeleteDatasetRequest
1365
+ attr_accessor dataset_id: ::String
1366
+ attr_accessor dataset_version: ::String
1367
+ SENSITIVE: []
1368
+ end
1369
+
1370
+ class DeleteDatasetResponse
1371
+ attr_accessor dataset_arn: ::String
1372
+ attr_accessor dataset_id: ::String
1373
+ attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
1374
+ attr_accessor dataset_version: ::String
1375
+ attr_accessor updated_at: ::Time
1376
+ SENSITIVE: []
1377
+ end
1378
+
1262
1379
  class DeleteEvaluatorRequest
1263
1380
  attr_accessor evaluator_id: ::String
1264
1381
  SENSITIVE: []
@@ -1916,6 +2033,32 @@ module Aws::BedrockAgentCoreControl
1916
2033
  SENSITIVE: [:description]
1917
2034
  end
1918
2035
 
2036
+ class GetDatasetRequest
2037
+ attr_accessor dataset_id: ::String
2038
+ attr_accessor dataset_version: ::String
2039
+ SENSITIVE: []
2040
+ end
2041
+
2042
+ class GetDatasetResponse
2043
+ attr_accessor dataset_arn: ::String
2044
+ attr_accessor dataset_id: ::String
2045
+ attr_accessor dataset_version: ::String
2046
+ attr_accessor dataset_name: ::String
2047
+ attr_accessor description: ::String
2048
+ attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
2049
+ attr_accessor draft_status: ("MODIFIED" | "UNMODIFIED")
2050
+ attr_accessor failure_reason: ::String
2051
+ attr_accessor schema_type: ("AGENTCORE_EVALUATION_PREDEFINED_V1" | "AGENTCORE_EVALUATION_SIMULATED_V1")
2052
+ attr_accessor kms_key_arn: ::String
2053
+ attr_accessor example_count: ::Integer
2054
+ attr_accessor download_url: ::String
2055
+ attr_accessor download_url_expires_at: ::Time
2056
+ attr_accessor created_at: ::Time
2057
+ attr_accessor updated_at: ::Time
2058
+ attr_accessor tags: ::Hash[::String, ::String]
2059
+ SENSITIVE: [:download_url]
2060
+ end
2061
+
1919
2062
  class GetEvaluatorRequest
1920
2063
  attr_accessor evaluator_id: ::String
1921
2064
  attr_accessor included_data: ("ALL_DATA" | "METADATA_ONLY")
@@ -2680,6 +2823,11 @@ module Aws::BedrockAgentCoreControl
2680
2823
  SENSITIVE: []
2681
2824
  end
2682
2825
 
2826
+ class InlineExamplesSource
2827
+ attr_accessor examples: ::Array[untyped]
2828
+ SENSITIVE: []
2829
+ end
2830
+
2683
2831
  class InterceptorConfiguration
2684
2832
  attr_accessor lambda: Types::LambdaInterceptorConfiguration
2685
2833
  attr_accessor unknown: untyped
@@ -2869,6 +3017,48 @@ module Aws::BedrockAgentCoreControl
2869
3017
  SENSITIVE: []
2870
3018
  end
2871
3019
 
3020
+ class ListDatasetExamplesRequest
3021
+ attr_accessor dataset_id: ::String
3022
+ attr_accessor dataset_version: ::String
3023
+ attr_accessor max_results: ::Integer
3024
+ attr_accessor next_token: ::String
3025
+ SENSITIVE: []
3026
+ end
3027
+
3028
+ class ListDatasetExamplesResponse
3029
+ attr_accessor dataset_arn: ::String
3030
+ attr_accessor dataset_id: ::String
3031
+ attr_accessor dataset_version: ::String
3032
+ attr_accessor examples: ::Array[untyped]
3033
+ attr_accessor next_token: ::String
3034
+ SENSITIVE: []
3035
+ end
3036
+
3037
+ class ListDatasetVersionsRequest
3038
+ attr_accessor dataset_id: ::String
3039
+ attr_accessor next_token: ::String
3040
+ attr_accessor max_results: ::Integer
3041
+ SENSITIVE: []
3042
+ end
3043
+
3044
+ class ListDatasetVersionsResponse
3045
+ attr_accessor versions: ::Array[Types::DatasetVersionSummary]
3046
+ attr_accessor next_token: ::String
3047
+ SENSITIVE: []
3048
+ end
3049
+
3050
+ class ListDatasetsRequest
3051
+ attr_accessor next_token: ::String
3052
+ attr_accessor max_results: ::Integer
3053
+ SENSITIVE: []
3054
+ end
3055
+
3056
+ class ListDatasetsResponse
3057
+ attr_accessor datasets: ::Array[Types::DatasetSummary]
3058
+ attr_accessor next_token: ::String
3059
+ SENSITIVE: []
3060
+ end
3061
+
2872
3062
  class ListEvaluatorsRequest
2873
3063
  attr_accessor next_token: ::String
2874
3064
  attr_accessor max_results: ::Integer
@@ -4001,6 +4191,11 @@ module Aws::BedrockAgentCoreControl
4001
4191
  SENSITIVE: []
4002
4192
  end
4003
4193
 
4194
+ class S3Source
4195
+ attr_accessor s3_uri: ::String
4196
+ SENSITIVE: []
4197
+ end
4198
+
4004
4199
  class SalesforceOauth2ProviderConfigInput
4005
4200
  attr_accessor client_id: ::String
4006
4201
  attr_accessor client_secret: ::String
@@ -4572,6 +4767,36 @@ module Aws::BedrockAgentCoreControl
4572
4767
  SENSITIVE: []
4573
4768
  end
4574
4769
 
4770
+ class UpdateDatasetExamplesRequest
4771
+ attr_accessor dataset_id: ::String
4772
+ attr_accessor client_token: ::String
4773
+ attr_accessor examples: ::Array[untyped]
4774
+ SENSITIVE: []
4775
+ end
4776
+
4777
+ class UpdateDatasetExamplesResponse
4778
+ attr_accessor dataset_arn: ::String
4779
+ attr_accessor dataset_id: ::String
4780
+ attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
4781
+ attr_accessor updated_count: ::Integer
4782
+ attr_accessor updated_at: ::Time
4783
+ SENSITIVE: []
4784
+ end
4785
+
4786
+ class UpdateDatasetRequest
4787
+ attr_accessor dataset_id: ::String
4788
+ attr_accessor client_token: ::String
4789
+ attr_accessor description: ::String
4790
+ SENSITIVE: []
4791
+ end
4792
+
4793
+ class UpdateDatasetResponse
4794
+ attr_accessor dataset_arn: ::String
4795
+ attr_accessor dataset_id: ::String
4796
+ attr_accessor updated_at: ::Time
4797
+ SENSITIVE: []
4798
+ end
4799
+
4575
4800
  class UpdateEvaluatorRequest
4576
4801
  attr_accessor client_token: ::String
4577
4802
  attr_accessor evaluator_id: ::String
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.47.0
4
+ version: 1.48.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.247.0
21
+ version: 3.248.0
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.247.0
31
+ version: 3.248.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement