pub struct Profile {
pub name: String,
pub description: Option<String>,
pub tags: Option<String>,
pub business_unit: Option<BusinessUnit>,
pub business_owners: Option<Vec<BusinessOwner>>,
pub policies: Option<Vec<Policy>>,
pub teams: Option<Vec<Team>>,
pub archer_app_name: Option<String>,
pub custom_fields: Option<Vec<CustomField>>,
pub business_criticality: BusinessCriticality,
pub settings: Option<Settings>,
}Expand description
Application profile information.
Fields§
§name: StringProfile name
description: Option<String>Profile description
Profile tags
business_unit: Option<BusinessUnit>Business unit associated with the application
business_owners: Option<Vec<BusinessOwner>>List of business owners
policies: Option<Vec<Policy>>List of policies applied to the application
teams: Option<Vec<Team>>List of teams associated with the application
archer_app_name: Option<String>Archer application name
custom_fields: Option<Vec<CustomField>>Custom fields
business_criticality: BusinessCriticalityBusiness criticality level (required)
settings: Option<Settings>Application Profile Settings
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Profile
impl<'de> Deserialize<'de> for Profile
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
Auto Trait Implementations§
impl Freeze for Profile
impl RefUnwindSafe for Profile
impl Send for Profile
impl Sync for Profile
impl Unpin for Profile
impl UnwindSafe for Profile
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