Class: Google::Apis::DataprocV1::SqlExecutionUiData
- Inherits:
-
Object
- Object
- Google::Apis::DataprocV1::SqlExecutionUiData
- 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
-
#completion_time ⇒ String
Corresponds to the JSON property
completionTime. -
#description ⇒ String
Corresponds to the JSON property
description. -
#details ⇒ String
Corresponds to the JSON property
details. -
#error_message ⇒ String
Corresponds to the JSON property
errorMessage. -
#execution_id ⇒ Fixnum
Corresponds to the JSON property
executionId. -
#jobs ⇒ Hash<String,String>
Corresponds to the JSON property
jobs. -
#metric_values ⇒ Hash<String,String>
Corresponds to the JSON property
metricValues. -
#metric_values_is_null ⇒ Boolean
(also: #metric_values_is_null?)
Corresponds to the JSON property
metricValuesIsNull. -
#metrics ⇒ Array<Google::Apis::DataprocV1::SqlPlanMetric>
Corresponds to the JSON property
metrics. -
#modified_configs ⇒ Hash<String,String>
Corresponds to the JSON property
modifiedConfigs. -
#physical_plan_description ⇒ String
Corresponds to the JSON property
physicalPlanDescription. -
#root_execution_id ⇒ Fixnum
Corresponds to the JSON property
rootExecutionId. -
#stages ⇒ Array<Fixnum>
Corresponds to the JSON property
stages. -
#submission_time ⇒ String
Corresponds to the JSON property
submissionTime.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SqlExecutionUiData
constructor
A new instance of SqlExecutionUiData.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SqlExecutionUiData
Returns a new instance of SqlExecutionUiData.
9803 9804 9805 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 9803 def initialize(**args) update!(**args) end |
Instance Attribute Details
#completion_time ⇒ String
Corresponds to the JSON property completionTime
9735 9736 9737 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 9735 def completion_time @completion_time end |
#description ⇒ String
Corresponds to the JSON property description
9740 9741 9742 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 9740 def description @description end |
#details ⇒ String
Corresponds to the JSON property details
9745 9746 9747 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 9745 def details @details end |
#error_message ⇒ String
Corresponds to the JSON property errorMessage
9750 9751 9752 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 9750 def @error_message end |
#execution_id ⇒ Fixnum
Corresponds to the JSON property executionId
9755 9756 9757 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 9755 def execution_id @execution_id end |
#jobs ⇒ Hash<String,String>
Corresponds to the JSON property jobs
9760 9761 9762 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 9760 def jobs @jobs end |
#metric_values ⇒ Hash<String,String>
Corresponds to the JSON property metricValues
9765 9766 9767 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 9765 def metric_values @metric_values end |
#metric_values_is_null ⇒ Boolean Also known as: metric_values_is_null?
Corresponds to the JSON property metricValuesIsNull
9770 9771 9772 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 9770 def metric_values_is_null @metric_values_is_null end |
#metrics ⇒ Array<Google::Apis::DataprocV1::SqlPlanMetric>
Corresponds to the JSON property metrics
9776 9777 9778 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 9776 def metrics @metrics end |
#modified_configs ⇒ Hash<String,String>
Corresponds to the JSON property modifiedConfigs
9781 9782 9783 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 9781 def modified_configs @modified_configs end |
#physical_plan_description ⇒ String
Corresponds to the JSON property physicalPlanDescription
9786 9787 9788 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 9786 def physical_plan_description @physical_plan_description end |
#root_execution_id ⇒ Fixnum
Corresponds to the JSON property rootExecutionId
9791 9792 9793 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 9791 def root_execution_id @root_execution_id end |
#stages ⇒ Array<Fixnum>
Corresponds to the JSON property stages
9796 9797 9798 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 9796 def stages @stages end |
#submission_time ⇒ String
Corresponds to the JSON property submissionTime
9801 9802 9803 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 9801 def submission_time @submission_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9808 9809 9810 9811 9812 9813 9814 9815 9816 9817 9818 9819 9820 9821 9822 9823 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 9808 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 |