aws-sdk-bedrockagent 1.56.0 → 1.58.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 +440 -11
- data/lib/aws-sdk-bedrockagent/client_api.rb +150 -0
- data/lib/aws-sdk-bedrockagent/types.rb +608 -23
- data/lib/aws-sdk-bedrockagent.rb +1 -1
- data/sig/client.rbs +225 -6
- data/sig/types.rbs +160 -2
- metadata +4 -4
data/sig/types.rbs
CHANGED
@@ -102,6 +102,7 @@ module Aws::BedrockAgent
|
|
102
102
|
attr_accessor agent_alias_name: ::String
|
103
103
|
attr_accessor agent_alias_status: ("CREATING" | "PREPARED" | "FAILED" | "UPDATING" | "DELETING" | "DISSOCIATED")
|
104
104
|
attr_accessor agent_id: ::String
|
105
|
+
attr_accessor alias_invocation_state: ("ACCEPT_INVOCATIONS" | "REJECT_INVOCATIONS")
|
105
106
|
attr_accessor client_token: ::String
|
106
107
|
attr_accessor created_at: ::Time
|
107
108
|
attr_accessor description: ::String
|
@@ -128,6 +129,7 @@ module Aws::BedrockAgent
|
|
128
129
|
attr_accessor agent_alias_id: ::String
|
129
130
|
attr_accessor agent_alias_name: ::String
|
130
131
|
attr_accessor agent_alias_status: ("CREATING" | "PREPARED" | "FAILED" | "UPDATING" | "DELETING" | "DISSOCIATED")
|
132
|
+
attr_accessor alias_invocation_state: ("ACCEPT_INVOCATIONS" | "REJECT_INVOCATIONS")
|
131
133
|
attr_accessor created_at: ::Time
|
132
134
|
attr_accessor description: ::String
|
133
135
|
attr_accessor routing_configuration: ::Array[Types::AgentAliasRoutingConfigurationListItem]
|
@@ -459,6 +461,7 @@ module Aws::BedrockAgent
|
|
459
461
|
|
460
462
|
class CreateFlowAliasRequest
|
461
463
|
attr_accessor client_token: ::String
|
464
|
+
attr_accessor concurrency_configuration: Types::FlowAliasConcurrencyConfiguration
|
462
465
|
attr_accessor description: ::String
|
463
466
|
attr_accessor flow_identifier: ::String
|
464
467
|
attr_accessor name: ::String
|
@@ -469,6 +472,7 @@ module Aws::BedrockAgent
|
|
469
472
|
|
470
473
|
class CreateFlowAliasResponse
|
471
474
|
attr_accessor arn: ::String
|
475
|
+
attr_accessor concurrency_configuration: Types::FlowAliasConcurrencyConfiguration
|
472
476
|
attr_accessor created_at: ::Time
|
473
477
|
attr_accessor description: ::String
|
474
478
|
attr_accessor flow_id: ::String
|
@@ -864,12 +868,23 @@ module Aws::BedrockAgent
|
|
864
868
|
SENSITIVE: []
|
865
869
|
end
|
866
870
|
|
871
|
+
class FieldForReranking
|
872
|
+
attr_accessor field_name: ::String
|
873
|
+
SENSITIVE: []
|
874
|
+
end
|
875
|
+
|
867
876
|
class FixedSizeChunkingConfiguration
|
868
877
|
attr_accessor max_tokens: ::Integer
|
869
878
|
attr_accessor overlap_percentage: ::Integer
|
870
879
|
SENSITIVE: []
|
871
880
|
end
|
872
881
|
|
882
|
+
class FlowAliasConcurrencyConfiguration
|
883
|
+
attr_accessor max_concurrency: ::Integer
|
884
|
+
attr_accessor type: ("Automatic" | "Manual")
|
885
|
+
SENSITIVE: []
|
886
|
+
end
|
887
|
+
|
873
888
|
class FlowAliasRoutingConfigurationListItem
|
874
889
|
attr_accessor flow_version: ::String
|
875
890
|
SENSITIVE: []
|
@@ -877,6 +892,7 @@ module Aws::BedrockAgent
|
|
877
892
|
|
878
893
|
class FlowAliasSummary
|
879
894
|
attr_accessor arn: ::String
|
895
|
+
attr_accessor concurrency_configuration: Types::FlowAliasConcurrencyConfiguration
|
880
896
|
attr_accessor created_at: ::Time
|
881
897
|
attr_accessor description: ::String
|
882
898
|
attr_accessor flow_id: ::String
|
@@ -938,7 +954,7 @@ module Aws::BedrockAgent
|
|
938
954
|
attr_accessor inputs: ::Array[Types::FlowNodeInput]
|
939
955
|
attr_accessor name: ::String
|
940
956
|
attr_accessor outputs: ::Array[Types::FlowNodeOutput]
|
941
|
-
attr_accessor type: ("Input" | "Output" | "KnowledgeBase" | "Condition" | "Lex" | "Prompt" | "LambdaFunction" | "Storage" | "Agent" | "Retrieval" | "Iterator" | "Collector" | "InlineCode")
|
957
|
+
attr_accessor type: ("Input" | "Output" | "KnowledgeBase" | "Condition" | "Lex" | "Prompt" | "LambdaFunction" | "Storage" | "Agent" | "Retrieval" | "Iterator" | "Collector" | "InlineCode" | "Loop" | "LoopInput" | "LoopController")
|
942
958
|
SENSITIVE: []
|
943
959
|
end
|
944
960
|
|
@@ -952,6 +968,9 @@ module Aws::BedrockAgent
|
|
952
968
|
attr_accessor knowledge_base: Types::KnowledgeBaseFlowNodeConfiguration
|
953
969
|
attr_accessor lambda_function: Types::LambdaFunctionFlowNodeConfiguration
|
954
970
|
attr_accessor lex: Types::LexFlowNodeConfiguration
|
971
|
+
attr_accessor loop: Types::LoopFlowNodeConfiguration
|
972
|
+
attr_accessor loop_controller: Types::LoopControllerFlowNodeConfiguration
|
973
|
+
attr_accessor loop_input: Types::LoopInputFlowNodeConfiguration
|
955
974
|
attr_accessor output: Types::OutputFlowNodeConfiguration
|
956
975
|
attr_accessor prompt: Types::PromptFlowNodeConfiguration
|
957
976
|
attr_accessor retrieval: Types::RetrievalFlowNodeConfiguration
|
@@ -977,6 +996,12 @@ module Aws::BedrockAgent
|
|
977
996
|
end
|
978
997
|
class Lex < FlowNodeConfiguration
|
979
998
|
end
|
999
|
+
class Loop < FlowNodeConfiguration
|
1000
|
+
end
|
1001
|
+
class LoopController < FlowNodeConfiguration
|
1002
|
+
end
|
1003
|
+
class LoopInput < FlowNodeConfiguration
|
1004
|
+
end
|
980
1005
|
class Output < FlowNodeConfiguration
|
981
1006
|
end
|
982
1007
|
class Prompt < FlowNodeConfiguration
|
@@ -990,6 +1015,7 @@ module Aws::BedrockAgent
|
|
990
1015
|
end
|
991
1016
|
|
992
1017
|
class FlowNodeInput
|
1018
|
+
attr_accessor category: ("LoopCondition" | "ReturnValueToLoopStart" | "ExitLoop")
|
993
1019
|
attr_accessor expression: ::String
|
994
1020
|
attr_accessor name: ::String
|
995
1021
|
attr_accessor type: ("String" | "Number" | "Boolean" | "Object" | "Array")
|
@@ -1018,7 +1044,7 @@ module Aws::BedrockAgent
|
|
1018
1044
|
attr_accessor details: Types::FlowValidationDetails
|
1019
1045
|
attr_accessor message: ::String
|
1020
1046
|
attr_accessor severity: ("Warning" | "Error")
|
1021
|
-
attr_accessor type: ("CyclicConnection" | "DuplicateConnections" | "DuplicateConditionExpression" | "UnreachableNode" | "UnknownConnectionSource" | "UnknownConnectionSourceOutput" | "UnknownConnectionTarget" | "UnknownConnectionTargetInput" | "UnknownConnectionCondition" | "MalformedConditionExpression" | "MalformedNodeInputExpression" | "MismatchedNodeInputType" | "MismatchedNodeOutputType" | "IncompatibleConnectionDataType" | "MissingConnectionConfiguration" | "MissingDefaultCondition" | "MissingEndingNodes" | "MissingNodeConfiguration" | "MissingNodeInput" | "MissingNodeOutput" | "MissingStartingNodes" | "MultipleNodeInputConnections" | "UnfulfilledNodeInput" | "UnsatisfiedConnectionConditions" | "Unspecified" | "UnknownNodeInput" | "UnknownNodeOutput")
|
1047
|
+
attr_accessor type: ("CyclicConnection" | "DuplicateConnections" | "DuplicateConditionExpression" | "UnreachableNode" | "UnknownConnectionSource" | "UnknownConnectionSourceOutput" | "UnknownConnectionTarget" | "UnknownConnectionTargetInput" | "UnknownConnectionCondition" | "MalformedConditionExpression" | "MalformedNodeInputExpression" | "MismatchedNodeInputType" | "MismatchedNodeOutputType" | "IncompatibleConnectionDataType" | "MissingConnectionConfiguration" | "MissingDefaultCondition" | "MissingEndingNodes" | "MissingNodeConfiguration" | "MissingNodeInput" | "MissingNodeOutput" | "MissingStartingNodes" | "MultipleNodeInputConnections" | "UnfulfilledNodeInput" | "UnsatisfiedConnectionConditions" | "Unspecified" | "UnknownNodeInput" | "UnknownNodeOutput" | "MissingLoopInputNode" | "MissingLoopControllerNode" | "MultipleLoopInputNodes" | "MultipleLoopControllerNodes" | "LoopIncompatibleNodeType" | "InvalidLoopBoundary")
|
1022
1048
|
SENSITIVE: []
|
1023
1049
|
end
|
1024
1050
|
|
@@ -1027,6 +1053,8 @@ module Aws::BedrockAgent
|
|
1027
1053
|
attr_accessor duplicate_condition_expression: Types::DuplicateConditionExpressionFlowValidationDetails
|
1028
1054
|
attr_accessor duplicate_connections: Types::DuplicateConnectionsFlowValidationDetails
|
1029
1055
|
attr_accessor incompatible_connection_data_type: Types::IncompatibleConnectionDataTypeFlowValidationDetails
|
1056
|
+
attr_accessor invalid_loop_boundary: Types::InvalidLoopBoundaryFlowValidationDetails
|
1057
|
+
attr_accessor loop_incompatible_node_type: Types::LoopIncompatibleNodeTypeFlowValidationDetails
|
1030
1058
|
attr_accessor malformed_condition_expression: Types::MalformedConditionExpressionFlowValidationDetails
|
1031
1059
|
attr_accessor malformed_node_input_expression: Types::MalformedNodeInputExpressionFlowValidationDetails
|
1032
1060
|
attr_accessor mismatched_node_input_type: Types::MismatchedNodeInputTypeFlowValidationDetails
|
@@ -1034,10 +1062,14 @@ module Aws::BedrockAgent
|
|
1034
1062
|
attr_accessor missing_connection_configuration: Types::MissingConnectionConfigurationFlowValidationDetails
|
1035
1063
|
attr_accessor missing_default_condition: Types::MissingDefaultConditionFlowValidationDetails
|
1036
1064
|
attr_accessor missing_ending_nodes: Types::MissingEndingNodesFlowValidationDetails
|
1065
|
+
attr_accessor missing_loop_controller_node: Types::MissingLoopControllerNodeFlowValidationDetails
|
1066
|
+
attr_accessor missing_loop_input_node: Types::MissingLoopInputNodeFlowValidationDetails
|
1037
1067
|
attr_accessor missing_node_configuration: Types::MissingNodeConfigurationFlowValidationDetails
|
1038
1068
|
attr_accessor missing_node_input: Types::MissingNodeInputFlowValidationDetails
|
1039
1069
|
attr_accessor missing_node_output: Types::MissingNodeOutputFlowValidationDetails
|
1040
1070
|
attr_accessor missing_starting_nodes: Types::MissingStartingNodesFlowValidationDetails
|
1071
|
+
attr_accessor multiple_loop_controller_nodes: Types::MultipleLoopControllerNodesFlowValidationDetails
|
1072
|
+
attr_accessor multiple_loop_input_nodes: Types::MultipleLoopInputNodesFlowValidationDetails
|
1041
1073
|
attr_accessor multiple_node_input_connections: Types::MultipleNodeInputConnectionsFlowValidationDetails
|
1042
1074
|
attr_accessor unfulfilled_node_input: Types::UnfulfilledNodeInputFlowValidationDetails
|
1043
1075
|
attr_accessor unknown_connection_condition: Types::UnknownConnectionConditionFlowValidationDetails
|
@@ -1061,6 +1093,10 @@ module Aws::BedrockAgent
|
|
1061
1093
|
end
|
1062
1094
|
class IncompatibleConnectionDataType < FlowValidationDetails
|
1063
1095
|
end
|
1096
|
+
class InvalidLoopBoundary < FlowValidationDetails
|
1097
|
+
end
|
1098
|
+
class LoopIncompatibleNodeType < FlowValidationDetails
|
1099
|
+
end
|
1064
1100
|
class MalformedConditionExpression < FlowValidationDetails
|
1065
1101
|
end
|
1066
1102
|
class MalformedNodeInputExpression < FlowValidationDetails
|
@@ -1075,6 +1111,10 @@ module Aws::BedrockAgent
|
|
1075
1111
|
end
|
1076
1112
|
class MissingEndingNodes < FlowValidationDetails
|
1077
1113
|
end
|
1114
|
+
class MissingLoopControllerNode < FlowValidationDetails
|
1115
|
+
end
|
1116
|
+
class MissingLoopInputNode < FlowValidationDetails
|
1117
|
+
end
|
1078
1118
|
class MissingNodeConfiguration < FlowValidationDetails
|
1079
1119
|
end
|
1080
1120
|
class MissingNodeInput < FlowValidationDetails
|
@@ -1083,6 +1123,10 @@ module Aws::BedrockAgent
|
|
1083
1123
|
end
|
1084
1124
|
class MissingStartingNodes < FlowValidationDetails
|
1085
1125
|
end
|
1126
|
+
class MultipleLoopControllerNodes < FlowValidationDetails
|
1127
|
+
end
|
1128
|
+
class MultipleLoopInputNodes < FlowValidationDetails
|
1129
|
+
end
|
1086
1130
|
class MultipleNodeInputConnections < FlowValidationDetails
|
1087
1131
|
end
|
1088
1132
|
class UnfulfilledNodeInput < FlowValidationDetails
|
@@ -1226,6 +1270,7 @@ module Aws::BedrockAgent
|
|
1226
1270
|
|
1227
1271
|
class GetFlowAliasResponse
|
1228
1272
|
attr_accessor arn: ::String
|
1273
|
+
attr_accessor concurrency_configuration: Types::FlowAliasConcurrencyConfiguration
|
1229
1274
|
attr_accessor created_at: ::Time
|
1230
1275
|
attr_accessor description: ::String
|
1231
1276
|
attr_accessor flow_id: ::String
|
@@ -1450,6 +1495,13 @@ module Aws::BedrockAgent
|
|
1450
1495
|
SENSITIVE: []
|
1451
1496
|
end
|
1452
1497
|
|
1498
|
+
class InvalidLoopBoundaryFlowValidationDetails
|
1499
|
+
attr_accessor connection: ::String
|
1500
|
+
attr_accessor source: ::String
|
1501
|
+
attr_accessor target: ::String
|
1502
|
+
SENSITIVE: []
|
1503
|
+
end
|
1504
|
+
|
1453
1505
|
class IteratorFlowNodeConfiguration < Aws::EmptyStructure
|
1454
1506
|
end
|
1455
1507
|
|
@@ -1499,11 +1551,29 @@ module Aws::BedrockAgent
|
|
1499
1551
|
|
1500
1552
|
class KnowledgeBaseFlowNodeConfiguration
|
1501
1553
|
attr_accessor guardrail_configuration: Types::GuardrailConfiguration
|
1554
|
+
attr_accessor inference_configuration: Types::PromptInferenceConfiguration
|
1502
1555
|
attr_accessor knowledge_base_id: ::String
|
1503
1556
|
attr_accessor model_id: ::String
|
1557
|
+
attr_accessor number_of_results: ::Integer
|
1558
|
+
attr_accessor orchestration_configuration: Types::KnowledgeBaseOrchestrationConfiguration
|
1559
|
+
attr_accessor prompt_template: Types::KnowledgeBasePromptTemplate
|
1560
|
+
attr_accessor reranking_configuration: Types::VectorSearchRerankingConfiguration
|
1561
|
+
SENSITIVE: []
|
1562
|
+
end
|
1563
|
+
|
1564
|
+
class KnowledgeBaseOrchestrationConfiguration
|
1565
|
+
attr_accessor additional_model_request_fields: ::Hash[::String, untyped]
|
1566
|
+
attr_accessor inference_config: Types::PromptInferenceConfiguration
|
1567
|
+
attr_accessor performance_config: Types::PerformanceConfiguration
|
1568
|
+
attr_accessor prompt_template: Types::KnowledgeBasePromptTemplate
|
1504
1569
|
SENSITIVE: []
|
1505
1570
|
end
|
1506
1571
|
|
1572
|
+
class KnowledgeBasePromptTemplate
|
1573
|
+
attr_accessor text_prompt_template: ::String
|
1574
|
+
SENSITIVE: [:text_prompt_template]
|
1575
|
+
end
|
1576
|
+
|
1507
1577
|
class KnowledgeBaseSummary
|
1508
1578
|
attr_accessor description: ::String
|
1509
1579
|
attr_accessor knowledge_base_id: ::String
|
@@ -1720,6 +1790,27 @@ module Aws::BedrockAgent
|
|
1720
1790
|
SENSITIVE: []
|
1721
1791
|
end
|
1722
1792
|
|
1793
|
+
class LoopControllerFlowNodeConfiguration
|
1794
|
+
attr_accessor continue_condition: Types::FlowCondition
|
1795
|
+
attr_accessor max_iterations: ::Integer
|
1796
|
+
SENSITIVE: []
|
1797
|
+
end
|
1798
|
+
|
1799
|
+
class LoopFlowNodeConfiguration
|
1800
|
+
attr_accessor definition: Types::FlowDefinition
|
1801
|
+
SENSITIVE: [:definition]
|
1802
|
+
end
|
1803
|
+
|
1804
|
+
class LoopIncompatibleNodeTypeFlowValidationDetails
|
1805
|
+
attr_accessor incompatible_node_name: ::String
|
1806
|
+
attr_accessor incompatible_node_type: ("Input" | "Condition" | "Iterator" | "Collector")
|
1807
|
+
attr_accessor node: ::String
|
1808
|
+
SENSITIVE: []
|
1809
|
+
end
|
1810
|
+
|
1811
|
+
class LoopInputFlowNodeConfiguration < Aws::EmptyStructure
|
1812
|
+
end
|
1813
|
+
|
1723
1814
|
class MalformedConditionExpressionFlowValidationDetails
|
1724
1815
|
attr_accessor cause: ::String
|
1725
1816
|
attr_accessor condition: ::String
|
@@ -1762,6 +1853,12 @@ module Aws::BedrockAgent
|
|
1762
1853
|
SENSITIVE: [:number_value, :string_value]
|
1763
1854
|
end
|
1764
1855
|
|
1856
|
+
class MetadataConfigurationForReranking
|
1857
|
+
attr_accessor selection_mode: ("SELECTIVE" | "ALL")
|
1858
|
+
attr_accessor selective_mode_configuration: Types::RerankingMetadataSelectiveModeConfiguration
|
1859
|
+
SENSITIVE: []
|
1860
|
+
end
|
1861
|
+
|
1765
1862
|
class MismatchedNodeInputTypeFlowValidationDetails
|
1766
1863
|
attr_accessor expected_type: ("String" | "Number" | "Boolean" | "Object" | "Array")
|
1767
1864
|
attr_accessor input: ::String
|
@@ -1789,6 +1886,16 @@ module Aws::BedrockAgent
|
|
1789
1886
|
class MissingEndingNodesFlowValidationDetails < Aws::EmptyStructure
|
1790
1887
|
end
|
1791
1888
|
|
1889
|
+
class MissingLoopControllerNodeFlowValidationDetails
|
1890
|
+
attr_accessor loop_node: ::String
|
1891
|
+
SENSITIVE: []
|
1892
|
+
end
|
1893
|
+
|
1894
|
+
class MissingLoopInputNodeFlowValidationDetails
|
1895
|
+
attr_accessor loop_node: ::String
|
1896
|
+
SENSITIVE: []
|
1897
|
+
end
|
1898
|
+
|
1792
1899
|
class MissingNodeConfigurationFlowValidationDetails
|
1793
1900
|
attr_accessor node: ::String
|
1794
1901
|
SENSITIVE: []
|
@@ -1828,6 +1935,16 @@ module Aws::BedrockAgent
|
|
1828
1935
|
SENSITIVE: []
|
1829
1936
|
end
|
1830
1937
|
|
1938
|
+
class MultipleLoopControllerNodesFlowValidationDetails
|
1939
|
+
attr_accessor loop_node: ::String
|
1940
|
+
SENSITIVE: []
|
1941
|
+
end
|
1942
|
+
|
1943
|
+
class MultipleLoopInputNodesFlowValidationDetails
|
1944
|
+
attr_accessor loop_node: ::String
|
1945
|
+
SENSITIVE: []
|
1946
|
+
end
|
1947
|
+
|
1831
1948
|
class MultipleNodeInputConnectionsFlowValidationDetails
|
1832
1949
|
attr_accessor input: ::String
|
1833
1950
|
attr_accessor node: ::String
|
@@ -1920,6 +2037,11 @@ module Aws::BedrockAgent
|
|
1920
2037
|
SENSITIVE: [:filters]
|
1921
2038
|
end
|
1922
2039
|
|
2040
|
+
class PerformanceConfiguration
|
2041
|
+
attr_accessor latency: ("standard" | "optimized")
|
2042
|
+
SENSITIVE: []
|
2043
|
+
end
|
2044
|
+
|
1923
2045
|
class PineconeConfiguration
|
1924
2046
|
attr_accessor connection_string: ::String
|
1925
2047
|
attr_accessor credentials_secret_arn: ::String
|
@@ -2209,6 +2331,20 @@ module Aws::BedrockAgent
|
|
2209
2331
|
SENSITIVE: []
|
2210
2332
|
end
|
2211
2333
|
|
2334
|
+
class RerankingMetadataSelectiveModeConfiguration
|
2335
|
+
attr_accessor fields_to_exclude: ::Array[Types::FieldForReranking]
|
2336
|
+
attr_accessor fields_to_include: ::Array[Types::FieldForReranking]
|
2337
|
+
attr_accessor unknown: untyped
|
2338
|
+
SENSITIVE: [:fields_to_exclude, :fields_to_include]
|
2339
|
+
|
2340
|
+
class FieldsToExclude < RerankingMetadataSelectiveModeConfiguration
|
2341
|
+
end
|
2342
|
+
class FieldsToInclude < RerankingMetadataSelectiveModeConfiguration
|
2343
|
+
end
|
2344
|
+
class Unknown < RerankingMetadataSelectiveModeConfiguration
|
2345
|
+
end
|
2346
|
+
end
|
2347
|
+
|
2212
2348
|
class ResourceNotFoundException
|
2213
2349
|
attr_accessor message: ::String
|
2214
2350
|
SENSITIVE: []
|
@@ -2604,6 +2740,7 @@ module Aws::BedrockAgent
|
|
2604
2740
|
attr_accessor agent_alias_id: ::String
|
2605
2741
|
attr_accessor agent_alias_name: ::String
|
2606
2742
|
attr_accessor agent_id: ::String
|
2743
|
+
attr_accessor alias_invocation_state: ("ACCEPT_INVOCATIONS" | "REJECT_INVOCATIONS")
|
2607
2744
|
attr_accessor description: ::String
|
2608
2745
|
attr_accessor routing_configuration: ::Array[Types::AgentAliasRoutingConfigurationListItem]
|
2609
2746
|
SENSITIVE: []
|
@@ -2686,6 +2823,7 @@ module Aws::BedrockAgent
|
|
2686
2823
|
|
2687
2824
|
class UpdateFlowAliasRequest
|
2688
2825
|
attr_accessor alias_identifier: ::String
|
2826
|
+
attr_accessor concurrency_configuration: Types::FlowAliasConcurrencyConfiguration
|
2689
2827
|
attr_accessor description: ::String
|
2690
2828
|
attr_accessor flow_identifier: ::String
|
2691
2829
|
attr_accessor name: ::String
|
@@ -2695,6 +2833,7 @@ module Aws::BedrockAgent
|
|
2695
2833
|
|
2696
2834
|
class UpdateFlowAliasResponse
|
2697
2835
|
attr_accessor arn: ::String
|
2836
|
+
attr_accessor concurrency_configuration: Types::FlowAliasConcurrencyConfiguration
|
2698
2837
|
attr_accessor created_at: ::Time
|
2699
2838
|
attr_accessor description: ::String
|
2700
2839
|
attr_accessor flow_id: ::String
|
@@ -2811,6 +2950,25 @@ module Aws::BedrockAgent
|
|
2811
2950
|
SENSITIVE: []
|
2812
2951
|
end
|
2813
2952
|
|
2953
|
+
class VectorSearchBedrockRerankingConfiguration
|
2954
|
+
attr_accessor metadata_configuration: Types::MetadataConfigurationForReranking
|
2955
|
+
attr_accessor model_configuration: Types::VectorSearchBedrockRerankingModelConfiguration
|
2956
|
+
attr_accessor number_of_reranked_results: ::Integer
|
2957
|
+
SENSITIVE: []
|
2958
|
+
end
|
2959
|
+
|
2960
|
+
class VectorSearchBedrockRerankingModelConfiguration
|
2961
|
+
attr_accessor additional_model_request_fields: ::Hash[::String, untyped]
|
2962
|
+
attr_accessor model_arn: ::String
|
2963
|
+
SENSITIVE: []
|
2964
|
+
end
|
2965
|
+
|
2966
|
+
class VectorSearchRerankingConfiguration
|
2967
|
+
attr_accessor bedrock_reranking_configuration: Types::VectorSearchBedrockRerankingConfiguration
|
2968
|
+
attr_accessor type: ("BEDROCK_RERANKING_MODEL")
|
2969
|
+
SENSITIVE: []
|
2970
|
+
end
|
2971
|
+
|
2814
2972
|
class WebCrawlerConfiguration
|
2815
2973
|
attr_accessor crawler_limits: Types::WebCrawlerLimits
|
2816
2974
|
attr_accessor exclusion_filters: ::Array[::String]
|
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.58.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.225.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.225.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|
@@ -83,7 +83,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
83
83
|
requirements:
|
84
84
|
- - ">="
|
85
85
|
- !ruby/object:Gem::Version
|
86
|
-
version: '2.
|
86
|
+
version: '2.7'
|
87
87
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
88
88
|
requirements:
|
89
89
|
- - ">="
|