mirror of
https://github.com/ghndrx/prowler.git
synced 2026-02-10 06:45:08 +00:00
47 lines
1.2 KiB
Python
47 lines
1.2 KiB
Python
from dataclasses import dataclass
|
|
from typing import Any, Optional
|
|
|
|
from azure.identity import DefaultAzureCredential
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class Azure_Identity_Info(BaseModel):
|
|
identity_id: str = ""
|
|
identity_type: str = ""
|
|
tenant_ids: list[str] = []
|
|
domain: str = "Unknown tenant domain (missing AAD permissions)"
|
|
subscriptions: dict = {}
|
|
|
|
|
|
class Azure_Region_Config(BaseModel):
|
|
name: str = ""
|
|
authority: str = None
|
|
base_url: str = ""
|
|
credential_scopes: list = []
|
|
|
|
|
|
@dataclass
|
|
class Azure_Audit_Info:
|
|
credentials: DefaultAzureCredential
|
|
identity: Azure_Identity_Info
|
|
audit_resources: Optional[Any]
|
|
audit_metadata: Optional[Any]
|
|
audit_config: dict
|
|
azure_region_config: Azure_Region_Config
|
|
|
|
def __init__(
|
|
self,
|
|
credentials,
|
|
identity,
|
|
audit_metadata,
|
|
audit_resources,
|
|
audit_config,
|
|
azure_region_config,
|
|
):
|
|
self.credentials = credentials
|
|
self.identity = identity
|
|
self.audit_metadata = audit_metadata
|
|
self.audit_resources = audit_resources
|
|
self.audit_config = audit_config
|
|
self.azure_region_config = azure_region_config
|