Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1Metadata

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

Overview

Encapsulates additional information about query execution.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudApigeeV1Metadata

Returns a new instance of GoogleCloudApigeeV1Metadata.



7759
7760
7761
# File 'lib/google/apis/apigee_v1/classes.rb', line 7759

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

Instance Attribute Details

#errorsArray<String>

List of error messages as strings. Corresponds to the JSON property errors

Returns:

  • (Array<String>)


7749
7750
7751
# File 'lib/google/apis/apigee_v1/classes.rb', line 7749

def errors
  @errors
end

#noticesArray<String>

List of additional information such as data source, if result was truncated. For example: "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

Returns:

  • (Array<String>)


7757
7758
7759
# File 'lib/google/apis/apigee_v1/classes.rb', line 7757

def notices
  @notices
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7764
7765
7766
7767
# File 'lib/google/apis/apigee_v1/classes.rb', line 7764

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