Skip to content

Commit 39c3169

Browse files
xuubinBin Xu
authored andcommitted
Add autoIoScaling property in MySQL get/update payload (Azure#21039)
Co-authored-by: Bin Xu <[email protected]>
1 parent 1bb22ae commit 39c3169

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2021-12-01-preview/FlexibleServers.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -697,6 +697,10 @@
697697
"type": "string",
698698
"readOnly": true,
699699
"description": "The sku name of the server storage."
700+
},
701+
"autoIoScaling": {
702+
"description": "Enable IO Auto Scaling or not.",
703+
"$ref": "#/definitions/EnableStatusEnum"
700704
}
701705
},
702706
"description": "Storage Profile properties of a server"

specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2021-12-01-preview/examples/ServerGet.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
"storageSizeGB": 100,
1919
"iops": 600,
2020
"autoGrow": "Enabled",
21+
"autoIoScaling": "Enabled",
2122
"storageSku": "Premium_LRS"
2223
},
2324
"version": "5.7",

specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2021-12-01-preview/examples/ServerUpdate.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
"storage": {
1010
"storageSizeGB": 30,
1111
"iops": 200,
12-
"autoGrow": "Disabled"
12+
"autoGrow": "Disabled",
13+
"autoIoScaling": "Disabled"
1314
}
1415
}
1516
}
@@ -27,7 +28,8 @@
2728
"storageSizeGB": 30,
2829
"iops": 200,
2930
"autoGrow": "Disabled",
30-
"storageSku": "Premium_LRS"
31+
"storageSku": "Premium_LRS",
32+
"autoIoScaling": "Disabled"
3133
},
3234
"version": "5.7",
3335
"state": "Ready",

0 commit comments

Comments
 (0)