Class: Google::Apis::SheetsV4::DataSourceSheetProperties
- Inherits:
-
Object
- Object
- Google::Apis::SheetsV4::DataSourceSheetProperties
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/sheets_v4/classes.rb,
generated/google/apis/sheets_v4/representations.rb,
generated/google/apis/sheets_v4/representations.rb
Overview
Additional properties of a DATA_SOURCE sheet.
Instance Attribute Summary collapse
-
#columns ⇒ Array<Google::Apis::SheetsV4::DataSourceColumn>
The columns displayed on the sheet, corresponding to the values in RowData.
-
#data_execution_status ⇒ Google::Apis::SheetsV4::DataExecutionStatus
The data execution status.
-
#data_source_id ⇒ String
ID of the DataSource the sheet is connected to.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DataSourceSheetProperties
constructor
A new instance of DataSourceSheetProperties.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DataSourceSheetProperties
Returns a new instance of DataSourceSheetProperties.
4207 4208 4209 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 4207 def initialize(**args) update!(**args) end |
Instance Attribute Details
#columns ⇒ Array<Google::Apis::SheetsV4::DataSourceColumn>
The columns displayed on the sheet, corresponding to the values in RowData.
Corresponds to the JSON property columns
4187 4188 4189 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 4187 def columns @columns end |
#data_execution_status ⇒ Google::Apis::SheetsV4::DataExecutionStatus
The data execution status. A data execution is created to sync a data source
object with the latest data from a DataSource. It is usually scheduled to run
at background, you can check its state to tell if an execution completes There
are several scenarios where a data execution is triggered to run: * Adding a
data source creates an associated data source sheet as well as a data
execution to sync the data from the data source to the sheet. * Updating a
data source creates a data execution to refresh the associated data source
sheet similarly. * You can send refresh request to explicitly refresh one or
multiple data source objects.
Corresponds to the JSON property dataExecutionStatus
4200 4201 4202 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 4200 def data_execution_status @data_execution_status end |
#data_source_id ⇒ String
ID of the DataSource the sheet is connected to.
Corresponds to the JSON property dataSourceId
4205 4206 4207 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 4205 def data_source_id @data_source_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4212 4213 4214 4215 4216 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 4212 def update!(**args) @columns = args[:columns] if args.key?(:columns) @data_execution_status = args[:data_execution_status] if args.key?(:data_execution_status) @data_source_id = args[:data_source_id] if args.key?(:data_source_id) end |