pub struct PostDetectedSecretsQueriesResponseDataItem {
pub detected_at: Option<String>,
pub obfuscated_secret: Option<String>,
pub occurrences: Option<f64>,
pub resolution: Option<ResolutionEnum>,
pub secret_hash: Option<String>,
pub secret_id: Option<String>,
pub secret_type: Option<String>,
pub workspace_id: Option<String>,
pub workspace_visibility: Option<WorkspaceVisibility>,
}
Fields§
§detected_at: Option<String>
The date and time at which the secret was first detected.
obfuscated_secret: Option<String>
The secret’s obfuscated value.
occurrences: Option<f64>
The number of times the secret was found in the workspace.
resolution: Option<ResolutionEnum>
The secret’s current 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.
secret_id: Option<String>
The detected secret’s ID.
secret_type: Option<String>
The type of the secret.
workspace_id: Option<String>
The ID of the workspace that contains the secret.
workspace_visibility: Option<WorkspaceVisibility>
The workspace’s visibility setting.
Trait Implementations§
Source§impl Clone for PostDetectedSecretsQueriesResponseDataItem
impl Clone for PostDetectedSecretsQueriesResponseDataItem
Source§fn clone(&self) -> PostDetectedSecretsQueriesResponseDataItem
fn clone(&self) -> PostDetectedSecretsQueriesResponseDataItem
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 PostDetectedSecretsQueriesResponseDataItem
impl<'de> Deserialize<'de> for PostDetectedSecretsQueriesResponseDataItem
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 PostDetectedSecretsQueriesResponseDataItem
impl PartialEq for PostDetectedSecretsQueriesResponseDataItem
Source§fn eq(&self, other: &PostDetectedSecretsQueriesResponseDataItem) -> bool
fn eq(&self, other: &PostDetectedSecretsQueriesResponseDataItem) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PostDetectedSecretsQueriesResponseDataItem
Auto Trait Implementations§
impl Freeze for PostDetectedSecretsQueriesResponseDataItem
impl RefUnwindSafe for PostDetectedSecretsQueriesResponseDataItem
impl Send for PostDetectedSecretsQueriesResponseDataItem
impl Sync for PostDetectedSecretsQueriesResponseDataItem
impl Unpin for PostDetectedSecretsQueriesResponseDataItem
impl UnwindSafe for PostDetectedSecretsQueriesResponseDataItem
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