[][src]Struct google_bigquery2::TableMethods

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

A builder providing access to all methods supported on table 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(...)`, `get_iam_policy(...)`, `insert(...)`, `list(...)`, `patch(...)`, `set_iam_policy(...)`, `test_iam_permissions(...)` and `update(...)`
// to build up your call.
let rb = hub.tables();

Implementations

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

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

Create a builder to help you perform the following task:

Gets the specified table resource by table ID. This method does not return the data in the table, it only returns the table resource, which describes the structure of this table.

Arguments

  • projectId - Project ID of the requested table
  • datasetId - Dataset ID of the requested table
  • tableId - Table ID of the requested table

pub fn set_iam_policy(
    &self,
    request: SetIamPolicyRequest,
    resource: &str
) -> TableSetIamPolicyCall<'a, C, A>
[src]

Create a builder to help you perform the following task:

Sets the access control policy on the specified resource. Replaces any existing policy.

Can return NOT_FOUND, INVALID_ARGUMENT, and PERMISSION_DENIED errors.

Arguments

  • request - No description provided.
  • resource - REQUIRED: The resource for which the policy is being specified. See the operation documentation for the appropriate value for this field.

pub fn patch(
    &self,
    request: Table,
    project_id: &str,
    dataset_id: &str,
    table_id: &str
) -> TablePatchCall<'a, C, A>
[src]

Create a builder to help you perform the following task:

Updates information in an existing table. The update method replaces the entire table resource, whereas the patch method only replaces fields that are provided in the submitted table resource. This method supports patch semantics.

Arguments

  • request - No description provided.
  • projectId - Project ID of the table to update
  • datasetId - Dataset ID of the table to update
  • tableId - Table ID of the table to update

pub fn test_iam_permissions(
    &self,
    request: TestIamPermissionsRequest,
    resource: &str
) -> TableTestIamPermissionCall<'a, C, A>
[src]

Create a builder to help you perform the following task:

Returns permissions that a caller has on the specified resource. If the resource does not exist, this will return an empty set of permissions, not a NOT_FOUND error.

Note: This operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. This operation may "fail open" without warning.

Arguments

  • request - No description provided.
  • resource - REQUIRED: The resource for which the policy detail is being requested. See the operation documentation for the appropriate value for this field.

pub fn get_iam_policy(
    &self,
    request: GetIamPolicyRequest,
    resource: &str
) -> TableGetIamPolicyCall<'a, C, A>
[src]

Create a builder to help you perform the following task:

Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set.

Arguments

  • request - No description provided.
  • resource - REQUIRED: The resource for which the policy is being requested. See the operation documentation for the appropriate value for this field.

pub fn update(
    &self,
    request: Table,
    project_id: &str,
    dataset_id: &str,
    table_id: &str
) -> TableUpdateCall<'a, C, A>
[src]

Create a builder to help you perform the following task:

Updates information in an existing table. The update method replaces the entire table resource, whereas the patch method only replaces fields that are provided in the submitted table resource.

Arguments

  • request - No description provided.
  • projectId - Project ID of the table to update
  • datasetId - Dataset ID of the table to update
  • tableId - Table ID of the table to update

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

Create a builder to help you perform the following task:

Lists all tables in the specified dataset. Requires the READER dataset role.

Arguments

  • projectId - Project ID of the tables to list
  • datasetId - Dataset ID of the tables to list

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

Create a builder to help you perform the following task:

Creates a new, empty table in the dataset.

Arguments

  • request - No description provided.
  • projectId - Project ID of the new table
  • datasetId - Dataset ID of the new table

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

Create a builder to help you perform the following task:

Deletes the table specified by tableId from the dataset. If the table contains data, all the data will be deleted.

Arguments

  • projectId - Project ID of the table to delete
  • datasetId - Dataset ID of the table to delete
  • tableId - Table ID of the table to delete

Trait Implementations

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

Auto Trait Implementations

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

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

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

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

impl<'a, C, A> !UnwindSafe for TableMethods<'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