pub struct Roles {
pub client: Client,
}
Fields§
§client: Client
Implementations§
Source§impl Roles
impl Roles
Sourcepub async fn list(
&self,
customer: &str,
max_results: i64,
page_token: &str,
) -> Result<Response<Vec<Role>>, ClientError>
pub async fn list( &self, customer: &str, max_results: i64, page_token: &str, ) -> Result<Response<Vec<Role>>, ClientError>
This function performs a GET
to the /admin/directory/v1/customer/{customer}/roles
endpoint.
Retrieves a paginated list of all the roles in a domain.
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.
Sourcepub async fn list_all(
&self,
customer: &str,
) -> Result<Response<Vec<Role>>, ClientError>
pub async fn list_all( &self, customer: &str, ) -> Result<Response<Vec<Role>>, ClientError>
This function performs a GET
to the /admin/directory/v1/customer/{customer}/roles
endpoint.
As opposed to list
, this function returns all the pages of the request at once.
Retrieves a paginated list of all the roles in a domain.
Sourcepub async fn insert(
&self,
customer: &str,
body: &Role,
) -> Result<Response<Role>, ClientError>
pub async fn insert( &self, customer: &str, body: &Role, ) -> Result<Response<Role>, ClientError>
This function performs a POST
to the /admin/directory/v1/customer/{customer}/roles
endpoint.
Creates a role.
Parameters:
customer: &str
– Immutable ID of the Google Workspace account.
Sourcepub async fn get(
&self,
customer: &str,
role_id: &str,
) -> Result<Response<Role>, ClientError>
pub async fn get( &self, customer: &str, role_id: &str, ) -> Result<Response<Role>, ClientError>
This function performs a GET
to the /admin/directory/v1/customer/{customer}/roles/{roleId}
endpoint.
Retrieves a role.
Parameters:
customer: &str
– Immutable ID of the Google Workspace account.role_id: &str
– Immutable ID of the role.
Sourcepub async fn update(
&self,
customer: &str,
role_id: &str,
body: &Role,
) -> Result<Response<Role>, ClientError>
pub async fn update( &self, customer: &str, role_id: &str, body: &Role, ) -> Result<Response<Role>, ClientError>
This function performs a PUT
to the /admin/directory/v1/customer/{customer}/roles/{roleId}
endpoint.
Updates a role.
Parameters:
customer: &str
– Immutable ID of the Google Workspace account.role_id: &str
– Immutable ID of the role.
Sourcepub async fn delete(
&self,
customer: &str,
role_id: &str,
) -> Result<Response<()>, ClientError>
pub async fn delete( &self, customer: &str, role_id: &str, ) -> Result<Response<()>, ClientError>
This function performs a DELETE
to the /admin/directory/v1/customer/{customer}/roles/{roleId}
endpoint.
Deletes a role.
Parameters:
customer: &str
– Immutable ID of the Google Workspace account.role_id: &str
– Immutable ID of the role.
Sourcepub async fn patch(
&self,
customer: &str,
role_id: &str,
body: &Role,
) -> Result<Response<Role>, ClientError>
pub async fn patch( &self, customer: &str, role_id: &str, body: &Role, ) -> Result<Response<Role>, ClientError>
This function performs a PATCH
to the /admin/directory/v1/customer/{customer}/roles/{roleId}
endpoint.
Patches a role.
Parameters:
customer: &str
– Immutable ID of the Google Workspace account.role_id: &str
– Immutable ID of the role.
Auto Trait Implementations§
impl Freeze for Roles
impl !RefUnwindSafe for Roles
impl Send for Roles
impl Sync for Roles
impl Unpin for Roles
impl !UnwindSafe for Roles
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