Struct google_bigquery2::TableMethods
source · pub struct TableMethods<'a, C, A>where
C: 'a,
A: 'a,{ /* private fields */ }Expand description
A builder providing access to all methods supported on table resources.
It is not used directly, but through the Bigquery hub.
§Example
Instantiate a resource builder
extern crate hyper;
extern crate hyper_rustls;
extern crate yup_oauth2 as oauth2;
extern crate google_bigquery2 as bigquery2;
use std::default::Default;
use oauth2::{Authenticator, DefaultAuthenticatorDelegate, ApplicationSecret, MemoryStorage};
use bigquery2::Bigquery;
let secret: ApplicationSecret = Default::default();
let auth = Authenticator::new(&secret, DefaultAuthenticatorDelegate,
hyper::Client::with_connector(hyper::net::HttpsConnector::new(hyper_rustls::TlsClient::new())),
<MemoryStorage as Default>::default(), None);
let mut hub = Bigquery::new(hyper::Client::with_connector(hyper::net::HttpsConnector::new(hyper_rustls::TlsClient::new())), auth);
// Usually you wouldn't bind this to a variable, but keep calling *CallBuilders*
// like `delete(...)`, `get(...)`, `insert(...)`, `list(...)`, `patch(...)` and `update(...)`
// to build up your call.
let rb = hub.tables();Implementations§
source§impl<'a, C, A> TableMethods<'a, C, A>
impl<'a, C, A> TableMethods<'a, C, A>
sourcepub fn update(
&self,
request: Table,
project_id: &str,
dataset_id: &str,
table_id: &str,
) -> TableUpdateCall<'a, C, A>
pub fn update( &self, request: Table, project_id: &str, dataset_id: &str, table_id: &str, ) -> TableUpdateCall<'a, C, A>
Create a builder to help you perform the following task:
Updates information in an existing table. The update method replaces the entire table resource, whereas the patch method only replaces fields that are provided in the submitted table resource.
§Arguments
request- No description provided.projectId- Project ID of the table to updatedatasetId- Dataset ID of the table to updatetableId- Table ID of the table to update
sourcepub fn insert(
&self,
request: Table,
project_id: &str,
dataset_id: &str,
) -> TableInsertCall<'a, C, A>
pub fn insert( &self, request: Table, project_id: &str, dataset_id: &str, ) -> TableInsertCall<'a, C, A>
Create a builder to help you perform the following task:
Creates a new, empty table in the dataset.
§Arguments
request- No description provided.projectId- Project ID of the new tabledatasetId- Dataset ID of the new table
sourcepub fn list(
&self,
project_id: &str,
dataset_id: &str,
) -> TableListCall<'a, C, A>
pub fn list( &self, project_id: &str, dataset_id: &str, ) -> TableListCall<'a, C, A>
Create a builder to help you perform the following task:
Lists all tables in the specified dataset. Requires the READER dataset role.
§Arguments
projectId- Project ID of the tables to listdatasetId- Dataset ID of the tables to list
sourcepub fn delete(
&self,
project_id: &str,
dataset_id: &str,
table_id: &str,
) -> TableDeleteCall<'a, C, A>
pub fn delete( &self, project_id: &str, dataset_id: &str, table_id: &str, ) -> TableDeleteCall<'a, C, A>
Create a builder to help you perform the following task:
Deletes the table specified by tableId from the dataset. If the table contains data, all the data will be deleted.
§Arguments
projectId- Project ID of the table to deletedatasetId- Dataset ID of the table to deletetableId- Table ID of the table to delete
sourcepub fn get(
&self,
project_id: &str,
dataset_id: &str,
table_id: &str,
) -> TableGetCall<'a, C, A>
pub fn get( &self, project_id: &str, dataset_id: &str, table_id: &str, ) -> TableGetCall<'a, C, A>
Create a builder to help you perform the following task:
Gets the specified table resource by table ID. This method does not return the data in the table, it only returns the table resource, which describes the structure of this table.
§Arguments
projectId- Project ID of the requested tabledatasetId- Dataset ID of the requested tabletableId- Table ID of the requested table
sourcepub fn patch(
&self,
request: Table,
project_id: &str,
dataset_id: &str,
table_id: &str,
) -> TablePatchCall<'a, C, A>
pub fn patch( &self, request: Table, project_id: &str, dataset_id: &str, table_id: &str, ) -> TablePatchCall<'a, C, A>
Create a builder to help you perform the following task:
Updates information in an existing table. The update method replaces the entire table resource, whereas the patch method only replaces fields that are provided in the submitted table resource. This method supports patch semantics.
§Arguments
request- No description provided.projectId- Project ID of the table to updatedatasetId- Dataset ID of the table to updatetableId- Table ID of the table to update
Trait Implementations§
impl<'a, C, A> MethodsBuilder for TableMethods<'a, C, A>
Auto Trait Implementations§
impl<'a, C, A> Freeze for TableMethods<'a, C, A>
impl<'a, C, A> !RefUnwindSafe for TableMethods<'a, C, A>
impl<'a, C, A> !Send for TableMethods<'a, C, A>
impl<'a, C, A> !Sync for TableMethods<'a, C, A>
impl<'a, C, A> Unpin for TableMethods<'a, C, A>
impl<'a, C, A> !UnwindSafe for TableMethods<'a, C, A>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more