en-US/about_SpecAzTableStorageTools.help.txt
TOPIC
about_SpecAzTableStorageTools SHORT DESCRIPTION PowerShell module for simplifying interactions with Azure Table Storage, including data retrieval using Shared Access Signatures (SAS). LONG DESCRIPTION EXAMPLES ## Example 1 - Retrieve all data from a table: $params = @{ storageAccount = "stem4prdeud01" tableName = "NLRetailDeviceInfo" SAS = "<SASKey>" } Get-SpecAzTableDataUsingSAS @params ## Example 2 - Filtering when you have retrieved all the data: $params = @{ storageAccount = "stem4prdeud01" tableName = "NLRetailDeviceInfo" SAS = "<SASKey>" } $result = Get-SpecAzTableDataUsingSAS @params $result | ? {$_.Last_logged_on -eq 'owen.heaume'} ## Example 3 - Retrieve only filtered table results: $params = @{ storageAccount = "stem4prdeud01" tableName = "NLRetailDeviceInfo" SAS = "<SASKey>" Key = 'Last_Logged_On' Value = 'owen.heaume' } Get-SpecAzTableDataUsingSAS @params KEYWORDS SEE ALSO |