Class: Google::Apis::DataprocV1::SqlExecutionUiData

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

Overview

SQL Execution Data

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SqlExecutionUiData

Returns a new instance of SqlExecutionUiData.



9783
9784
9785
# File 'lib/google/apis/dataproc_v1/classes.rb', line 9783

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

Instance Attribute Details

#completion_timeString

Corresponds to the JSON property completionTime

Returns:

  • (String)


9715
9716
9717
# File 'lib/google/apis/dataproc_v1/classes.rb', line 9715

def completion_time
  @completion_time
end

#descriptionString

Corresponds to the JSON property description

Returns:

  • (String)


9720
9721
9722
# File 'lib/google/apis/dataproc_v1/classes.rb', line 9720

def description
  @description
end

#detailsString

Corresponds to the JSON property details

Returns:

  • (String)


9725
9726
9727
# File 'lib/google/apis/dataproc_v1/classes.rb', line 9725

def details
  @details
end

#error_messageString

Corresponds to the JSON property errorMessage

Returns:

  • (String)


9730
9731
9732
# File 'lib/google/apis/dataproc_v1/classes.rb', line 9730

def error_message
  @error_message
end

#execution_idFixnum

Corresponds to the JSON property executionId

Returns:

  • (Fixnum)


9735
9736
9737
# File 'lib/google/apis/dataproc_v1/classes.rb', line 9735

def execution_id
  @execution_id
end

#jobsHash<String,String>

Corresponds to the JSON property jobs

Returns:

  • (Hash<String,String>)


9740
9741
9742
# File 'lib/google/apis/dataproc_v1/classes.rb', line 9740

def jobs
  @jobs
end

#metric_valuesHash<String,String>

Corresponds to the JSON property metricValues

Returns:

  • (Hash<String,String>)


9745
9746
9747
# File 'lib/google/apis/dataproc_v1/classes.rb', line 9745

def metric_values
  @metric_values
end

#metric_values_is_nullBoolean Also known as: metric_values_is_null?

Corresponds to the JSON property metricValuesIsNull

Returns:

  • (Boolean)


9750
9751
9752
# File 'lib/google/apis/dataproc_v1/classes.rb', line 9750

def metric_values_is_null
  @metric_values_is_null
end

#metricsArray<Google::Apis::DataprocV1::SqlPlanMetric>

Corresponds to the JSON property metrics



9756
9757
9758
# File 'lib/google/apis/dataproc_v1/classes.rb', line 9756

def metrics
  @metrics
end

#modified_configsHash<String,String>

Corresponds to the JSON property modifiedConfigs

Returns:

  • (Hash<String,String>)


9761
9762
9763
# File 'lib/google/apis/dataproc_v1/classes.rb', line 9761

def modified_configs
  @modified_configs
end

#physical_plan_descriptionString

Corresponds to the JSON property physicalPlanDescription

Returns:

  • (String)


9766
9767
9768
# File 'lib/google/apis/dataproc_v1/classes.rb', line 9766

def physical_plan_description
  @physical_plan_description
end

#root_execution_idFixnum

Corresponds to the JSON property rootExecutionId

Returns:

  • (Fixnum)


9771
9772
9773
# File 'lib/google/apis/dataproc_v1/classes.rb', line 9771

def root_execution_id
  @root_execution_id
end

#stagesArray<Fixnum>

Corresponds to the JSON property stages

Returns:

  • (Array<Fixnum>)


9776
9777
9778
# File 'lib/google/apis/dataproc_v1/classes.rb', line 9776

def stages
  @stages
end

#submission_timeString

Corresponds to the JSON property submissionTime

Returns:

  • (String)


9781
9782
9783
# File 'lib/google/apis/dataproc_v1/classes.rb', line 9781

def submission_time
  @submission_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9788
9789
9790
9791
9792
9793
9794
9795
9796
9797
9798
9799
9800
9801
9802
9803
# File 'lib/google/apis/dataproc_v1/classes.rb', line 9788

def update!(**args)
  @completion_time = args[:completion_time] if args.key?(:completion_time)
  @description = args[:description] if args.key?(:description)
  @details = args[:details] if args.key?(:details)
  @error_message = args[:error_message] if args.key?(:error_message)
  @execution_id = args[:execution_id] if args.key?(:execution_id)
  @jobs = args[:jobs] if args.key?(:jobs)
  @metric_values = args[:metric_values] if args.key?(:metric_values)
  @metric_values_is_null = args[:metric_values_is_null] if args.key?(:metric_values_is_null)
  @metrics = args[:metrics] if args.key?(:metrics)
  @modified_configs = args[:modified_configs] if args.key?(:modified_configs)
  @physical_plan_description = args[:physical_plan_description] if args.key?(:physical_plan_description)
  @root_execution_id = args[:root_execution_id] if args.key?(:root_execution_id)
  @stages = args[:stages] if args.key?(:stages)
  @submission_time = args[:submission_time] if args.key?(:submission_time)
end