Skip to content

Commit

Permalink
Generated from e9357dfaa743aa3a0463a9088d15fd733215a52b
Browse files Browse the repository at this point in the history
  • Loading branch information
SDK Automation committed Oct 28, 2020
1 parent 4eb0fb0 commit 6a90789
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions schemas/2019-06-01-preview/Microsoft.Synapse.json
Original file line number Diff line number Diff line change
Expand Up @@ -1110,6 +1110,20 @@
"format": "date-time",
"description": "The time when the Big Data pool was created."
},
"customLibraries": {
"oneOf": [
{
"type": "array",
"items": {
"$ref": "#/definitions/LibraryInfo"
}
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "List of custom libraries/packages associated with the spark pool."
},
"defaultSparkLogFolder": {
"type": "string",
"description": "The default folder where Spark logs will be written."
Expand Down Expand Up @@ -1186,6 +1200,17 @@
"type": "string",
"description": "The state of the Big Data pool."
},
"sessionLevelPackagesEnabled": {
"oneOf": [
{
"type": "boolean"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Whether session level library/package management is enabled or not."
},
"sparkConfigProperties": {
"oneOf": [
{
Expand Down Expand Up @@ -2051,6 +2076,33 @@
},
"description": "IP firewall rule properties"
},
"LibraryInfo": {
"type": "object",
"properties": {
"containerName": {
"type": "string",
"description": "Storage blob container name."
},
"name": {
"type": "string",
"description": "Name of the library."
},
"path": {
"type": "string",
"description": "Storage blob path of library."
},
"type": {
"type": "string",
"description": "Type of the library."
},
"uploadedTimestamp": {
"type": "string",
"format": "date-time",
"description": "The last update time of the library."
}
},
"description": "Library/package information of a Big Data pool powered by Apache Spark"
},
"LibraryRequirements": {
"type": "object",
"properties": {
Expand Down

0 comments on commit 6a90789

Please sign in to comment.