pub struct RoutineMethods<'a, S>where
S: 'a,{ /* private fields */ }
Expand description
A builder providing access to all methods supported on routine 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 google_bigquery2 as bigquery2;
use std::default::Default;
use bigquery2::{Bigquery, oauth2, hyper, hyper_rustls, chrono, FieldMask};
let secret: oauth2::ApplicationSecret = Default::default();
let auth = oauth2::InstalledFlowAuthenticator::builder(
secret,
oauth2::InstalledFlowReturnMethod::HTTPRedirect,
).build().await.unwrap();
let mut hub = Bigquery::new(hyper::Client::builder().build(hyper_rustls::HttpsConnectorBuilder::new().with_native_roots().https_or_http().enable_http1().build()), auth);
// Usually you wouldn't bind this to a variable, but keep calling *CallBuilders*
// like `delete(...)`, `get(...)`, `insert(...)`, `list(...)` and `update(...)`
// to build up your call.
let rb = hub.routines();
Implementations§
Source§impl<'a, S> RoutineMethods<'a, S>
impl<'a, S> RoutineMethods<'a, S>
Sourcepub fn delete(
&self,
project_id: &str,
dataset_id: &str,
routine_id: &str,
) -> RoutineDeleteCall<'a, S>
pub fn delete( &self, project_id: &str, dataset_id: &str, routine_id: &str, ) -> RoutineDeleteCall<'a, S>
Create a builder to help you perform the following task:
Deletes the routine specified by routineId from the dataset.
§Arguments
projectId
- Required. Project ID of the routine to deletedatasetId
- Required. Dataset ID of the routine to deleteroutineId
- Required. Routine ID of the routine to delete
Sourcepub fn get(
&self,
project_id: &str,
dataset_id: &str,
routine_id: &str,
) -> RoutineGetCall<'a, S>
pub fn get( &self, project_id: &str, dataset_id: &str, routine_id: &str, ) -> RoutineGetCall<'a, S>
Create a builder to help you perform the following task:
Gets the specified routine resource by routine ID.
§Arguments
projectId
- Required. Project ID of the requested routinedatasetId
- Required. Dataset ID of the requested routineroutineId
- Required. Routine ID of the requested routine
Sourcepub fn insert(
&self,
request: Routine,
project_id: &str,
dataset_id: &str,
) -> RoutineInsertCall<'a, S>
pub fn insert( &self, request: Routine, project_id: &str, dataset_id: &str, ) -> RoutineInsertCall<'a, S>
Create a builder to help you perform the following task:
Creates a new routine in the dataset.
§Arguments
request
- No description provided.projectId
- Required. Project ID of the new routinedatasetId
- Required. Dataset ID of the new routine
Sourcepub fn list(&self, project_id: &str, dataset_id: &str) -> RoutineListCall<'a, S>
pub fn list(&self, project_id: &str, dataset_id: &str) -> RoutineListCall<'a, S>
Create a builder to help you perform the following task:
Lists all routines in the specified dataset. Requires the READER dataset role.
§Arguments
projectId
- Required. Project ID of the routines to listdatasetId
- Required. Dataset ID of the routines to list
Sourcepub fn update(
&self,
request: Routine,
project_id: &str,
dataset_id: &str,
routine_id: &str,
) -> RoutineUpdateCall<'a, S>
pub fn update( &self, request: Routine, project_id: &str, dataset_id: &str, routine_id: &str, ) -> RoutineUpdateCall<'a, S>
Create a builder to help you perform the following task:
Updates information in an existing routine. The update method replaces the entire Routine resource.
§Arguments
request
- No description provided.projectId
- Required. Project ID of the routine to updatedatasetId
- Required. Dataset ID of the routine to updateroutineId
- Required. Routine ID of the routine to update
Trait Implementations§
impl<'a, S> MethodsBuilder for RoutineMethods<'a, S>
Auto Trait Implementations§
impl<'a, S> Freeze for RoutineMethods<'a, S>
impl<'a, S> !RefUnwindSafe for RoutineMethods<'a, S>
impl<'a, S> Send for RoutineMethods<'a, S>where
S: Sync,
impl<'a, S> Sync for RoutineMethods<'a, S>where
S: Sync,
impl<'a, S> Unpin for RoutineMethods<'a, S>
impl<'a, S> !UnwindSafe for RoutineMethods<'a, S>
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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