Struct gcp_bigquery_client::routine::RoutineApi [−][src]
pub struct RoutineApi { /* fields omitted */ }Expand description
A routine API handler.
Implementations
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>
pub async fn list(
&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.
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
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
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
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more
