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

databricks: switching parameters to be a proper struct #6917

Closed
Closed
Changes from 3 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 @@ -377,8 +377,8 @@
"description": "The managed resource group Id."
},
"parameters": {
"type": "object",
"description": "Name and value pairs that define the workspace parameters."
"$ref": "#/definitions/WorkspaceCustomParameters",
"description": "The workspace's custom parameters."
},
"provisioningState": {
"readOnly": true,
Expand Down Expand Up @@ -494,6 +494,54 @@
"modelAsString": true
}
},
"WorkspaceCustomParameters": {
"properties": {
"customVirtualNetworkId": {
"type": "string",
"description": "The ID of a Virtual Network where this Databricks Cluster should be created"
},
"customPublicSubnetName": {
"type": "string",
"description": "The name of a Public Subnet within the Virtual Network"
},
"customPrivateSubnetName": {
"type": "string",
"description": "The name of the Private Subnet within the Virtual Network"
},
"enableNoPublicIp": {
"type": "boolean",
"description": "Should the Public IP be Disabled?"
},
"relayNamespaceName": {
"type": "string",
"description": "The name of an Azure Relay Namespace"
},
"storageAccountName": {
"type": "string",
"description": "The name which should be used for the Storage Account"
},
"storageAccountSkuName": {
"type": "string",
"description": "The SKU which should be used for this Storage Account"
},
"vnetAddressPrefix": {
"type": "string",
"description": "The first 2 octets of the virtual network /16 address range (e.g., '10.139' for the address range 10.139.0.0/16)."
},
"resourceTags": {
"type": "object",
"description": "A map of Tags which should be applied to the resources used by this Databricks Cluster.",
"additionalProperties": {
"type": "string"
}
},
"amlWorkspaceId": {
"type": "string",
"description": "The Workspace ID of an Azure Machine Learning Workspace"
}
},
"description": "Custom Parameters used for Cluster Creation."
},
"WorkspaceProviderAuthorization": {
"properties": {
"principalId": {
Expand Down