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

swagger correctness fix #43

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 @@ -2443,7 +2443,16 @@
},
"managementRpDetails": {
"$ref": "#/definitions/ResourceProviderDetails",
"description": "parent RP details",
"description": "Parent RP details - this returns only the first or default parent RP from the entire list",
"readOnly": true
},
"managementRpDetailsList": {
"description": "List of parent RP details supported for configuration.",
"uniqueItems": false,
"type": "array",
"items": {
"$ref": "#/definitions/ResourceProviderDetails"
},
"readOnly": true
},
"error": {
Expand Down Expand Up @@ -2915,6 +2924,14 @@
"$ref": "#/definitions/ProductLine"
},
"readOnly": true
},
"resourceProviderDetails": {
"description": "Contains details related to resource provider",
"uniqueItems": false,
"type": "array",
"items": {
"$ref": "#/definitions/ResourceProviderDetails"
}
}
}
},
Expand Down Expand Up @@ -3023,7 +3040,13 @@
"ResourceProviderDetails": {
"description": "Management RP details",
"type": "object",
"properties": {}
"properties": {
"resourceProviderNamespace": {
"description": "Resource provider namespace",
"type": "string",
"readOnly": true
}
}
},
"ReturnOrderItemDetails": {
"description": "Return order item request body",
Expand Down