Class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaRecrawlUrisResponseFailureInfoFailureReason
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaRecrawlUrisResponseFailureInfoFailureReason
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1/classes.rb,
lib/google/apis/discoveryengine_v1/representations.rb,
lib/google/apis/discoveryengine_v1/representations.rb
Overview
Details about why crawling failed for a particular CorpusType, e.g., DESKTOP and MOBILE crawling may fail for different reasons.
Instance Attribute Summary collapse
-
#corpus_type ⇒ String
DESKTOP, MOBILE, or CORPUS_TYPE_UNSPECIFIED.
-
#error_message ⇒ String
Reason why the URI was not crawled.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaRecrawlUrisResponseFailureInfoFailureReason
constructor
A new instance of GoogleCloudDiscoveryengineV1alphaRecrawlUrisResponseFailureInfoFailureReason.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaRecrawlUrisResponseFailureInfoFailureReason
Returns a new instance of GoogleCloudDiscoveryengineV1alphaRecrawlUrisResponseFailureInfoFailureReason.
12651 12652 12653 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 12651 def initialize(**args) update!(**args) end |
Instance Attribute Details
#corpus_type ⇒ String
DESKTOP, MOBILE, or CORPUS_TYPE_UNSPECIFIED.
Corresponds to the JSON property corpusType
12644 12645 12646 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 12644 def corpus_type @corpus_type end |
#error_message ⇒ String
Reason why the URI was not crawled.
Corresponds to the JSON property errorMessage
12649 12650 12651 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 12649 def @error_message end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
12656 12657 12658 12659 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 12656 def update!(**args) @corpus_type = args[:corpus_type] if args.key?(:corpus_type) @error_message = args[:error_message] if args.key?(:error_message) end |