pub struct OperationalWebhookEndpoint<'a> { /* private fields */ }
Implementations§
Source§impl<'a> OperationalWebhookEndpoint<'a>
impl<'a> OperationalWebhookEndpoint<'a>
pub async fn list( &self, options: Option<OperationalWebhookEndpointListOptions>, ) -> Result<ListResponseOperationalWebhookEndpointOut>
pub async fn create( &self, endpoint_in: OperationalWebhookEndpointIn, options: Option<PostOptions>, ) -> Result<OperationalWebhookEndpointOut>
pub async fn get( &self, endpoint_id: String, ) -> Result<OperationalWebhookEndpointOut>
pub async fn update( &self, endpoint_id: String, endpoint_update: OperationalWebhookEndpointUpdate, ) -> Result<OperationalWebhookEndpointOut>
pub async fn delete(&self, endpoint_id: String) -> Result<()>
pub async fn get_secret( &self, endpoint_id: String, ) -> Result<OperationalWebhookEndpointSecretOut>
pub async fn rotate_secret( &self, endpoint_id: String, endpoint_secret_rotate_in: OperationalWebhookEndpointSecretIn, ) -> Result<()>
Auto Trait Implementations§
impl<'a> Freeze for OperationalWebhookEndpoint<'a>
impl<'a> !RefUnwindSafe for OperationalWebhookEndpoint<'a>
impl<'a> Send for OperationalWebhookEndpoint<'a>
impl<'a> Sync for OperationalWebhookEndpoint<'a>
impl<'a> Unpin for OperationalWebhookEndpoint<'a>
impl<'a> !UnwindSafe for OperationalWebhookEndpoint<'a>
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