DEV Community

greenmtnsun
greenmtnsun

Posted on

Health: Module psd1

@{
RootModule = 'SqlTechnicalSanity.psm1'
ModuleVersion = '3.0.0'
GUID = '14552ff8-6ab0-4fef-bd66-d6901c0b6a5e'
Author = 'OpenAI'
CompanyName = 'OpenAI'
Copyright = '(c) OpenAI. All rights reserved.'
Description = 'Fail-soft, dbatools-first SQL Server technical sanity reporting with Outlook-safe HTML output.'
PowerShellVersion = '5.1'

FunctionsToExport = @(
    'Invoke-SqlTechnicalSanity',
    'Get-SqlTechnicalSanityCollector',
    'Get-SqlTechnicalSanityCheck',
    'ConvertTo-SqlTechnicalSanityHtml',
    'ConvertTo-SqlTechnicalSanityJson',
    'Export-SqlTechnicalSanityReport'
)

CmdletsToExport   = @()
VariablesToExport = @()
AliasesToExport   = @()

PrivateData = @{
    PSData = @{
        Tags = @('SQLServer','dbatools','HealthCheck','HTML','Outlook','FailSoft','Operations')
        ReleaseNotes = 'v3 scaffold with expanded collectors: replication, tempdb, error log, and share/path checks.'
    }
}
Enter fullscreen mode Exit fullscreen mode

}

Top comments (0)