aws-sdk-bedrockdataautomation 1.4.0 → 1.5.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: 52a24ec5079c5cc5a6550ac2e21ecc79f54d3178265bada96987b3a4209800d1
4
- data.tar.gz: b905a0784cd802d9463562281a4d1c3204d0de836935e30e6ce39d3b5dc7a0a5
3
+ metadata.gz: 347d52448f25a8321130d68f4c7a052e4c0f64cd9f111dfa57c1f42c51d96274
4
+ data.tar.gz: d46f09cef132b44afe7575a950f76f2d37c0ae7e7fc681e57735163db536a788
5
5
  SHA512:
6
- metadata.gz: f4063aa042d77663e5f6f1ab78125c42e9c64dd439a15ed1bf4f26942d0fde80ec0f5a8f3e1b0234822730364f3a18b4f1ba642f289c36f13755bc771cbd96b7
7
- data.tar.gz: 2cdf0297c257713e35aedc4150e37b6bd03cf7b33c6947b9dad9739b1585d7bf65a5168259a169abb5898da65da979058abe64bc4429cb49a5763f2e730eccc3
6
+ metadata.gz: da07591c59ac3e2f4f1f7dd2110e61b3ed9e2bcef63f1a4ae3bfd79c11a5863e463b2aaa29c9cde2bac52e4260ad1ff2f26aa65d2f9eade903b136bedbc65c5f
7
+ data.tar.gz: 5df84116cfaf80ad8abbfaebdf0ebdf2f7041a99897c2df058c98f65b1773221c44ad89e251538e2ac10d18d0f7d75fd1c8516a0d4420a468247c17f7146a8ee
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.5.0 (2025-02-28)
5
+ ------------------
6
+
7
+ * Feature - Renamed and added new StandardConfiguration enums. Added support to update EncryptionConfiguration in UpdateBlueprint and UpdateDataAutomation APIs. Changed HttpStatus code for DeleteBlueprint and DeleteDataAutomationProject APIs to 200 from 204. Added APIs to support tagging.
8
+
4
9
  1.4.0 (2025-02-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.4.0
1
+ 1.5.0
@@ -493,6 +493,9 @@ module Aws::BedrockDataAutomation
493
493
  # @option params [Types::EncryptionConfiguration] :encryption_configuration
494
494
  # KMS Encryption Configuration
495
495
  #
496
+ # @option params [Array<Types::Tag>] :tags
497
+ # List of tags
498
+ #
496
499
  # @return [Types::CreateBlueprintResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
497
500
  #
498
501
  # * {Types::CreateBlueprintResponse#blueprint #blueprint} => Types::Blueprint
@@ -508,9 +511,15 @@ module Aws::BedrockDataAutomation
508
511
  # encryption_configuration: {
509
512
  # kms_key_id: "KmsKeyId", # required
510
513
  # kms_encryption_context: {
511
- # "String" => "String",
514
+ # "EncryptionContextKey" => "EncryptionContextValue",
512
515
  # },
513
516
  # },
517
+ # tags: [
518
+ # {
519
+ # key: "TagKey", # required
520
+ # value: "TagValue", # required
521
+ # },
522
+ # ],
514
523
  # })
515
524
  #
516
525
  # @example Response structure
@@ -525,7 +534,7 @@ module Aws::BedrockDataAutomation
525
534
  # resp.blueprint.blueprint_stage #=> String, one of "DEVELOPMENT", "LIVE"
526
535
  # resp.blueprint.kms_key_id #=> String
527
536
  # resp.blueprint.kms_encryption_context #=> Hash
528
- # resp.blueprint.kms_encryption_context["String"] #=> String
537
+ # resp.blueprint.kms_encryption_context["EncryptionContextKey"] #=> String
529
538
  #
530
539
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-data-automation-2023-07-26/CreateBlueprint AWS API Documentation
531
540
  #
@@ -571,7 +580,7 @@ module Aws::BedrockDataAutomation
571
580
  # resp.blueprint.blueprint_stage #=> String, one of "DEVELOPMENT", "LIVE"
572
581
  # resp.blueprint.kms_key_id #=> String
573
582
  # resp.blueprint.kms_encryption_context #=> Hash
574
- # resp.blueprint.kms_encryption_context["String"] #=> String
583
+ # resp.blueprint.kms_encryption_context["EncryptionContextKey"] #=> String
575
584
  #
576
585
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-data-automation-2023-07-26/CreateBlueprintVersion AWS API Documentation
577
586
  #
@@ -611,6 +620,9 @@ module Aws::BedrockDataAutomation
611
620
  # @option params [Types::EncryptionConfiguration] :encryption_configuration
612
621
  # KMS Encryption Configuration
613
622
  #
623
+ # @option params [Array<Types::Tag>] :tags
624
+ # List of tags
625
+ #
614
626
  # @return [Types::CreateDataAutomationProjectResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
615
627
  #
616
628
  # * {Types::CreateDataAutomationProjectResponse#project_arn #project_arn} => String
@@ -649,7 +661,7 @@ module Aws::BedrockDataAutomation
649
661
  # extraction: {
650
662
  # category: { # required
651
663
  # state: "ENABLED", # required, accepts ENABLED, DISABLED
652
- # types: ["CONTENT_MODERATION"], # accepts CONTENT_MODERATION, TEXT_DETECTION
664
+ # types: ["CONTENT_MODERATION"], # accepts CONTENT_MODERATION, TEXT_DETECTION, LOGOS
653
665
  # },
654
666
  # bounding_box: { # required
655
667
  # state: "ENABLED", # required, accepts ENABLED, DISABLED
@@ -664,7 +676,7 @@ module Aws::BedrockDataAutomation
664
676
  # extraction: {
665
677
  # category: { # required
666
678
  # state: "ENABLED", # required, accepts ENABLED, DISABLED
667
- # types: ["CONTENT_MODERATION"], # accepts CONTENT_MODERATION, TEXT_DETECTION, TRANSCRIPT
679
+ # types: ["CONTENT_MODERATION"], # accepts CONTENT_MODERATION, TEXT_DETECTION, TRANSCRIPT, LOGOS
668
680
  # },
669
681
  # bounding_box: { # required
670
682
  # state: "ENABLED", # required, accepts ENABLED, DISABLED
@@ -672,19 +684,19 @@ module Aws::BedrockDataAutomation
672
684
  # },
673
685
  # generative_field: {
674
686
  # state: "ENABLED", # required, accepts ENABLED, DISABLED
675
- # types: ["VIDEO_SUMMARY"], # accepts VIDEO_SUMMARY, SCENE_SUMMARY, IAB
687
+ # types: ["VIDEO_SUMMARY"], # accepts VIDEO_SUMMARY, IAB, CHAPTER_SUMMARY
676
688
  # },
677
689
  # },
678
690
  # audio: {
679
691
  # extraction: {
680
692
  # category: { # required
681
693
  # state: "ENABLED", # required, accepts ENABLED, DISABLED
682
- # types: ["AUDIO_CONTENT_MODERATION"], # accepts AUDIO_CONTENT_MODERATION, CHAPTER_CONTENT_MODERATION, TRANSCRIPT
694
+ # types: ["AUDIO_CONTENT_MODERATION"], # accepts AUDIO_CONTENT_MODERATION, TRANSCRIPT, TOPIC_CONTENT_MODERATION
683
695
  # },
684
696
  # },
685
697
  # generative_field: {
686
698
  # state: "ENABLED", # required, accepts ENABLED, DISABLED
687
- # types: ["AUDIO_SUMMARY"], # accepts AUDIO_SUMMARY, CHAPTER_SUMMARY, IAB
699
+ # types: ["AUDIO_SUMMARY"], # accepts AUDIO_SUMMARY, IAB, TOPIC_SUMMARY
688
700
  # },
689
701
  # },
690
702
  # },
@@ -708,9 +720,15 @@ module Aws::BedrockDataAutomation
708
720
  # encryption_configuration: {
709
721
  # kms_key_id: "KmsKeyId", # required
710
722
  # kms_encryption_context: {
711
- # "String" => "String",
723
+ # "EncryptionContextKey" => "EncryptionContextValue",
712
724
  # },
713
725
  # },
726
+ # tags: [
727
+ # {
728
+ # key: "TagKey", # required
729
+ # value: "TagValue", # required
730
+ # },
731
+ # ],
714
732
  # })
715
733
  #
716
734
  # @example Response structure
@@ -820,7 +838,7 @@ module Aws::BedrockDataAutomation
820
838
  # resp.blueprint.blueprint_stage #=> String, one of "DEVELOPMENT", "LIVE"
821
839
  # resp.blueprint.kms_key_id #=> String
822
840
  # resp.blueprint.kms_encryption_context #=> Hash
823
- # resp.blueprint.kms_encryption_context["String"] #=> String
841
+ # resp.blueprint.kms_encryption_context["EncryptionContextKey"] #=> String
824
842
  #
825
843
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-data-automation-2023-07-26/GetBlueprint AWS API Documentation
826
844
  #
@@ -868,24 +886,24 @@ module Aws::BedrockDataAutomation
868
886
  # resp.project.standard_output_configuration.document.output_format.additional_file_format.state #=> String, one of "ENABLED", "DISABLED"
869
887
  # resp.project.standard_output_configuration.image.extraction.category.state #=> String, one of "ENABLED", "DISABLED"
870
888
  # resp.project.standard_output_configuration.image.extraction.category.types #=> Array
871
- # resp.project.standard_output_configuration.image.extraction.category.types[0] #=> String, one of "CONTENT_MODERATION", "TEXT_DETECTION"
889
+ # resp.project.standard_output_configuration.image.extraction.category.types[0] #=> String, one of "CONTENT_MODERATION", "TEXT_DETECTION", "LOGOS"
872
890
  # resp.project.standard_output_configuration.image.extraction.bounding_box.state #=> String, one of "ENABLED", "DISABLED"
873
891
  # resp.project.standard_output_configuration.image.generative_field.state #=> String, one of "ENABLED", "DISABLED"
874
892
  # resp.project.standard_output_configuration.image.generative_field.types #=> Array
875
893
  # resp.project.standard_output_configuration.image.generative_field.types[0] #=> String, one of "IMAGE_SUMMARY", "IAB"
876
894
  # resp.project.standard_output_configuration.video.extraction.category.state #=> String, one of "ENABLED", "DISABLED"
877
895
  # resp.project.standard_output_configuration.video.extraction.category.types #=> Array
878
- # resp.project.standard_output_configuration.video.extraction.category.types[0] #=> String, one of "CONTENT_MODERATION", "TEXT_DETECTION", "TRANSCRIPT"
896
+ # resp.project.standard_output_configuration.video.extraction.category.types[0] #=> String, one of "CONTENT_MODERATION", "TEXT_DETECTION", "TRANSCRIPT", "LOGOS"
879
897
  # resp.project.standard_output_configuration.video.extraction.bounding_box.state #=> String, one of "ENABLED", "DISABLED"
880
898
  # resp.project.standard_output_configuration.video.generative_field.state #=> String, one of "ENABLED", "DISABLED"
881
899
  # resp.project.standard_output_configuration.video.generative_field.types #=> Array
882
- # resp.project.standard_output_configuration.video.generative_field.types[0] #=> String, one of "VIDEO_SUMMARY", "SCENE_SUMMARY", "IAB"
900
+ # resp.project.standard_output_configuration.video.generative_field.types[0] #=> String, one of "VIDEO_SUMMARY", "IAB", "CHAPTER_SUMMARY"
883
901
  # resp.project.standard_output_configuration.audio.extraction.category.state #=> String, one of "ENABLED", "DISABLED"
884
902
  # resp.project.standard_output_configuration.audio.extraction.category.types #=> Array
885
- # resp.project.standard_output_configuration.audio.extraction.category.types[0] #=> String, one of "AUDIO_CONTENT_MODERATION", "CHAPTER_CONTENT_MODERATION", "TRANSCRIPT"
903
+ # resp.project.standard_output_configuration.audio.extraction.category.types[0] #=> String, one of "AUDIO_CONTENT_MODERATION", "TRANSCRIPT", "TOPIC_CONTENT_MODERATION"
886
904
  # resp.project.standard_output_configuration.audio.generative_field.state #=> String, one of "ENABLED", "DISABLED"
887
905
  # resp.project.standard_output_configuration.audio.generative_field.types #=> Array
888
- # resp.project.standard_output_configuration.audio.generative_field.types[0] #=> String, one of "AUDIO_SUMMARY", "CHAPTER_SUMMARY", "IAB"
906
+ # resp.project.standard_output_configuration.audio.generative_field.types[0] #=> String, one of "AUDIO_SUMMARY", "IAB", "TOPIC_SUMMARY"
889
907
  # resp.project.custom_output_configuration.blueprints #=> Array
890
908
  # resp.project.custom_output_configuration.blueprints[0].blueprint_arn #=> String
891
909
  # resp.project.custom_output_configuration.blueprints[0].blueprint_version #=> String
@@ -894,7 +912,7 @@ module Aws::BedrockDataAutomation
894
912
  # resp.project.status #=> String, one of "COMPLETED", "IN_PROGRESS", "FAILED"
895
913
  # resp.project.kms_key_id #=> String
896
914
  # resp.project.kms_encryption_context #=> Hash
897
- # resp.project.kms_encryption_context["String"] #=> String
915
+ # resp.project.kms_encryption_context["EncryptionContextKey"] #=> String
898
916
  #
899
917
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-data-automation-2023-07-26/GetDataAutomationProject AWS API Documentation
900
918
  #
@@ -1022,6 +1040,93 @@ module Aws::BedrockDataAutomation
1022
1040
  req.send_request(options)
1023
1041
  end
1024
1042
 
1043
+ # List tags for an Amazon Bedrock Data Automation resource
1044
+ #
1045
+ # @option params [required, String] :resource_arn
1046
+ # ARN of a taggable resource
1047
+ #
1048
+ # @return [Types::ListTagsForResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1049
+ #
1050
+ # * {Types::ListTagsForResourceResponse#tags #tags} => Array&lt;Types::Tag&gt;
1051
+ #
1052
+ # @example Request syntax with placeholder values
1053
+ #
1054
+ # resp = client.list_tags_for_resource({
1055
+ # resource_arn: "TaggableResourceArn", # required
1056
+ # })
1057
+ #
1058
+ # @example Response structure
1059
+ #
1060
+ # resp.tags #=> Array
1061
+ # resp.tags[0].key #=> String
1062
+ # resp.tags[0].value #=> String
1063
+ #
1064
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-data-automation-2023-07-26/ListTagsForResource AWS API Documentation
1065
+ #
1066
+ # @overload list_tags_for_resource(params = {})
1067
+ # @param [Hash] params ({})
1068
+ def list_tags_for_resource(params = {}, options = {})
1069
+ req = build_request(:list_tags_for_resource, params)
1070
+ req.send_request(options)
1071
+ end
1072
+
1073
+ # Tag an Amazon Bedrock Data Automation resource
1074
+ #
1075
+ # @option params [required, String] :resource_arn
1076
+ # ARN of a taggable resource
1077
+ #
1078
+ # @option params [required, Array<Types::Tag>] :tags
1079
+ # List of tags
1080
+ #
1081
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1082
+ #
1083
+ # @example Request syntax with placeholder values
1084
+ #
1085
+ # resp = client.tag_resource({
1086
+ # resource_arn: "TaggableResourceArn", # required
1087
+ # tags: [ # required
1088
+ # {
1089
+ # key: "TagKey", # required
1090
+ # value: "TagValue", # required
1091
+ # },
1092
+ # ],
1093
+ # })
1094
+ #
1095
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-data-automation-2023-07-26/TagResource AWS API Documentation
1096
+ #
1097
+ # @overload tag_resource(params = {})
1098
+ # @param [Hash] params ({})
1099
+ def tag_resource(params = {}, options = {})
1100
+ req = build_request(:tag_resource, params)
1101
+ req.send_request(options)
1102
+ end
1103
+
1104
+ # Untag an Amazon Bedrock Data Automation resource
1105
+ #
1106
+ # @option params [required, String] :resource_arn
1107
+ # ARN of a taggable resource
1108
+ #
1109
+ # @option params [required, Array<String>] :tag_keys
1110
+ # List of tag keys
1111
+ #
1112
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1113
+ #
1114
+ # @example Request syntax with placeholder values
1115
+ #
1116
+ # resp = client.untag_resource({
1117
+ # resource_arn: "TaggableResourceArn", # required
1118
+ # tag_keys: ["TagKey"], # required
1119
+ # })
1120
+ #
1121
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-data-automation-2023-07-26/UntagResource AWS API Documentation
1122
+ #
1123
+ # @overload untag_resource(params = {})
1124
+ # @param [Hash] params ({})
1125
+ def untag_resource(params = {}, options = {})
1126
+ req = build_request(:untag_resource, params)
1127
+ req.send_request(options)
1128
+ end
1129
+
1025
1130
  # Updates an existing Amazon Bedrock Data Automation Blueprint
1026
1131
  #
1027
1132
  # @option params [required, String] :blueprint_arn
@@ -1033,6 +1138,9 @@ module Aws::BedrockDataAutomation
1033
1138
  # @option params [String] :blueprint_stage
1034
1139
  # Stage of the Blueprint
1035
1140
  #
1141
+ # @option params [Types::EncryptionConfiguration] :encryption_configuration
1142
+ # KMS Encryption Configuration
1143
+ #
1036
1144
  # @return [Types::UpdateBlueprintResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1037
1145
  #
1038
1146
  # * {Types::UpdateBlueprintResponse#blueprint #blueprint} => Types::Blueprint
@@ -1043,6 +1151,12 @@ module Aws::BedrockDataAutomation
1043
1151
  # blueprint_arn: "BlueprintArn", # required
1044
1152
  # schema: "BlueprintSchema", # required
1045
1153
  # blueprint_stage: "DEVELOPMENT", # accepts DEVELOPMENT, LIVE
1154
+ # encryption_configuration: {
1155
+ # kms_key_id: "KmsKeyId", # required
1156
+ # kms_encryption_context: {
1157
+ # "EncryptionContextKey" => "EncryptionContextValue",
1158
+ # },
1159
+ # },
1046
1160
  # })
1047
1161
  #
1048
1162
  # @example Response structure
@@ -1057,7 +1171,7 @@ module Aws::BedrockDataAutomation
1057
1171
  # resp.blueprint.blueprint_stage #=> String, one of "DEVELOPMENT", "LIVE"
1058
1172
  # resp.blueprint.kms_key_id #=> String
1059
1173
  # resp.blueprint.kms_encryption_context #=> Hash
1060
- # resp.blueprint.kms_encryption_context["String"] #=> String
1174
+ # resp.blueprint.kms_encryption_context["EncryptionContextKey"] #=> String
1061
1175
  #
1062
1176
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-data-automation-2023-07-26/UpdateBlueprint AWS API Documentation
1063
1177
  #
@@ -1089,6 +1203,9 @@ module Aws::BedrockDataAutomation
1089
1203
  # @option params [Types::OverrideConfiguration] :override_configuration
1090
1204
  # Override configuration
1091
1205
  #
1206
+ # @option params [Types::EncryptionConfiguration] :encryption_configuration
1207
+ # KMS Encryption Configuration
1208
+ #
1092
1209
  # @return [Types::UpdateDataAutomationProjectResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1093
1210
  #
1094
1211
  # * {Types::UpdateDataAutomationProjectResponse#project_arn #project_arn} => String
@@ -1127,7 +1244,7 @@ module Aws::BedrockDataAutomation
1127
1244
  # extraction: {
1128
1245
  # category: { # required
1129
1246
  # state: "ENABLED", # required, accepts ENABLED, DISABLED
1130
- # types: ["CONTENT_MODERATION"], # accepts CONTENT_MODERATION, TEXT_DETECTION
1247
+ # types: ["CONTENT_MODERATION"], # accepts CONTENT_MODERATION, TEXT_DETECTION, LOGOS
1131
1248
  # },
1132
1249
  # bounding_box: { # required
1133
1250
  # state: "ENABLED", # required, accepts ENABLED, DISABLED
@@ -1142,7 +1259,7 @@ module Aws::BedrockDataAutomation
1142
1259
  # extraction: {
1143
1260
  # category: { # required
1144
1261
  # state: "ENABLED", # required, accepts ENABLED, DISABLED
1145
- # types: ["CONTENT_MODERATION"], # accepts CONTENT_MODERATION, TEXT_DETECTION, TRANSCRIPT
1262
+ # types: ["CONTENT_MODERATION"], # accepts CONTENT_MODERATION, TEXT_DETECTION, TRANSCRIPT, LOGOS
1146
1263
  # },
1147
1264
  # bounding_box: { # required
1148
1265
  # state: "ENABLED", # required, accepts ENABLED, DISABLED
@@ -1150,19 +1267,19 @@ module Aws::BedrockDataAutomation
1150
1267
  # },
1151
1268
  # generative_field: {
1152
1269
  # state: "ENABLED", # required, accepts ENABLED, DISABLED
1153
- # types: ["VIDEO_SUMMARY"], # accepts VIDEO_SUMMARY, SCENE_SUMMARY, IAB
1270
+ # types: ["VIDEO_SUMMARY"], # accepts VIDEO_SUMMARY, IAB, CHAPTER_SUMMARY
1154
1271
  # },
1155
1272
  # },
1156
1273
  # audio: {
1157
1274
  # extraction: {
1158
1275
  # category: { # required
1159
1276
  # state: "ENABLED", # required, accepts ENABLED, DISABLED
1160
- # types: ["AUDIO_CONTENT_MODERATION"], # accepts AUDIO_CONTENT_MODERATION, CHAPTER_CONTENT_MODERATION, TRANSCRIPT
1277
+ # types: ["AUDIO_CONTENT_MODERATION"], # accepts AUDIO_CONTENT_MODERATION, TRANSCRIPT, TOPIC_CONTENT_MODERATION
1161
1278
  # },
1162
1279
  # },
1163
1280
  # generative_field: {
1164
1281
  # state: "ENABLED", # required, accepts ENABLED, DISABLED
1165
- # types: ["AUDIO_SUMMARY"], # accepts AUDIO_SUMMARY, CHAPTER_SUMMARY, IAB
1282
+ # types: ["AUDIO_SUMMARY"], # accepts AUDIO_SUMMARY, IAB, TOPIC_SUMMARY
1166
1283
  # },
1167
1284
  # },
1168
1285
  # },
@@ -1182,6 +1299,12 @@ module Aws::BedrockDataAutomation
1182
1299
  # },
1183
1300
  # },
1184
1301
  # },
1302
+ # encryption_configuration: {
1303
+ # kms_key_id: "KmsKeyId", # required
1304
+ # kms_encryption_context: {
1305
+ # "EncryptionContextKey" => "EncryptionContextValue",
1306
+ # },
1307
+ # },
1185
1308
  # })
1186
1309
  #
1187
1310
  # @example Response structure
@@ -1217,7 +1340,7 @@ module Aws::BedrockDataAutomation
1217
1340
  tracer: tracer
1218
1341
  )
