Show / Hide Table of Contents

Class DatasetList

Response format for a page of results when listing datasets.

Inheritance
object
DatasetList
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Bigquery.v2.Data
Assembly: Google.Apis.Bigquery.v2.dll
Syntax
public class DatasetList : IDirectResponseSchema

Properties

Datasets

An array of the dataset resources in the project. Each resource contains basic information. For full information about a particular dataset resource, use the Datasets: get method. This property is omitted when there are no datasets in the project.

Declaration
[JsonProperty("datasets")]
public virtual IList<DatasetList.DatasetsData> Datasets { get; set; }
Property Value
Type Description
IList<DatasetList.DatasetsData>

ETag

Output only. A hash value of the results page. You can use this property to determine if the page has changed since the last request.

Declaration
[JsonProperty("etag")]
public virtual string ETag { get; set; }
Property Value
Type Description
string

Kind

Output only. The resource type. This property always returns the value "bigquery#datasetList"

Declaration
[JsonProperty("kind")]
public virtual string Kind { get; set; }
Property Value
Type Description
string

NextPageToken

A token that can be used to request the next results page. This property is omitted on the final results page.

Declaration
[JsonProperty("nextPageToken")]
public virtual string NextPageToken { get; set; }
Property Value
Type Description
string

Unreachable

A list of skipped locations that were unreachable. For more information about BigQuery locations, see: https://cloud.google.com/bigquery/docs/locations. Example: "europe-west5"

Declaration
[JsonProperty("unreachable")]
public virtual IList<string> Unreachable { get; set; }
Property Value
Type Description
IList<string>

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX