Skip to content

Commit

Permalink
feat: add match_glob query parameter to ListObjectsRequest
Browse files Browse the repository at this point in the history
  • Loading branch information
shogo-nakano-desu committed Nov 5, 2024
1 parent 5d28101 commit 3999b73
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions storage/src/http/objects/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ pub struct ListObjectsRequest {
/// increasing generation number. The default value for versions is false.
/// For more information, see Object Versioning.
pub versions: Option<bool>,
/// Filter results to objects and prefixes that match this glob pattern.
/// For more information, see [List objects and prefixes using glob](<https://cloud.google.com/storage/docs/json_api/v1/objects/list#list-objects-and-prefixes-using-glob>)
pub match_glob: Option<String>,
}

/// The result of a call to Objects.ListObjects
Expand Down

0 comments on commit 3999b73

Please sign in to comment.