Skip to content

Commit

Permalink
Revert "Revert: spec changes for Libmary Management in bigDataPool (A…
Browse files Browse the repository at this point in the history
…zure#11612)"

This reverts commit 7c8fd7f.
  • Loading branch information
Navneet Singh committed Jan 22, 2021
1 parent 2fa73b4 commit bfeb99a
Showing 1 changed file with 45 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -442,6 +442,13 @@
"$ref": "#/definitions/LibraryRequirements",
"description": "Library version requirements"
},
"customLibraries": {
"description": "List of custom libraries/packages associated with the spark pool.",
"type": "array",
"items": {
"$ref": "#/definitions/LibraryInfo"
}
},
"sparkConfigProperties": {
"$ref": "#/definitions/LibraryRequirements",
"description": "Spark configuration file to specify additional properties"
Expand Down Expand Up @@ -532,6 +539,44 @@
}
}
},
"LibraryInfo": {
"type": "object",
"description": "Library/package information of a Big Data pool powered by Apache Spark",
"title": "Information about a library/package created at the workspace level.",
"properties": {
"name": {
"type": "string",
"description": "Name of the library."
},
"path": {
"type": "string",
"description": "Storage blob path of library."
},
"containerName": {
"type": "string",
"description": "Storage blob container name."
},
"uploadedTimestamp": {
"type": "string",
"format": "date-time",
"description": "The last update time of the library."
},
"type": {
"type": "string",
"description": "Type of the library."
},
"provisioningStatus": {
"readOnly": true,
"type": "string",
"description": "Provisioning status of the library/package."
},
"creatorId": {
"readOnly": true,
"type": "string",
"description": "Creator Id of the library/package."
}
}
},
"LibraryRequirements": {
"type": "object",
"description": "Library requirements for a Big Data pool powered by Apache Spark",
Expand Down

0 comments on commit bfeb99a

Please sign in to comment.