Class: Google::Apis::HealthcareV1beta1::ErrorDetail

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/healthcare_v1beta1/classes.rb,
generated/google/apis/healthcare_v1beta1/representations.rb,
generated/google/apis/healthcare_v1beta1/representations.rb

Overview

Structure to describe the error encountered during batch operation on one resource. This is used both for sample errors in operation response, and for format of errors in error reports.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ErrorDetail

Returns a new instance of ErrorDetail



566
567
568
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 566

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#errorGoogle::Apis::HealthcareV1beta1::Status

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 error



559
560
561
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 559

def error
  @error
end

#resourceString

The identifier of the resource. Corresponds to the JSON property resource

Returns:

  • (String)


564
565
566
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 564

def resource
  @resource
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



571
572
573
574
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 571

def update!(**args)
  @error = args[:error] if args.key?(:error)
  @resource = args[:resource] if args.key?(:resource)
end