PSCitrixPowerBi.psd1

@{
    # Script module or binary module file associated with this manifest.
    RootModule = 'PSCitrixPowerBi.psm1'

    # Version number of this module.
    ModuleVersion = '2.0.0'

    # ID used to uniquely identify this module
    GUID = 'f75a2bd9-d24b-4c20-aee0-bb2e9ea1c9ff'

    # Author of this module
    Author = 'eswaras'

    # Company or vendor of this module
    CompanyName = ''

    # Copyright statement for this module
    Copyright = '(c) 2024 eswaras. All rights reserved.'

    # Description of the functionality provided by this module
    Description = 'This module provides a suite of functions for Citrix infrastructure monitoring, reporting, and Power BI export automation.
                         It includes functionality to collect data from Citrix Delivery Controllers, export usage metrics, interact with SharePoint Online,
                         process Excel reports, and generate JSON summaries for Power BI integration. It also supports secure credential management
                         using encrypted passcodes.'


    # Minimum version of the Windows PowerShell engine required by this module
    PowerShellVersion = '5.1'

    # Functions to export from this module
    FunctionsToExport =  @(
        'Get-CitrixPowerBIReport',
        'Get-CitrixXA7Applications',
        'Get-CitrixVDIDesktopGroups',
        'Get-CitrixMachineCatalogReport',
        'Get-CitrixHypervisorStatus',
        'Get-CitrixAppUsagePeak',
        'Get-InfraXA7Inventory',
        'Get-CitrixLicenseExcelData',
        'Export-CitrixUsageMetrics',
        'Get-INISectionValues',
        'Get-RandomPingableServer',
        'Write-LogEntry',
        'ConvertTo-SecurePasscode',
        'ConvertFrom-SecurePasscode',
        'Update-ExcelTableDataOptimized',
        'Send-ExcelToSharePointSecure',
        'Publish-FolderToSharePoint',
        'Get-SharePointExcelDocument',
        'New-CitrixExportFolders',
        'Clear-CitrixExportFolders',
        'Get-ADRemoteDesktopLicenseReport'
    )

    # Cmdlets to export from this module
    CmdletsToExport = @()  # Explicitly empty if none are exported

    # Variables to export from this module
    VariablesToExport = @()  # Explicitly empty if none are exported

    # Aliases to export from this module
    AliasesToExport = @()  # Explicitly empty if none are exported

    # List of all files packaged with this module
    FileList = 'PSCitrixPowerBi.psm1',
               'Private/Clear-CitrixExportFolders.ps1',       
               'Private/ConvertFrom-SecurePasscode.ps1',      
               'Private/ConvertTo-SecurePasscode.ps1',        
               'Private/Export-CitrixUsageMetrics.ps1',       
               'Private/Get-CitrixLicenseExcelData.ps1',      
               'Private/Get-INISectionValues.ps1',            
               'Private/Get-RandomPingableServer.ps1',        
               'Private/Get-SharePointExcelDocument.ps1',     
               'Private/New-CitrixExportFolders.ps1',         
               'Private/Publish-FolderToSharePoint.ps1',      
               'Private/Send-ExcelToSharePointSecure.ps1',    
               'Private/Update-ExcelTableDataOptimized.ps1',
               'Public/Get-ADRemoteDesktopLicenseReport.ps1',
               'Public/Get-CitrixAppUsagePeak.ps1',          
               'Public/Get-CitrixHypervisorStatus.ps1',      
               'Public/Get-CitrixMachineCatalogReport.ps1',  
               'Public/Get-CitrixPowerBIReport.ps1',         
               'Public/Get-CitrixVDIDesktopGroups.ps1',      
               'Public/Get-CitrixXA7Applications.ps1',       
               'Public/Get-InfraXA7Inventory.ps1',
               'Public/Config/Config.ini'

    # Private data to pass to the module specified in RootModule/ModuleToProcess.
    PrivateData = @{
        PSData = @{
            # Tags applied to this module. These help with module discovery in online galleries.
            Tags = @('Citrix', 'PowerBI', 'Monitoring', 'Reporting', 'Excel', 'SharePoint', 'Automation')

            # A URL to the main website for this project.
            ProjectUri = 'https://github.com/eswarawaka'

            # A URL to an icon representing this module.
            IconUri = 'https://github.com/eswarawaka'

            # ReleaseNotes of this module
            ReleaseNotes = 'Initial version of the PSCitrixPowerBi module for automated Citrix reporting and Power BI export.'
        }
    }
}