pub struct DatasetList {
pub datasets: Option<Vec<DatasetListDatasets>>,
pub etag: Option<String>,
pub kind: Option<String>,
pub next_page_token: Option<String>,
pub unreachable: Option<Vec<String>>,
}Expand description
Response format for a page of results when listing datasets.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- list datasets (response)
Fields§
§datasets: Option<Vec<DatasetListDatasets>>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.
etag: Option<String>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.
kind: Option<String>Output only. The resource type. This property always returns the value “bigquery#datasetList”
next_page_token: Option<String>A token that can be used to request the next results page. This property is omitted on the final results page.
unreachable: Option<Vec<String>>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”
Trait Implementations§
Source§impl Clone for DatasetList
impl Clone for DatasetList
Source§fn clone(&self) -> DatasetList
fn clone(&self) -> DatasetList
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more