class Google::Apis::SheetsV4::DataSourceSpec

This specifies the details of the data source. For example, for BigQuery, this specifies information about the BigQuery source.

Attributes

big_query[RW]

The specification of a BigQuery data source that's connected to a sheet. Corresponds to the JSON property `bigQuery` @return [Google::Apis::SheetsV4::BigQueryDataSourceSpec]

parameters[RW]

The parameters of the data source, used when querying the data source. Corresponds to the JSON property `parameters` @return [Array<Google::Apis::SheetsV4::DataSourceParameter>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/sheets_v4/classes.rb, line 4236
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/sheets_v4/classes.rb, line 4241
def update!(**args)
  @big_query = args[:big_query] if args.key?(:big_query)
  @parameters = args[:parameters] if args.key?(:parameters)
end