Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion specification/storage/Microsoft.BlobStorage/models.tsp
Original file line number Diff line number Diff line change
Expand Up @@ -2189,7 +2189,8 @@ alias FilterBlobsIncludeParameter = {
alias FilterBlobsWhereParameter = {
/** Filters the results to return only to return only blobs whose tags match the specified expression. */
@query
where?: string;
@clientName("filterExpression")
where: string;
};

/** The Content-Length header. */
Expand Down
10 changes: 3 additions & 7 deletions specification/storage/Microsoft.BlobStorage/routes.tsp
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ namespace Storage.Blob {
#suppress "@azure-tools/typespec-azure-core/use-standard-names" "Existing API"
@get
@route("?comp=blobs")
op filterBlobs is StorageOperation<
op findBlobsByTags is StorageOperation<
{
...TimeoutParameter;
...FilterBlobsWhereParameter;
Expand All @@ -193,8 +193,6 @@ namespace Storage.Blob {
...FilterBlobsIncludeParameter;
},
{
...DateResponseHeader;

/** The filter blobs enumeration results */
@body
enumerationResults: FilterBlobSegment;
Expand Down Expand Up @@ -442,7 +440,7 @@ namespace Storage.Blob {
#suppress "@azure-tools/typespec-azure-core/use-standard-names" "Existing API"
@get
@route("{containerName}?restype=container&comp=blobs")
op filterBlobs is StorageOperation<
op findBlobsByTags is StorageOperation<
{
...ContainerNamePathParameter;
...TimeoutParameter;
Expand All @@ -452,8 +450,6 @@ namespace Storage.Blob {
...FilterBlobsIncludeParameter;
},
{
...DateResponseHeader;

/** The container filter blob enumeration results */
@body
enumerationResults: FilterBlobSegment;
Expand Down Expand Up @@ -1057,7 +1053,7 @@ namespace Storage.Blob {
...ContainerNamePathParameter;
...BlobPathParameter;
...TimeoutParameter;
...MetadataHeaders;
...MetadataHeadersParameter;
...LeaseIdOptionalParameter;
...EncryptionKeyParameter;
...EncryptionKeySha256Parameter;
Expand Down
Loading