1219
1342
  context[:gem_name] = 'aws-sdk-bedrockdataautomation'
1220
- context[:gem_version] = '1.4.0'
1343
+ context[:gem_version] = '1.5.0'
1221
1344
  Seahorse::Client::Request.new(handlers, context)
1222
1345
  end
1223
1346
 
@@ -73,6 +73,8 @@ module Aws::BedrockDataAutomation
73
73
  DocumentStandardGenerativeField = Shapes::StructureShape.new(name: 'DocumentStandardGenerativeField')
74
74
  DocumentStandardOutputConfiguration = Shapes::StructureShape.new(name: 'DocumentStandardOutputConfiguration')
75
75
  EncryptionConfiguration = Shapes::StructureShape.new(name: 'EncryptionConfiguration')
76
+ EncryptionContextKey = Shapes::StringShape.new(name: 'EncryptionContextKey')
77
+ EncryptionContextValue = Shapes::StringShape.new(name: 'EncryptionContextValue')
76
78
  GetBlueprintRequest = Shapes::StructureShape.new(name: 'GetBlueprintRequest')
77
79
  GetBlueprintResponse = Shapes::StructureShape.new(name: 'GetBlueprintResponse')
78
80
  GetDataAutomationProjectRequest = Shapes::StructureShape.new(name: 'GetDataAutomationProjectRequest')
