#[non_exhaustive]pub struct GetSecurityMonitoringHistsignalsByJobIdOptionalParams {
pub filter_query: Option<String>,
pub filter_from: Option<DateTime<Utc>>,
pub filter_to: Option<DateTime<Utc>>,
pub sort: Option<SecurityMonitoringSignalsSort>,
pub page_cursor: Option<String>,
pub page_limit: Option<i32>,
}
Expand description
GetSecurityMonitoringHistsignalsByJobIdOptionalParams is a struct for passing parameters to the method SecurityMonitoringAPI::get_security_monitoring_histsignals_by_job_id
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.filter_query: Option<String>
The search query for security signals.
filter_from: Option<DateTime<Utc>>
The minimum timestamp for requested security signals.
filter_to: Option<DateTime<Utc>>
The maximum timestamp for requested security signals.
sort: Option<SecurityMonitoringSignalsSort>
The order of the security signals in results.
page_cursor: Option<String>
A list of results using the cursor provided in the previous query.
page_limit: Option<i32>
The maximum number of security signals in the response.
Implementations§
Source§impl GetSecurityMonitoringHistsignalsByJobIdOptionalParams
impl GetSecurityMonitoringHistsignalsByJobIdOptionalParams
Sourcepub fn filter_query(self, value: String) -> Self
pub fn filter_query(self, value: String) -> Self
The search query for security signals.
Sourcepub fn filter_from(self, value: DateTime<Utc>) -> Self
pub fn filter_from(self, value: DateTime<Utc>) -> Self
The minimum timestamp for requested security signals.
Sourcepub fn filter_to(self, value: DateTime<Utc>) -> Self
pub fn filter_to(self, value: DateTime<Utc>) -> Self
The maximum timestamp for requested security signals.
Sourcepub fn sort(self, value: SecurityMonitoringSignalsSort) -> Self
pub fn sort(self, value: SecurityMonitoringSignalsSort) -> Self
The order of the security signals in results.
Sourcepub fn page_cursor(self, value: String) -> Self
pub fn page_cursor(self, value: String) -> Self
A list of results using the cursor provided in the previous query.
Sourcepub fn page_limit(self, value: i32) -> Self
pub fn page_limit(self, value: i32) -> Self
The maximum number of security signals in the response.
Trait Implementations§
Source§impl Clone for GetSecurityMonitoringHistsignalsByJobIdOptionalParams
impl Clone for GetSecurityMonitoringHistsignalsByJobIdOptionalParams
Source§fn clone(&self) -> GetSecurityMonitoringHistsignalsByJobIdOptionalParams
fn clone(&self) -> GetSecurityMonitoringHistsignalsByJobIdOptionalParams
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more