Class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineLoggingImportErrorContext
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineLoggingImportErrorContext
- 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
The error payload that is populated on LRO import APIs, including the
following: * google.cloud.discoveryengine.v1alpha.DocumentService.
ImportDocuments
* google.cloud.discoveryengine.v1alpha.UserEventService.
ImportUserEvents
Instance Attribute Summary collapse
-
#document ⇒ String
The detailed content which caused the error on importing a document.
-
#gcs_path ⇒ String
Google Cloud Storage file path of the import source.
-
#line_number ⇒ String
Line number of the content in file.
-
#operation ⇒ String
The operation resource name of the LRO.
-
#user_event ⇒ String
The detailed content which caused the error on importing a user event.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineLoggingImportErrorContext
constructor
A new instance of GoogleCloudDiscoveryengineLoggingImportErrorContext.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineLoggingImportErrorContext
Returns a new instance of GoogleCloudDiscoveryengineLoggingImportErrorContext.
640 641 642 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 640 def initialize(**args) update!(**args) end |
Instance Attribute Details
#document ⇒ String
The detailed content which caused the error on importing a document.
Corresponds to the JSON property document
616 617 618 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 616 def document @document end |
#gcs_path ⇒ String
Google Cloud Storage file path of the import source. Can be set for batch
operation error.
Corresponds to the JSON property gcsPath
622 623 624 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 622 def gcs_path @gcs_path end |
#line_number ⇒ String
Line number of the content in file. Should be empty for permission or batch
operation error.
Corresponds to the JSON property lineNumber
628 629 630 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 628 def line_number @line_number end |
#operation ⇒ String
The operation resource name of the LRO.
Corresponds to the JSON property operation
633 634 635 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 633 def operation @operation end |
#user_event ⇒ String
The detailed content which caused the error on importing a user event.
Corresponds to the JSON property userEvent
638 639 640 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 638 def user_event @user_event end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
645 646 647 648 649 650 651 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 645 def update!(**args) @document = args[:document] if args.key?(:document) @gcs_path = args[:gcs_path] if args.key?(:gcs_path) @line_number = args[:line_number] if args.key?(:line_number) @operation = args[:operation] if args.key?(:operation) @user_event = args[:user_event] if args.key?(:user_event) end |