@@ -93,6 +95,8 @@ module Aws::BedrockDataAutomation
93
95
  ListBlueprintsResponse = Shapes::StructureShape.new(name: 'ListBlueprintsResponse')
94
96
  ListDataAutomationProjectsRequest = Shapes::StructureShape.new(name: 'ListDataAutomationProjectsRequest')
95
97
  ListDataAutomationProjectsResponse = Shapes::StructureShape.new(name: 'ListDataAutomationProjectsResponse')
98
+ ListTagsForResourceRequest = Shapes::StructureShape.new(name: 'ListTagsForResourceRequest')
99
+ ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
96
100
  MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
97
101
  NextToken = Shapes::StringShape.new(name: 'NextToken')
98
102
  NonBlankString = Shapes::StringShape.new(name: 'NonBlankString')
@@ -103,9 +107,18 @@ module Aws::BedrockDataAutomation
103
107
  SplitterConfiguration = Shapes::StructureShape.new(name: 'SplitterConfiguration')
104
108
  StandardOutputConfiguration = Shapes::StructureShape.new(name: 'StandardOutputConfiguration')
105
109
  State = Shapes::StringShape.new(name: 'State')
106
- String = Shapes::StringShape.new(name: 'String')
110
+ Tag = Shapes::StructureShape.new(name: 'Tag')
111
+ TagKey = Shapes::StringShape.new(name: 'TagKey')
112
+ TagKeyList = Shapes::ListShape.new(name: 'TagKeyList')
113
+ TagList = Shapes::ListShape.new(name: 'TagList')
114
+ TagResourceRequest = Shapes::StructureShape.new(name: 'TagResourceRequest')
115
+ TagResourceResponse = Shapes::StructureShape.new(name: 'TagResourceResponse')
116
+ TagValue = Shapes::StringShape.new(name: 'TagValue')
117
+ TaggableResourceArn = Shapes::StringShape.new(name: 'TaggableResourceArn')
107
118
  ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
