Class: Google::Apis::HealthcareV1alpha2::ErrorDetail
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1alpha2::ErrorDetail
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/healthcare_v1alpha2/classes.rb,
generated/google/apis/healthcare_v1alpha2/representations.rb,
generated/google/apis/healthcare_v1alpha2/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
-
#error ⇒ Google::Apis::HealthcareV1alpha2::Status
The
Status
type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. -
#resource ⇒ String
The identifier of the resource.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ErrorDetail
constructor
A new instance of ErrorDetail.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ErrorDetail
Returns a new instance of ErrorDetail
720 721 722 |
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 720 def initialize(**args) update!(**args) end |
Instance Attribute Details
#error ⇒ Google::Apis::HealthcareV1alpha2::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
713 714 715 |
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 713 def error @error end |
#resource ⇒ String
The identifier of the resource.
Corresponds to the JSON property resource
718 719 720 |
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 718 def resource @resource end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
725 726 727 728 |
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 725 def update!(**args) @error = args[:error] if args.key?(:error) @resource = args[:resource] if args.key?(:resource) end |