Share via


FileSharesOperationsExtensions.List Method

Definition

Lists all shares.

public static Microsoft.Rest.Azure.IPage<Microsoft.Azure.Management.Storage.Models.FileShareItem> List (this Microsoft.Azure.Management.Storage.IFileSharesOperations operations, string resourceGroupName, string accountName, string maxpagesize = default, string filter = default, string expand = default);
static member List : Microsoft.Azure.Management.Storage.IFileSharesOperations * string * string * string * string * string -> Microsoft.Rest.Azure.IPage<Microsoft.Azure.Management.Storage.Models.FileShareItem>
<Extension()>
Public Function List (operations As IFileSharesOperations, resourceGroupName As String, accountName As String, Optional maxpagesize As String = Nothing, Optional filter As String = Nothing, Optional expand As String = Nothing) As IPage(Of FileShareItem)

Parameters

operations
IFileSharesOperations

The operations group for this extension method.

resourceGroupName
String

The name of the resource group within the user's subscription. The name is case insensitive.

accountName
String

The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only.

maxpagesize
String

Optional. Specified maximum number of shares that can be included in the list.

filter
String

Optional. When specified, only share names starting with the filter will be listed.

expand
String

Optional, used to expand the properties within share's properties. Valid values are: deleted, snapshots. Should be passed as a string with delimiter ','

Returns

Applies to