108
119
  Type = Shapes::StringShape.new(name: 'Type')
120
+ UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
121
+ UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
109
122
  UpdateBlueprintRequest = Shapes::StructureShape.new(name: 'UpdateBlueprintRequest')
110
123
  UpdateBlueprintResponse = Shapes::StructureShape.new(name: 'UpdateBlueprintResponse')
111
124
  UpdateDataAutomationProjectRequest = Shapes::StructureShape.new(name: 'UpdateDataAutomationProjectRequest')
@@ -188,6 +201,7 @@ module Aws::BedrockDataAutomation
188
201
  CreateBlueprintRequest.add_member(:schema, Shapes::ShapeRef.new(shape: BlueprintSchema, required: true, location_name: "schema"))
189
202
  CreateBlueprintRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
190
203
  CreateBlueprintRequest.add_member(:encryption_configuration, Shapes::ShapeRef.new(shape: EncryptionConfiguration, location_name: "encryptionConfiguration"))
204
+ CreateBlueprintRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
191
205
  CreateBlueprintRequest.struct_class = Types::CreateBlueprintRequest
192
206
 
193
207
  CreateBlueprintResponse.add_member(:blueprint, Shapes::ShapeRef.new(shape: Blueprint, required: true, location_name: "blueprint"))
@@ -208,6 +222,7 @@ module Aws::BedrockDataAutomation
208
222
  CreateDataAutomationProjectRequest.add_member(:override_configuration, Shapes::ShapeRef.new(shape: OverrideConfiguration, location_name: "overrideConfiguration"))
209
223
  CreateDataAutomationProjectRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
210
224
  CreateDataAutomationProjectRequest.add_member(:encryption_configuration, Shapes::ShapeRef.new(shape: EncryptionConfiguration, location_name: "encryptionConfiguration"))
225
+ CreateDataAutomationProjectRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
211
226
  CreateDataAutomationProjectRequest.struct_class = Types::CreateDataAutomationProjectRequest
212
227
 
213
228
  CreateDataAutomationProjectResponse.add_member(:project_arn, Shapes::ShapeRef.new(shape: DataAutomationProjectArn, required: true, location_name: "projectArn"))
@@ -337,8 +352,8 @@ module Aws::BedrockDataAutomation
337
352
  InternalServerException.add_member(:message, Shapes::ShapeRef.new(shape: NonBlankString, location_name: "message"))
338
353
  InternalServerException.struct_class = Types::InternalServerException
339
354
 
340
- KmsEncryptionContext.key = Shapes::ShapeRef.new(shape: String)
341
- KmsEncryptionContext.value = Shapes::ShapeRef.new(shape: String)
355
+ KmsEncryptionContext.key = Shapes::ShapeRef.new(shape: EncryptionContextKey)
356
+ KmsEncryptionContext.value = Shapes::ShapeRef.new(shape: EncryptionContextValue)
342
357
 
343
358
  ListBlueprintsRequest.add_member(:blueprint_arn, Shapes::ShapeRef.new(shape: BlueprintArn, location_name: "blueprintArn"))
344
359
  ListBlueprintsRequest.add_member(:resource_owner, Shapes::ShapeRef.new(shape: ResourceOwner, location_name: "resourceOwner"))
