pub struct GoogleCloudAiplatformV1SearchModelDeploymentMonitoringStatsAnomaliesRequest {
pub end_time: Option<DateTime<Utc>>,
pub start_time: Option<DateTime<Utc>>,
pub page_size: Option<i32>,
pub deployed_model_id: Option<String>,
pub feature_display_name: Option<String>,
pub objectives: Option<Vec<GoogleCloudAiplatformV1SearchModelDeploymentMonitoringStatsAnomaliesRequestStatsAnomaliesObjective>>,
pub page_token: Option<String>,
}Expand description
Request message for JobService.SearchModelDeploymentMonitoringStatsAnomalies.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
Fields§
§end_time: Option<DateTime<Utc>>The latest timestamp of stats being generated. If not set, indicates feching stats till the latest possible one.
start_time: Option<DateTime<Utc>>The earliest timestamp of stats being generated. If not set, indicates fetching stats till the earliest possible one.
page_size: Option<i32>The standard list page size.
deployed_model_id: Option<String>Required. The DeployedModel ID of the [ModelDeploymentMonitoringObjectiveConfig.deployed_model_id].
feature_display_name: Option<String>The feature display name. If specified, only return the stats belonging to this feature. Format: ModelMonitoringStatsAnomalies.FeatureHistoricStatsAnomalies.feature_display_name, example: “user_destination”.
objectives: Option<Vec<GoogleCloudAiplatformV1SearchModelDeploymentMonitoringStatsAnomaliesRequestStatsAnomaliesObjective>>Required. Objectives of the stats to retrieve.
page_token: Option<String>A page token received from a previous JobService.SearchModelDeploymentMonitoringStatsAnomalies call.
Trait Implementations§
Source§impl Clone for GoogleCloudAiplatformV1SearchModelDeploymentMonitoringStatsAnomaliesRequest
impl Clone for GoogleCloudAiplatformV1SearchModelDeploymentMonitoringStatsAnomaliesRequest
Source§fn clone(
&self,
) -> GoogleCloudAiplatformV1SearchModelDeploymentMonitoringStatsAnomaliesRequest
fn clone( &self, ) -> GoogleCloudAiplatformV1SearchModelDeploymentMonitoringStatsAnomaliesRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for GoogleCloudAiplatformV1SearchModelDeploymentMonitoringStatsAnomaliesRequest
impl Default for GoogleCloudAiplatformV1SearchModelDeploymentMonitoringStatsAnomaliesRequest
Source§fn default() -> GoogleCloudAiplatformV1SearchModelDeploymentMonitoringStatsAnomaliesRequest
fn default() -> GoogleCloudAiplatformV1SearchModelDeploymentMonitoringStatsAnomaliesRequest
Source§impl<'de> Deserialize<'de> for GoogleCloudAiplatformV1SearchModelDeploymentMonitoringStatsAnomaliesRequest
impl<'de> Deserialize<'de> for GoogleCloudAiplatformV1SearchModelDeploymentMonitoringStatsAnomaliesRequest
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl Serialize for GoogleCloudAiplatformV1SearchModelDeploymentMonitoringStatsAnomaliesRequest
impl Serialize for GoogleCloudAiplatformV1SearchModelDeploymentMonitoringStatsAnomaliesRequest
impl RequestValue for GoogleCloudAiplatformV1SearchModelDeploymentMonitoringStatsAnomaliesRequest
Auto Trait Implementations§
impl Freeze for GoogleCloudAiplatformV1SearchModelDeploymentMonitoringStatsAnomaliesRequest
impl RefUnwindSafe for GoogleCloudAiplatformV1SearchModelDeploymentMonitoringStatsAnomaliesRequest
impl Send for GoogleCloudAiplatformV1SearchModelDeploymentMonitoringStatsAnomaliesRequest
impl Sync for GoogleCloudAiplatformV1SearchModelDeploymentMonitoringStatsAnomaliesRequest
impl Unpin for GoogleCloudAiplatformV1SearchModelDeploymentMonitoringStatsAnomaliesRequest
impl UnwindSafe for GoogleCloudAiplatformV1SearchModelDeploymentMonitoringStatsAnomaliesRequest
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more