pub struct OrganizationConnectionsApiClient {
configuration: Arc<Configuration>,
}Fields§
§configuration: Arc<Configuration>Implementations§
Source§impl OrganizationConnectionsApiClient
impl OrganizationConnectionsApiClient
pub fn new(configuration: Arc<Configuration>) -> Self
Trait Implementations§
Source§impl OrganizationConnectionsApi for OrganizationConnectionsApiClient
impl OrganizationConnectionsApi for OrganizationConnectionsApiClient
Source§fn connections_enabled<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<bool, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn connections_enabled<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<bool, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
GET /organizations/connections/enabled
Source§fn create_connection<'a, 'life0, 'async_trait>(
&'life0 self,
organization_connection_request_model: Option<OrganizationConnectionRequestModel>,
) -> Pin<Box<dyn Future<Output = Result<OrganizationConnectionResponseModel, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
fn create_connection<'a, 'life0, 'async_trait>(
&'life0 self,
organization_connection_request_model: Option<OrganizationConnectionRequestModel>,
) -> Pin<Box<dyn Future<Output = Result<OrganizationConnectionResponseModel, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
POST /organizations/connections
Source§fn delete_connection<'a, 'life0, 'async_trait>(
&'life0 self,
organization_connection_id: Uuid,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
fn delete_connection<'a, 'life0, 'async_trait>(
&'life0 self,
organization_connection_id: Uuid,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
DELETE /organizations/connections/{organizationConnectionId}
Source§fn get_connection<'a, 'life0, 'async_trait>(
&'life0 self,
organization_id: Uuid,
type: OrganizationConnectionType,
) -> Pin<Box<dyn Future<Output = Result<OrganizationConnectionResponseModel, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
fn get_connection<'a, 'life0, 'async_trait>(
&'life0 self,
organization_id: Uuid,
type: OrganizationConnectionType,
) -> Pin<Box<dyn Future<Output = Result<OrganizationConnectionResponseModel, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
GET /organizations/connections/{organizationId}/{type}
Source§fn update_connection<'a, 'life0, 'async_trait>(
&'life0 self,
organization_connection_id: Uuid,
organization_connection_request_model: Option<OrganizationConnectionRequestModel>,
) -> Pin<Box<dyn Future<Output = Result<OrganizationConnectionResponseModel, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
fn update_connection<'a, 'life0, 'async_trait>(
&'life0 self,
organization_connection_id: Uuid,
organization_connection_request_model: Option<OrganizationConnectionRequestModel>,
) -> Pin<Box<dyn Future<Output = Result<OrganizationConnectionResponseModel, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
PUT /organizations/connections/{organizationConnectionId}
Auto Trait Implementations§
impl Freeze for OrganizationConnectionsApiClient
impl !RefUnwindSafe for OrganizationConnectionsApiClient
impl Send for OrganizationConnectionsApiClient
impl Sync for OrganizationConnectionsApiClient
impl Unpin for OrganizationConnectionsApiClient
impl UnsafeUnpin for OrganizationConnectionsApiClient
impl !UnwindSafe for OrganizationConnectionsApiClient
Blanket Implementations§
§impl<T> AnySync for T
impl<T> AnySync for T
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
§impl<T> CompatExt for T
impl<T> CompatExt for T
§impl<T, UT> HandleAlloc<UT> for T
impl<T, UT> HandleAlloc<UT> for T
§fn new_handle(value: Arc<T>) -> Handle
fn new_handle(value: Arc<T>) -> Handle
Create a new handle for an Arc value Read more
§unsafe fn clone_handle(handle: Handle) -> Handle
unsafe fn clone_handle(handle: Handle) -> Handle
Clone a handle Read more
§unsafe fn consume_handle(handle: Handle) -> Arc<T>
unsafe fn consume_handle(handle: Handle) -> Arc<T>
Consume a handle, getting back the initial
Arc<> Read more