FileSystemPropertiesPaged Class
An Iterable of File System properties.
- Inheritance
-
azure.storage.blob._models.ContainerPropertiesPagedFileSystemPropertiesPaged
Constructor
FileSystemPropertiesPaged(*args, **kwargs)
Parameters
Name | Description |
---|---|
command
Required
|
Function to retrieve the next page of items. |
prefix
Required
|
Filters the results to return only file systems whose names begin with the specified prefix. |
results_per_page
Required
|
The maximum number of file system names to retrieve per call. |
continuation_token
Required
|
An opaque continuation token. |
Variables
Name | Description |
---|---|
service_endpoint
|
The service URL. |
prefix
|
A file system name prefix being used to filter the list. |
marker
|
The continuation token of the current page of results. |
results_per_page
|
The maximum number of results retrieved per API call. |
continuation_token
|
The continuation token to retrieve the next page of results. |
location_mode
|
The location mode being used to list results. The available options include "primary" and "secondary". |
current_page
|
The current page of listed results. |
Methods
next |
next
next() -> Iterator[ReturnType]
Attributes
continuation_token
The continuation token to retrieve the next page of results.
continuation_token: str | None
current_page
The current page of listed results.
current_page: List['ContainerProperties']
location_mode
The location mode being used to list results.
location_mode: str | None
marker
The continuation token of the current page of results.
marker: str | None
prefix
A container name prefix being used to filter the list.
prefix: str | None
results_per_page
The maximum number of results retrieved per API call.
results_per_page: int | None
service_endpoint
The service URL.
service_endpoint: str | None
Azure SDK for Python