pub struct AzureMetadata {
pub management_groups: Option<Vec<AzureManagementGroup>>,
pub resource_group: Option<AzureResourceGroup>,
pub subscription: Option<AzureSubscription>,
pub tenant: Option<AzureTenant>,
}Expand description
Azure metadata associated with the resource, only applicable if the finding’s cloud provider is Microsoft Azure.
This type is not used in any activity, and only used as part of another schema.
Fields§
§management_groups: Option<Vec<AzureManagementGroup>>A list of Azure management groups associated with the resource, ordered from lowest level (closest to the subscription) to highest level.
resource_group: Option<AzureResourceGroup>The Azure resource group associated with the resource.
subscription: Option<AzureSubscription>The Azure subscription associated with the resource.
tenant: Option<AzureTenant>The Azure Entra tenant associated with the resource.
Trait Implementations§
Source§impl Clone for AzureMetadata
impl Clone for AzureMetadata
Source§fn clone(&self) -> AzureMetadata
fn clone(&self) -> AzureMetadata
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 Debug for AzureMetadata
impl Debug for AzureMetadata
Source§impl Default for AzureMetadata
impl Default for AzureMetadata
Source§fn default() -> AzureMetadata
fn default() -> AzureMetadata
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AzureMetadata
impl<'de> Deserialize<'de> for AzureMetadata
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 Serialize for AzureMetadata
impl Serialize for AzureMetadata
impl Part for AzureMetadata
Auto Trait Implementations§
impl Freeze for AzureMetadata
impl RefUnwindSafe for AzureMetadata
impl Send for AzureMetadata
impl Sync for AzureMetadata
impl Unpin for AzureMetadata
impl UnwindSafe for AzureMetadata
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