aws-sdk-bedrockagent 1.56.0 → 1.57.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockagent/client.rb +432 -15
- data/lib/aws-sdk-bedrockagent/client_api.rb +146 -0
- data/lib/aws-sdk-bedrockagent/types.rb +581 -29
- data/lib/aws-sdk-bedrockagent.rb +1 -1
- data/sig/client.rbs +224 -6
- data/sig/types.rbs +157 -2
- metadata +1 -1
data/sig/types.rbs
CHANGED
@@ -459,6 +459,7 @@ module Aws::BedrockAgent
|
|
459
459
|
|
460
460
|
class CreateFlowAliasRequest
|
461
461
|
attr_accessor client_token: ::String
|
462
|
+
attr_accessor concurrency_configuration: Types::FlowAliasConcurrencyConfiguration
|
462
463
|
attr_accessor description: ::String
|
463
464
|
attr_accessor flow_identifier: ::String
|
464
465
|
attr_accessor name: ::String
|
@@ -469,6 +470,7 @@ module Aws::BedrockAgent
|
|
469
470
|
|
470
471
|
class CreateFlowAliasResponse
|
471
472
|
attr_accessor arn: ::String
|
473
|
+
attr_accessor concurrency_configuration: Types::FlowAliasConcurrencyConfiguration
|
472
474
|
attr_accessor created_at: ::Time
|
473
475
|
attr_accessor description: ::String
|
474
476
|
attr_accessor flow_id: ::String
|
@@ -864,12 +866,23 @@ module Aws::BedrockAgent
|
|
864
866
|
SENSITIVE: []
|
865
867
|
end
|
866
868
|
|
869
|
+
class FieldForReranking
|
870
|
+
attr_accessor field_name: ::String
|
871
|
+
SENSITIVE: []
|
872
|
+
end
|
873
|
+
|
867
874
|
class FixedSizeChunkingConfiguration
|
868
875
|
attr_accessor max_tokens: ::Integer
|
869
876
|
attr_accessor overlap_percentage: ::Integer
|
870
877
|
SENSITIVE: []
|
871
878
|
end
|
872
879
|
|
880
|
+
class FlowAliasConcurrencyConfiguration
|
881
|
+
attr_accessor max_concurrency: ::Integer
|
882
|
+
attr_accessor type: ("Automatic" | "Manual")
|
883
|
+
SENSITIVE: []
|
884
|
+
end
|
885
|
+
|
873
886
|
class FlowAliasRoutingConfigurationListItem
|
874
887
|
attr_accessor flow_version: ::String
|
875
888
|
SENSITIVE: []
|
@@ -877,6 +890,7 @@ module Aws::BedrockAgent
|
|
877
890
|
|
878
891
|
class FlowAliasSummary
|
879
892
|
attr_accessor arn: ::String
|
893
|
+
attr_accessor concurrency_configuration: Types::FlowAliasConcurrencyConfiguration
|
880
894
|
attr_accessor created_at: ::Time
|
881
895
|
attr_accessor description: ::String
|
882
896
|
attr_accessor flow_id: ::String
|
@@ -938,7 +952,7 @@ module Aws::BedrockAgent
|
|
938
952
|
attr_accessor inputs: ::Array[Types::FlowNodeInput]
|
939
953
|
attr_accessor name: ::String
|
940
954
|
attr_accessor outputs: ::Array[Types::FlowNodeOutput]
|
941
|
-
attr_accessor type: ("Input" | "Output" | "KnowledgeBase" | "Condition" | "Lex" | "Prompt" | "LambdaFunction" | "Storage" | "Agent" | "Retrieval" | "Iterator" | "Collector" | "InlineCode")
|
955
|
+
attr_accessor type: ("Input" | "Output" | "KnowledgeBase" | "Condition" | "Lex" | "Prompt" | "LambdaFunction" | "Storage" | "Agent" | "Retrieval" | "Iterator" | "Collector" | "InlineCode" | "Loop" | "LoopInput" | "LoopController")
|
942
956
|
SENSITIVE: []
|
943
957
|
end
|
944
958
|
|
@@ -952,6 +966,9 @@ module Aws::BedrockAgent
|
|
952
966
|
attr_accessor knowledge_base: Types::KnowledgeBaseFlowNodeConfiguration
|
953
967
|
attr_accessor lambda_function: Types::LambdaFunctionFlowNodeConfiguration
|
954
968
|
attr_accessor lex: Types::LexFlowNodeConfiguration
|
969
|
+
attr_accessor loop: Types::LoopFlowNodeConfiguration
|
970
|
+
attr_accessor loop_controller: Types::LoopControllerFlowNodeConfiguration
|
971
|
+
attr_accessor loop_input: Types::LoopInputFlowNodeConfiguration
|
955
972
|
attr_accessor output: Types::OutputFlowNodeConfiguration
|
956
973
|
attr_accessor prompt: Types::PromptFlowNodeConfiguration
|
957
974
|
attr_accessor retrieval: Types::RetrievalFlowNodeConfiguration
|
@@ -977,6 +994,12 @@ module Aws::BedrockAgent
|
|
977
994
|
end
|
978
995
|
class Lex < FlowNodeConfiguration
|
979
996
|
end
|
997
|
+
class Loop < FlowNodeConfiguration
|
998
|
+
end
|
999
|
+
class LoopController < FlowNodeConfiguration
|
1000
|
+
end
|
1001
|
+
class LoopInput < FlowNodeConfiguration
|
1002
|
+
end
|
980
1003
|
class Output < FlowNodeConfiguration
|
981
1004
|
end
|
982
1005
|
class Prompt < FlowNodeConfiguration
|
@@ -990,6 +1013,7 @@ module Aws::BedrockAgent
|
|
990
1013
|
end
|
991
1014
|
|
992
1015
|
class FlowNodeInput
|
1016
|
+
attr_accessor category: ("LoopCondition" | "ReturnValueToLoopStart" | "ExitLoop")
|
993
1017
|
attr_accessor expression: ::String
|
994
1018
|
attr_accessor name: ::String
|
995
1019
|
attr_accessor type: ("String" | "Number" | "Boolean" | "Object" | "Array")
|
@@ -1018,7 +1042,7 @@ module Aws::BedrockAgent
|
|
1018
1042
|
attr_accessor details: Types::FlowValidationDetails
|
1019
1043
|
attr_accessor message: ::String
|
1020
1044
|
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")
|
1045
|
+
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
1046
|
SENSITIVE: []
|
1023
1047
|
end
|
1024
1048
|
|
@@ -1027,6 +1051,8 @@ module Aws::BedrockAgent
|
|
1027
1051
|
attr_accessor duplicate_condition_expression: Types::DuplicateConditionExpressionFlowValidationDetails
|
1028
1052
|
attr_accessor duplicate_connections: Types::DuplicateConnectionsFlowValidationDetails
|
1029
1053
|
attr_accessor incompatible_connection_data_type: Types::IncompatibleConnectionDataTypeFlowValidationDetails
|
1054
|
+
attr_accessor invalid_loop_boundary: Types::InvalidLoopBoundaryFlowValidationDetails
|
1055
|
+
attr_accessor loop_incompatible_node_type: Types::LoopIncompatibleNodeTypeFlowValidationDetails
|
1030
1056
|
attr_accessor malformed_condition_expression: Types::MalformedConditionExpressionFlowValidationDetails
|
1031
1057
|
attr_accessor malformed_node_input_expression: Types::MalformedNodeInputExpressionFlowValidationDetails
|
1032
1058
|
attr_accessor mismatched_node_input_type: Types::MismatchedNodeInputTypeFlowValidationDetails
|
@@ -1034,10 +1060,14 @@ module Aws::BedrockAgent
|
|
1034
1060
|
attr_accessor missing_connection_configuration: Types::MissingConnectionConfigurationFlowValidationDetails
|
1035
1061
|
attr_accessor missing_default_condition: Types::MissingDefaultConditionFlowValidationDetails
|
1036
1062
|
attr_accessor missing_ending_nodes: Types::MissingEndingNodesFlowValidationDetails
|
1063
|
+
attr_accessor missing_loop_controller_node: Types::MissingLoopControllerNodeFlowValidationDetails
|
1064
|
+
attr_accessor missing_loop_input_node: Types::MissingLoopInputNodeFlowValidationDetails
|
1037
1065
|
attr_accessor missing_node_configuration: Types::MissingNodeConfigurationFlowValidationDetails
|
1038
1066
|
attr_accessor missing_node_input: Types::MissingNodeInputFlowValidationDetails
|
1039
1067
|
attr_accessor missing_node_output: Types::MissingNodeOutputFlowValidationDetails
|
1040
1068
|
attr_accessor missing_starting_nodes: Types::MissingStartingNodesFlowValidationDetails
|
1069
|
+
attr_accessor multiple_loop_controller_nodes: Types::MultipleLoopControllerNodesFlowValidationDetails
|
1070
|
+
attr_accessor multiple_loop_input_nodes: Types::MultipleLoopInputNodesFlowValidationDetails
|
1041
1071
|
attr_accessor multiple_node_input_connections: Types::MultipleNodeInputConnectionsFlowValidationDetails
|
1042
1072
|
attr_accessor unfulfilled_node_input: Types::UnfulfilledNodeInputFlowValidationDetails
|
1043
1073
|
attr_accessor unknown_connection_condition: Types::UnknownConnectionConditionFlowValidationDetails
|
@@ -1061,6 +1091,10 @@ module Aws::BedrockAgent
|
|
1061
1091
|
end
|
1062
1092
|
class IncompatibleConnectionDataType < FlowValidationDetails
|
1063
1093
|
end
|
1094
|
+
class InvalidLoopBoundary < FlowValidationDetails
|
1095
|
+
end
|
1096
|
+
class LoopIncompatibleNodeType < FlowValidationDetails
|
1097
|
+
end
|
1064
1098
|
class MalformedConditionExpression < FlowValidationDetails
|
1065
1099
|
end
|
1066
1100
|
class MalformedNodeInputExpression < FlowValidationDetails
|
@@ -1075,6 +1109,10 @@ module Aws::BedrockAgent
|
|
1075
1109
|
end
|
1076
1110
|
class MissingEndingNodes < FlowValidationDetails
|
1077
1111
|
end
|
1112
|
+
class MissingLoopControllerNode < FlowValidationDetails
|
1113
|
+
end
|
1114
|
+
class MissingLoopInputNode < FlowValidationDetails
|
1115
|
+
end
|
1078
1116
|
class MissingNodeConfiguration < FlowValidationDetails
|
1079
1117
|
end
|
1080
1118
|
class MissingNodeInput < FlowValidationDetails
|
@@ -1083,6 +1121,10 @@ module Aws::BedrockAgent
|
|
1083
1121
|
end
|
1084
1122
|
class MissingStartingNodes < FlowValidationDetails
|
1085
1123
|
end
|
1124
|
+
class MultipleLoopControllerNodes < FlowValidationDetails
|
1125
|
+
end
|
1126
|
+
class MultipleLoopInputNodes < FlowValidationDetails
|
1127
|
+
end
|
1086
1128
|
class MultipleNodeInputConnections < FlowValidationDetails
|
1087
1129
|
end
|
1088
1130
|
class UnfulfilledNodeInput < FlowValidationDetails
|
@@ -1226,6 +1268,7 @@ module Aws::BedrockAgent
|
|
1226
1268
|
|
1227
1269
|
class GetFlowAliasResponse
|
1228
1270
|
attr_accessor arn: ::String
|
1271
|
+
attr_accessor concurrency_configuration: Types::FlowAliasConcurrencyConfiguration
|
1229
1272
|
attr_accessor created_at: ::Time
|
1230
1273
|
attr_accessor description: ::String
|
1231
1274
|
attr_accessor flow_id: ::String
|
@@ -1450,6 +1493,13 @@ module Aws::BedrockAgent
|
|
1450
1493
|
SENSITIVE: []
|
1451
1494
|
end
|
1452
1495
|
|
1496
|
+
class InvalidLoopBoundaryFlowValidationDetails
|
1497
|
+
attr_accessor connection: ::String
|
1498
|
+
attr_accessor source: ::String
|
1499
|
+
attr_accessor target: ::String
|
1500
|
+
SENSITIVE: []
|
1501
|
+
end
|
1502
|
+
|
1453
1503
|
class IteratorFlowNodeConfiguration < Aws::EmptyStructure
|
1454
1504
|
end
|
1455
1505
|
|
@@ -1499,11 +1549,29 @@ module Aws::BedrockAgent
|
|
1499
1549
|
|
1500
1550
|
class KnowledgeBaseFlowNodeConfiguration
|
1501
1551
|
attr_accessor guardrail_configuration: Types::GuardrailConfiguration
|
1552
|
+
attr_accessor inference_configuration: Types::PromptInferenceConfiguration
|
1502
1553
|
attr_accessor knowledge_base_id: ::String
|
1503
1554
|
attr_accessor model_id: ::String
|
1555
|
+
attr_accessor number_of_results: ::Integer
|
1556
|
+
attr_accessor orchestration_configuration: Types::KnowledgeBaseOrchestrationConfiguration
|
1557
|
+
attr_accessor prompt_template: Types::KnowledgeBasePromptTemplate
|
1558
|
+
attr_accessor reranking_configuration: Types::VectorSearchRerankingConfiguration
|
1559
|
+
SENSITIVE: []
|
1560
|
+
end
|
1561
|
+
|
1562
|
+
class KnowledgeBaseOrchestrationConfiguration
|
1563
|
+
attr_accessor additional_model_request_fields: ::Hash[::String, untyped]
|
1564
|
+
attr_accessor inference_config: Types::PromptInferenceConfiguration
|
1565
|
+
attr_accessor performance_config: Types::PerformanceConfiguration
|
1566
|
+
attr_accessor prompt_template: Types::KnowledgeBasePromptTemplate
|
1504
1567
|
SENSITIVE: []
|
1505
1568
|
end
|
1506
1569
|
|
1570
|
+
class KnowledgeBasePromptTemplate
|
1571
|
+
attr_accessor text_prompt_template: ::String
|
1572
|
+
SENSITIVE: [:text_prompt_template]
|
1573
|
+
end
|
1574
|
+
|
1507
1575
|
class KnowledgeBaseSummary
|
1508
1576
|
attr_accessor description: ::String
|
1509
1577
|
attr_accessor knowledge_base_id: ::String
|
@@ -1720,6 +1788,27 @@ module Aws::BedrockAgent
|
|
1720
1788
|
SENSITIVE: []
|
1721
1789
|
end
|
1722
1790
|
|
1791
|
+
class LoopControllerFlowNodeConfiguration
|
1792
|
+
attr_accessor continue_condition: Types::FlowCondition
|
1793
|
+
attr_accessor max_iterations: ::Integer
|
1794
|
+
SENSITIVE: []
|
1795
|
+
end
|
1796
|
+
|
1797
|
+
class LoopFlowNodeConfiguration
|
1798
|
+
attr_accessor definition: Types::FlowDefinition
|
1799
|
+
SENSITIVE: [:definition]
|
1800
|
+
end
|
1801
|
+
|
1802
|
+
class LoopIncompatibleNodeTypeFlowValidationDetails
|
1803
|
+
attr_accessor incompatible_node_name: ::String
|
1804
|
+
attr_accessor incompatible_node_type: ("Input" | "Condition" | "Iterator" | "Collector")
|
1805
|
+
attr_accessor node: ::String
|
1806
|
+
SENSITIVE: []
|
1807
|
+
end
|
1808
|
+
|
1809
|
+
class LoopInputFlowNodeConfiguration < Aws::EmptyStructure
|
1810
|
+
end
|
1811
|
+
|
1723
1812
|
class MalformedConditionExpressionFlowValidationDetails
|
1724
1813
|
attr_accessor cause: ::String
|
1725
1814
|
attr_accessor condition: ::String
|
@@ -1762,6 +1851,12 @@ module Aws::BedrockAgent
|
|
1762
1851
|
SENSITIVE: [:number_value, :string_value]
|
1763
1852
|
end
|
1764
1853
|
|
1854
|
+
class MetadataConfigurationForReranking
|
1855
|
+
attr_accessor selection_mode: ("SELECTIVE" | "ALL")
|
1856
|
+
attr_accessor selective_mode_configuration: Types::RerankingMetadataSelectiveModeConfiguration
|
1857
|
+
SENSITIVE: []
|
1858
|
+
end
|
1859
|
+
|
1765
1860
|
class MismatchedNodeInputTypeFlowValidationDetails
|
1766
1861
|
attr_accessor expected_type: ("String" | "Number" | "Boolean" | "Object" | "Array")
|
1767
1862
|
attr_accessor input: ::String
|
@@ -1789,6 +1884,16 @@ module Aws::BedrockAgent
|
|
1789
1884
|
class MissingEndingNodesFlowValidationDetails < Aws::EmptyStructure
|
1790
1885
|
end
|
1791
1886
|
|
1887
|
+
class MissingLoopControllerNodeFlowValidationDetails
|
1888
|
+
attr_accessor loop_node: ::String
|
1889
|
+
SENSITIVE: []
|
1890
|
+
end
|
1891
|
+
|
1892
|
+
class MissingLoopInputNodeFlowValidationDetails
|
1893
|
+
attr_accessor loop_node: ::String
|
1894
|
+
SENSITIVE: []
|
1895
|
+
end
|
1896
|
+
|
1792
1897
|
class MissingNodeConfigurationFlowValidationDetails
|
1793
1898
|
attr_accessor node: ::String
|
1794
1899
|
SENSITIVE: []
|
@@ -1828,6 +1933,16 @@ module Aws::BedrockAgent
|
|
1828
1933
|
SENSITIVE: []
|
1829
1934
|
end
|
1830
1935
|
|
1936
|
+
class MultipleLoopControllerNodesFlowValidationDetails
|
1937
|
+
attr_accessor loop_node: ::String
|
1938
|
+
SENSITIVE: []
|
1939
|
+
end
|
1940
|
+
|
1941
|
+
class MultipleLoopInputNodesFlowValidationDetails
|
1942
|
+
attr_accessor loop_node: ::String
|
1943
|
+
SENSITIVE: []
|
1944
|
+
end
|
1945
|
+
|
1831
1946
|
class MultipleNodeInputConnectionsFlowValidationDetails
|
1832
1947
|
attr_accessor input: ::String
|
1833
1948
|
attr_accessor node: ::String
|
@@ -1920,6 +2035,11 @@ module Aws::BedrockAgent
|
|
1920
2035
|
SENSITIVE: [:filters]
|
1921
2036
|
end
|
1922
2037
|
|
2038
|
+
class PerformanceConfiguration
|
2039
|
+
attr_accessor latency: ("standard" | "optimized")
|
2040
|
+
SENSITIVE: []
|
2041
|
+
end
|
2042
|
+
|
1923
2043
|
class PineconeConfiguration
|
1924
2044
|
attr_accessor connection_string: ::String
|
1925
2045
|
attr_accessor credentials_secret_arn: ::String
|
@@ -2209,6 +2329,20 @@ module Aws::BedrockAgent
|
|
2209
2329
|
SENSITIVE: []
|
2210
2330
|
end
|
2211
2331
|
|
2332
|
+
class RerankingMetadataSelectiveModeConfiguration
|
2333
|
+
attr_accessor fields_to_exclude: ::Array[Types::FieldForReranking]
|
2334
|
+
attr_accessor fields_to_include: ::Array[Types::FieldForReranking]
|
2335
|
+
attr_accessor unknown: untyped
|
2336
|
+
SENSITIVE: [:fields_to_exclude, :fields_to_include]
|
2337
|
+
|
2338
|
+
class FieldsToExclude < RerankingMetadataSelectiveModeConfiguration
|
2339
|
+
end
|
2340
|
+
class FieldsToInclude < RerankingMetadataSelectiveModeConfiguration
|
2341
|
+
end
|
2342
|
+
class Unknown < RerankingMetadataSelectiveModeConfiguration
|
2343
|
+
end
|
2344
|
+
end
|
2345
|
+
|
2212
2346
|
class ResourceNotFoundException
|
2213
2347
|
attr_accessor message: ::String
|
2214
2348
|
SENSITIVE: []
|
@@ -2686,6 +2820,7 @@ module Aws::BedrockAgent
|
|
2686
2820
|
|
2687
2821
|
class UpdateFlowAliasRequest
|
2688
2822
|
attr_accessor alias_identifier: ::String
|
2823
|
+
attr_accessor concurrency_configuration: Types::FlowAliasConcurrencyConfiguration
|
2689
2824
|
attr_accessor description: ::String
|
2690
2825
|
attr_accessor flow_identifier: ::String
|
2691
2826
|
attr_accessor name: ::String
|
@@ -2695,6 +2830,7 @@ module Aws::BedrockAgent
|
|
2695
2830
|
|
2696
2831
|
class UpdateFlowAliasResponse
|
2697
2832
|
attr_accessor arn: ::String
|
2833
|
+
attr_accessor concurrency_configuration: Types::FlowAliasConcurrencyConfiguration
|
2698
2834
|
attr_accessor created_at: ::Time
|
2699
2835
|
attr_accessor description: ::String
|
2700
2836
|
attr_accessor flow_id: ::String
|
@@ -2811,6 +2947,25 @@ module Aws::BedrockAgent
|
|
2811
2947
|
SENSITIVE: []
|
2812
2948
|
end
|
2813
2949
|
|
2950
|
+
class VectorSearchBedrockRerankingConfiguration
|
2951
|
+
attr_accessor metadata_configuration: Types::MetadataConfigurationForReranking
|
2952
|
+
attr_accessor model_configuration: Types::VectorSearchBedrockRerankingModelConfiguration
|
2953
|
+
attr_accessor number_of_reranked_results: ::Integer
|
2954
|
+
SENSITIVE: []
|
2955
|
+
end
|
2956
|
+
|
2957
|
+
class VectorSearchBedrockRerankingModelConfiguration
|
2958
|
+
attr_accessor additional_model_request_fields: ::Hash[::String, untyped]
|
2959
|
+
attr_accessor model_arn: ::String
|
2960
|
+
SENSITIVE: []
|
2961
|
+
end
|
2962
|
+
|
2963
|
+
class VectorSearchRerankingConfiguration
|
2964
|
+
attr_accessor bedrock_reranking_configuration: Types::VectorSearchBedrockRerankingConfiguration
|
2965
|
+
attr_accessor type: ("BEDROCK_RERANKING_MODEL")
|
2966
|
+
SENSITIVE: []
|
2967
|
+
end
|
2968
|
+
|
2814
2969
|
class WebCrawlerConfiguration
|
2815
2970
|
attr_accessor crawler_limits: Types::WebCrawlerLimits
|
2816
2971
|
attr_accessor exclusion_filters: ::Array[::String]
|