pub struct RoleAssignments {
pub client: Client,
}
Fields§
§client: Client
Implementations§
Source§impl RoleAssignments
impl RoleAssignments
Sourcepub async fn list(
&self,
customer: &str,
max_results: i64,
page_token: &str,
role_id: &str,
user_key: &str,
) -> Result<Response<Vec<RoleAssignment>>, ClientError>
pub async fn list( &self, customer: &str, max_results: i64, page_token: &str, role_id: &str, user_key: &str, ) -> Result<Response<Vec<RoleAssignment>>, ClientError>
This function performs a GET
to the /admin/directory/v1/customer/{customer}/roleassignments
endpoint.
Retrieves a paginated list of all roleAssignments.
Parameters:
customer: &str
– Immutable ID of the Google Workspace account.max_results: i64
– Maximum number of results to return.page_token: &str
– Token to specify the next page in the list.role_id: &str
– Immutable ID of a role. If included in the request, returns only role assignments containing this role ID.user_key: &str
– The user’s primary email address, alias email address, or unique user ID. If included in the request, returns role assignments only for this user.
Sourcepub async fn list_all(
&self,
customer: &str,
role_id: &str,
user_key: &str,
) -> Result<Response<Vec<RoleAssignment>>, ClientError>
pub async fn list_all( &self, customer: &str, role_id: &str, user_key: &str, ) -> Result<Response<Vec<RoleAssignment>>, ClientError>
This function performs a GET
to the /admin/directory/v1/customer/{customer}/roleassignments
endpoint.
As opposed to list
, this function returns all the pages of the request at once.
Retrieves a paginated list of all roleAssignments.
Sourcepub async fn insert(
&self,
customer: &str,
body: &RoleAssignment,
) -> Result<Response<RoleAssignment>, ClientError>
pub async fn insert( &self, customer: &str, body: &RoleAssignment, ) -> Result<Response<RoleAssignment>, ClientError>
This function performs a POST
to the /admin/directory/v1/customer/{customer}/roleassignments
endpoint.
Creates a role assignment.
Parameters:
customer: &str
– Immutable ID of the Google Workspace account.
Sourcepub async fn get(
&self,
customer: &str,
role_assignment_id: &str,
) -> Result<Response<RoleAssignment>, ClientError>
pub async fn get( &self, customer: &str, role_assignment_id: &str, ) -> Result<Response<RoleAssignment>, ClientError>
This function performs a GET
to the /admin/directory/v1/customer/{customer}/roleassignments/{roleAssignmentId}
endpoint.
Retrieves a role assignment.
Parameters:
customer: &str
– Immutable ID of the Google Workspace account.role_assignment_id: &str
– Immutable ID of the role assignment.
Sourcepub async fn delete(
&self,
customer: &str,
role_assignment_id: &str,
) -> Result<Response<()>, ClientError>
pub async fn delete( &self, customer: &str, role_assignment_id: &str, ) -> Result<Response<()>, ClientError>
This function performs a DELETE
to the /admin/directory/v1/customer/{customer}/roleassignments/{roleAssignmentId}
endpoint.
Deletes a role assignment.
Parameters:
customer: &str
– Immutable ID of the Google Workspace account.role_assignment_id: &str
– Immutable ID of the role assignment.
Auto Trait Implementations§
impl Freeze for RoleAssignments
impl !RefUnwindSafe for RoleAssignments
impl Send for RoleAssignments
impl Sync for RoleAssignments
impl Unpin for RoleAssignments
impl !UnwindSafe for RoleAssignments
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