Skip to content

Latest commit

 

History

History
110 lines (84 loc) · 2.3 KB

File metadata and controls

110 lines (84 loc) · 2.3 KB
external help file Module Name online version schema
AzureRmStorageTableCoreHelper-help.xml
azurermstoragetable
2.0.0

Get-AzTableTable

SYNOPSIS

Gets a Table object to be used in all other cmdlets.

SYNTAX

AzTableStorage

Get-AzTableTable -resourceGroup <String> -TableName <String> -storageAccountName <String> [<CommonParameters>]

AzStorageEmulator

Get-AzTableTable -TableName <String> [-UseStorageEmulator] [<CommonParameters>]

DESCRIPTION

Gets a Table object to be used in all other cmdlets.

EXAMPLES

EXAMPLE 1

# Getting storage table object
$resourceGroup = "myResourceGroup"
$storageAccount = "myStorageAccountName"
$TableName = "table01"
$Table = Get-AzTabletable -resourceGroup $resourceGroup -tableName $TableName -storageAccountName $storageAccount

PARAMETERS

-resourceGroup

Resource Group where the Azure Storage Account is located

Type: String
Parameter Sets: AzTableStorage
Aliases:

Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-TableName

Name of the table to retrieve

Type: String
Parameter Sets: (All)
Aliases:

Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-storageAccountName

Storage Account name where the table lives

Type: String
Parameter Sets: AzTableStorage
Aliases:

Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-UseStorageEmulator

{{ Fill UseStorageEmulator Description }}

Type: SwitchParameter
Parameter Sets: AzStorageEmulator
Aliases:

Required: True
Position: Named
Default value: False
Accept pipeline input: False
Accept wildcard characters: False

CommonParameters

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

INPUTS

OUTPUTS

NOTES

RELATED LINKS