Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

EventHub: added $skip and $top to list calls #2958

Merged
merged 1 commit into from
May 1, 2018
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -1170,6 +1170,12 @@
},
{
"$ref": "#/parameters/SubscriptionIdParameter"
},
{
"$ref": "#/parameters/SkipParameter"
},
{
"$ref": "#/parameters/TopParameter"
}
],
"responses": {
Expand Down Expand Up @@ -1783,6 +1789,12 @@
},
{
"$ref": "#/parameters/SubscriptionIdParameter"
},
{
"$ref": "#/parameters/SkipParameter"
},
{
"$ref": "#/parameters/TopParameter"
}
],
"responses": {
Expand Down Expand Up @@ -2670,6 +2682,26 @@
"maxLength": 50,
"x-ms-parameter-location": "method",
"description": "The sku type."
},
"SkipParameter": {
"name": "$skip",
"description": "Skip is only used if a previous operation returned a partial result. If a previous response contains a nextLink element, the value of the nextLink element will include a skip parameter that specifies a starting point to use for subsequent calls.",
"in": "query",
"required": false,
"type": "integer",
"minimum": 0,
"maximum": 1000,
"x-ms-parameter-location": "method"
},
"TopParameter": {
"name": "$top",
"description": "May be used to limit the number of results to the most recent N usageDetails.",
"in": "query",
"required": false,
"type": "integer",
"minimum": 1,
"maximum": 1000,
"x-ms-parameter-location": "method"
}
}
}