@@ -363,6 +378,12 @@ module Aws::BedrockDataAutomation
363
378
  ListDataAutomationProjectsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
364
379
  ListDataAutomationProjectsResponse.struct_class = Types::ListDataAutomationProjectsResponse
365
380
 
381
+ ListTagsForResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: TaggableResourceArn, required: true, location_name: "resourceARN"))
382
+ ListTagsForResourceRequest.struct_class = Types::ListTagsForResourceRequest
383
+
384
+ ListTagsForResourceResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
385
+ ListTagsForResourceResponse.struct_class = Types::ListTagsForResourceResponse
386
+
366
387
  OverrideConfiguration.add_member(:document, Shapes::ShapeRef.new(shape: DocumentOverrideConfiguration, location_name: "document"))
367
388
  OverrideConfiguration.struct_class = Types::OverrideConfiguration
368
389
 
@@ -381,12 +402,33 @@ module Aws::BedrockDataAutomation
381
402
  StandardOutputConfiguration.add_member(:audio, Shapes::ShapeRef.new(shape: AudioStandardOutputConfiguration, location_name: "audio"))
382
403
  StandardOutputConfiguration.struct_class = Types::StandardOutputConfiguration
383
404
 
405
+ Tag.add_member(:key, Shapes::ShapeRef.new(shape: TagKey, required: true, location_name: "key"))
406
+ Tag.add_member(:value, Shapes::ShapeRef.new(shape: TagValue, required: true, location_name: "value"))
407
+ Tag.struct_class = Types::Tag
408
+
409
+ TagKeyList.member = Shapes::ShapeRef.new(shape: TagKey)
410
+
411
+ TagList.member = Shapes::ShapeRef.new(shape: Tag)
412
+
413
+ TagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: TaggableResourceArn, required: true, location_name: "resourceARN"))
414
+ TagResourceRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, required: true, location_name: "tags"))
415
+ TagResourceRequest.struct_class = Types::TagResourceRequest
416
+
417
+ TagResourceResponse.struct_class = Types::TagResourceResponse
418
+
384
419
  ThrottlingException.add_member(:message, Shapes::ShapeRef.new(shape: NonBlankString, location_name: "message"))
385
420
  ThrottlingException.struct_class = Types::ThrottlingException
386
421
 
422
+ UntagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: TaggableResourceArn, required: true, location_name: "resourceARN"))
423
+ UntagResourceRequest.add_member(:tag_keys, Shapes::ShapeRef.new(shape: TagKeyList, required: true, location_name: "tagKeys"))
424
+ UntagResourceRequest.struct_class = Types::UntagResourceRequest
425
+
426
+ UntagResourceResponse.struct_class = Types::UntagResourceResponse
427
+
387
428
  UpdateBlueprintRequest.add_member(:blueprint_arn, Shapes::ShapeRef.new(shape: BlueprintArn, required: true, location: "uri", location_name: "blueprintArn"))
388
429
  UpdateBlueprintRequest.add_member(:schema, Shapes::ShapeRef.new(shape: BlueprintSchema, required: true, location_name: "schema"))
389
430
  UpdateBlueprintRequest.add_member(:blueprint_stage, Shapes::ShapeRef.new(shape: BlueprintStage, location_name: "blueprintStage"))
431
+ UpdateBlueprintRequest.add_member(:encryption_configuration, Shapes::ShapeRef.new(shape: EncryptionConfiguration, location_name: "encryptionConfiguration"))
390
432
  UpdateBlueprintRequest.struct_class = Types::UpdateBlueprintRequest
391
433
 
392
434
  UpdateBlueprintResponse.add_member(:blueprint, Shapes::ShapeRef.new(shape: Blueprint, required: true, location_name: "blueprint"))
@@ -398,6 +440,7 @@ module Aws::BedrockDataAutomation
398
440
  UpdateDataAutomationProjectRequest.add_member(:standard_output_configuration, Shapes::ShapeRef.new(shape: StandardOutputConfiguration, required: true, location_name: "standardOutputConfiguration"))
399
441
  UpdateDataAutomationProjectRequest.add_member(:custom_output_configuration, Shapes::ShapeRef.new(shape: CustomOutputConfiguration, location_name: "customOutputConfiguration"))
400
442
  UpdateDataAutomationProjectRequest.add_member(:override_configuration, Shapes::ShapeRef.new(shape: OverrideConfiguration, location_name: "overrideConfiguration"))
443
+ UpdateDataAutomationProjectRequest.add_member(:encryption_configuration, Shapes::ShapeRef.new(shape: EncryptionConfiguration, location_name: "encryptionConfiguration"))
401
444
  UpdateDataAutomationProjectRequest.struct_class = Types::UpdateDataAutomationProjectRequest
402
445
 
403
446
  UpdateDataAutomationProjectResponse.add_member(:project_arn, Shapes::ShapeRef.new(shape: DataAutomationProjectArn, required: true, location_name: "projectArn"))
@@ -589,6 +632,46 @@ module Aws::BedrockDataAutomation
589
632
  )
590
633
  end)
591
634
 
635
+ api.add_operation(:list_tags_for_resource, Seahorse::Model::Operation.new.tap do |o|
636
+ o.name = "ListTagsForResource"
637
+ o.http_method = "POST"
638
+ o.http_request_uri = "/listTagsForResource"
639
+ o.input = Shapes::ShapeRef.new(shape: ListTagsForResourceRequest)
640
+ o.output = Shapes::ShapeRef.new(shape: ListTagsForResourceResponse)
641
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
642
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
643
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
644
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
645
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
646
+ end)
647
+
648
+ api.add_operation(:tag_resource, Seahorse::Model::Operation.new.tap do |o|
649
+ o.name = "TagResource"
650
+ o.http_method = "POST"
651
+ o.http_request_uri = "/tagResource"
652
+ o.input = Shapes::ShapeRef.new(shape: TagResourceRequest)
653
+ o.output = Shapes::ShapeRef.new(shape: TagResourceResponse)
654
+ o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
655
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
656
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
657
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
658
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
659
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
660
+ end)
661
+
662
+ api.add_operation(:untag_resource, Seahorse::Model::Operation.new.tap do |o|
663
+ o.name = "UntagResource"
664
+ o.http_method = "POST"
665
+ o.http_request_uri = "/untagResource"
666
+ o.input = Shapes::ShapeRef.new(shape: UntagResourceRequest)
667
+ o.output = Shapes::ShapeRef.new(shape: UntagResourceResponse)
668
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
669
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
670
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
671
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
672
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
673
+ end)
674
+
592
675
  api.add_operation(:update_blueprint, Seahorse::Model::Operation.new.tap do |o|
593
676
  o.name = "UpdateBlueprint"
594
677
  o.http_method = "PUT"
@@ -609,6 +692,7 @@ module Aws::BedrockDataAutomation
609
692
  o.http_request_uri = "/data-automation-projects/{projectArn}/"
610
693
  o.input = Shapes::ShapeRef.new(shape: UpdateDataAutomationProjectRequest)
611
694
  o.output = Shapes::ShapeRef.new(shape: UpdateDataAutomationProjectResponse)
695
+ o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
612
696
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
613
697
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
614
698
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
@@ -286,6 +286,10 @@ module Aws::BedrockDataAutomation
286
286
  # KMS Encryption Configuration
287
287
  # @return [Types::EncryptionConfiguration]
288
288
  #
289
+ # @!attribute [rw] tags
290
+ # List of tags
291
+ # @return [Array<Types::Tag>]
292
+ #
289
293
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-data-automation-2023-07-26/CreateBlueprintRequest AWS API Documentation
290
294
  #
291
295
  class CreateBlueprintRequest < Struct.new(
@@ -294,7 +298,8 @@ module Aws::BedrockDataAutomation
294
298
  :blueprint_stage,
295
299
  :schema,
296
300
  :client_token,
297
- :encryption_configuration)
301
+ :encryption_configuration,
302
+ :tags)
298
303
  SENSITIVE = [:blueprint_name, :schema]
