KustoCmdlets.psd1

@{
    RootModule        = 'KustoCmdlets.dll'
    ModuleVersion     = '0.0.1'
    GUID              = 'a1b2c3d4-e5f6-7890-abcd-ef1234567890'
    Author            = 'Ben Appleby'
    Description       = 'PowerShell Cmdlets providing thin-wrapper cmdlets around the Microsoft.Azure.Kusto.Data SDK for executing KQL queries against Azure Data Explorer clusters.'
    PowerShellVersion = '7.6'
    CmdletsToExport   = @(
        'New-KustoConnection'
        'Invoke-KustoQuery'
        'New-KustoClientRequestProperties'
    )
    PrivateData = @{
        PSData = @{
            Tags       = @('Kusto', 'AzureDataExplorer', 'KQL', 'ADX')
            LicenseUri = 'https://github.com/Halcyonhal9/kusto-cmdlets/blob/main/LICENSE'
            ProjectUri = 'https://github.com/Halcyonhal9/kusto-cmdlets'
        }
    }
}