Skip to content

Commit

Permalink
Generated from d87cfa40ba18dec6a25f8b89c061cd71c61d3be1
Browse files Browse the repository at this point in the history
  • Loading branch information
SDK Automation committed Oct 29, 2020
1 parent 4eb0fb0 commit 36f81c3
Showing 1 changed file with 111 additions and 0 deletions.
111 changes: 111 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 @@ -1294,6 +1319,23 @@
],
"description": "The custom setup of installing 3rd party components."
},
"CustomerManagedKeyDetails": {
"type": "object",
"properties": {
"key": {
"oneOf": [
{
"$ref": "#/definitions/WorkspaceKeyDetails"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Details of the customer managed key associated with the workspace"
}
},
"description": "Details of the customer managed key associated with the workspace"
},
"CustomSetupBase": {
"type": "object",
"oneOf": [
Expand Down Expand Up @@ -1434,6 +1476,23 @@
],
"description": "The properties of a Sql pool data masking rule."
},
"EncryptionDetails": {
"type": "object",
"properties": {
"cmk": {
"oneOf": [
{
"$ref": "#/definitions/CustomerManagedKeyDetails"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Details of the customer managed key associated with the workspace"
}
},
"description": "Details of the encryption associated with the workspace"
},
"EntityReference": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -2051,6 +2110,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 Expand Up @@ -2898,6 +2984,20 @@
},
"description": "Properties of a Vulnerability Assessment recurring scans."
},
"WorkspaceKeyDetails": {
"type": "object",
"properties": {
"keyVaultUrl": {
"type": "string",
"description": "Workspace Key sub-resource key vault url"
},
"name": {
"type": "string",
"description": "Workspace Key sub-resource name"
}
},
"description": "Details of the customer managed key associated with the workspace"
},
"WorkspaceProperties": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -2927,6 +3027,17 @@
],
"description": "Details of the data lake storage account associated with the workspace"
},
"encryption": {
"oneOf": [
{
"$ref": "#/definitions/EncryptionDetails"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Details of the encryption associated with the workspace"
},
"managedResourceGroupName": {
"type": "string",
"description": "Workspace managed resource group. The resource group name uniquely identifies the resource group within the user subscriptionId. The resource group name must be no longer than 90 characters long, and must be alphanumeric characters (Char.IsLetterOrDigit()) and '-', '_', '(', ')' and'.'. Note that the name cannot end with '.'"
Expand Down

0 comments on commit 36f81c3

Please sign in to comment.