Skip to content

Commit

Permalink
Add autoIoScaling property in MySQL get/update payload (#21039)
Browse files Browse the repository at this point in the history
Co-authored-by: Bin Xu <[email protected]>
  • Loading branch information
xuubin and Bin Xu authored Nov 2, 2022
1 parent 1790975 commit 0c21115
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -697,6 +697,10 @@
"type": "string",
"readOnly": true,
"description": "The sku name of the server storage."
},
"autoIoScaling": {
"description": "Enable IO Auto Scaling or not.",
"$ref": "#/definitions/EnableStatusEnum"
}
},
"description": "Storage Profile properties of a server"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"storageSizeGB": 100,
"iops": 600,
"autoGrow": "Enabled",
"autoIoScaling": "Enabled",
"storageSku": "Premium_LRS"
},
"version": "5.7",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"storage": {
"storageSizeGB": 30,
"iops": 200,
"autoGrow": "Disabled"
"autoGrow": "Disabled",
"autoIoScaling": "Disabled"
}
}
}
Expand All @@ -27,7 +28,8 @@
"storageSizeGB": 30,
"iops": 200,
"autoGrow": "Disabled",
"storageSku": "Premium_LRS"
"storageSku": "Premium_LRS",
"autoIoScaling": "Disabled"
},
"version": "5.7",
"state": "Ready",
Expand Down

0 comments on commit 0c21115

Please sign in to comment.