pub struct PutDetectedSecretsSecretIdBody {
pub resolution: Resolution,
pub workspace_id: String,
}
Fields§
§resolution: Resolution
The secret’s updated resolution status:
FALSE_POSITIVE
— The discovered secret is not an actual secret.REVOKED
— The secret is valid, but the user rotated their key to resolve the issue.ACCEPTED_RISK
— The Secret Scanner found the secret, but user accepts the risk of publishing it.
workspace_id: String
The ID of the workspace that contains the secret.
Trait Implementations§
Source§impl Clone for PutDetectedSecretsSecretIdBody
impl Clone for PutDetectedSecretsSecretIdBody
Source§fn clone(&self) -> PutDetectedSecretsSecretIdBody
fn clone(&self) -> PutDetectedSecretsSecretIdBody
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'de> Deserialize<'de> for PutDetectedSecretsSecretIdBody
impl<'de> Deserialize<'de> for PutDetectedSecretsSecretIdBody
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 PutDetectedSecretsSecretIdBody
impl PartialEq for PutDetectedSecretsSecretIdBody
Source§fn eq(&self, other: &PutDetectedSecretsSecretIdBody) -> bool
fn eq(&self, other: &PutDetectedSecretsSecretIdBody) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PutDetectedSecretsSecretIdBody
Auto Trait Implementations§
impl Freeze for PutDetectedSecretsSecretIdBody
impl RefUnwindSafe for PutDetectedSecretsSecretIdBody
impl Send for PutDetectedSecretsSecretIdBody
impl Sync for PutDetectedSecretsSecretIdBody
impl Unpin for PutDetectedSecretsSecretIdBody
impl UnwindSafe for PutDetectedSecretsSecretIdBody
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