pub struct ServerVulnerabilityAssessmentProperties {
pub storage_container_path: String,
pub storage_container_sas_key: Option<String>,
pub storage_account_access_key: Option<String>,
pub recurring_scans: Option<VulnerabilityAssessmentRecurringScansProperties>,
}Expand description
Properties of a server Vulnerability Assessment.
Fields§
§storage_container_path: StringA blob storage container path to hold the scan results (e.g. https://myStorage.blob.core.windows.net/VaScans/).
storage_container_sas_key: Option<String>A shared access signature (SAS Key) that has write access to the blob container specified in ‘storageContainerPath’ parameter. If ‘storageAccountAccessKey’ isn’t specified, StorageContainerSasKey is required. Applies only if the storage account is not behind a Vnet or a firewall
storage_account_access_key: Option<String>Specifies the identifier key of the storage account for vulnerability assessment scan results. If ‘StorageContainerSasKey’ isn’t specified, storageAccountAccessKey is required. Applies only if the storage account is not behind a Vnet or a firewall
recurring_scans: Option<VulnerabilityAssessmentRecurringScansProperties>Properties of a Vulnerability Assessment recurring scans.
Implementations§
Trait Implementations§
Source§impl Clone for ServerVulnerabilityAssessmentProperties
impl Clone for ServerVulnerabilityAssessmentProperties
Source§fn clone(&self) -> ServerVulnerabilityAssessmentProperties
fn clone(&self) -> ServerVulnerabilityAssessmentProperties
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 ServerVulnerabilityAssessmentProperties
impl<'de> Deserialize<'de> for ServerVulnerabilityAssessmentProperties
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 ServerVulnerabilityAssessmentProperties
impl PartialEq for ServerVulnerabilityAssessmentProperties
Source§fn eq(&self, other: &ServerVulnerabilityAssessmentProperties) -> bool
fn eq(&self, other: &ServerVulnerabilityAssessmentProperties) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ServerVulnerabilityAssessmentProperties
Auto Trait Implementations§
impl Freeze for ServerVulnerabilityAssessmentProperties
impl RefUnwindSafe for ServerVulnerabilityAssessmentProperties
impl Send for ServerVulnerabilityAssessmentProperties
impl Sync for ServerVulnerabilityAssessmentProperties
impl Unpin for ServerVulnerabilityAssessmentProperties
impl UnwindSafe for ServerVulnerabilityAssessmentProperties
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