Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
sync startFrom to tsp (#36698)
Co-authored-by: catalinaperalta <[email protected]>
  • Loading branch information
catalinaperalta and cperaltah authored Aug 30, 2025
commit d6dd368447fca7b5d29a273476b402579ceab00b
8 changes: 8 additions & 0 deletions specification/storage/Microsoft.BlobStorage/models.tsp
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import "@azure-tools/typespec-client-generator-core";

using Azure.Core;
using TypeSpec.Http;
using TypeSpec.Versioning;
using Azure.ClientGenerator.Core;

namespace Storage.Blob;
Expand Down Expand Up @@ -2321,3 +2322,10 @@ alias PageWriteParameter<TPageWrite extends string> = {
@header("x-ms-page-write")
pageWrite: TPageWrite;
};

alias ListBlobsStartFrom = {
/** Specifies the relative path to list paths from. For non-recursive list, only one entity level is supported; For recursive list, multiple entity levels are supported. (Inclusive) */
@added(Versions.v2026_02_06)
@query
startFrom?: string;
};
2 changes: 2 additions & 0 deletions specification/storage/Microsoft.BlobStorage/routes.tsp
Original file line number Diff line number Diff line change
Expand Up @@ -594,6 +594,7 @@ namespace Storage.Blob {
...MaxResultsParameter;
...ListBlobsIncludeParameter;
...TimeoutParameter;
...ListBlobsStartFrom;
},
{
...DateResponseHeader;
Expand Down Expand Up @@ -622,6 +623,7 @@ namespace Storage.Blob {
...MaxResultsParameter;
...ListBlobsIncludeParameter;
...TimeoutParameter;
...ListBlobsStartFrom;
},
{
...DateResponseHeader;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4532,6 +4532,13 @@
"format": "int32",
"minimum": 0
},
{
"name": "startFrom",
"in": "query",
"description": "Specifies the relative path to list paths from. For non-recursive list, only one entity level is supported; For recursive list, multiple entity levels are supported. (Inclusive)",
"required": false,
"type": "string"
},
{
"name": "x-ms-client-request-id",
"in": "header",
Expand Down Expand Up @@ -4735,6 +4742,13 @@
"format": "int32",
"minimum": 0
},
{
"name": "startFrom",
"in": "query",
"description": "Specifies the relative path to list paths from. For non-recursive list, only one entity level is supported; For recursive list, multiple entity levels are supported. (Inclusive)",
"required": false,
"type": "string"
},
{
"name": "x-ms-client-request-id",
"in": "header",
Expand Down