pub struct GetDetectedSecretsSecretIdLocationsResponseDataItem {
pub detected_at: Option<String>,
pub is_resource_deleted: Option<bool>,
pub leaked_by: Option<f64>,
pub location: Option<String>,
pub occurrences: Option<f64>,
pub parent_resource_id: Option<String>,
pub resource_id: Option<String>,
pub resource_type: Option<DatumResourceType>,
pub url: Option<String>,
}
Fields§
§detected_at: Option<String>
The date and time at which the secret was detected.
is_resource_deleted: Option<bool>
If true, the resource in which the secret was found was deleted.
leaked_by: Option<f64>
The ID of the user who leaked the secret.
location: Option<String>
The location where the secret was found.
occurrences: Option<f64>
The number of times the secret occurs in the location.
parent_resource_id: Option<String>
The parent resource’s unique ID. If the resource is a request, folder, or example, this value is a collection ID. If the resource is a collection, globals, or environment, this is the resource’s ID.
resource_id: Option<String>
The unique ID of the resource where the secret was detected.
resource_type: Option<DatumResourceType>
The type of resource in which the secret was detected.
url: Option<String>
The URL to the resource that contains the secret.
Trait Implementations§
Source§impl Clone for GetDetectedSecretsSecretIdLocationsResponseDataItem
impl Clone for GetDetectedSecretsSecretIdLocationsResponseDataItem
Source§fn clone(&self) -> GetDetectedSecretsSecretIdLocationsResponseDataItem
fn clone(&self) -> GetDetectedSecretsSecretIdLocationsResponseDataItem
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 GetDetectedSecretsSecretIdLocationsResponseDataItem
impl<'de> Deserialize<'de> for GetDetectedSecretsSecretIdLocationsResponseDataItem
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 GetDetectedSecretsSecretIdLocationsResponseDataItem
impl PartialEq for GetDetectedSecretsSecretIdLocationsResponseDataItem
Source§fn eq(
&self,
other: &GetDetectedSecretsSecretIdLocationsResponseDataItem,
) -> bool
fn eq( &self, other: &GetDetectedSecretsSecretIdLocationsResponseDataItem, ) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetDetectedSecretsSecretIdLocationsResponseDataItem
Auto Trait Implementations§
impl Freeze for GetDetectedSecretsSecretIdLocationsResponseDataItem
impl RefUnwindSafe for GetDetectedSecretsSecretIdLocationsResponseDataItem
impl Send for GetDetectedSecretsSecretIdLocationsResponseDataItem
impl Sync for GetDetectedSecretsSecretIdLocationsResponseDataItem
impl Unpin for GetDetectedSecretsSecretIdLocationsResponseDataItem
impl UnwindSafe for GetDetectedSecretsSecretIdLocationsResponseDataItem
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