Struct gcp_bigquery_client::routine::RoutineApi [−][src]
A routine API handler.
Implementations
impl RoutineApi
[src]
pub async fn insert(
&self,
project_id: &str,
dataset_id: &str,
routine: Routine
) -> Result<Routine, BQError>
[src]
&self,
project_id: &str,
dataset_id: &str,
routine: Routine
) -> Result<Routine, BQError>
Creates a new routine in the dataset.
Arguments
project_id
- Project ID of the new routine.dataset_id
- Dataset ID of the new routine.routine
- The request body contains an instance of Routine.
pub async fn list(
&self,
project_id: &str,
dataset_id: &str,
options: ListOptions
) -> Result<ListRoutinesResponse, BQError>
[src]
&self,
project_id: &str,
dataset_id: &str,
options: ListOptions
) -> Result<ListRoutinesResponse, BQError>
Lists all routines in the specified dataset. Requires the READER dataset role.
Arguments
project_id
- Project ID of the routines to list.dataset_id
- Dataset ID of the routines to list.
pub async fn delete(
&self,
project_id: &str,
dataset_id: &str,
routine_id: &str
) -> Result<(), BQError>
[src]
&self,
project_id: &str,
dataset_id: &str,
routine_id: &str
) -> Result<(), BQError>
Deletes the routine specified by routineId from the dataset.
Arguments
project_id
- Project ID of the routine to deletedataset_id
- Dataset ID of the routine to deleteroutine_id
- Routine ID of the routine to delete
pub async fn get(
&self,
project_id: &str,
dataset_id: &str,
routine_id: &str
) -> Result<Routine, BQError>
[src]
&self,
project_id: &str,
dataset_id: &str,
routine_id: &str
) -> Result<Routine, BQError>
Gets the specified routine resource by routine ID.
Arguments
project_id
- Project ID of the requested routinedataset_id
- Dataset ID of the requested routineroutine_id
- Routine ID of the requested routine
pub async fn update(
&self,
project_id: &str,
dataset_id: &str,
routine_id: &str,
routine: Routine
) -> Result<Routine, BQError>
[src]
&self,
project_id: &str,
dataset_id: &str,
routine_id: &str,
routine: Routine
) -> Result<Routine, BQError>
Updates information in an existing routine. The update method replaces the entire Routine resource.
Arguments
project_id
- Project ID of the routine to updatedataset_id
- Dataset ID of the routine to updateroutine_id
- Routine ID of the routine to updateroutine
- Routine to update
Auto Trait Implementations
impl !RefUnwindSafe for RoutineApi
impl Send for RoutineApi
impl Sync for RoutineApi
impl Unpin for RoutineApi
impl !UnwindSafe for RoutineApi
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T> Instrument for T
[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T> Instrument for T
[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,