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

Fixed some more Swagger issues #11713

Merged
Merged
Show file tree
Hide file tree
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 @@ -416,6 +416,14 @@
"type": "boolean",
"description": "Whether compute isolation is required or not."
},
"haveLibraryRequirementsChanged": {
"type": "boolean",
"description": "Whether library requirements changed."
},
"sessionLevelPackagesEnabled": {
"type": "boolean",
"description": "Whether session level packages enabled."
},
"sparkEventsFolder": {
"type": "string",
"description": "The Spark events folder"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
}
}
}
}
},
"201": {}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
"creationDate": "1970-01-01T00:00:00.000Z"
}
}
}
},
"202": {}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,9 @@
},
"description": "OK"
},
"202": {
"description": "Accepted"
},
"default": {
"schema": {
"$ref": "../../../../common/v1/types.json#/definitions/ErrorContract"
Expand Down Expand Up @@ -4918,8 +4921,7 @@
},
"restorePointInTime": {
"type": "string",
"description": "Snapshot time to restore",
"format": "date-time"
Copy link
Contributor

Choose a reason for hiding this comment

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

Why do you remove "format": "date-time"?

"description": "Snapshot time to restore"
},
"createMode": {
"type": "string",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -753,6 +753,9 @@
},
"description": "OK"
},
"201": {
"description": "Created"
},
"default": {
"schema": {
"$ref": "../../../../common/v1/types.json#/definitions/ErrorContract"
Expand Down