Skip to content

Latest commit

 

History

History
108 lines (82 loc) · 2.26 KB

File metadata and controls

108 lines (82 loc) · 2.26 KB
external help file Module Name online version schema
AzureRmStorageTableCoreHelper-help.xml
azurermstoragetable
2.0.0

Get-AzTableRowByPartitionKeyRowKey

SYNOPSIS

Returns one entity based on Partition Key and RowKey

SYNTAX

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

DESCRIPTION

Returns one entity based on Partition Key and RowKey

EXAMPLES

EXAMPLE 1

# Getting rows by Partition Key and Row Key
Get-AzStorageTableRowByPartitionKeyRowKey -Table $Table -PartitionKey "partition1" -RowKey "id12345"

EXAMPLE 2

# Getting rows by Partition Key and Row Key, with a maximum number returned
Get-AzStorageTableRowByPartitionKeyRowKey -Table $Table -PartitionKey "partition1" -RowKey "id12345" -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

-RowKey

Identifies 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: False

-Top

Return 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: 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