pub struct PostDetectedSecretsQueriesBody {
pub resolved: Option<bool>,
pub secret_types: Option<Vec<String>>,
pub statuses: Option<Vec<Resolution>>,
pub workspace_ids: Option<Vec<String>>,
pub workspace_visiblities: Option<Vec<String>>,
}
Fields§
§resolved: Option<bool>
If true, return secrets with a resolved
status.
secret_types: Option<Vec<String>>
A list of secrets types to query. For a list of valid IDs, use the GET /secret-types
endpoint.
statuses: Option<Vec<Resolution>>
A list of the types of resolution statuses to query.
workspace_ids: Option<Vec<String>>
A list of workspaces IDs to query.
workspace_visiblities: Option<Vec<String>>
A list of workspace visibility
settings
to query. This currently supports the team
and public
settings.
Trait Implementations§
Source§impl Clone for PostDetectedSecretsQueriesBody
impl Clone for PostDetectedSecretsQueriesBody
Source§fn clone(&self) -> PostDetectedSecretsQueriesBody
fn clone(&self) -> PostDetectedSecretsQueriesBody
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 PostDetectedSecretsQueriesBody
impl<'de> Deserialize<'de> for PostDetectedSecretsQueriesBody
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 PostDetectedSecretsQueriesBody
impl PartialEq for PostDetectedSecretsQueriesBody
Source§fn eq(&self, other: &PostDetectedSecretsQueriesBody) -> bool
fn eq(&self, other: &PostDetectedSecretsQueriesBody) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PostDetectedSecretsQueriesBody
Auto Trait Implementations§
impl Freeze for PostDetectedSecretsQueriesBody
impl RefUnwindSafe for PostDetectedSecretsQueriesBody
impl Send for PostDetectedSecretsQueriesBody
impl Sync for PostDetectedSecretsQueriesBody
impl Unpin for PostDetectedSecretsQueriesBody
impl UnwindSafe for PostDetectedSecretsQueriesBody
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