Merge pull request #2654 from anigan/anigan-fixLAtoADX

Issue 2652: Fixing issues with comparing LA tables to supported tables
This commit is contained in:
Sreedhar Ande 2021-07-14 14:50:49 -07:00 коммит произвёл GitHub
Родитель ade6e55026 8bdd55b110
Коммит df105eb918
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 5 добавлений и 2 удалений

Просмотреть файл

@ -69,6 +69,7 @@ param(
[string]$KustoConnectionString = "$AdxEngineUrl;Fed=True"
[string]$NuGetIndex = "https://api.nuget.org/v3/index.json"
[string]$NuGetDownloadUrl = "https://dist.nuget.org/win-x86-commandline/latest/nuget.exe"
[string]$nugetPackageLocation = "$($env:USERPROFILE)\.nuget\packages"
#endregion StaticValues
@ -245,6 +246,7 @@ function Invoke-KustoCLI {
$KustoToolsDir = "$env:USERPROFILE\.nuget\packages\$KustoToolsPackage\"
$CurrentDir = Get-Location
Set-Location $ScriptDir
if (!(Test-Path $KustoToolsDir)) {
if (!(Test-Path nuget)) {
@ -285,7 +287,8 @@ function New-AdxRawMappingTables {
#>
[CmdletBinding()]
param (
[parameter(Mandatory = $true)] $LaTables
[parameter(Mandatory = $true)] $LaTables,
[parameter(Mandatory = $true)] $decision
)
if (!(Test-Path "$PSScriptRoot\KustoQueries" -PathType Container)) {
@ -682,7 +685,7 @@ else {
}
$AdxTablesArray = New-Object System.Collections.Generic.List[System.Object]
New-AdxRawMappingTables -LaTables $ResultsAllTables
New-AdxRawMappingTables -LaTables $ResultsAllTables -decision $LaTablesQuestionDecision
#endregion
#region EventHubsCreation