pub struct ListWafRulesParams {
pub filter_modsec_rule_id: Option<String>,
pub filter_waf_tags_name: Option<String>,
pub filter_waf_rule_revisions_source: Option<String>,
pub filter_waf_firewall_id_not_match: Option<String>,
pub page_number: Option<i32>,
pub page_size: Option<i32>,
pub include: Option<String>,
}
Expand description
struct for passing parameters to the method list_waf_rules
Fields§
§filter_modsec_rule_id: Option<String>
Limit the returned rules to a specific ModSecurity rule ID.
Limit the returned rules to a set linked to a tag by name.
filter_waf_rule_revisions_source: Option<String>
Limit the returned rules to a set linked to a source.
filter_waf_firewall_id_not_match: Option<String>
Limit the returned rules to a set not included in the active firewall version for a firewall.
page_number: Option<i32>
Current page.
page_size: Option<i32>
Number of records per page.
include: Option<String>
Include relationships. Optional, comma-separated values. Permitted values: waf_tags
and waf_rule_revisions
.
Trait Implementations§
Source§impl Clone for ListWafRulesParams
impl Clone for ListWafRulesParams
Source§fn clone(&self) -> ListWafRulesParams
fn clone(&self) -> ListWafRulesParams
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 moreSource§impl Debug for ListWafRulesParams
impl Debug for ListWafRulesParams
Source§impl Default for ListWafRulesParams
impl Default for ListWafRulesParams
Source§fn default() -> ListWafRulesParams
fn default() -> ListWafRulesParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ListWafRulesParams
impl RefUnwindSafe for ListWafRulesParams
impl Send for ListWafRulesParams
impl Sync for ListWafRulesParams
impl Unpin for ListWafRulesParams
impl UnwindSafe for ListWafRulesParams
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