Skip to main content

fastly_api/models/
waf_simulate_response.rs

1/*
2 * Fastly API
3 *
4 * Via the Fastly API you can perform any of the operations that are possible within the management console,  including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) 
5 *
6 */
7
8/// WafSimulateResponse : Response from the WAF simulation containing the WAF response code and detected signals.
9
10
11
12#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
13pub struct WafSimulateResponse {
14    /// The HTTP status code the WAF would return for the simulated request (e.g., `200` for allowed, `406` for blocked).
15    #[serde(rename = "waf_response")]
16    pub waf_response: i32,
17    /// List of signals detected by the WAF during simulation. Empty array when no signals are detected.
18    #[serde(rename = "signals")]
19    pub signals: Vec<crate::models::WafSimulateSignal>,
20}
21
22impl WafSimulateResponse {
23    /// Response from the WAF simulation containing the WAF response code and detected signals.
24    pub fn new(waf_response: i32, signals: Vec<crate::models::WafSimulateSignal>) -> WafSimulateResponse {
25        WafSimulateResponse {
26            waf_response,
27            signals,
28        }
29    }
30}
31
32