| external help file | Module Name | online version | schema |
|---|---|---|---|
AzureRmStorageTableCoreHelper-help.xml |
azurermstoragetable |
2.0.0 |
Returns one entity based on Partition Key and RowKey
Get-AzTableRowByPartitionKeyRowKey [-Table] <Object> [-PartitionKey] <String> [-RowKey] <String>
[[-Top] <Int32>] [<CommonParameters>]Returns one entity based on Partition Key and RowKey
# Getting rows by Partition Key and Row Key
Get-AzStorageTableRowByPartitionKeyRowKey -Table $Table -PartitionKey "partition1" -RowKey "id12345"# Getting rows by Partition Key and Row Key, with a maximum number returned
Get-AzStorageTableRowByPartitionKeyRowKey -Table $Table -PartitionKey "partition1" -RowKey "id12345" -Top 10Table 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: FalseIdentifies the table partition
Type: String
Parameter Sets: (All)
Aliases:
Required: True
Position: 2
Default value: None
Accept pipeline input: False
Accept wildcard characters: FalseIdentifies the row key in the partition
Type: String
Parameter Sets: (All)
Aliases:
Required: True
Position: 3
Default value: None
Accept pipeline input: False
Accept wildcard characters: FalseReturn only the first n rows from the query
Type: Int32
Parameter Sets: (All)
Aliases:
Required: False
Position: 4
Default value: None
Accept pipeline input: False
Accept wildcard characters: FalseThis 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).