class Google::Apis::FusiontablesV2::Task
A background task on a table, initiated for time- or resource-consuming operations such as changing column types or deleting all rows.
Attributes
Type of the resource. This is always “fusiontables#task”. Corresponds to the JSON property `kind` @return [String]
Task percentage completion. Corresponds to the JSON property `progress` @return [String]
false while the table is busy with some other task. true if this background task is currently running. Corresponds to the JSON property `started` @return [Boolean]
false while the table is busy with some other task. true if this background task is currently running. Corresponds to the JSON property `started` @return [Boolean]
Identifier for the task. Corresponds to the JSON property `taskId` @return [String]
Type of background task. Corresponds to the JSON property `type` @return [String]
Public Class Methods
# File generated/google/apis/fusiontables_v2/classes.rb, line 904 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File generated/google/apis/fusiontables_v2/classes.rb, line 909 def update!(**args) @kind = args[:kind] if args.key?(:kind) @progress = args[:progress] if args.key?(:progress) @started = args[:started] if args.key?(:started) @task_id = args[:task_id] if args.key?(:task_id) @type = args[:type] if args.key?(:type) end