Class: Google::Apis::ComputeV1::Operation::Error::Error
- Inherits:
-
Object
- Object
- Google::Apis::ComputeV1::Operation::Error::Error
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_v1/classes.rb,
lib/google/apis/compute_v1/representations.rb,
lib/google/apis/compute_v1/representations.rb
Defined Under Namespace
Classes: ErrorDetail
Instance Attribute Summary collapse
-
#code ⇒ String
[Output Only] The error type identifier for this error.
-
#error_details ⇒ Array<Google::Apis::ComputeV1::Operation::Error::Error::ErrorDetail>
[Output Only] An optional list of messages that contain the error details.
-
#location ⇒ String
[Output Only] Indicates the field in the request that caused the error.
-
#message ⇒ String
[Output Only] An optional, human-readable error message.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Error
constructor
A new instance of Error.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Error
Returns a new instance of Error.
27838 27839 27840 |
# File 'lib/google/apis/compute_v1/classes.rb', line 27838 def initialize(**args) update!(**args) end |
Instance Attribute Details
#code ⇒ String
[Output Only] The error type identifier for this error.
Corresponds to the JSON property code
27817 27818 27819 |
# File 'lib/google/apis/compute_v1/classes.rb', line 27817 def code @code end |
#error_details ⇒ Array<Google::Apis::ComputeV1::Operation::Error::Error::ErrorDetail>
[Output Only] An optional list of messages that contain the error details.
There is a set of defined message types to use for providing details.The
syntax depends on the error code. For example, QuotaExceededInfo will have
details when the error code is QUOTA_EXCEEDED.
Corresponds to the JSON property errorDetails
27825 27826 27827 |
# File 'lib/google/apis/compute_v1/classes.rb', line 27825 def error_details @error_details end |
#location ⇒ String
[Output Only] Indicates the field in the request that caused the error. This
property is optional.
Corresponds to the JSON property location
27831 27832 27833 |
# File 'lib/google/apis/compute_v1/classes.rb', line 27831 def location @location end |
#message ⇒ String
[Output Only] An optional, human-readable error message.
Corresponds to the JSON property message
27836 27837 27838 |
# File 'lib/google/apis/compute_v1/classes.rb', line 27836 def @message end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
27843 27844 27845 27846 27847 27848 |
# File 'lib/google/apis/compute_v1/classes.rb', line 27843 def update!(**args) @code = args[:code] if args.key?(:code) @error_details = args[:error_details] if args.key?(:error_details) @location = args[:location] if args.key?(:location) @message = args[:message] if args.key?(:message) end |