Class: Xberg::UrlExtractionConfig
- Inherits:
-
Object
- Object
- Xberg::UrlExtractionConfig
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#allow_file_uris ⇒ Boolean?
Returns the value of attribute allow_file_uris.
-
#allow_local_file_inputs ⇒ Boolean?
Returns the value of attribute allow_local_file_inputs.
-
#crawl ⇒ CrawlConfig?
Returns the value of attribute crawl.
-
#document_url_pattern ⇒ String?
Returns the value of attribute document_url_pattern.
-
#max_document_urls_per_result ⇒ Integer?
Returns the value of attribute max_document_urls_per_result.
-
#max_total_urls ⇒ Integer?
Returns the value of attribute max_total_urls.
-
#mode ⇒ UrlExtractionMode?
Returns the value of attribute mode.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize ⇒ UrlExtractionConfig
constructor
A new instance of UrlExtractionConfig.
Constructor Details
#initialize ⇒ UrlExtractionConfig
Returns a new instance of UrlExtractionConfig.
236 |
# File 'sig/types.rbs', line 236
def initialize: (?mode: UrlExtractionMode, ?crawl: CrawlConfig, ?document_url_pattern: String, ?max_document_urls_per_result: Integer, ?max_total_urls: Integer, ?allow_local_file_inputs: bool, ?allow_file_uris: bool) -> void
|
Instance Attribute Details
#allow_file_uris ⇒ Boolean?
Returns the value of attribute allow_file_uris.
234 235 236 |
# File 'sig/types.rbs', line 234 def allow_file_uris @allow_file_uris end |
#allow_local_file_inputs ⇒ Boolean?
Returns the value of attribute allow_local_file_inputs.
233 234 235 |
# File 'sig/types.rbs', line 233 def allow_local_file_inputs @allow_local_file_inputs end |
#crawl ⇒ CrawlConfig?
Returns the value of attribute crawl.
229 230 231 |
# File 'sig/types.rbs', line 229 def crawl @crawl end |
#document_url_pattern ⇒ String?
Returns the value of attribute document_url_pattern.
230 231 232 |
# File 'sig/types.rbs', line 230 def document_url_pattern @document_url_pattern end |
#max_document_urls_per_result ⇒ Integer?
Returns the value of attribute max_document_urls_per_result.
231 232 233 |
# File 'sig/types.rbs', line 231 def max_document_urls_per_result @max_document_urls_per_result end |
#max_total_urls ⇒ Integer?
Returns the value of attribute max_total_urls.
232 233 234 |
# File 'sig/types.rbs', line 232 def max_total_urls @max_total_urls end |
#mode ⇒ UrlExtractionMode?
Returns the value of attribute mode.
228 229 230 |
# File 'sig/types.rbs', line 228 def mode @mode end |
Class Method Details
.default ⇒ UrlExtractionConfig
237 |
# File 'sig/types.rbs', line 237
def self.default: () -> UrlExtractionConfig
|