Struct google_bigquery2::api::RowAccessPolicyMethods [−][src]
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]
&self,
request: GetIamPolicyRequest,
resource: &str
) -> RowAccessPolicyGetIamPolicyCall<'a>
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]
&self,
project_id: &str,
dataset_id: &str,
table_id: &str
) -> RowAccessPolicyListCall<'a>
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]
&self,
request: SetIamPolicyRequest,
resource: &str
) -> RowAccessPolicySetIamPolicyCall<'a>
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]
&self,
request: TestIamPermissionsRequest,
resource: &str
) -> RowAccessPolicyTestIamPermissionCall<'a>
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
impl<'a> MethodsBuilder for RowAccessPolicyMethods<'a>[src]
Auto Trait Implementations
impl<'a> !RefUnwindSafe for RowAccessPolicyMethods<'a>
impl<'a> Send for RowAccessPolicyMethods<'a>
impl<'a> Sync for RowAccessPolicyMethods<'a>
impl<'a> Unpin for RowAccessPolicyMethods<'a>
impl<'a> !UnwindSafe for RowAccessPolicyMethods<'a>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>[src]
pub fn in_current_span(self) -> Instrumented<Self>[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,