You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- [x ] bug report -> please search issues before submitting
- [ ] feature request
- [ ] documentation issue or request
- [ ] regression (a behavior that used to work and stopped in a new release)
Minimal steps to reproduce
Any log messages given by the failure
Expected/desired behavior
OS and Version?
Windows 7, 8 or 10. Linux (which distribution). macOS (Yosemite? El Capitan? Sierra?)
Versions
Mention any other details that might be useful
cant find the region
Thanks! We'll be in touch soon.
The text was updated successfully, but these errors were encountered:
same issue probably happening because there are no locations in $tsi_locations = Get-ResourceProviderLocations -provider 'Microsoft.TimeSeriesInsights' -typeName 'environments' (this list is empty) and the intersection of $tsi_location and $adt_locations is a NULL list.
Write-Host "Choose from the list using an index between 1 and $($options.Count)."
$adt_locations = Get-ResourceProviderLocations -provider 'Microsoft.DigitalTwins' -typeName 'DigitalTwinsInstances'
$tsi_locations = Get-ResourceProviderLocations -provider 'Microsoft.TimeSeriesInsights' -typeName 'environments'
$locations = $adt_locations | Where-Object { $tsi_locations -contains $_ } | Sort-Object
$option = Get-InputSelection `
-options $locations `
-text "Choose a region for your deployment from this list (using its Index):"
this $options.count is coming to be zero thus an empty list.
On its own $tsi_location is a NULL. Meaning Timeseries insights service is not available !!
This issue is for a: (mark with an
x
)Minimal steps to reproduce
Any log messages given by the failure
Expected/desired behavior
OS and Version?
Versions
Mention any other details that might be useful
cant find the region
The text was updated successfully, but these errors were encountered: