Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
f46e693
contract changes.
adyada Apr 24, 2025
e5b956b
comment fix.
adyada Apr 24, 2025
055e3b6
change to datasetUri
adyada Apr 24, 2025
51192c3
Merge branch 'feature/azure-ai-projects-1dp' into adyada/fix-dataset-…
chaoyu-msft Apr 25, 2025
989e3b1
fix indexes list API
adyada Apr 28, 2025
413f73a
Merge branch 'adyada/fix-dataset-contracts' of https://github.com/ady…
adyada Apr 28, 2025
1a421ce
Merge branch 'feature/azure-ai-projects-1dp' into adyada/fix-dataset-…
adyada Apr 28, 2025
b2919f5
changed to dataUri
adyada Apr 28, 2025
2352c92
Merge branch 'adyada/fix-dataset-contracts' of https://github.com/ady…
adyada Apr 28, 2025
ece698b
remove purpose.
adyada Apr 28, 2025
d8160cc
Merge remote-tracking branch 'upstream/main' into adyada/fix-dataset-…
adyada Apr 28, 2025
01a9ffc
update swaggers.
adyada Apr 28, 2025
c73089e
Merge remote-tracking branch 'upstream/feature/azure-ai-projects-1dp'…
adyada Apr 28, 2025
6e72414
fix
adyada Apr 28, 2025
d51b745
Merge branch 'feature/azure-ai-projects-1dp' into adyada/fix-dataset-…
adyada Apr 28, 2025
b4d8889
comment fix
adyada Apr 28, 2025
f9e3556
Merge branch 'adyada/fix-dataset-contracts' of https://github.com/ady…
adyada Apr 28, 2025
9ee71fd
new swaggers.
adyada Apr 28, 2025
147d843
Merge branch 'feature/azure-ai-projects-1dp' into adyada/fix-dataset-…
adyada Apr 28, 2025
5c2f233
new swaggers
adyada Apr 28, 2025
113eec6
Merge branch 'feature/azure-ai-projects-1dp' into adyada/fix-dataset-…
adyada Apr 29, 2025
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
fix indexes list API
  • Loading branch information
adyada committed Apr 28, 2025
commit 989e3b119e3aaf70af85104492fd89ebbb3fd593
14 changes: 1 addition & 13 deletions specification/ai/Azure.AI.Projects/indexes/routes.tsp
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,9 @@ using TypeSpec.Versioning;
namespace Azure.AI.Projects;

alias ListIndexVersionParameters = {
@doc("Top count of results, top count cannot be greater than the page size. If topCount > page size, results with be default page size count will be returned")
@query
top?: int32;

@doc("Continuation token for pagination.")
@query
skip?: string;

@doc("Comma-separated list of tag names (and optionally values). Example: tag1,tag2=value2")
@query
tags?: string;

@doc("[ListViewType.ActiveOnly, ListViewType.ArchivedOnly, ListViewType.All] View type for including/excluding (for example) archived entities.")
@query
listViewType?: ListViewType;
continuationToken?: string;
};

#suppress "@azure-tools/typespec-azure-core/use-standard-operations" "We are using service specific operation templates"
Expand Down