pub struct PutDetectedSecretsSecretIdResponse {
pub history: Option<Vec<PutDetectedSecretsSecretIdResponseHistoryItem>>,
pub resolution: Option<ResolutionEnum>,
pub secret_hash: Option<String>,
pub workspace_id: Option<String>,
}
Fields§
§history: Option<Vec<PutDetectedSecretsSecretIdResponseHistoryItem>>
The history of the secret’s resolution status changes.
resolution: Option<ResolutionEnum>
The secret’s current resolution status:
ACTIVE
— The secret is active.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.
secret_hash: Option<String>
The SHA-256 hash of the detected secret.
workspace_id: Option<String>
The ID of the workspace that contains the secret.
Trait Implementations§
Source§impl Clone for PutDetectedSecretsSecretIdResponse
impl Clone for PutDetectedSecretsSecretIdResponse
Source§fn clone(&self) -> PutDetectedSecretsSecretIdResponse
fn clone(&self) -> PutDetectedSecretsSecretIdResponse
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 PutDetectedSecretsSecretIdResponse
impl<'de> Deserialize<'de> for PutDetectedSecretsSecretIdResponse
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 PutDetectedSecretsSecretIdResponse
impl PartialEq for PutDetectedSecretsSecretIdResponse
Source§fn eq(&self, other: &PutDetectedSecretsSecretIdResponse) -> bool
fn eq(&self, other: &PutDetectedSecretsSecretIdResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PutDetectedSecretsSecretIdResponse
Auto Trait Implementations§
impl Freeze for PutDetectedSecretsSecretIdResponse
impl RefUnwindSafe for PutDetectedSecretsSecretIdResponse
impl Send for PutDetectedSecretsSecretIdResponse
impl Sync for PutDetectedSecretsSecretIdResponse
impl Unpin for PutDetectedSecretsSecretIdResponse
impl UnwindSafe for PutDetectedSecretsSecretIdResponse
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