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

Returns a new instance of GoogleCloudDataplexV1SessionEventQueryDetail.



4958
4959
4960
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4958

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

Instance Attribute Details

#data_processed_bytesFixnum

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

Returns:

  • (Fixnum)


4931
4932
4933
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4931

def data_processed_bytes
  @data_processed_bytes
end

#durationString

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

Returns:

  • (String)


4936
4937
4938
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4936

def duration
  @duration
end

#engineString

Query Execution engine. Corresponds to the JSON property engine

Returns:

  • (String)


4941
4942
4943
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4941

def engine
  @engine
end

#query_idString

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

Returns:

  • (String)


4946
4947
4948
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4946

def query_id
  @query_id
end

#query_textString

The query text executed. Corresponds to the JSON property queryText

Returns:

  • (String)


4951
4952
4953
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4951

def query_text
  @query_text
end

#result_size_bytesFixnum

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

Returns:

  • (Fixnum)


4956
4957
4958
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4956

def result_size_bytes
  @result_size_bytes
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4963
4964
4965
4966
4967
4968
4969
4970
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4963

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