Skip to content

Commit

Permalink
[ReleasePR synapse] Add new sql pool resource properties (#1727)
Browse files Browse the repository at this point in the history
  • Loading branch information
msftbot[bot] committed May 24, 2021
2 parents 85fc39d + fbf006e commit 43b324b
Showing 1 changed file with 28 additions and 1 deletion.
29 changes: 28 additions & 1 deletion schemas/2020-04-01-preview/Microsoft.Synapse.json
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,34 @@
},
"SqlPoolProperties": {
"type": "object",
"properties": {},
"properties": {
"autoPauseTimer": {
"oneOf": [
{
"type": "integer"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The period of inactivity in minutes before automatically pausing the sql pool."
},
"autoResume": {
"oneOf": [
{
"type": "boolean"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Indicates whether the sql pool can automatically resume when connection attempts are made."
},
"maxServiceObjectiveName": {
"type": "string",
"description": "The max service level objective name of the sql pool."
}
},
"description": "The sql pool's properties."
}
}
Expand Down

0 comments on commit 43b324b

Please sign in to comment.