Struct google_bigquery2::api::RowAccessPolicyMethods[][src]

pub struct RowAccessPolicyMethods<'a> { /* fields omitted */ }

A builder providing access to all methods supported on rowAccessPolicy 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;
use bigquery2::Bigquery;
 
let secret: oauth2::ApplicationSecret = Default::default();
let auth = yup_oauth2::InstalledFlowAuthenticator::builder(
        secret,
        yup_oauth2::InstalledFlowReturnMethod::HTTPRedirect,
    ).build().await.unwrap();
let mut hub = Bigquery::new(hyper::Client::builder().build(hyper_rustls::HttpsConnector::with_native_roots()), auth);
// Usually you wouldn't bind this to a variable, but keep calling *CallBuilders*
// like `get_iam_policy(...)`, `list(...)`, `set_iam_policy(...)` and `test_iam_permissions(...)`
// to build up your call.
let rb = hub.row_access_policies();

Implementations

impl<'a> RowAccessPolicyMethods<'a>[src]

pub fn get_iam_policy(
    &self,
    request: GetIamPolicyRequest,
    resource: &str
) -> RowAccessPolicyGetIamPolicyCall<'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 list(
    &self,
    project_id: &str,
    dataset_id: &str,
    table_id: &str
) -> RowAccessPolicyListCall<'a>
[src]

Create a builder to help you perform the following task:

Lists all row access policies on the specified table.

Arguments

  • projectId - Required. Project ID of the row access policies to list.
  • datasetId - Required. Dataset ID of row access policies to list.
  • tableId - Required. Table ID of the table to list row access policies.

pub fn set_iam_policy(
    &self,
    request: SetIamPolicyRequest,
    resource: &str
) -> RowAccessPolicySetIamPolicyCall<'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 test_iam_permissions(
    &self,
    request: TestIamPermissionsRequest,
    resource: &str
) -> RowAccessPolicyTestIamPermissionCall<'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.

Trait Implementations

Auto Trait Implementations

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> Instrument 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.