class Google::Apis::DeploymentmanagerV2::Operation::Error::Error

Attributes

code[RW]
Output Only

The error type identifier for this error.

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

location[RW]
Output Only

Indicates the field in the request that caused the error. This

property is optional. Corresponds to the JSON property `location` @return [String]

message[RW]
Output Only

An optional, human-readable error message.

Corresponds to the JSON property `message` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/deploymentmanager_v2/classes.rb, line 628
def update!(**args)
  @code = args[:code] if args.key?(:code)
  @location = args[:location] if args.key?(:location)
  @message = args[:message] if args.key?(:message)
end