Skip to content

Latest commit

 

History

History
92 lines (69 loc) · 1.93 KB

Get-AzTableRowByPartitionKey.md

File metadata and controls

92 lines (69 loc) · 1.93 KB
external help file Module Name online version schema
AzureRmStorageTableCoreHelper-help.xml
azurermstoragetable
2.0.0

Get-AzTableRowByPartitionKey

SYNOPSIS

Returns one or more rows/entities based on Partition Key

SYNTAX

Get-AzTableRowByPartitionKey [-Table] <Object> [-PartitionKey] <String> [[-Top] <Int32>] [<CommonParameters>]

DESCRIPTION

Returns one or more rows/entities based on Partition Key

EXAMPLES

EXAMPLE 1

# Getting rows by partition Key
Get-AzTableRowByPartitionKey -Table $Table -PartitionKey "mypartitionkey"

EXAMPLE 2

# Getting rows by partition key with a maximum number returned
Get-AzTableRowByPartitionKey -Table $Table -PartitionKey "mypartitionkey" -Top 10

PARAMETERS

-Table

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

-PartitionKey

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

-Top

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

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