LatencyDiag.psd1

@{
  RootModule        = 'LatencyDiag.psm1'
  ModuleVersion     = '0.3.0'
  GUID              = 'b2e1fbb1-6b0a-4a8a-8a0d-6c2fb1c9a3b7'
  Author            = 'Karan Meelu'
  CompanyName       = 'ML Dev'
  Copyright         = '(c) Karan Meelu. All rights reserved.'
  Description       = 'Universal latency diagnostics: Internet/WAN, DNS, SMB/File shares (NetApp), reporting. Safe-by-default + explain mode + real transfer tests (HTTP download + SMB copy) with overwrite + file size options.'

  PowerShellVersion = '5.1'

  FunctionsToExport = @(
    'Invoke-LatencyDiag',
    'Test-NetLatency',
    'Test-DnsLatency',
    'Test-SmbLatency',
    'Test-HttpTransfer',
    'Test-FileTransfer',
    'Get-NetworkHealth',
    'New-LatencyReport',
    'Get-TransferEstimate'
  )

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

  PrivateData = @{
    PSData = @{
      Tags         = @('network','latency','dns','smb','netapp','diagnostics','performance','troubleshooting','throughput','transfer')
      ProjectUri   = ''
      LicenseUri   = ''
      ReleaseNotes = '0.3.0: Real transfer tests + overwrite control + better validation/errors.'
    }
  }
}