use super::EndpointAutoConfig;
use crate::{error::Result, models::*, Configuration};
pub struct Endpoint<'a> {
cfg: &'a Configuration,
}
impl<'a> Endpoint<'a> {
pub(super) fn new(cfg: &'a Configuration) -> Self {
Self { cfg }
}
pub fn auto_config(&self) -> EndpointAutoConfig<'a> {
EndpointAutoConfig::new(self.cfg)
}
#[deprecated]
pub async fn transformation_partial_update(
&self,
app_id: String,
endpoint_id: String,
endpoint_transformation_in: EndpointTransformationIn,
) -> Result<()> {
crate::request::Request::new(
http1::Method::PATCH,
"/api/v1/app/{app_id}/endpoint/{endpoint_id}/transformation",
)
.with_path_param("app_id", app_id)
.with_path_param("endpoint_id", endpoint_id)
.with_body_param(endpoint_transformation_in)
.returns_nothing()
.execute(self.cfg)
.await
}
}