Skip to content
Open
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
35 changes: 1 addition & 34 deletions website/src/pages/can-i-use/scenario-tiers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,19 +60,8 @@ export const scenarioTiers = {
"Type_Union_Discriminated_NoEnvelope_CustomDiscriminator_get",
"Type_Union_Discriminated_NoEnvelope_CustomDiscriminator_put",

// Pageable: ContinuationToken — skipped by Go, Java, JS (Python skips 1 of 6);
// custom continuation-token pagination; no ask in Azure yet (JS);
// Go tracks in https://github.com/Azure/autorest.go/issues/1494
"Payload_Pageable_ServerDrivenPagination_ContinuationToken_requestHeaderNestedResponseBody",
"Payload_Pageable_ServerDrivenPagination_ContinuationToken_requestHeaderResponseBody",
"Payload_Pageable_ServerDrivenPagination_ContinuationToken_requestHeaderResponseHeader",
"Payload_Pageable_ServerDrivenPagination_ContinuationToken_requestQueryNestedResponseBody",
"Payload_Pageable_ServerDrivenPagination_ContinuationToken_requestQueryResponseBody",
"Payload_Pageable_ServerDrivenPagination_ContinuationToken_requestQueryResponseHeader",

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

any azure service doing this? continuationToken on header?

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same concern with weidong, are these promoted tests used by read service?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i think this is how storage does paging

@weidongxu-microsoft weidongxu-microsoft Jul 30, 2026

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't know... Least is that storage won't be using all such different scenarios?


// Pageable: AlternateInitialVerb — newly added (microsoft/typespec#9966);
// POST-based initial pagination request; no language has implemented this yet;
// fits the same pageable backlog pattern as ContinuationToken/link/PageSize
// POST-based initial pagination request; not yet broadly implemented
"Payload_Pageable_ServerDrivenPagination_AlternateInitialVerb_post",

// Azure AlternateType ExternalType — skipped by Go, Python, JS;
Expand All @@ -95,28 +84,6 @@ export const scenarioTiers = {
"Authentication_Noauth_Union_validNoAuth",
"Authentication_Noauth_Union_validToken",

// Pageable: Link-based pagination — skipped by Java, JS;
// nextLink-based pagination patterns; no ask in Azure yet (JS)
"Payload_Pageable_ServerDrivenPagination_link",
"Payload_Pageable_ServerDrivenPagination_linkString",
"Payload_Pageable_ServerDrivenPagination_nestedLink",

// Pageable: PageSize — skipped by Java, JS;
// page-size pagination; no ask in Azure yet (JS)
"Payload_Pageable_PageSize_listWithPageSize",
"Payload_Pageable_PageSize_listWithoutContinuation",

// Pageable: XML Pagination — skipped by Go, Java;
// XML-based pagination support incomplete in both emitters
"Payload_Pageable_XmlPagination_listWithContinuation",
"Payload_Pageable_XmlPagination_listWithNextLink",

// Response StatusCodeRange — skipped by Go, JS;
// status code range error handling; no ask in Azure yet (JS);
// Go tracks in https://github.com/Azure/autorest.go/issues/1606
"Response_StatusCodeRange_errorResponseStatusCodeInRange",
"Response_StatusCodeRange_errorResponseStatusCode404",

// Type File Body — skipped by Python, JS;
// file upload/download with specific content types; no real case received (JS)
"Type_File_Body_uploadFileSpecificContentType",
Expand Down
Loading