pub struct GetRotatedSecretValue {
pub host: Option<String>,
pub ignore_cache: Option<String>,
pub json: Option<bool>,
pub names: String,
pub token: Option<String>,
pub uid_token: Option<String>,
pub version: Option<i32>,
}Fields§
§host: Option<String>Get rotated secret value of specific Host (relevant only for Linked Target)
ignore_cache: Option<String>Retrieve the Secret value without checking the Gateway’s cache [true/false]. This flag is only relevant when using the RestAPI
json: Option<bool>Set output format to JSON
names: StringSecret name
token: Option<String>Authentication token (see /auth and /configure)
uid_token: Option<String>The universal identity token, Required only for universal_identity authentication
version: Option<i32>Secret version
Implementations§
Source§impl GetRotatedSecretValue
impl GetRotatedSecretValue
pub fn new(names: String) -> GetRotatedSecretValue
Trait Implementations§
Source§impl Clone for GetRotatedSecretValue
impl Clone for GetRotatedSecretValue
Source§fn clone(&self) -> GetRotatedSecretValue
fn clone(&self) -> GetRotatedSecretValue
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GetRotatedSecretValue
impl Debug for GetRotatedSecretValue
Source§impl Default for GetRotatedSecretValue
impl Default for GetRotatedSecretValue
Source§fn default() -> GetRotatedSecretValue
fn default() -> GetRotatedSecretValue
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetRotatedSecretValue
impl<'de> Deserialize<'de> for GetRotatedSecretValue
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for GetRotatedSecretValue
impl PartialEq for GetRotatedSecretValue
Source§fn eq(&self, other: &GetRotatedSecretValue) -> bool
fn eq(&self, other: &GetRotatedSecretValue) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GetRotatedSecretValue
impl Serialize for GetRotatedSecretValue
impl StructuralPartialEq for GetRotatedSecretValue
Auto Trait Implementations§
impl Freeze for GetRotatedSecretValue
impl RefUnwindSafe for GetRotatedSecretValue
impl Send for GetRotatedSecretValue
impl Sync for GetRotatedSecretValue
impl Unpin for GetRotatedSecretValue
impl UnsafeUnpin for GetRotatedSecretValue
impl UnwindSafe for GetRotatedSecretValue
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