class Google::Apis::ApigeeV1::GoogleCloudApigeeV1AsyncQueryResultView
Attributes
code[RW]
Error code when there is a failure. Corresponds to the JSON property `code` @return [Fixnum]
error[RW]
Error message when there is a failure. Corresponds to the JSON property `error` @return [String]
metadata[RW]
Metadata contains information like metrics, dimenstions etc of the AsyncQuery. Corresponds to the JSON property `metadata` @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1QueryMetadata]
rows[RW]
Rows of query result. Each row is a JSON object. Example: `sum(message_count): 1, developer_app: “(not set)”,…` Corresponds to the JSON property `rows` @return [Array<Object>]
state[RW]
State of retrieving ResultView. Corresponds to the JSON property `state` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/apigee_v1/classes.rb, line 1173 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 1178 def update!(**args) @code = args[:code] if args.key?(:code) @error = args[:error] if args.key?(:error) @metadata = args[:metadata] if args.key?(:metadata) @rows = args[:rows] if args.key?(:rows) @state = args[:state] if args.key?(:state) end