Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1SessionEventQueryDetail

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

Overview

Execution details of the query.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDataplexV1SessionEventQueryDetail



7898
7899
7900
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7898

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

Instance Attribute Details

#data_processed_bytesFixnum

The data processed by the query. Corresponds to the JSON property dataProcessedBytes



7871
7872
7873
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7871

def data_processed_bytes
  @data_processed_bytes
end

#durationString

Time taken for execution of the query. Corresponds to the JSON property duration



7876
7877
7878
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7876

def duration
  @duration
end

#engineString

Query Execution engine. Corresponds to the JSON property engine



7881
7882
7883
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7881

def engine
  @engine
end

#query_idString

The unique Query id identifying the query. Corresponds to the JSON property queryId



7886
7887
7888
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7886

def query_id
  @query_id
end

#query_textString

The query text executed. Corresponds to the JSON property queryText



7891
7892
7893
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7891

def query_text
  @query_text
end

#result_size_bytesFixnum

The size of results the query produced. Corresponds to the JSON property resultSizeBytes



7896
7897
7898
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7896

def result_size_bytes
  @result_size_bytes
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7903
7904
7905
7906
7907
7908
7909
7910
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7903

def update!(**args)
  @data_processed_bytes = args[:data_processed_bytes] if args.key?(:data_processed_bytes)
  @duration = args[:duration] if args.key?(:duration)
  @engine = args[:engine] if args.key?(:engine)
  @query_id = args[:query_id] if args.key?(:query_id)
  @query_text = args[:query_text] if args.key?(:query_text)
  @result_size_bytes = args[:result_size_bytes] if args.key?(:result_size_bytes)
end