Class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineLoggingErrorLog
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineLoggingErrorLog
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1alpha/classes.rb,
lib/google/apis/discoveryengine_v1alpha/representations.rb,
lib/google/apis/discoveryengine_v1alpha/representations.rb
Overview
An error log which is reported to the Error Reporting system.
Instance Attribute Summary collapse
-
#context ⇒ Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineLoggingErrorContext
A description of the context in which an error occurred.
-
#import_payload ⇒ Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineLoggingImportErrorContext
The error payload that is populated on LRO import APIs, including the following: * `google.cloud.discoveryengine.v1alpha.DocumentService.
-
#message ⇒ String
A message describing the error.
-
#request_payload ⇒ Hash<String,Object>
The API request payload, represented as a protocol buffer.
-
#response_payload ⇒ Hash<String,Object>
The API response payload, represented as a protocol buffer.
-
#service_context ⇒ Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineLoggingServiceContext
Describes a running service that sends errors.
-
#status ⇒ Google::Apis::DiscoveryengineV1alpha::GoogleRpcStatus
The
Status
type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineLoggingErrorLog
constructor
A new instance of GoogleCloudDiscoveryengineLoggingErrorLog.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineLoggingErrorLog
Returns a new instance of GoogleCloudDiscoveryengineLoggingErrorLog.
510 511 512 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 510 def initialize(**args) update!(**args) end |
Instance Attribute Details
#context ⇒ Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineLoggingErrorContext
A description of the context in which an error occurred.
Corresponds to the JSON property context
460 461 462 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 460 def context @context end |
#import_payload ⇒ Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineLoggingImportErrorContext
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
Corresponds to the JSON property importPayload
468 469 470 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 468 def import_payload @import_payload end |
#message ⇒ String
A message describing the error.
Corresponds to the JSON property message
473 474 475 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 473 def @message end |
#request_payload ⇒ Hash<String,Object>
The API request payload, represented as a protocol buffer. Most API request
types are supported—for example: * type.googleapis.com/google.cloud.
discoveryengine.v1alpha.DocumentService.CreateDocumentRequest
* type.
googleapis.com/google.cloud.discoveryengine.v1alpha.UserEventService.
WriteUserEventRequest
Corresponds to the JSON property requestPayload
482 483 484 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 482 def request_payload @request_payload end |
#response_payload ⇒ Hash<String,Object>
The API response payload, represented as a protocol buffer. This is used to
log some "soft errors", where the response is valid but we consider there are
some quality issues like unjoined events. The following API responses are
supported, and no PII is included: * google.cloud.discoveryengine.v1alpha.
RecommendationService.Recommend
* google.cloud.discoveryengine.v1alpha.
UserEventService.WriteUserEvent
* google.cloud.discoveryengine.v1alpha.
UserEventService.CollectUserEvent
Corresponds to the JSON property responsePayload
493 494 495 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 493 def response_payload @response_payload end |
#service_context ⇒ Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineLoggingServiceContext
Describes a running service that sends errors.
Corresponds to the JSON property serviceContext
498 499 500 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 498 def service_context @service_context end |
#status ⇒ Google::Apis::DiscoveryengineV1alpha::GoogleRpcStatus
The Status
type defines a logical error model that is suitable for different
programming environments, including REST APIs and RPC APIs. It is used by
gRPC. Each Status
message contains three pieces of
data: error code, error message, and error details. You can find out more
about this error model and how to work with it in the API Design Guide.
Corresponds to the JSON property status
508 509 510 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 508 def status @status end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
515 516 517 518 519 520 521 522 523 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 515 def update!(**args) @context = args[:context] if args.key?(:context) @import_payload = args[:import_payload] if args.key?(:import_payload) @message = args[:message] if args.key?(:message) @request_payload = args[:request_payload] if args.key?(:request_payload) @response_payload = args[:response_payload] if args.key?(:response_payload) @service_context = args[:service_context] if args.key?(:service_context) @status = args[:status] if args.key?(:status) end |