Class: Google::Cloud::DiscoveryEngine::V1beta::RecrawlUrisResponse::FailureInfo::FailureReason
- Inherits:
-
Object
- Object
- Google::Cloud::DiscoveryEngine::V1beta::RecrawlUrisResponse::FailureInfo::FailureReason
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/discoveryengine/v1beta/site_search_engine_service.rb
Overview
Details about why crawling failed for a particular CorpusType, e.g., DESKTOP and MOBILE crawling may fail for different reasons.
Defined Under Namespace
Modules: CorpusType
Instance Attribute Summary collapse
-
#corpus_type ⇒ ::Google::Cloud::DiscoveryEngine::V1beta::RecrawlUrisResponse::FailureInfo::FailureReason::CorpusType
DESKTOP, MOBILE, or CORPUS_TYPE_UNSPECIFIED.
-
#error_message ⇒ ::String
Reason why the URI was not crawled.
Instance Attribute Details
#corpus_type ⇒ ::Google::Cloud::DiscoveryEngine::V1beta::RecrawlUrisResponse::FailureInfo::FailureReason::CorpusType
Returns DESKTOP, MOBILE, or CORPUS_TYPE_UNSPECIFIED.
390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 |
# File 'proto_docs/google/cloud/discoveryengine/v1beta/site_search_engine_service.rb', line 390 class FailureReason include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # CorpusType for the failed crawling operation. module CorpusType # Default value. CORPUS_TYPE_UNSPECIFIED = 0 # Denotes a crawling attempt for the desktop version of a page. DESKTOP = 1 # Denotes a crawling attempt for the mobile version of a page. MOBILE = 2 end end |
#error_message ⇒ ::String
Returns Reason why the URI was not crawled.
390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 |
# File 'proto_docs/google/cloud/discoveryengine/v1beta/site_search_engine_service.rb', line 390 class FailureReason include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # CorpusType for the failed crawling operation. module CorpusType # Default value. CORPUS_TYPE_UNSPECIFIED = 0 # Denotes a crawling attempt for the desktop version of a page. DESKTOP = 1 # Denotes a crawling attempt for the mobile version of a page. MOBILE = 2 end end |