use crate::{error::Result, models::*, Configuration};
pub struct EndpointAutoConfig<'a> {
cfg: &'a Configuration,
}
impl<'a> EndpointAutoConfig<'a> {
pub(super) fn new(cfg: &'a Configuration) -> Self {
Self { cfg }
}
pub async fn update(
&self,
app_id: String,
endpoint_id: String,
subscribe_in: SubscribeIn,
) -> Result<EndpointOut> {
crate::request::Request::new(
http1::Method::PUT,
"/api/v1/app/{app_id}/endpoint/{endpoint_id}/auto-config",
)
.with_path_param("app_id", app_id)
.with_path_param("endpoint_id", endpoint_id)
.with_body_param(subscribe_in)
.execute(self.cfg)
.await
}
}