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

Introduces 'EnableBurstCapacity' in DatabaseAccountProperties #1

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
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