Get-AzureStorageTable

[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Get-AzureStorageTable

Lists the storage tables.

Parameter Set: TableName
Get-AzureStorageTable [[-Name] <String> ] [-Context <AzureStorageContext> ] [ <CommonParameters>]

Parameter Set: TablePrefix
Get-AzureStorageTable -Prefix <String> [-Context <AzureStorageContext> ] [ <CommonParameters>]

This topic describes the cmdlet in the .6.19 version of the Windows Azure PowerShell module. To find out the version of the module you're using, from the Windows Azure PowerShell console, type (get-module azure).version.

Lists the storage tables associated with the storage account in Windows Azure.

-Context<AzureStorageContext>

Specifies the storage context. To create it, you can use the the New-AzureStorageContext cmdlet.

Aliases

none

Required?

false

Position?

named

Default Value

none

Accept Pipeline Input?

True (ByPropertyName)

Accept Wildcard Characters?

false

-Name<String>

Specifies the table name. If the table name is empty, the cmdlet lists all the containers. Otherwise, it lists all containers that match the specified name or the regular name pattern.

Aliases

N,Table

Required?

false

Position?

1

Default Value

none

Accept Pipeline Input?

True (ByValue, ByPropertyName)

Accept Wildcard Characters?

false

-Prefix<String>

Specifies a prefix used in the name of the table or tables you want to get. You can use this to find all tables that start with the same string, such as ‘table’.

Aliases

none

Required?

true

Position?

named

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

<CommonParameters>

This cmdlet supports the common parameters: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer, and -OutVariable. For more information, see  about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).

Inputs

The input type is the type of the objects that you can pipe to the cmdlet.

Outputs

The output type is the type of the objects that the cmdlet emits.

Example 1

This example gets all storage tables.

C:\PS>Get-AzureStorageTable

Example 2

This example uses a wildcard to get storage tables whose name starts with ‘table’.

C:\PS>Get-AzureStorageTable table*

Example 3

This example uses the Prefix parameter to get storage tables whose name starts with ‘table’.

C:\PS>Get-AzureStorageTable -Prefix table

New-AzureStorageTable

Remove-AzureStorageTable