pub struct RotatedSecretDeleteSync {
pub delete_from_usc: Option<bool>,
pub json: Option<bool>,
pub name: String,
pub remote_secret_name: Option<String>,
pub token: Option<String>,
pub uid_token: Option<String>,
pub usc_name: String,
}Fields§
§delete_from_usc: Option<bool>Delete the secret from the remote target USC as well
json: Option<bool>Set output format to JSON
name: StringRotated secret name
remote_secret_name: Option<String>Remote Secret Name to disambiguate when multiple syncs exist under the same USC
token: Option<String>Authentication token (see /auth and /configure)
uid_token: Option<String>The universal identity token, Required only for universal_identity authentication
usc_name: StringUniversal Secret Connector name
Implementations§
Source§impl RotatedSecretDeleteSync
impl RotatedSecretDeleteSync
pub fn new(name: String, usc_name: String) -> RotatedSecretDeleteSync
Trait Implementations§
Source§impl Clone for RotatedSecretDeleteSync
impl Clone for RotatedSecretDeleteSync
Source§fn clone(&self) -> RotatedSecretDeleteSync
fn clone(&self) -> RotatedSecretDeleteSync
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 RotatedSecretDeleteSync
impl Debug for RotatedSecretDeleteSync
Source§impl Default for RotatedSecretDeleteSync
impl Default for RotatedSecretDeleteSync
Source§fn default() -> RotatedSecretDeleteSync
fn default() -> RotatedSecretDeleteSync
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RotatedSecretDeleteSync
impl<'de> Deserialize<'de> for RotatedSecretDeleteSync
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 RotatedSecretDeleteSync
impl PartialEq for RotatedSecretDeleteSync
Source§fn eq(&self, other: &RotatedSecretDeleteSync) -> bool
fn eq(&self, other: &RotatedSecretDeleteSync) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RotatedSecretDeleteSync
impl Serialize for RotatedSecretDeleteSync
impl StructuralPartialEq for RotatedSecretDeleteSync
Auto Trait Implementations§
impl Freeze for RotatedSecretDeleteSync
impl RefUnwindSafe for RotatedSecretDeleteSync
impl Send for RotatedSecretDeleteSync
impl Sync for RotatedSecretDeleteSync
impl Unpin for RotatedSecretDeleteSync
impl UnsafeUnpin for RotatedSecretDeleteSync
impl UnwindSafe for RotatedSecretDeleteSync
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