pub struct RequestSettingsResponse {Show 17 fields
pub created_at: Option<String>,
pub deleted_at: Option<String>,
pub updated_at: Option<String>,
pub service_id: Option<Box<String>>,
pub version: Option<Box<String>>,
pub action: Option<Action>,
pub default_host: Option<String>,
pub hash_keys: Option<String>,
pub name: Option<String>,
pub request_condition: Option<String>,
pub xff: Option<Xff>,
pub bypass_busy_wait: Option<String>,
pub force_miss: Option<String>,
pub force_ssl: Option<String>,
pub geo_headers: Option<String>,
pub max_stale_age: Option<String>,
pub timer_support: Option<String>,
}
Fields§
§created_at: Option<String>
Date and time in ISO 8601 format.
deleted_at: Option<String>
Date and time in ISO 8601 format.
updated_at: Option<String>
Date and time in ISO 8601 format.
service_id: Option<Box<String>>
§version: Option<Box<String>>
§action: Option<Action>
Allows you to terminate request handling and immediately perform an action.
default_host: Option<String>
Sets the host header.
hash_keys: Option<String>
Comma separated list of varnish request object fields that should be in the hash key.
name: Option<String>
Name for the request settings.
request_condition: Option<String>
Condition which, if met, will select this configuration during a request. Optional.
xff: Option<Xff>
Short for X-Forwarded-For.
bypass_busy_wait: Option<String>
Disable collapsed forwarding, so you don’t wait for other objects to origin.
force_miss: Option<String>
Allows you to force a cache miss for the request. Replaces the item in the cache if the content is cacheable.
force_ssl: Option<String>
Forces the request use SSL (redirects a non-SSL to SSL).
geo_headers: Option<String>
Injects Fastly-Geo-Country, Fastly-Geo-City, and Fastly-Geo-Region into the request headers.
max_stale_age: Option<String>
How old an object is allowed to be to serve stale-if-error or stale-while-revalidate.
timer_support: Option<String>
Injects the X-Timer info into the request for viewing origin fetch durations.
Implementations§
Source§impl RequestSettingsResponse
impl RequestSettingsResponse
pub fn new() -> RequestSettingsResponse
Trait Implementations§
Source§impl Clone for RequestSettingsResponse
impl Clone for RequestSettingsResponse
Source§fn clone(&self) -> RequestSettingsResponse
fn clone(&self) -> RequestSettingsResponse
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more