Struct k8s_openapi::v1_8::api::core::v1::ClientIPConfig[][src]

pub struct ClientIPConfig {
    pub timeout_seconds: Option<i32>,
}

ClientIPConfig represents the configurations of Client IP based session affinity.

Fields

timeoutSeconds specifies the seconds of ClientIP type session sticky time. The value must be >0 && <=86400(for 1 day) if ServiceAffinity == "ClientIP". Default value is 10800(for 3 hours).

Trait Implementations

impl Clone for ClientIPConfig
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ClientIPConfig
[src]

Formats the value using the given formatter. Read more

impl Default for ClientIPConfig
[src]

Returns the "default value" for a type. Read more

impl PartialEq for ClientIPConfig
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<'de> Deserialize<'de> for ClientIPConfig
[src]

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for ClientIPConfig
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations