[][src]Struct google_bigquery2::RoutineMethods

pub struct RoutineMethods<'a, C, A> where
    C: 'a,
    A: 'a, 
{ /* fields omitted */ }

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 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(...)` and `update(...)`
// to build up your call.
let rb = hub.routines();

Implementations

impl<'a, C, A> RoutineMethods<'a, C, A>[src]

pub fn update(
    &self,
    request: Routine,
    project_id: &str,
    dataset_id: &str,
    routine_id: &str
) -> RoutineUpdateCall<'a, C, A>
[src]

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 update
  • datasetId - Required. Dataset ID of the routine to update
  • routineId - Required. Routine ID of the routine to update

pub fn list(
    &self,
    project_id: &str,
    dataset_id: &str
) -> RoutineListCall<'a, C, A>
[src]

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 list
  • datasetId - Required. Dataset ID of the routines to list

pub fn insert(
    &self,
    request: Routine,
    project_id: &str,
    dataset_id: &str
) -> RoutineInsertCall<'a, C, A>
[src]

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 routine
  • datasetId - Required. Dataset ID of the new routine

pub fn delete(
    &self,
    project_id: &str,
    dataset_id: &str,
    routine_id: &str
) -> RoutineDeleteCall<'a, C, A>
[src]

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 delete
  • datasetId - Required. Dataset ID of the routine to delete
  • routineId - Required. Routine ID of the routine to delete

pub fn get(
    &self,
    project_id: &str,
    dataset_id: &str,
    routine_id: &str
) -> RoutineGetCall<'a, C, A>
[src]

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 routine
  • datasetId - Required. Dataset ID of the requested routine
  • routineId - Required. Routine ID of the requested routine

Trait Implementations

impl<'a, C, A> MethodsBuilder for RoutineMethods<'a, C, A>[src]

Auto Trait Implementations

impl<'a, C, A> !RefUnwindSafe for RoutineMethods<'a, C, A>

impl<'a, C, A> !Send for RoutineMethods<'a, C, A>

impl<'a, C, A> !Sync for RoutineMethods<'a, C, A>

impl<'a, C, A> Unpin for RoutineMethods<'a, C, A>

impl<'a, C, A> !UnwindSafe for RoutineMethods<'a, C, A>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any