aws-sdk-bedrockagentcorecontrol 1.46.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.
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.46.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
@@ -68,6 +68,7 @@ files:
68
68
  - lib/aws-sdk-bedrockagentcorecontrol/waiters.rb
69
69
  - sig/client.rbs
70
70
  - sig/errors.rbs
71
+ - sig/params.rbs
71
72
  - sig/resource.rbs
72
73
  - sig/types.rbs
73
74
  - sig/waiters.rbs