pub struct ReadSecretMetadataResponse {
pub cas_required: bool,
pub created_time: String,
pub current_version: u64,
pub delete_version_after: String,
pub max_versions: u64,
pub oldest_version: u64,
pub updated_time: String,
pub custom_metadata: Option<HashMap<String, String>>,
pub versions: HashMap<String, SecretMetadata>,
}
Expand description
Response from executing ReadSecretMetadataRequest
Fields§
§cas_required: bool
§created_time: String
§current_version: u64
§delete_version_after: String
§max_versions: u64
§oldest_version: u64
§updated_time: String
§custom_metadata: Option<HashMap<String, String>>
§versions: HashMap<String, SecretMetadata>
Trait Implementations§
source§impl Debug for ReadSecretMetadataResponse
impl Debug for ReadSecretMetadataResponse
source§impl<'de> Deserialize<'de> for ReadSecretMetadataResponse
impl<'de> Deserialize<'de> for ReadSecretMetadataResponse
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
Auto Trait Implementations§
impl Freeze for ReadSecretMetadataResponse
impl RefUnwindSafe for ReadSecretMetadataResponse
impl Send for ReadSecretMetadataResponse
impl Sync for ReadSecretMetadataResponse
impl Unpin for ReadSecretMetadataResponse
impl UnwindSafe for ReadSecretMetadataResponse
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