pub struct AdminConversationsEkm {
pub client: Client,
}Fields§
§client: ClientImplementations§
Source§impl AdminConversationsEkm
impl AdminConversationsEkm
Sourcepub async fn list_original_connected_channel_info(
&self,
channel_ids: &str,
team_ids: &str,
limit: i64,
cursor: &str,
) -> Result<Response<DndEndSchema>, ClientError>
pub async fn list_original_connected_channel_info( &self, channel_ids: &str, team_ids: &str, limit: i64, cursor: &str, ) -> Result<Response<DndEndSchema>, ClientError>
This function performs a GET to the /admin.conversations.ekm.listOriginalConnectedChannelInfo endpoint.
List all disconnected channels—i.e., channels that were once connected to other workspaces and then disconnected—and the corresponding original channel IDs for key revocation with EKM.
FROM: https://api.slack.com/methods/admin.conversations.ekm.listOriginalConnectedChannelInfo
Parameters:
token: &str– Authentication token. Requires scope:admin.conversations:read.channel_ids: &str– A comma-separated list of channels to filter to.team_ids: &str– A comma-separated list of the workspaces to which the channels you would like returned belong.limit: i64– The maximum number of items to return. Must be between 1 - 1000 both inclusive.cursor: &str– Setcursortonext_cursorreturned by the previous call to list items in the next page.
Auto Trait Implementations§
impl Freeze for AdminConversationsEkm
impl !RefUnwindSafe for AdminConversationsEkm
impl Send for AdminConversationsEkm
impl Sync for AdminConversationsEkm
impl Unpin for AdminConversationsEkm
impl !UnwindSafe for AdminConversationsEkm
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
Mutably borrows from an owned value. Read more