Class: Google::Apis::ApigatewayV1::ApigatewayOperationMetadataDiagnostic

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/apigateway_v1/classes.rb,
generated/google/apis/apigateway_v1/representations.rb,
generated/google/apis/apigateway_v1/representations.rb

Overview

Diagnostic information from configuration processing.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ApigatewayOperationMetadataDiagnostic

Returns a new instance of ApigatewayOperationMetadataDiagnostic.



865
866
867
# File 'generated/google/apis/apigateway_v1/classes.rb', line 865

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

Instance Attribute Details

#locationString

Location of the diagnostic. Corresponds to the JSON property location

Returns:

  • (String)


858
859
860
# File 'generated/google/apis/apigateway_v1/classes.rb', line 858

def location
  @location
end

#messageString

The diagnostic message. Corresponds to the JSON property message

Returns:

  • (String)


863
864
865
# File 'generated/google/apis/apigateway_v1/classes.rb', line 863

def message
  @message
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



870
871
872
873
# File 'generated/google/apis/apigateway_v1/classes.rb', line 870

def update!(**args)
  @location = args[:location] if args.key?(:location)
  @message = args[:message] if args.key?(:message)
end