pub struct ImGroups {
    pub client: Client,
}

Fields§

§client: Client

Implementations§

source§

impl ImGroups

source

pub async fn get(&self) -> Result<Response<Domains>, ClientError>

List IM directory groups.

This function performs a GET to the /im/groups endpoint.

List IM directory groups.

Scopes: imgroup:read:admin

Rate Limit Label: Medium

source

pub async fn create( &self, body: &ImGroupCreateRequest ) -> Result<Response<()>, ClientError>

Create an IM directory group.

This function performs a POST to the /im/groups endpoint.

Create an IM directory group under your account.

Scopes: imgroup:write:admin

Rate Limit Label: Light

source

pub async fn im_group( &self, group_id: &str ) -> Result<Response<ImGroupResponseAllOf>, ClientError>

Retrieve an IM directory group.

This function performs a GET to the /im/groups/{groupId} endpoint.

Retrieve an IM directory group under your account.

Scopes: imgroup:read:admin

Rate Limit Label: Light

Parameters:

  • group_id: &str – The group ID.
    Can be retrieved by calling GET /groups.
source

pub async fn delete(&self, group_id: &str) -> Result<Response<()>, ClientError>

Delete an IM directory group.

This function performs a DELETE to the /im/groups/{groupId} endpoint.

Delete an IM directory group under your account.

Scopes: imgroup:write:admin

Rate Limit Label: Light

Parameters:

  • group_id: &str – The group ID.
    Can be retrieved by calling GET /groups.
source

pub async fn update( &self, group_id: &str, body: &ImGroupCreateRequest ) -> Result<Response<()>, ClientError>

Update an IM directory group.

This function performs a PATCH to the /im/groups/{groupId} endpoint.

Update an IM directory group under your account.

Scopes: imgroup:write:admin

Rate Limit Label: Light

Parameters:

  • group_id: &str – The group ID.
    Can be retrieved by calling GET /groups.
source

pub async fn member( &self, group_id: &str, page_size: i64, page_number: i64, next_page_token: &str ) -> Result<Response<Domains>, ClientError>

List IM directory group members.

This function performs a GET to the /im/groups/{groupId}/members endpoint.

List the members of an IM directory group.

Scope: imgroup:read:admin

Rate Limit Label: Medium

Parameters:

  • group_id: &str – The group ID.
    Can be retrieved by calling GET /groups.

  • page_size: i64 – The number of records returned within a single API call.

  • page_number: i64Deprecated - This field has been deprecated and we will stop supporting it completely in a future release. Please use “next_page_token” for pagination instead of this field.

    The page number of the current page in the returned records.

  • next_page_token: &str – The next page token is used to paginate through large result sets. A next page token will be returned whenever the set of available results exceeds the current page size. The expiration period for this token is 15 minutes.

source

pub async fn members_create( &self, group_id: &str, body: &AddRoleMembersRequest ) -> Result<Response<()>, ClientError>

Add IM directory group members.

This function performs a POST to the /im/groups/{groupId}/members endpoint.

Add members to an IM directory group under an account.

Scope: imgroup:write:admin

Rate Limit Label: Medium

Parameters:

  • group_id: &str – The group ID.
    Can be retrieved by calling GET /groups.
source

pub async fn members_delete( &self, group_id: &str, member_id: &str ) -> Result<Response<()>, ClientError>

Delete IM directory group member.

This function performs a DELETE to the /im/groups/{groupId}/members/{memberId} endpoint.

Delete a member from an IM directory group under an account.

Scopes: imgroup:write:admin

Rate Limit Label: Light

Parameters:

  • group_id: &str – The group ID.
    Can be retrieved by calling GET /groups.
  • member_id: &str – User’s first name.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more