pub struct MlStopTrainedModelDeployment<'a, 'b, B> { /* private fields */ }
Expand description
Builder for the Ml Stop Trained Model Deployment API
Stop a trained model deployment.
Implementations§
Source§impl<'a, 'b, B> MlStopTrainedModelDeployment<'a, 'b, B>where
B: Body,
impl<'a, 'b, B> MlStopTrainedModelDeployment<'a, 'b, B>where
B: Body,
Sourcepub fn new(
transport: &'a Transport,
parts: MlStopTrainedModelDeploymentParts<'b>,
) -> Self
pub fn new( transport: &'a Transport, parts: MlStopTrainedModelDeploymentParts<'b>, ) -> Self
Creates a new instance of MlStopTrainedModelDeployment with the specified API parts
Sourcepub fn allow_no_match(self, allow_no_match: bool) -> Self
pub fn allow_no_match(self, allow_no_match: bool) -> Self
Whether to ignore if a wildcard expression matches no deployments. (This includes _all
string or when no deployments have been specified)
Sourcepub fn body<T>(
self,
body: T,
) -> MlStopTrainedModelDeployment<'a, 'b, JsonBody<T>>where
T: Serialize,
pub fn body<T>(
self,
body: T,
) -> MlStopTrainedModelDeployment<'a, 'b, JsonBody<T>>where
T: Serialize,
The body for the API call
Sourcepub fn error_trace(self, error_trace: bool) -> Self
pub fn error_trace(self, error_trace: bool) -> Self
Include the stack trace of returned errors.
Sourcepub fn filter_path(self, filter_path: &'b [&'b str]) -> Self
pub fn filter_path(self, filter_path: &'b [&'b str]) -> Self
A comma-separated list of filters used to reduce the response.
Sourcepub fn header(self, key: HeaderName, value: HeaderValue) -> Self
pub fn header(self, key: HeaderName, value: HeaderValue) -> Self
Adds a HTTP header
Sourcepub fn request_timeout(self, timeout: Duration) -> Self
pub fn request_timeout(self, timeout: Duration) -> Self
Sets a request timeout for this API call.
The timeout is applied from when the request starts connecting until the response body has finished.
Trait Implementations§
Source§impl<'a, 'b, B: Clone> Clone for MlStopTrainedModelDeployment<'a, 'b, B>
impl<'a, 'b, B: Clone> Clone for MlStopTrainedModelDeployment<'a, 'b, B>
Source§fn clone(&self) -> MlStopTrainedModelDeployment<'a, 'b, B>
fn clone(&self) -> MlStopTrainedModelDeployment<'a, 'b, B>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl<'a, 'b, B> Freeze for MlStopTrainedModelDeployment<'a, 'b, B>where
B: Freeze,
impl<'a, 'b, B> !RefUnwindSafe for MlStopTrainedModelDeployment<'a, 'b, B>
impl<'a, 'b, B> Send for MlStopTrainedModelDeployment<'a, 'b, B>where
B: Send,
impl<'a, 'b, B> Sync for MlStopTrainedModelDeployment<'a, 'b, B>where
B: Sync,
impl<'a, 'b, B> Unpin for MlStopTrainedModelDeployment<'a, 'b, B>where
B: Unpin,
impl<'a, 'b, B> !UnwindSafe for MlStopTrainedModelDeployment<'a, 'b, B>
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