pub struct Profile {Show 13 fields
pub name: AppName,
pub description: Option<Description>,
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>,
pub custom_kms_alias: Option<String>,
pub repo_url: Option<String>,
}Expand description
Application profile information.
§Security
Uses validated types for name and description to prevent injection attacks
and ensure data meets business requirements.
Fields§
§name: AppNameProfile name (validated)
description: Option<Description>Profile description (validated)
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
custom_kms_alias: Option<String>Customer Managed Encryption Key (CMEK) alias for encrypting application data
repo_url: Option<String>Repository URL for the application (e.g., Git repository URL)
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