Class: Google::Apis::ComputeAlpha::Operation::Error::Error::ErrorDetail

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/compute_alpha/classes.rb,
lib/google/apis/compute_alpha/representations.rb,
lib/google/apis/compute_alpha/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ErrorDetail

Returns a new instance of ErrorDetail.



30051
30052
30053
# File 'lib/google/apis/compute_alpha/classes.rb', line 30051

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

Instance Attribute Details

#error_infoGoogle::Apis::ComputeAlpha::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



30030
30031
30032
# File 'lib/google/apis/compute_alpha/classes.rb', line 30030

def error_info
  @error_info
end

#helpGoogle::Apis::ComputeAlpha::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



30038
30039
30040
# File 'lib/google/apis/compute_alpha/classes.rb', line 30038

def help
  @help
end

#localized_messageGoogle::Apis::ComputeAlpha::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



30044
30045
30046
# File 'lib/google/apis/compute_alpha/classes.rb', line 30044

def localized_message
  @localized_message
end

#quota_infoGoogle::Apis::ComputeAlpha::QuotaExceededInfo

Additional details for quota exceeded error for resource quota. Corresponds to the JSON property quotaInfo



30049
30050
30051
# File 'lib/google/apis/compute_alpha/classes.rb', line 30049

def quota_info
  @quota_info
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



30056
30057
30058
30059
30060
30061
# File 'lib/google/apis/compute_alpha/classes.rb', line 30056

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)
  @quota_info = args[:quota_info] if args.key?(:quota_info)
end