Skip to content
Merged
Show file tree
Hide file tree
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 @@ -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,
Copy link
Copy Markdown
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

When the provisioningState of account is Updating, enableBurstCapacity will be returned false. However, in this example provisioningState is Succeeded

"keysMetadata": {
"primaryMasterKey": {
"generationTime": "2022-02-25T20:30:11Z"
Expand Down