Class: Google::Apis::ComputeBeta::ManagedInstanceLastAttempt::Errors::Error::ErrorDetail
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::ManagedInstanceLastAttempt::Errors::Error::ErrorDetail
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_beta/classes.rb,
lib/google/apis/compute_beta/representations.rb,
lib/google/apis/compute_beta/representations.rb
Instance Attribute Summary collapse
-
#error_info ⇒ Google::Apis::ComputeBeta::ErrorInfo
Describes the cause of the error with structured details.
-
#help ⇒ Google::Apis::ComputeBeta::Help
Provides links to documentation or for performing an out of band action.
-
#localized_message ⇒ Google::Apis::ComputeBeta::LocalizedMessage
Provides a localized error message that is safe to return to the user which can be attached to an RPC error.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ErrorDetail
constructor
A new instance of ErrorDetail.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ErrorDetail
Returns a new instance of ErrorDetail.
20037 20038 20039 |
# File 'lib/google/apis/compute_beta/classes.rb', line 20037 def initialize(**args) update!(**args) end |
Instance Attribute Details
#error_info ⇒ Google::Apis::ComputeBeta::ErrorInfo
Describes the cause of the error with structured details. Example of an error
when contacting the "pubsub.googleapis.com" API when it is not enabled: "
reason": "API_DISABLED" "domain": "googleapis.com" "metadata": "resource": "
projects/123", "service": "pubsub.googleapis.com" This response indicates
that the pubsub.googleapis.com API is not enabled. Example of an error that is
returned when attempting to create a Spanner instance in a region that is out
of stock: "reason": "STOCKOUT" "domain": "spanner.googleapis.com", "metadata"
: "availableRegions": "us-central1,us-east2"
Corresponds to the JSON property errorInfo
20021 20022 20023 |
# File 'lib/google/apis/compute_beta/classes.rb', line 20021 def error_info @error_info end |
#help ⇒ Google::Apis::ComputeBeta::Help
Provides links to documentation or for performing an out of band action. For
example, if a quota check failed with an error indicating the calling project
hasn't enabled the accessed service, this can contain a URL pointing directly
to the right place in the developer console to flip the bit.
Corresponds to the JSON property help
20029 20030 20031 |
# File 'lib/google/apis/compute_beta/classes.rb', line 20029 def help @help end |
#localized_message ⇒ Google::Apis::ComputeBeta::LocalizedMessage
Provides a localized error message that is safe to return to the user which
can be attached to an RPC error.
Corresponds to the JSON property localizedMessage
20035 20036 20037 |
# File 'lib/google/apis/compute_beta/classes.rb', line 20035 def @localized_message end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
20042 20043 20044 20045 20046 |
# File 'lib/google/apis/compute_beta/classes.rb', line 20042 def update!(**args) @error_info = args[:error_info] if args.key?(:error_info) @help = args[:help] if args.key?(:help) @localized_message = args[:localized_message] if args.key?(:localized_message) end |