Struct google_bigquery2::JobMethods[][src]

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

A builder providing access to all methods supported on job 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 `cancel(...)`, `get(...)`, `get_query_results(...)`, `insert(...)`, `list(...)` and `query(...)`
// to build up your call.
let rb = hub.jobs();

Methods

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

Create a builder to help you perform the following task:

Returns information about a specific job. Job information is available for a six month period after creation. Requires that you're the person who ran the job, or have the Is Owner project role.

Arguments

  • projectId - [Required] Project ID of the requested job
  • jobId - [Required] Job ID of the requested job

Create a builder to help you perform the following task:

Requests that a job be cancelled. This call will return immediately, and the client will need to poll for the job status to see if the cancel completed successfully. Cancelled jobs may still incur costs.

Arguments

  • projectId - [Required] Project ID of the job to cancel
  • jobId - [Required] Job ID of the job to cancel

Create a builder to help you perform the following task:

Runs a BigQuery SQL query synchronously and returns query results if the query completes within a specified timeout.

Arguments

  • request - No description provided.
  • projectId - Project ID of the project billed for the query

Create a builder to help you perform the following task:

Starts a new asynchronous job. Requires the Can View project role.

Arguments

  • request - No description provided.
  • projectId - Project ID of the project that will be billed for the job

Create a builder to help you perform the following task:

Lists all jobs that you started in the specified project. Job information is available for a six month period after creation. The job list is sorted in reverse chronological order, by job creation time. Requires the Can View project role, or the Is Owner project role if you set the allUsers property.

Arguments

  • projectId - Project ID of the jobs to list

Create a builder to help you perform the following task:

Retrieves the results of a query job.

Arguments

  • projectId - [Required] Project ID of the query job
  • jobId - [Required] Job ID of the query job

Trait Implementations

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

Auto Trait Implementations

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

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