299
304
  include Aws::Structure
300
305
  end
@@ -386,6 +391,10 @@ module Aws::BedrockDataAutomation
386
391
  # KMS Encryption Configuration
387
392
  # @return [Types::EncryptionConfiguration]
388
393
  #
394
+ # @!attribute [rw] tags
395
+ # List of tags
396
+ # @return [Array<Types::Tag>]
397
+ #
389
398
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-data-automation-2023-07-26/CreateDataAutomationProjectRequest AWS API Documentation
390
399
  #
391
400
  class CreateDataAutomationProjectRequest < Struct.new(
@@ -396,7 +405,8 @@ module Aws::BedrockDataAutomation
396
405
  :custom_output_configuration,
397
406
  :override_configuration,
398
407
  :client_token,
399
- :encryption_configuration)
408
+ :encryption_configuration,
409
+ :tags)
400
410
  SENSITIVE = [:project_name, :project_description]
401
411
  include Aws::Structure
402
412
  end
@@ -1068,6 +1078,30 @@ module Aws::BedrockDataAutomation
1068
1078
  include Aws::Structure
1069
1079
  end
1070
1080
 
1081
+ # @!attribute [rw] resource_arn
1082
+ # ARN of a taggable resource
1083
+ # @return [String]
1084
+ #
1085
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-data-automation-2023-07-26/ListTagsForResourceRequest AWS API Documentation
1086
+ #
1087
+ class ListTagsForResourceRequest < Struct.new(
1088
+ :resource_arn)
1089
+ SENSITIVE = []
1090
+ include Aws::Structure
1091
+ end
1092
+
1093
+ # @!attribute [rw] tags
1094
+ # List of tags
1095
+ # @return [Array<Types::Tag>]
1096
+ #
1097
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-data-automation-2023-07-26/ListTagsForResourceResponse AWS API Documentation
1098
+ #
1099
+ class ListTagsForResourceResponse < Struct.new(
1100
+ :tags)
1101
+ SENSITIVE = []
1102
+ include Aws::Structure
1103
+ end
1104
+
1071
1105
  # Override configuration
1072
1106
  #
1073
1107
  # @!attribute [rw] document
@@ -1155,6 +1189,47 @@ module Aws::BedrockDataAutomation
1155
1189
  include Aws::Structure
1156
1190
  end
1157
1191
 
1192
+ # Key value pair of a tag
1193
+ #
1194
+ # @!attribute [rw] key
1195
+ # Defines the context of the tag.
1196
+ # @return [String]
1197
+ #
1198
+ # @!attribute [rw] value
1199
+ # Defines the value within the context. e.g. &lt;key=reason,
1200
+ # value=training&gt;.
1201
+ # @return [String]
1202
+ #
1203
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-data-automation-2023-07-26/Tag AWS API Documentation
1204
+ #
1205
+ class Tag < Struct.new(
1206
+ :key,
1207
+ :value)
1208
+ SENSITIVE = []
1209
+ include Aws::Structure
1210
+ end
1211
+
1212
+ # @!attribute [rw] resource_arn
1213
+ # ARN of a taggable resource
1214
+ # @return [String]
1215
+ #
1216
+ # @!attribute [rw] tags
1217
+ # List of tags
1218
+ # @return [Array<Types::Tag>]
1219
+ #
1220
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-data-automation-2023-07-26/TagResourceRequest AWS API Documentation
1221
+ #
1222
+ class TagResourceRequest < Struct.new(
1223
+ :resource_arn,
1224
+ :tags)
1225
+ SENSITIVE = []
1226
+ include Aws::Structure
1227
+ end
1228
+
1229
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-data-automation-2023-07-26/TagResourceResponse AWS API Documentation
1230
+ #
1231
+ class TagResourceResponse < Aws::EmptyStructure; end
1232
+
1158
1233
  # This exception is thrown when the number of requests exceeds the limit
1159
1234
  #
1160
1235
  # @!attribute [rw] message
@@ -1169,6 +1244,27 @@ module Aws::BedrockDataAutomation
1169
1244
  include Aws::Structure
1170
1245
  end
1171
1246
 
1247
+ # @!attribute [rw] resource_arn
1248
+ # ARN of a taggable resource
1249
+ # @return [String]
1250
+ #
1251
+ # @!attribute [rw] tag_keys
1252
+ # List of tag keys
1253
+ # @return [Array<String>]
1254
+ #
1255
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-data-automation-2023-07-26/UntagResourceRequest AWS API Documentation
1256
+ #
1257
+ class UntagResourceRequest < Struct.new(
1258
+ :resource_arn,
1259
+ :tag_keys)
1260
+ SENSITIVE = []
1261
+ include Aws::Structure
1262
+ end
1263
+
1264
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-data-automation-2023-07-26/UntagResourceResponse AWS API Documentation
1265
+ #
1266
+ class UntagResourceResponse < Aws::EmptyStructure; end
1267
+
1172
1268
  # Update Blueprint Request
1173
1269
  #
1174
1270
  # @!attribute [rw] blueprint_arn
@@ -1183,12 +1279,17 @@ module Aws::BedrockDataAutomation
1183
1279
  # Stage of the Blueprint
1184
1280
  # @return [String]
1185
1281
  #
1282
+ # @!attribute [rw] encryption_configuration
1283
+ # KMS Encryption Configuration
1284
+ # @return [Types::EncryptionConfiguration]
1285
+ #
1186
1286
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-data-automation-2023-07-26/UpdateBlueprintRequest AWS API Documentation
1187
1287
  #
1188
1288
  class UpdateBlueprintRequest < Struct.new(
1189
1289
  :blueprint_arn,
1190
1290
  :schema,
1191
- :blueprint_stage)
1291
+ :blueprint_stage,
1292
+ :encryption_configuration)
1192
1293
  SENSITIVE = [:schema]
1193
1294
  include Aws::Structure
1194
1295
  end
@@ -1234,6 +1335,10 @@ module Aws::BedrockDataAutomation
1234
1335
  # Override configuration
1235
1336
  # @return [Types::OverrideConfiguration]
1236
1337
  #
1338
+ # @!attribute [rw] encryption_configuration
1339
+ # KMS Encryption Configuration
1340
+ # @return [Types::EncryptionConfiguration]
1341
+ #
1237
1342
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-data-automation-2023-07-26/UpdateDataAutomationProjectRequest AWS API Documentation
1238
1343
  #
1239
1344
  class UpdateDataAutomationProjectRequest < Struct.new(
@@ -1242,7 +1347,8 @@ module Aws::BedrockDataAutomation
1242
1347
  :project_description,
1243
1348
  :standard_output_configuration,
1244
1349
  :custom_output_configuration,
1245
- :override_configuration)
1350
+ :override_configuration,
1351
+ :encryption_configuration)
1246
1352
  SENSITIVE = [:project_description]
1247
1353
  include Aws::Structure
1248
1354
  end
