Show / Hide Table of Contents

Class DataSourceSpec

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

Inheritance
System.Object
DataSourceSpec
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Sheets.v4.Data
Assembly: Google.Apis.Sheets.v4.dll
Syntax
public class DataSourceSpec : IDirectResponseSchema

Properties

BigQuery

A BigQueryDataSourceSpec.

Declaration
[JsonProperty("bigQuery")]
public virtual BigQueryDataSourceSpec BigQuery { get; set; }
Property Value
Type Description
BigQueryDataSourceSpec

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Parameters

The parameters of the data source, used when querying the data source.

Declaration
[JsonProperty("parameters")]
public virtual IList<DataSourceParameter> Parameters { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<DataSourceParameter>

Implements

IDirectResponseSchema
In This Article
Back to top