pub struct AgentPolicyDetail {
pub id: String,
pub name: String,
pub namespace: String,
pub description: Option<String>,
pub agents: u64,
pub status: Option<String>,
pub attached_integrations: Vec<String>,
pub blocked_by: Vec<String>,
}Expand description
Safe single-policy output. Raw Fleet items contain audit identities and populated integration configurations, so they never cross the API boundary.
Fields§
§id: String§name: String§namespace: String§description: Option<String>§agents: u64§status: Option<String>§attached_integrations: Vec<String>§blocked_by: Vec<String>Trait Implementations§
Source§impl Clone for AgentPolicyDetail
impl Clone for AgentPolicyDetail
Source§fn clone(&self) -> AgentPolicyDetail
fn clone(&self) -> AgentPolicyDetail
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AgentPolicyDetail
impl Debug for AgentPolicyDetail
impl Eq for AgentPolicyDetail
Source§impl PartialEq for AgentPolicyDetail
impl PartialEq for AgentPolicyDetail
Source§impl Serialize for AgentPolicyDetail
impl Serialize for AgentPolicyDetail
impl StructuralPartialEq for AgentPolicyDetail
Auto Trait Implementations§
impl Freeze for AgentPolicyDetail
impl RefUnwindSafe for AgentPolicyDetail
impl Send for AgentPolicyDetail
impl Sync for AgentPolicyDetail
impl Unpin for AgentPolicyDetail
impl UnsafeUnpin for AgentPolicyDetail
impl UnwindSafe for AgentPolicyDetail
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.