@@ -54,7 +54,7 @@ module Aws::BedrockDataAutomation
54
54
  autoload :EndpointProvider, 'aws-sdk-bedrockdataautomation/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-bedrockdataautomation/endpoints'
56
56
 
57
- GEM_VERSION = '1.4.0'
57
+ GEM_VERSION = '1.5.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -91,7 +91,13 @@ module Aws
91
91
  ?encryption_configuration: {
92
92
  kms_key_id: ::String,
93
93
  kms_encryption_context: Hash[::String, ::String]?
94
- }
94
+ },
95
+ ?tags: Array[
96
+ {
97
+ key: ::String,
98
+ value: ::String
99
+ },
100
+ ]
95
101
  ) -> _CreateBlueprintResponseSuccess
96
102
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateBlueprintResponseSuccess
97
103
 
@@ -143,7 +149,7 @@ module Aws
143
149
  extraction: {
144
150
  category: {
145
151
  state: ("ENABLED" | "DISABLED"),
146
- types: Array[("CONTENT_MODERATION" | "TEXT_DETECTION")]?
152
+ types: Array[("CONTENT_MODERATION" | "TEXT_DETECTION" | "LOGOS")]?
147
153
  },
148
154
  bounding_box: {
149
155
  state: ("ENABLED" | "DISABLED")
@@ -158,7 +164,7 @@ module Aws
158
164
  extraction: {
159
165
  category: {
160
166
  state: ("ENABLED" | "DISABLED"),
161
- types: Array[("CONTENT_MODERATION" | "TEXT_DETECTION" | "TRANSCRIPT")]?
167
+ types: Array[("CONTENT_MODERATION" | "TEXT_DETECTION" | "TRANSCRIPT" | "LOGOS")]?
162
168
  },
163
169
  bounding_box: {
164
170
  state: ("ENABLED" | "DISABLED")
@@ -166,19 +172,19 @@ module Aws
166
172
  }?,
167
173
  generative_field: {
168
174
  state: ("ENABLED" | "DISABLED"),
169
- types: Array[("VIDEO_SUMMARY" | "SCENE_SUMMARY" | "IAB")]?
175
+ types: Array[("VIDEO_SUMMARY" | "IAB" | "CHAPTER_SUMMARY")]?
170
176
  }?
171
177
  }?,
172
178
  audio: {
173
179
  extraction: {
174
180
  category: {
175
181
  state: ("ENABLED" | "DISABLED"),
176
- types: Array[("AUDIO_CONTENT_MODERATION" | "CHAPTER_CONTENT_MODERATION" | "TRANSCRIPT")]?
182
+ types: Array[("AUDIO_CONTENT_MODERATION" | "TRANSCRIPT" | "TOPIC_CONTENT_MODERATION")]?
177
183
  }
178
184
  }?,
179
185
  generative_field: {
180
186
  state: ("ENABLED" | "DISABLED"),
181
- types: Array[("AUDIO_SUMMARY" | "CHAPTER_SUMMARY" | "IAB")]?
187
+ types: Array[("AUDIO_SUMMARY" | "IAB" | "TOPIC_SUMMARY")]?
182
188
  }?
183
189
  }?
184
190
  },
@@ -202,7 +208,13 @@ module Aws
202
208
  ?encryption_configuration: {
203
209
  kms_key_id: ::String,
204
210
  kms_encryption_context: Hash[::String, ::String]?
205
- }
211
+ },
212
+ ?tags: Array[
213
+ {
214
+ key: ::String,
215
+ value: ::String
216
+ },
217
+ ]
206
218
  ) -> _CreateDataAutomationProjectResponseSuccess
207
219
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDataAutomationProjectResponseSuccess
208
220
 
@@ -288,6 +300,41 @@ module Aws
288
300
  ) -> _ListDataAutomationProjectsResponseSuccess
289
301
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDataAutomationProjectsResponseSuccess
290
302
 
303
+ interface _ListTagsForResourceResponseSuccess
304
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
305
+ def tags: () -> ::Array[Types::Tag]
306
+ end
307
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockDataAutomation/Client.html#list_tags_for_resource-instance_method
308
+ def list_tags_for_resource: (
309
+ resource_arn: ::String
310
+ ) -> _ListTagsForResourceResponseSuccess
311
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
312
+
313
+ interface _TagResourceResponseSuccess
314
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
315
+ end
316
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockDataAutomation/Client.html#tag_resource-instance_method
317
+ def tag_resource: (
318
+ resource_arn: ::String,
319
+ tags: Array[
320
+ {
321
+ key: ::String,
322
+ value: ::String
323
+ },
324
+ ]
325
+ ) -> _TagResourceResponseSuccess
326
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
327
+
328
+ interface _UntagResourceResponseSuccess
329
+ include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
330
+ end
331
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockDataAutomation/Client.html#untag_resource-instance_method
332
+ def untag_resource: (
333
+ resource_arn: ::String,
334
+ tag_keys: Array[::String]
335
+ ) -> _UntagResourceResponseSuccess
336
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
337
+
291
338
  interface _UpdateBlueprintResponseSuccess
292
339
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateBlueprintResponse]
293
340
  def blueprint: () -> Types::Blueprint
@@ -296,7 +343,11 @@ module Aws
296
343
  def update_blueprint: (
297
344
  blueprint_arn: ::String,
298
345
  schema: ::String,
299
- ?blueprint_stage: ("DEVELOPMENT" | "LIVE")
346
+ ?blueprint_stage: ("DEVELOPMENT" | "LIVE"),
347
+ ?encryption_configuration: {
348
+ kms_key_id: ::String,
349
+ kms_encryption_context: Hash[::String, ::String]?
350
+ }
300
351
  ) -> _UpdateBlueprintResponseSuccess
301
352
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateBlueprintResponseSuccess
302
353
 
@@ -337,7 +388,7 @@ module Aws
337
388
  extraction: {
338
389
  category: {
339
390
  state: ("ENABLED" | "DISABLED"),
340
- types: Array[("CONTENT_MODERATION" | "TEXT_DETECTION")]?
391
+ types: Array[("CONTENT_MODERATION" | "TEXT_DETECTION" | "LOGOS")]?
341
392
  },
342
393
  bounding_box: {
343
394
  state: ("ENABLED" | "DISABLED")
@@ -352,7 +403,7 @@ module Aws
352
403
  extraction: {
353
404
  category: {
354
405
  state: ("ENABLED" | "DISABLED"),
355
- types: Array[("CONTENT_MODERATION" | "TEXT_DETECTION" | "TRANSCRIPT")]?
406
+ types: Array[("CONTENT_MODERATION" | "TEXT_DETECTION" | "TRANSCRIPT" | "LOGOS")]?
356
407
  },
357
408
  bounding_box: {
358
409
  state: ("ENABLED" | "DISABLED")
@@ -360,19 +411,19 @@ module Aws
360
411
  }?,
361
412
  generative_field: {
362
413
  state: ("ENABLED" | "DISABLED"),
363
- types: Array[("VIDEO_SUMMARY" | "SCENE_SUMMARY" | "IAB")]?
414
+ types: Array[("VIDEO_SUMMARY" | "IAB" | "CHAPTER_SUMMARY")]?
364
415
  }?
365
416
  }?,
366
417
  audio: {
367
418
  extraction: {
368
419
  category: {
369
420
  state: ("ENABLED" | "DISABLED"),
370
- types: Array[("AUDIO_CONTENT_MODERATION" | "CHAPTER_CONTENT_MODERATION" | "TRANSCRIPT")]?
421
+ types: Array[("AUDIO_CONTENT_MODERATION" | "TRANSCRIPT" | "TOPIC_CONTENT_MODERATION")]?
371
422
  }
372
423
  }?,
373
424
  generative_field: {
374
425
  state: ("ENABLED" | "DISABLED"),
375
- types: Array[("AUDIO_SUMMARY" | "CHAPTER_SUMMARY" | "IAB")]?
426
+ types: Array[("AUDIO_SUMMARY" | "IAB" | "TOPIC_SUMMARY")]?
376
427
  }?
377
428
  }?
378
429
  },
@@ -391,6 +442,10 @@ module Aws
391
442
  state: ("ENABLED" | "DISABLED")?
392
443
  }?
