Skip to main content

PamAccessConnectorRotationTargetSystemsApi

Trait PamAccessConnectorRotationTargetSystemsApi 

Source
pub trait PamAccessConnectorRotationTargetSystemsApi: Send + Sync {
    // Required methods
    fn delete<'a, 'life0, 'async_trait>(
        &'life0 self,
        org_id: Uuid,
        id: Uuid,
    ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'a: 'async_trait,
             'life0: 'async_trait;
    fn disable<'a, 'life0, 'async_trait>(
        &'life0 self,
        org_id: Uuid,
        id: Uuid,
    ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'a: 'async_trait,
             'life0: 'async_trait;
    fn enable<'a, 'life0, 'async_trait>(
        &'life0 self,
        org_id: Uuid,
        id: Uuid,
    ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'a: 'async_trait,
             'life0: 'async_trait;
    fn get_all<'a, 'life0, 'async_trait>(
        &'life0 self,
        org_id: Uuid,
    ) -> Pin<Box<dyn Future<Output = Result<PamTargetSystemResponseModelListResponseModel, Error>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'a: 'async_trait,
             'life0: 'async_trait;
    fn post<'a, 'life0, 'async_trait>(
        &'life0 self,
        org_id: Uuid,
        register_target_system_request_model: RegisterTargetSystemRequestModel,
    ) -> Pin<Box<dyn Future<Output = Result<PamTargetSystemResponseModel, Error>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'a: 'async_trait,
             'life0: 'async_trait;
    fn put<'a, 'life0, 'async_trait>(
        &'life0 self,
        org_id: Uuid,
        id: Uuid,
        update_target_system_request_model: UpdateTargetSystemRequestModel,
    ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'a: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

Source

fn delete<'a, 'life0, 'async_trait>( &'life0 self, org_id: Uuid, id: Uuid, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'a: 'async_trait, 'life0: 'async_trait,

DELETE /organizations/{orgId}/access-connectors/rotation/target-systems/{id}

Source

fn disable<'a, 'life0, 'async_trait>( &'life0 self, org_id: Uuid, id: Uuid, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'a: 'async_trait, 'life0: 'async_trait,

POST /organizations/{orgId}/access-connectors/rotation/target-systems/{id}/disable

Source

fn enable<'a, 'life0, 'async_trait>( &'life0 self, org_id: Uuid, id: Uuid, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'a: 'async_trait, 'life0: 'async_trait,

POST /organizations/{orgId}/access-connectors/rotation/target-systems/{id}/enable

Source

fn get_all<'a, 'life0, 'async_trait>( &'life0 self, org_id: Uuid, ) -> Pin<Box<dyn Future<Output = Result<PamTargetSystemResponseModelListResponseModel, Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'a: 'async_trait, 'life0: 'async_trait,

GET /organizations/{orgId}/access-connectors/rotation/target-systems

Source

fn post<'a, 'life0, 'async_trait>( &'life0 self, org_id: Uuid, register_target_system_request_model: RegisterTargetSystemRequestModel, ) -> Pin<Box<dyn Future<Output = Result<PamTargetSystemResponseModel, Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'a: 'async_trait, 'life0: 'async_trait,

POST /organizations/{orgId}/access-connectors/rotation/target-systems

Source

fn put<'a, 'life0, 'async_trait>( &'life0 self, org_id: Uuid, id: Uuid, update_target_system_request_model: UpdateTargetSystemRequestModel, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'a: 'async_trait, 'life0: 'async_trait,

PUT /organizations/{orgId}/access-connectors/rotation/target-systems/{id}

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§