[][src]Struct vault_rs::sys::mounts::SecretsEngineTune

pub struct SecretsEngineTune {
    pub description: Option<String>,
    pub default_lease_ttl: Option<u64>,
    pub max_lease_ttl: Option<u64>,
    pub audit_non_hmac_request_keys: Option<HashSet<String>>,
    pub audit_non_hmac_response_keys: Option<HashSet<String>>,
    pub listing_visibility: Option<ListingVisibility>,
    pub passthrough_request_headers: Option<HashSet<String>>,
    pub allowed_response_headers: Option<HashSet<String>>,
}

Tuning options for secrets engines

Fields

description: Option<String>

Specifies the human-friendly description of the mount.

default_lease_ttl: Option<u64>

The default lease duration, specified as a string duration like "5s" or "30m".

max_lease_ttl: Option<u64>

The maximum lease duration, specified as a string duration like "5s" or "30m".

audit_non_hmac_request_keys: Option<HashSet<String>>

List of keys that will not be HMAC'd by audit devices in the request data object.

audit_non_hmac_response_keys: Option<HashSet<String>>

List of keys that will not be HMAC'd by audit devices in the response data object.

listing_visibility: Option<ListingVisibility>

Specifies whether to show this mount in the UI-specific listing endpoint.

passthrough_request_headers: Option<HashSet<String>>

List of headers to whitelist and pass from the request to the plugin.

allowed_response_headers: Option<HashSet<String>>

List of headers to whitelist, allowing a plugin to include them in the response.

Trait Implementations

impl Debug for SecretsEngineTune[src]

impl Default for SecretsEngineTune[src]

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

impl Eq for SecretsEngineTune[src]

impl PartialEq<SecretsEngineTune> for SecretsEngineTune[src]

impl Serialize for SecretsEngineTune[src]

impl StructuralEq for SecretsEngineTune[src]

impl StructuralPartialEq for SecretsEngineTune[src]

Auto Trait Implementations

impl RefUnwindSafe for SecretsEngineTune

impl Send for SecretsEngineTune

impl Sync for SecretsEngineTune

impl Unpin for SecretsEngineTune

impl UnwindSafe for SecretsEngineTune

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.