393
444
  }?
445
+ },
446
+ ?encryption_configuration: {
447
+ kms_key_id: ::String,
448
+ kms_encryption_context: Hash[::String, ::String]?
394
449
  }
395
450
  ) -> _UpdateDataAutomationProjectResponseSuccess
396
451
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDataAutomationProjectResponseSuccess
data/sig/types.rbs CHANGED
@@ -15,7 +15,7 @@ module Aws::BedrockDataAutomation
15
15
 
16
16
  class AudioExtractionCategory
17
17
  attr_accessor state: ("ENABLED" | "DISABLED")
18
- attr_accessor types: ::Array[("AUDIO_CONTENT_MODERATION" | "CHAPTER_CONTENT_MODERATION" | "TRANSCRIPT")]
18
+ attr_accessor types: ::Array[("AUDIO_CONTENT_MODERATION" | "TRANSCRIPT" | "TOPIC_CONTENT_MODERATION")]
19
19
  SENSITIVE: []
20
20
  end
21
21
 
@@ -26,7 +26,7 @@ module Aws::BedrockDataAutomation
26
26
 
27
27
  class AudioStandardGenerativeField
28
28
  attr_accessor state: ("ENABLED" | "DISABLED")
29
- attr_accessor types: ::Array[("AUDIO_SUMMARY" | "CHAPTER_SUMMARY" | "IAB")]
29
+ attr_accessor types: ::Array[("AUDIO_SUMMARY" | "IAB" | "TOPIC_SUMMARY")]
30
30
  SENSITIVE: []
31
31
  end
32
32
 
@@ -86,6 +86,7 @@ module Aws::BedrockDataAutomation
86
86
  attr_accessor schema: ::String
87
87
  attr_accessor client_token: ::String
88
88
  attr_accessor encryption_configuration: Types::EncryptionConfiguration
89
+ attr_accessor tags: ::Array[Types::Tag]
89
90
  SENSITIVE: [:blueprint_name, :schema]
90
91
  end
91
92
 
@@ -114,6 +115,7 @@ module Aws::BedrockDataAutomation
114
115
  attr_accessor override_configuration: Types::OverrideConfiguration
115
116
  attr_accessor client_token: ::String
116
117
  attr_accessor encryption_configuration: Types::EncryptionConfiguration
118
+ attr_accessor tags: ::Array[Types::Tag]
117
119
  SENSITIVE: [:project_name, :project_description]
118
120
  end
119
121
 
@@ -264,7 +266,7 @@ module Aws::BedrockDataAutomation
264
266
 
265
267
  class ImageExtractionCategory
266
268
  attr_accessor state: ("ENABLED" | "DISABLED")
267
- attr_accessor types: ::Array[("CONTENT_MODERATION" | "TEXT_DETECTION")]
269
+ attr_accessor types: ::Array[("CONTENT_MODERATION" | "TEXT_DETECTION" | "LOGOS")]
268
270
  SENSITIVE: []
269
271
  end
270
272
 
@@ -322,6 +324,16 @@ module Aws::BedrockDataAutomation
322
324
  SENSITIVE: []
323
325
  end
324
326
 
327
+ class ListTagsForResourceRequest
328
+ attr_accessor resource_arn: ::String
329
+ SENSITIVE: []
330
+ end
331
+
332
+ class ListTagsForResourceResponse
333
+ attr_accessor tags: ::Array[Types::Tag]
334
+ SENSITIVE: []
335
+ end
336
+
325
337
  class OverrideConfiguration
326
338
  attr_accessor document: Types::DocumentOverrideConfiguration
327
339
  SENSITIVE: []
@@ -350,15 +362,40 @@ module Aws::BedrockDataAutomation
350
362
  SENSITIVE: []
351
363
  end
352
364
 
365
+ class Tag
366
+ attr_accessor key: ::String
367
+ attr_accessor value: ::String
368
+ SENSITIVE: []
369
+ end
370
+
371
+ class TagResourceRequest
372
+ attr_accessor resource_arn: ::String
373
+ attr_accessor tags: ::Array[Types::Tag]
374
+ SENSITIVE: []
375
+ end
376
+
377
+ class TagResourceResponse < Aws::EmptyStructure
378
+ end
379
+
353
380
  class ThrottlingException
354
381
  attr_accessor message: ::String
355
382
  SENSITIVE: []
356
383
  end
357
384
 
385
+ class UntagResourceRequest
386
+ attr_accessor resource_arn: ::String
387
+ attr_accessor tag_keys: ::Array[::String]
388
+ SENSITIVE: []
389
+ end
390
+
391
+ class UntagResourceResponse < Aws::EmptyStructure
392
+ end
393
+
358
394
  class UpdateBlueprintRequest
359
395
  attr_accessor blueprint_arn: ::String
360
396
  attr_accessor schema: ::String
361
397
  attr_accessor blueprint_stage: ("DEVELOPMENT" | "LIVE")
398
+ attr_accessor encryption_configuration: Types::EncryptionConfiguration
362
399
  SENSITIVE: [:schema]
363
400
  end
364
401
 
@@ -374,6 +411,7 @@ module Aws::BedrockDataAutomation
374
411
  attr_accessor standard_output_configuration: Types::StandardOutputConfiguration
375
412
  attr_accessor custom_output_configuration: Types::CustomOutputConfiguration
376
413
  attr_accessor override_configuration: Types::OverrideConfiguration
414
+ attr_accessor encryption_configuration: Types::EncryptionConfiguration
377
415
  SENSITIVE: [:project_description]
378
416
  end
379
417
 
@@ -403,7 +441,7 @@ module Aws::BedrockDataAutomation
403
441
 
404
442
  class VideoExtractionCategory
405
443
  attr_accessor state: ("ENABLED" | "DISABLED")
406
- attr_accessor types: ::Array[("CONTENT_MODERATION" | "TEXT_DETECTION" | "TRANSCRIPT")]
444
+ attr_accessor types: ::Array[("CONTENT_MODERATION" | "TEXT_DETECTION" | "TRANSCRIPT" | "LOGOS")]
407
445
  SENSITIVE: []
408
446
  end
409
447
 
@@ -415,7 +453,7 @@ module Aws::BedrockDataAutomation
415
453
 
416
454
  class VideoStandardGenerativeField
417
455
  attr_accessor state: ("ENABLED" | "DISABLED")
418
- attr_accessor types: ::Array[("VIDEO_SUMMARY" | "SCENE_SUMMARY" | "IAB")]
456
+ attr_accessor types: ::Array[("VIDEO_SUMMARY" | "IAB" | "CHAPTER_SUMMARY")]
419
457
  SENSITIVE: []
420
458
  end
421
459
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-bedrockdataautomation
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.0
4
+ version: 1.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-02-18 00:00:00.000000000 Z
11
+ date: 2025-02-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core