external help file | Module Name | online version | schema |
---|---|---|---|
AzureRmStorageTableCoreHelper-help.xml |
azurermstoragetable |
2.0.0 |
Returns one or more rows/entities based on Partition Key
Get-AzTableRowByPartitionKey [-Table] <Object> [-PartitionKey] <String> [[-Top] <Int32>] [<CommonParameters>]
Returns one or more rows/entities based on Partition Key
# Getting rows by partition Key
Get-AzTableRowByPartitionKey -Table $Table -PartitionKey "mypartitionkey"
# Getting rows by partition key with a maximum number returned
Get-AzTableRowByPartitionKey -Table $Table -PartitionKey "mypartitionkey" -Top 10
Table object of type Microsoft.Azure.Cosmos.Table.CloudTable to retrieve entities
Type: Object
Parameter Sets: (All)
Aliases:
Required: True
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Identifies the table partition
Type: String
Parameter Sets: (All)
Aliases:
Required: True
Position: 2
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Return only the first n rows from the query
Type: Int32
Parameter Sets: (All)
Aliases:
Required: False
Position: 3
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
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).