pub struct RowAccessPolicyMethods<'a, S>where
S: 'a,{ /* private fields */ }
Expand description
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 google_bigquery2 as bigquery2;
use std::default::Default;
use bigquery2::{Bigquery, oauth2, hyper, hyper_rustls, chrono, FieldMask};
let secret: oauth2::ApplicationSecret = Default::default();
let auth = oauth2::InstalledFlowAuthenticator::builder(
secret,
oauth2::InstalledFlowReturnMethod::HTTPRedirect,
).build().await.unwrap();
let mut hub = Bigquery::new(hyper::Client::builder().build(hyper_rustls::HttpsConnectorBuilder::new().with_native_roots().https_or_http().enable_http1().build()), 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§
Source§impl<'a, S> RowAccessPolicyMethods<'a, S>
impl<'a, S> RowAccessPolicyMethods<'a, S>
Sourcepub fn get_iam_policy(
&self,
request: GetIamPolicyRequest,
resource: &str,
) -> RowAccessPolicyGetIamPolicyCall<'a, S>
pub fn get_iam_policy( &self, request: GetIamPolicyRequest, resource: &str, ) -> RowAccessPolicyGetIamPolicyCall<'a, S>
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 Resource names for the appropriate value for this field.
Sourcepub fn list(
&self,
project_id: &str,
dataset_id: &str,
table_id: &str,
) -> RowAccessPolicyListCall<'a, S>
pub fn list( &self, project_id: &str, dataset_id: &str, table_id: &str, ) -> RowAccessPolicyListCall<'a, S>
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.
Sourcepub fn set_iam_policy(
&self,
request: SetIamPolicyRequest,
resource: &str,
) -> RowAccessPolicySetIamPolicyCall<'a, S>
pub fn set_iam_policy( &self, request: SetIamPolicyRequest, resource: &str, ) -> RowAccessPolicySetIamPolicyCall<'a, S>
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 Resource names for the appropriate value for this field.
Sourcepub fn test_iam_permissions(
&self,
request: TestIamPermissionsRequest,
resource: &str,
) -> RowAccessPolicyTestIamPermissionCall<'a, S>
pub fn test_iam_permissions( &self, request: TestIamPermissionsRequest, resource: &str, ) -> RowAccessPolicyTestIamPermissionCall<'a, S>
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 Resource names for the appropriate value for this field.
Trait Implementations§
impl<'a, S> MethodsBuilder for RowAccessPolicyMethods<'a, S>
Auto Trait Implementations§
impl<'a, S> Freeze for RowAccessPolicyMethods<'a, S>
impl<'a, S> !RefUnwindSafe for RowAccessPolicyMethods<'a, S>
impl<'a, S> Send for RowAccessPolicyMethods<'a, S>where
S: Sync,
impl<'a, S> Sync for RowAccessPolicyMethods<'a, S>where
S: Sync,
impl<'a, S> Unpin for RowAccessPolicyMethods<'a, S>
impl<'a, S> !UnwindSafe for RowAccessPolicyMethods<'a, S>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more