public sealed class ListDatasetsOptions
Reference documentation and code samples for the Google BigQuery v2 API class ListDatasetsOptions.
Options used when listing datasets. Details TBD.
Namespace
Google.Cloud.BigQuery.V2Assembly
Google.Cloud.BigQuery.V2.dll
Properties
Filter
public string Filter { get; set; }
The filter to apply when listing datasets. See https://cloud.google.com/bigquery/docs/labeling-datasets#filtering_datasets_using_labels for more details. Filters for labels can be created easily using the Filters class.
Property Value | |
---|---|
Type | Description |
String |
IncludeHidden
public bool? IncludeHidden { get; set; }
Whether to include hidden datasets, equivalent to the "all" parameter of the REST API. By default, hidden datasets will not be included.
Property Value | |
---|---|
Type | Description |
Nullable<Boolean> |
PageSize
public int? PageSize { get; set; }
The number of results to return per page. (This modifies the per-request page size; it does not affect the total number of results returned.)
Property Value | |
---|---|
Type | Description |
Nullable<Int32> |
PageToken
public string PageToken { get; set; }
If set, this token is used to indicate a continued list operation.
The value should be taken from the NextPageToken
property of either
a Page<TResource> or a raw response from AsRawResponses().
Property Value | |
---|---|
Type | Description |
String |