Skip to content
This repository was archived by the owner on Aug 26, 2025. It is now read-only.
Closed
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 @@ -1811,6 +1811,34 @@
],
"x-ms-discriminator-value": "DataLakeAnalytics"
},
"OnPrem": {
"description": "A OnPrem compute.",
"allOf": [
{
"$ref": "#/definitions/Compute"
},
{
"type": "object",
"properties": {
"properties": {
"type": "object",
"properties": {
"address": {
"description": "relay connection string to the on prem.",
"type": "string"
},
"userAccountCredentials": {
"title": "User account credentials.",
"description": "Credentials for an administrator user account that will be created on each compute node.",
"$ref": "#/definitions/UserAccountCredentials"
}
}
}
}
}
],
"x-ms-discriminator-value": "OnPrem"
},
"ServicePrincipalCredentials": {
"type": "object",
"description": "Service principal credentials.",
Expand Down Expand Up @@ -2217,7 +2245,8 @@
"VirtualMachine",
"HDInsight",
"Databricks",
"DataLakeAnalytics"
"DataLakeAnalytics",
"OnPrem"
],
"x-ms-enum": {
"name": "ComputeType",
Expand Down