Skip to content

Commit

Permalink
Merge pull request #1 from rsharm7/burst-capacity-preview
Browse files Browse the repository at this point in the history
Introduces 'EnableBurstCapacity' in DatabaseAccountProperties
  • Loading branch information
rsharm7 authored Oct 18, 2022
2 parents 9652cb6 + 6261217 commit d43d37d
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7692,6 +7692,10 @@
"enablePartitionMerge": {
"description": "Flag to indicate enabling/disabling of Partition Merge feature on the account",
"type": "boolean"
},
"enableBurstCapacity": {
"description": "Flag to indicate enabling/disabling of Burst Capacity Preview feature on the account",
"type": "boolean"
}
}
},
Expand Down Expand Up @@ -7846,6 +7850,10 @@
"enablePartitionMerge": {
"description": "Flag to indicate enabling/disabling of Partition Merge feature on the account",
"type": "boolean"
},
"enableBurstCapacity": {
"description": "Flag to indicate enabling/disabling of Burst Capacity Preview feature on the account",
"type": "boolean"
}
},
"required": [
Expand Down Expand Up @@ -8024,6 +8032,10 @@
"enablePartitionMerge": {
"description": "Flag to indicate enabling/disabling of Partition Merge feature on the account",
"type": "boolean"
},
"enableBurstCapacity": {
"description": "Flag to indicate enabling/disabling of Burst Capacity Preview feature on the account",
"type": "boolean"
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,8 @@
"capacity": {
"totalThroughputLimit": 2000
},
"enableMaterializedViews": false
"enableMaterializedViews": false,
"enableBurstCapacity": true
}
}
},
Expand Down Expand Up @@ -214,6 +215,7 @@
"totalThroughputLimit": 2000
},
"enableMaterializedViews": false,
"enableBurstCapacity": true,
"keysMetadata": {
"primaryMasterKey": {
"generationTime": "2022-02-25T20:30:11Z"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@
"networkAclBypass": "None",
"networkAclBypassResourceIds": [],
"enablePartitionMerge": true,
"enableBurstCapacity": true,
"diagnosticLogSettings": {
"enableFullTextQuery": "False"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@
"networkAclBypass": "None",
"networkAclBypassResourceIds": [],
"enablePartitionMerge": true,
"enableBurstCapacity": true,
"enableMaterializedViews": false,
"keysMetadata": {
"primaryMasterKey": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@
"diagnosticLogSettings": {
"enableFullTextQuery": "True"
},
"enablePartitionMerge": true
"enablePartitionMerge": true,
"enableBurstCapacity": true,
}
}
},
Expand Down Expand Up @@ -188,6 +189,7 @@
"enableFullTextQuery": "True"
},
"enableMaterializedViews": false,
"enableBurstCapacity": true,
"keysMetadata": {
"primaryMasterKey": {
"generationTime": "2022-02-25T20:30:11Z"
Expand Down

0 comments on commit d43d37d

Please sign in to comment.