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.
211 |
# File 'sig/types.rbs', line 211
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.
209 210 211 |
# File 'sig/types.rbs', line 209 def allow_file_uris @allow_file_uris end |
#allow_local_file_inputs ⇒ Boolean?
Returns the value of attribute allow_local_file_inputs.
208 209 210 |
# File 'sig/types.rbs', line 208 def allow_local_file_inputs @allow_local_file_inputs end |
#crawl ⇒ CrawlConfig?
Returns the value of attribute crawl.
204 205 206 |
# File 'sig/types.rbs', line 204 def crawl @crawl end |
#document_url_pattern ⇒ String?
Returns the value of attribute document_url_pattern.
205 206 207 |
# File 'sig/types.rbs', line 205 def document_url_pattern @document_url_pattern end |
#max_document_urls_per_result ⇒ Integer?
Returns the value of attribute max_document_urls_per_result.
206 207 208 |
# File 'sig/types.rbs', line 206 def max_document_urls_per_result @max_document_urls_per_result end |
#max_total_urls ⇒ Integer?
Returns the value of attribute max_total_urls.
207 208 209 |
# File 'sig/types.rbs', line 207 def max_total_urls @max_total_urls end |
#mode ⇒ UrlExtractionMode?
Returns the value of attribute mode.
203 204 205 |
# File 'sig/types.rbs', line 203 def mode @mode end |
Class Method Details
.default ⇒ UrlExtractionConfig
212 |
# File 'sig/types.rbs', line 212
def self.default: () -> UrlExtractionConfig
|