-
Notifications
You must be signed in to change notification settings - Fork 3.1k
[Storage] [STG 100] List Blobs Flat + Hierarchal start_from
#42173
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: feature/storage-stg100
Are you sure you want to change the base?
[Storage] [STG 100] List Blobs Flat + Hierarchal start_from
#42173
Conversation
API Change CheckAPIView identified API level changes in this PR and created the following API reviews |
@@ -815,6 +815,9 @@ def list_blobs( | |||
:keyword int results_per_page: | |||
Controls the maximum number of Blobs that will be included in each page of results if using | |||
`ItemPaged.by_page()`. | |||
:keyword str start_from: Specifies the full path (inclusive) to list paths from. | |||
For non-recursive list, only one entity level is supported. | |||
For recursive list, multiple entity levels are supported. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since we are in the non-recursive function we probably don't need to mention the recursive restriction. In fact, for list_blobs, we probably don't need to mention it at all.
For walk_blobs
(the recursive one) we should just mention "only one entity level is supported".
@@ -815,6 +815,9 @@ def list_blobs( | |||
:keyword int results_per_page: | |||
Controls the maximum number of Blobs that will be included in each page of results if using | |||
`ItemPaged.by_page()`. | |||
:keyword str start_from: Specifies the full path (inclusive) to list paths from. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Anything added to list_blobs
should also be added to list_blob_names
below.
No description provided.