aws-sdk-bedrockagent 1.76.0 → 1.78.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockagent/client.rb +322 -41
- data/lib/aws-sdk-bedrockagent/client_api.rb +130 -0
- data/lib/aws-sdk-bedrockagent/types.rb +397 -28
- data/lib/aws-sdk-bedrockagent.rb +1 -1
- data/sig/client.rbs +47 -3
- data/sig/params.rbs +36 -3
- data/sig/types.rbs +100 -9
- metadata +3 -3
data/sig/client.rbs
CHANGED
|
@@ -413,7 +413,7 @@ module Aws
|
|
|
413
413
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDataSourceResponse]
|
|
414
414
|
def knowledge_base_id: () -> ::String
|
|
415
415
|
def data_source_id: () -> ::String
|
|
416
|
-
def status: () -> ("AVAILABLE" | "DELETING" | "DELETE_UNSUCCESSFUL")
|
|
416
|
+
def status: () -> ("AVAILABLE" | "DELETING" | "DELETE_UNSUCCESSFUL" | "CREATING" | "UPDATING" | "FAILED")
|
|
417
417
|
end
|
|
418
418
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgent/Client.html#delete_data_source-instance_method
|
|
419
419
|
def delete_data_source: (
|
|
@@ -461,7 +461,7 @@ module Aws
|
|
|
461
461
|
interface _DeleteKnowledgeBaseResponseSuccess
|
|
462
462
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteKnowledgeBaseResponse]
|
|
463
463
|
def knowledge_base_id: () -> ::String
|
|
464
|
-
def status: () -> ("CREATING" | "ACTIVE" | "DELETING" | "UPDATING" | "FAILED" | "DELETE_UNSUCCESSFUL")
|
|
464
|
+
def status: () -> ("CREATING" | "ACTIVE" | "DELETING" | "UPDATING" | "FAILED" | "DELETE_UNSUCCESSFUL" | "UPDATE_UNSUCCESSFUL")
|
|
465
465
|
end
|
|
466
466
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgent/Client.html#delete_knowledge_base-instance_method
|
|
467
467
|
def delete_knowledge_base: (
|
|
@@ -496,6 +496,18 @@ module Aws
|
|
|
496
496
|
) -> _DeletePromptResponseSuccess
|
|
497
497
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeletePromptResponseSuccess
|
|
498
498
|
|
|
499
|
+
interface _DeleteResourcePolicyResponseSuccess
|
|
500
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteResourcePolicyResponse]
|
|
501
|
+
def resource_arn: () -> ::String
|
|
502
|
+
def revision_id: () -> ::String
|
|
503
|
+
end
|
|
504
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgent/Client.html#delete_resource_policy-instance_method
|
|
505
|
+
def delete_resource_policy: (
|
|
506
|
+
resource_arn: ::String,
|
|
507
|
+
?expected_revision_id: ::String
|
|
508
|
+
) -> _DeleteResourcePolicyResponseSuccess
|
|
509
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteResourcePolicyResponseSuccess
|
|
510
|
+
|
|
499
511
|
interface _DisassociateAgentCollaboratorResponseSuccess
|
|
500
512
|
include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateAgentCollaboratorResponse]
|
|
501
513
|
end
|
|
@@ -713,6 +725,18 @@ module Aws
|
|
|
713
725
|
) -> _GetPromptResponseSuccess
|
|
714
726
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetPromptResponseSuccess
|
|
715
727
|
|
|
728
|
+
interface _GetResourcePolicyResponseSuccess
|
|
729
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetResourcePolicyResponse]
|
|
730
|
+
def resource_arn: () -> ::String
|
|
731
|
+
def policy: () -> ::String
|
|
732
|
+
def revision_id: () -> ::String
|
|
733
|
+
end
|
|
734
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgent/Client.html#get_resource_policy-instance_method
|
|
735
|
+
def get_resource_policy: (
|
|
736
|
+
resource_arn: ::String
|
|
737
|
+
) -> _GetResourcePolicyResponseSuccess
|
|
738
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetResourcePolicyResponseSuccess
|
|
739
|
+
|
|
716
740
|
interface _IngestKnowledgeBaseDocumentsResponseSuccess
|
|
717
741
|
include ::Seahorse::Client::_ResponseSuccess[Types::IngestKnowledgeBaseDocumentsResponse]
|
|
718
742
|
def document_details: () -> ::Array[Types::KnowledgeBaseDocumentDetail]
|
|
@@ -741,7 +765,14 @@ module Aws
|
|
|
741
765
|
s3_location: {
|
|
742
766
|
uri: ::String,
|
|
743
767
|
bucket_owner_account_id: ::String?
|
|
744
|
-
}
|
|
768
|
+
}?,
|
|
769
|
+
access_control_list: Array[
|
|
770
|
+
{
|
|
771
|
+
name: ::String,
|
|
772
|
+
type: ("USER"),
|
|
773
|
+
access: ("ALLOW" | "DENY")
|
|
774
|
+
}
|
|
775
|
+
]?
|
|
745
776
|
}?,
|
|
746
777
|
content: {
|
|
747
778
|
data_source_type: ("CUSTOM" | "S3"),
|
|
@@ -1005,6 +1036,19 @@ module Aws
|
|
|
1005
1036
|
) -> _PrepareFlowResponseSuccess
|
|
1006
1037
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PrepareFlowResponseSuccess
|
|
1007
1038
|
|
|
1039
|
+
interface _PutResourcePolicyResponseSuccess
|
|
1040
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::PutResourcePolicyResponse]
|
|
1041
|
+
def resource_arn: () -> ::String
|
|
1042
|
+
def revision_id: () -> ::String
|
|
1043
|
+
end
|
|
1044
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgent/Client.html#put_resource_policy-instance_method
|
|
1045
|
+
def put_resource_policy: (
|
|
1046
|
+
resource_arn: ::String,
|
|
1047
|
+
policy: ::String,
|
|
1048
|
+
?expected_revision_id: ::String
|
|
1049
|
+
) -> _PutResourcePolicyResponseSuccess
|
|
1050
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutResourcePolicyResponseSuccess
|
|
1051
|
+
|
|
1008
1052
|
interface _StartIngestionJobResponseSuccess
|
|
1009
1053
|
include ::Seahorse::Client::_ResponseSuccess[Types::StartIngestionJobResponse]
|
|
1010
1054
|
def ingestion_job: () -> Types::IngestionJob
|
data/sig/params.rbs
CHANGED
|
@@ -50,6 +50,28 @@ module Aws
|
|
|
50
50
|
require_confirmation: ("ENABLED" | "DISABLED")?
|
|
51
51
|
}
|
|
52
52
|
|
|
53
|
+
type media_extraction_configuration = {
|
|
54
|
+
image_extraction_configuration: {
|
|
55
|
+
image_extraction_status: ("ENABLED" | "DISABLED")
|
|
56
|
+
}?,
|
|
57
|
+
audio_extraction_configuration: {
|
|
58
|
+
audio_extraction_status: ("ENABLED" | "DISABLED")
|
|
59
|
+
}?,
|
|
60
|
+
video_extraction_configuration: {
|
|
61
|
+
video_extraction_status: ("ENABLED" | "DISABLED")
|
|
62
|
+
}?
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
type managed_knowledge_base_connector_configuration = {
|
|
66
|
+
deletion_protection_configuration: {
|
|
67
|
+
deletion_protection_status: ("ENABLED" | "DISABLED"),
|
|
68
|
+
deletion_protection_threshold: ::Integer?
|
|
69
|
+
}?,
|
|
70
|
+
media_extraction_configuration: Params::media_extraction_configuration?,
|
|
71
|
+
connector_parameters: {
|
|
72
|
+
}?
|
|
73
|
+
}
|
|
74
|
+
|
|
53
75
|
type web_crawler_configuration = {
|
|
54
76
|
crawler_limits: {
|
|
55
77
|
rate_limit: ::Integer?,
|
|
@@ -134,7 +156,8 @@ module Aws
|
|
|
134
156
|
}
|
|
135
157
|
|
|
136
158
|
type data_source_configuration = {
|
|
137
|
-
type: ("S3" | "WEB" | "CONFLUENCE" | "SALESFORCE" | "SHAREPOINT" | "CUSTOM" | "REDSHIFT_METADATA"),
|
|
159
|
+
type: ("S3" | "WEB" | "CONFLUENCE" | "SALESFORCE" | "SHAREPOINT" | "CUSTOM" | "REDSHIFT_METADATA" | "MANAGED_KNOWLEDGE_BASE_CONNECTOR"),
|
|
160
|
+
managed_knowledge_base_connector_configuration: Params::managed_knowledge_base_connector_configuration?,
|
|
138
161
|
s3_configuration: {
|
|
139
162
|
bucket_arn: ::String,
|
|
140
163
|
inclusion_prefixes: Array[::String]?,
|
|
@@ -179,7 +202,7 @@ module Aws
|
|
|
179
202
|
}
|
|
180
203
|
|
|
181
204
|
type parsing_configuration = {
|
|
182
|
-
parsing_strategy: ("BEDROCK_FOUNDATION_MODEL" | "BEDROCK_DATA_AUTOMATION"),
|
|
205
|
+
parsing_strategy: ("BEDROCK_FOUNDATION_MODEL" | "BEDROCK_DATA_AUTOMATION" | "SMART_PARSING"),
|
|
183
206
|
bedrock_foundation_model_configuration: {
|
|
184
207
|
model_arn: ::String,
|
|
185
208
|
parsing_prompt: {
|
|
@@ -543,6 +566,15 @@ module Aws
|
|
|
543
566
|
supplemental_data_storage_configuration: Params::supplemental_data_storage_configuration?
|
|
544
567
|
}
|
|
545
568
|
|
|
569
|
+
type managed_knowledge_base_configuration = {
|
|
570
|
+
embedding_model_type: ("CUSTOM" | "MANAGED")?,
|
|
571
|
+
embedding_model_arn: ::String?,
|
|
572
|
+
embedding_model_configuration: Params::embedding_model_configuration?,
|
|
573
|
+
server_side_encryption_configuration: {
|
|
574
|
+
kms_key_arn: ::String?
|
|
575
|
+
}?
|
|
576
|
+
}
|
|
577
|
+
|
|
546
578
|
type redshift_provisioned_configuration = {
|
|
547
579
|
cluster_identifier: ::String,
|
|
548
580
|
auth_configuration: {
|
|
@@ -595,8 +627,9 @@ module Aws
|
|
|
595
627
|
}
|
|
596
628
|
|
|
597
629
|
type knowledge_base_configuration = {
|
|
598
|
-
type: ("VECTOR" | "KENDRA" | "SQL"),
|
|
630
|
+
type: ("VECTOR" | "KENDRA" | "SQL" | "MANAGED"),
|
|
599
631
|
vector_knowledge_base_configuration: Params::vector_knowledge_base_configuration?,
|
|
632
|
+
managed_knowledge_base_configuration: Params::managed_knowledge_base_configuration?,
|
|
600
633
|
kendra_knowledge_base_configuration: {
|
|
601
634
|
kendra_index_arn: ::String
|
|
602
635
|
}?,
|
data/sig/types.rbs
CHANGED
|
@@ -276,6 +276,11 @@ module Aws::BedrockAgent
|
|
|
276
276
|
SENSITIVE: []
|
|
277
277
|
end
|
|
278
278
|
|
|
279
|
+
class AudioExtractionConfiguration
|
|
280
|
+
attr_accessor audio_extraction_status: ("ENABLED" | "DISABLED")
|
|
281
|
+
SENSITIVE: []
|
|
282
|
+
end
|
|
283
|
+
|
|
279
284
|
class AudioSegmentationConfiguration
|
|
280
285
|
attr_accessor fixed_length_duration: ::Integer
|
|
281
286
|
SENSITIVE: []
|
|
@@ -650,7 +655,7 @@ module Aws::BedrockAgent
|
|
|
650
655
|
attr_accessor knowledge_base_id: ::String
|
|
651
656
|
attr_accessor data_source_id: ::String
|
|
652
657
|
attr_accessor name: ::String
|
|
653
|
-
attr_accessor status: ("AVAILABLE" | "DELETING" | "DELETE_UNSUCCESSFUL")
|
|
658
|
+
attr_accessor status: ("AVAILABLE" | "DELETING" | "DELETE_UNSUCCESSFUL" | "CREATING" | "UPDATING" | "FAILED")
|
|
654
659
|
attr_accessor description: ::String
|
|
655
660
|
attr_accessor data_source_configuration: Types::DataSourceConfiguration
|
|
656
661
|
attr_accessor server_side_encryption_configuration: Types::ServerSideEncryptionConfiguration
|
|
@@ -663,7 +668,8 @@ module Aws::BedrockAgent
|
|
|
663
668
|
end
|
|
664
669
|
|
|
665
670
|
class DataSourceConfiguration
|
|
666
|
-
attr_accessor type: ("S3" | "WEB" | "CONFLUENCE" | "SALESFORCE" | "SHAREPOINT" | "CUSTOM" | "REDSHIFT_METADATA")
|
|
671
|
+
attr_accessor type: ("S3" | "WEB" | "CONFLUENCE" | "SALESFORCE" | "SHAREPOINT" | "CUSTOM" | "REDSHIFT_METADATA" | "MANAGED_KNOWLEDGE_BASE_CONNECTOR")
|
|
672
|
+
attr_accessor managed_knowledge_base_connector_configuration: Types::ManagedKnowledgeBaseConnectorConfiguration
|
|
667
673
|
attr_accessor s3_configuration: Types::S3DataSourceConfiguration
|
|
668
674
|
attr_accessor web_configuration: Types::WebDataSourceConfiguration
|
|
669
675
|
attr_accessor confluence_configuration: Types::ConfluenceDataSourceConfiguration
|
|
@@ -676,7 +682,7 @@ module Aws::BedrockAgent
|
|
|
676
682
|
attr_accessor knowledge_base_id: ::String
|
|
677
683
|
attr_accessor data_source_id: ::String
|
|
678
684
|
attr_accessor name: ::String
|
|
679
|
-
attr_accessor status: ("AVAILABLE" | "DELETING" | "DELETE_UNSUCCESSFUL")
|
|
685
|
+
attr_accessor status: ("AVAILABLE" | "DELETING" | "DELETE_UNSUCCESSFUL" | "CREATING" | "UPDATING" | "FAILED")
|
|
680
686
|
attr_accessor description: ::String
|
|
681
687
|
attr_accessor updated_at: ::Time
|
|
682
688
|
SENSITIVE: []
|
|
@@ -741,7 +747,7 @@ module Aws::BedrockAgent
|
|
|
741
747
|
class DeleteDataSourceResponse
|
|
742
748
|
attr_accessor knowledge_base_id: ::String
|
|
743
749
|
attr_accessor data_source_id: ::String
|
|
744
|
-
attr_accessor status: ("AVAILABLE" | "DELETING" | "DELETE_UNSUCCESSFUL")
|
|
750
|
+
attr_accessor status: ("AVAILABLE" | "DELETING" | "DELETE_UNSUCCESSFUL" | "CREATING" | "UPDATING" | "FAILED")
|
|
745
751
|
SENSITIVE: []
|
|
746
752
|
end
|
|
747
753
|
|
|
@@ -801,7 +807,7 @@ module Aws::BedrockAgent
|
|
|
801
807
|
|
|
802
808
|
class DeleteKnowledgeBaseResponse
|
|
803
809
|
attr_accessor knowledge_base_id: ::String
|
|
804
|
-
attr_accessor status: ("CREATING" | "ACTIVE" | "DELETING" | "UPDATING" | "FAILED" | "DELETE_UNSUCCESSFUL")
|
|
810
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "DELETING" | "UPDATING" | "FAILED" | "DELETE_UNSUCCESSFUL" | "UPDATE_UNSUCCESSFUL")
|
|
805
811
|
SENSITIVE: []
|
|
806
812
|
end
|
|
807
813
|
|
|
@@ -817,6 +823,24 @@ module Aws::BedrockAgent
|
|
|
817
823
|
SENSITIVE: []
|
|
818
824
|
end
|
|
819
825
|
|
|
826
|
+
class DeleteResourcePolicyRequest
|
|
827
|
+
attr_accessor resource_arn: ::String
|
|
828
|
+
attr_accessor expected_revision_id: ::String
|
|
829
|
+
SENSITIVE: []
|
|
830
|
+
end
|
|
831
|
+
|
|
832
|
+
class DeleteResourcePolicyResponse
|
|
833
|
+
attr_accessor resource_arn: ::String
|
|
834
|
+
attr_accessor revision_id: ::String
|
|
835
|
+
SENSITIVE: []
|
|
836
|
+
end
|
|
837
|
+
|
|
838
|
+
class DeletionProtectionConfiguration
|
|
839
|
+
attr_accessor deletion_protection_status: ("ENABLED" | "DISABLED")
|
|
840
|
+
attr_accessor deletion_protection_threshold: ::Integer
|
|
841
|
+
SENSITIVE: []
|
|
842
|
+
end
|
|
843
|
+
|
|
820
844
|
class DisassociateAgentCollaboratorRequest
|
|
821
845
|
attr_accessor agent_id: ::String
|
|
822
846
|
attr_accessor agent_version: ::String
|
|
@@ -837,6 +861,13 @@ module Aws::BedrockAgent
|
|
|
837
861
|
class DisassociateAgentKnowledgeBaseResponse < Aws::EmptyStructure
|
|
838
862
|
end
|
|
839
863
|
|
|
864
|
+
class DocumentAccessControlEntry
|
|
865
|
+
attr_accessor name: ::String
|
|
866
|
+
attr_accessor type: ("USER")
|
|
867
|
+
attr_accessor access: ("ALLOW" | "DENY")
|
|
868
|
+
SENSITIVE: []
|
|
869
|
+
end
|
|
870
|
+
|
|
840
871
|
class DocumentContent
|
|
841
872
|
attr_accessor data_source_type: ("CUSTOM" | "S3")
|
|
842
873
|
attr_accessor custom: Types::CustomContent
|
|
@@ -855,6 +886,7 @@ module Aws::BedrockAgent
|
|
|
855
886
|
attr_accessor type: ("IN_LINE_ATTRIBUTE" | "S3_LOCATION")
|
|
856
887
|
attr_accessor inline_attributes: ::Array[Types::MetadataAttribute]
|
|
857
888
|
attr_accessor s3_location: Types::CustomS3Location
|
|
889
|
+
attr_accessor access_control_list: ::Array[Types::DocumentAccessControlEntry]
|
|
858
890
|
SENSITIVE: []
|
|
859
891
|
end
|
|
860
892
|
|
|
@@ -1388,6 +1420,18 @@ module Aws::BedrockAgent
|
|
|
1388
1420
|
SENSITIVE: [:variants]
|
|
1389
1421
|
end
|
|
1390
1422
|
|
|
1423
|
+
class GetResourcePolicyRequest
|
|
1424
|
+
attr_accessor resource_arn: ::String
|
|
1425
|
+
SENSITIVE: []
|
|
1426
|
+
end
|
|
1427
|
+
|
|
1428
|
+
class GetResourcePolicyResponse
|
|
1429
|
+
attr_accessor resource_arn: ::String
|
|
1430
|
+
attr_accessor policy: ::String
|
|
1431
|
+
attr_accessor revision_id: ::String
|
|
1432
|
+
SENSITIVE: []
|
|
1433
|
+
end
|
|
1434
|
+
|
|
1391
1435
|
class GuardrailConfiguration
|
|
1392
1436
|
attr_accessor guardrail_identifier: ::String
|
|
1393
1437
|
attr_accessor guardrail_version: ::String
|
|
@@ -1405,6 +1449,11 @@ module Aws::BedrockAgent
|
|
|
1405
1449
|
SENSITIVE: []
|
|
1406
1450
|
end
|
|
1407
1451
|
|
|
1452
|
+
class ImageExtractionConfiguration
|
|
1453
|
+
attr_accessor image_extraction_status: ("ENABLED" | "DISABLED")
|
|
1454
|
+
SENSITIVE: []
|
|
1455
|
+
end
|
|
1456
|
+
|
|
1408
1457
|
class IncompatibleConnectionDataTypeFlowValidationDetails
|
|
1409
1458
|
attr_accessor connection: ::String
|
|
1410
1459
|
SENSITIVE: []
|
|
@@ -1466,6 +1515,7 @@ module Aws::BedrockAgent
|
|
|
1466
1515
|
attr_accessor number_of_metadata_documents_modified: ::Integer
|
|
1467
1516
|
attr_accessor number_of_documents_deleted: ::Integer
|
|
1468
1517
|
attr_accessor number_of_documents_failed: ::Integer
|
|
1518
|
+
attr_accessor number_of_documents_skipped: ::Integer
|
|
1469
1519
|
SENSITIVE: []
|
|
1470
1520
|
end
|
|
1471
1521
|
|
|
@@ -1530,7 +1580,7 @@ module Aws::BedrockAgent
|
|
|
1530
1580
|
attr_accessor role_arn: ::String
|
|
1531
1581
|
attr_accessor knowledge_base_configuration: Types::KnowledgeBaseConfiguration
|
|
1532
1582
|
attr_accessor storage_configuration: Types::StorageConfiguration
|
|
1533
|
-
attr_accessor status: ("CREATING" | "ACTIVE" | "DELETING" | "UPDATING" | "FAILED" | "DELETE_UNSUCCESSFUL")
|
|
1583
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "DELETING" | "UPDATING" | "FAILED" | "DELETE_UNSUCCESSFUL" | "UPDATE_UNSUCCESSFUL")
|
|
1534
1584
|
attr_accessor created_at: ::Time
|
|
1535
1585
|
attr_accessor updated_at: ::Time
|
|
1536
1586
|
attr_accessor failure_reasons: ::Array[::String]
|
|
@@ -1538,8 +1588,9 @@ module Aws::BedrockAgent
|
|
|
1538
1588
|
end
|
|
1539
1589
|
|
|
1540
1590
|
class KnowledgeBaseConfiguration
|
|
1541
|
-
attr_accessor type: ("VECTOR" | "KENDRA" | "SQL")
|
|
1591
|
+
attr_accessor type: ("VECTOR" | "KENDRA" | "SQL" | "MANAGED")
|
|
1542
1592
|
attr_accessor vector_knowledge_base_configuration: Types::VectorKnowledgeBaseConfiguration
|
|
1593
|
+
attr_accessor managed_knowledge_base_configuration: Types::ManagedKnowledgeBaseConfiguration
|
|
1543
1594
|
attr_accessor kendra_knowledge_base_configuration: Types::KendraKnowledgeBaseConfiguration
|
|
1544
1595
|
attr_accessor sql_knowledge_base_configuration: Types::SqlKnowledgeBaseConfiguration
|
|
1545
1596
|
SENSITIVE: []
|
|
@@ -1590,7 +1641,7 @@ module Aws::BedrockAgent
|
|
|
1590
1641
|
attr_accessor knowledge_base_id: ::String
|
|
1591
1642
|
attr_accessor name: ::String
|
|
1592
1643
|
attr_accessor description: ::String
|
|
1593
|
-
attr_accessor status: ("CREATING" | "ACTIVE" | "DELETING" | "UPDATING" | "FAILED" | "DELETE_UNSUCCESSFUL")
|
|
1644
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "DELETING" | "UPDATING" | "FAILED" | "DELETE_UNSUCCESSFUL" | "UPDATE_UNSUCCESSFUL")
|
|
1594
1645
|
attr_accessor updated_at: ::Time
|
|
1595
1646
|
SENSITIVE: []
|
|
1596
1647
|
end
|
|
@@ -1837,6 +1888,28 @@ module Aws::BedrockAgent
|
|
|
1837
1888
|
SENSITIVE: []
|
|
1838
1889
|
end
|
|
1839
1890
|
|
|
1891
|
+
class ManagedKnowledgeBaseConfiguration
|
|
1892
|
+
attr_accessor embedding_model_type: ("CUSTOM" | "MANAGED")
|
|
1893
|
+
attr_accessor embedding_model_arn: ::String
|
|
1894
|
+
attr_accessor embedding_model_configuration: Types::EmbeddingModelConfiguration
|
|
1895
|
+
attr_accessor server_side_encryption_configuration: Types::ServerSideEncryptionConfiguration
|
|
1896
|
+
SENSITIVE: []
|
|
1897
|
+
end
|
|
1898
|
+
|
|
1899
|
+
class ManagedKnowledgeBaseConnectorConfiguration
|
|
1900
|
+
attr_accessor deletion_protection_configuration: Types::DeletionProtectionConfiguration
|
|
1901
|
+
attr_accessor media_extraction_configuration: Types::MediaExtractionConfiguration
|
|
1902
|
+
attr_accessor connector_parameters: untyped
|
|
1903
|
+
SENSITIVE: []
|
|
1904
|
+
end
|
|
1905
|
+
|
|
1906
|
+
class MediaExtractionConfiguration
|
|
1907
|
+
attr_accessor image_extraction_configuration: Types::ImageExtractionConfiguration
|
|
1908
|
+
attr_accessor audio_extraction_configuration: Types::AudioExtractionConfiguration
|
|
1909
|
+
attr_accessor video_extraction_configuration: Types::VideoExtractionConfiguration
|
|
1910
|
+
SENSITIVE: []
|
|
1911
|
+
end
|
|
1912
|
+
|
|
1840
1913
|
class MemoryConfiguration
|
|
1841
1914
|
attr_accessor enabled_memory_types: ::Array[("SESSION_SUMMARY")]
|
|
1842
1915
|
attr_accessor storage_days: ::Integer
|
|
@@ -2026,7 +2099,7 @@ module Aws::BedrockAgent
|
|
|
2026
2099
|
end
|
|
2027
2100
|
|
|
2028
2101
|
class ParsingConfiguration
|
|
2029
|
-
attr_accessor parsing_strategy: ("BEDROCK_FOUNDATION_MODEL" | "BEDROCK_DATA_AUTOMATION")
|
|
2102
|
+
attr_accessor parsing_strategy: ("BEDROCK_FOUNDATION_MODEL" | "BEDROCK_DATA_AUTOMATION" | "SMART_PARSING")
|
|
2030
2103
|
attr_accessor bedrock_foundation_model_configuration: Types::BedrockFoundationModelConfiguration
|
|
2031
2104
|
attr_accessor bedrock_data_automation_configuration: Types::BedrockDataAutomationConfiguration
|
|
2032
2105
|
SENSITIVE: []
|
|
@@ -2227,6 +2300,19 @@ module Aws::BedrockAgent
|
|
|
2227
2300
|
SENSITIVE: [:metadata, :gen_ai_resource]
|
|
2228
2301
|
end
|
|
2229
2302
|
|
|
2303
|
+
class PutResourcePolicyRequest
|
|
2304
|
+
attr_accessor resource_arn: ::String
|
|
2305
|
+
attr_accessor policy: ::String
|
|
2306
|
+
attr_accessor expected_revision_id: ::String
|
|
2307
|
+
SENSITIVE: []
|
|
2308
|
+
end
|
|
2309
|
+
|
|
2310
|
+
class PutResourcePolicyResponse
|
|
2311
|
+
attr_accessor resource_arn: ::String
|
|
2312
|
+
attr_accessor revision_id: ::String
|
|
2313
|
+
SENSITIVE: []
|
|
2314
|
+
end
|
|
2315
|
+
|
|
2230
2316
|
class QueryGenerationColumn
|
|
2231
2317
|
attr_accessor name: ::String
|
|
2232
2318
|
attr_accessor description: ::String
|
|
@@ -2995,6 +3081,11 @@ module Aws::BedrockAgent
|
|
|
2995
3081
|
SENSITIVE: []
|
|
2996
3082
|
end
|
|
2997
3083
|
|
|
3084
|
+
class VideoExtractionConfiguration
|
|
3085
|
+
attr_accessor video_extraction_status: ("ENABLED" | "DISABLED")
|
|
3086
|
+
SENSITIVE: []
|
|
3087
|
+
end
|
|
3088
|
+
|
|
2998
3089
|
class VideoSegmentationConfiguration
|
|
2999
3090
|
attr_accessor fixed_length_duration: ::Integer
|
|
3000
3091
|
SENSITIVE: []
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-bedrockagent
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.78.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.
|
|
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.
|
|
31
|
+
version: 3.248.0
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|