Show / Hide Table of Contents

Class DatasetList.DatasetsData

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.

Inheritance
System.Object
DatasetList.DatasetsData
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.Bigquery.v2.Data
Assembly: Google.Apis.Bigquery.v2.dll
Syntax
public class DatasetsData

Properties

DatasetReference

The dataset reference. Use this property to access specific parts of the dataset's ID, such as project ID or dataset ID.

Declaration
[JsonProperty("datasetReference")]
public virtual DatasetReference DatasetReference { get; set; }
Property Value
Type Description
DatasetReference

FriendlyName

A descriptive name for the dataset, if one exists.

Declaration
[JsonProperty("friendlyName")]
public virtual string FriendlyName { get; set; }
Property Value
Type Description
System.String

Id

The fully-qualified, unique, opaque ID of the dataset.

Declaration
[JsonProperty("id")]
public virtual string Id { get; set; }
Property Value
Type Description
System.String

Kind

The resource type. This property always returns the value "bigquery#dataset".

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

Labels

The labels associated with this dataset. You can use these to organize and group your datasets.

Declaration
[JsonProperty("labels")]
public virtual IDictionary<string, string> Labels { get; set; }
Property Value
Type Description
System.Collections.Generic.IDictionary<System.String, System.String>

Location

The geographic location where the data resides.

Declaration
[JsonProperty("location")]
public virtual string Location { get; set; }
Property Value
Type Description
System.String
In This Article
Back to top