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

Adding deep fetch swagger support for getUnresolvedDependencies api #12504

Merged
merged 4 commits into from
Jan 22, 2021
Merged
Changes from 3 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 @@ -587,8 +587,37 @@
{
"$ref": "#/parameters/moveCollectionName"
},
{
"name": "dependencyLevel",
"in": "query",
"description": "Defines the dependency level.",
"required": false,
"type": "string",
"enum": [
"Direct",
"Descendant"
],
"x-ms-enum": {
"name": "DependencyLevel",
"modelAsString": true
}
},
{
"name": "$orderby",
"in": "query",
"required": false,
"type": "string",
"description": "OData order by query option. For example, you can use $orderby=Count desc."
},
{
"$ref": "#/parameters/api-version"
},
{
"name": "$filter",
"in": "query",
"required": false,
"type": "string",
"description": "The filter to apply on the operation. For example, $apply=filter(count eq 2)."
}
],
"responses": {
Expand All @@ -605,6 +634,10 @@
}
}
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
},
"x-ms-odata": "#/definitions/UnresolvedDependenciesFilter",
"x-ms-examples": {
"UnresolvedDependencies_Get": {
"$ref": "./examples/UnresolvedDependencies_Get.json"
Expand Down Expand Up @@ -1537,6 +1570,23 @@
}
}
},
"UnresolvedDependenciesFilter": {
dukum marked this conversation as resolved.
Show resolved Hide resolved
"description": "Unresolved dependencies contract.",
"properties": {
"properties": {
"$ref": "#/definitions/UnresolvedDependenciesFilterProperties"
}
}
},
"UnresolvedDependenciesFilterProperties": {
"properties": {
"count": {
"format": "int32",
"type": "integer",
"description": "The count of the resource."
}
}
},
"MoveResourceCollection": {
"description": "Defines the collection of move resources.",
"type": "object",
Expand Down Expand Up @@ -1610,6 +1660,16 @@
"nextLink": {
"description": "Gets or sets the value of next link.",
"type": "string"
},
"summaryCollection": {
"description": "Gets or sets the list of summary items and the field on which summary is done.",
"$ref": "#/definitions/SummaryCollection"
},
"totalCount": {
"description": "Gets the total count.",
"type": "integer",
"readOnly": true,
"format": "int64"
}
}
},
Expand Down