class Google::Apis::ApigeeV1::GoogleCloudApigeeV1Metadata

This message type encapsulates additional information about query execution.

Attributes

errors[RW]

List of error messages as strings. Corresponds to the JSON property `errors` @return [Array<String>]

notices[RW]

List of additional information such as data source, if result was truncated etc. E.g “notices”: [ “Source:Postgres”, “PG Host:uappg0rw.e2e.apigeeks.net”, “ query served by:4b64601e-40de-4eb1-bfb9-eeee7ac929ed”, “Table used: edge.api. uapgroup2.agg_api” ] Corresponds to the JSON property `notices` @return [Array<String>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/apigee_v1/classes.rb, line 4600
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 4605
def update!(**args)
  @errors = args[:errors] if args.key?(:errors)
  @notices = args[:notices] if args.key?(:notices)
end