class Google::Apis::ApigatewayV1beta::ApigatewayOperationMetadataDiagnostic

Diagnostic information from configuration processing.

Attributes

location[RW]

Location of the diagnostic. Corresponds to the JSON property `location` @return [String]

message[RW]

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

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

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