Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1SessionEventQueryDetail
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DataplexV1::GoogleCloudDataplexV1SessionEventQueryDetail
 
 
- 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
- 
  
    
      #data_processed_bytes  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The data processed by the query.
 - 
  
    
      #duration  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Time taken for execution of the query.
 - 
  
    
      #engine  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Query Execution engine.
 - 
  
    
      #query_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The unique Query id identifying the query.
 - 
  
    
      #query_text  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The query text executed.
 - 
  
    
      #result_size_bytes  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The size of results the query produced.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudDataplexV1SessionEventQueryDetail 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudDataplexV1SessionEventQueryDetail.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1SessionEventQueryDetail
Returns a new instance of GoogleCloudDataplexV1SessionEventQueryDetail.
      6665 6666 6667  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 6665 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#data_processed_bytes ⇒ Fixnum
The data processed by the query.
Corresponds to the JSON property dataProcessedBytes
      6638 6639 6640  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 6638 def data_processed_bytes @data_processed_bytes end  | 
  
#duration ⇒ String
Time taken for execution of the query.
Corresponds to the JSON property duration
      6643 6644 6645  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 6643 def duration @duration end  | 
  
#engine ⇒ String
Query Execution engine.
Corresponds to the JSON property engine
      6648 6649 6650  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 6648 def engine @engine end  | 
  
#query_id ⇒ String
The unique Query id identifying the query.
Corresponds to the JSON property queryId
      6653 6654 6655  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 6653 def query_id @query_id end  | 
  
#query_text ⇒ String
The query text executed.
Corresponds to the JSON property queryText
      6658 6659 6660  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 6658 def query_text @query_text end  | 
  
#result_size_bytes ⇒ Fixnum
The size of results the query produced.
Corresponds to the JSON property resultSizeBytes
      6663 6664 6665  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 6663 def result_size_bytes @result_size_bytes end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      6670 6671 6672 6673 6674 6675 6676 6677  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 6670 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  |