class Google::Apis::ApigeeV1::GoogleCloudApigeeV1UpdateError

Details on why a resource update failed in the runtime.

Attributes

code[RW]

Status code. Corresponds to the JSON property `code` @return [String]

message[RW]

User-friendly error message. Corresponds to the JSON property `message` @return [String]

resource[RW]

The sub resource specific to this error (e.g. a proxy deployed within the EnvironmentConfig). If empty the error refers to the top level resource. Corresponds to the JSON property `resource` @return [String]

type[RW]

A string that uniquely identifies the type of error. This provides a more reliable means to deduplicate errors across revisions and instances. Corresponds to the JSON property `type` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/apigee_v1/classes.rb, line 7322
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/apigee_v1/classes.rb, line 7327
def update!(**args)
  @code = args[:code] if args.key?(:code)
  @message = args[:message] if args.key?(:message)
  @resource = args[:resource] if args.key?(:resource)
  @type = args[:type] if args.key?(:type)
end