Completers/Microsoft.AzureRm.RedisCache.Name.ArgumentCompleters.ps1
$ScriptBlock = { <# .SYNOPSIS Auto-complete the -Name parameter value for Azure Resource Manager (ARM) PowerShell cmdlets for Redis Cache. .NOTES Created by Trevor Sullivan <trevor@trevorsullivan.net> http://trevorsullivan.net #> param($commandName, $parameterName, $wordToComplete, $commandAst, $fakeBoundParameter) $CacheKey = 'RmRedisCache_NameCache'; $Cache = Get-CompletionPrivateData -Key $CacheKey; ### Return the cached value if it has not expired if ($Cache) { return $Cache; } try { $CompletionList = Get-AzureRmRedisCache | Where-Object -FilterScript { $PSItem.Name -match $wordToComplete } | ForEach-Object { $CompletionResult = @{ CompletionText = '{0} -ResourceGroupName {1}' -f $PSItem.Name, $PSItem.ResourceGroupName; ToolTip = 'Redis Cache "{0}" in "{1}" region, member of "{2}" Resource Group.' -f $PSItem.Name, $PSItem.Location, $PSItem.ResourceGroupName; ListItemText = '{0} ({1}, {2})' -f $PSItem.Name, $PSItem.ResourceGroupName, $PSItem.Location; CompletionResultType = [System.Management.Automation.CompletionResultType]::ParameterValue; NoQuotes = $true; } New-CompletionResult @CompletionResult; } Set-CompletionPrivateData -Key $CacheKey -Value $CompletionList; return $CompletionList; } catch { Write-Host -Message ('Error occurred calling argument completer: {0}' -f $PSItem.Exception.Message); } }; $ArgumentCompleterList = @( @{ Command = @( 'Get-AzureRmRedisCache' 'Get-AzureRmRedisCacheKey' 'New-AzureRmRedisCache' 'New-AzureRmRedisCacheKey' 'Remove-AzureRmRedisCache' 'Set-AzureRmRedisCache' ); Parameter = 'Name'; Description = 'Complete the -Name parameter value for Azure Resource Manager (ARM) Redis Cache cmdlets: Get-AzureRmRedisCache -Name <TAB>'; ScriptBlock = $ScriptBlock; }; ) foreach ($ArgumentCompleter in $ArgumentCompleterList) { TabExpansion++\Register-ArgumentCompleter @ArgumentCompleter; } |