Skip to content

Commit 77e278f

Browse files
authored
Add missing property fileStorageSkuName into MySQL Flexible Server spec (#13693)
1 parent 8460539 commit 77e278f

22 files changed

+137
-35
lines changed

specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2020-07-01-preview/examples/ReplicasListByServer.json

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,15 @@
2525
"storageProfile": {
2626
"storageMB": 256000,
2727
"storageIops": 200,
28-
"backupRetentionDays": 35
28+
"backupRetentionDays": 35,
29+
"fileStorageSkuName": "Premium_LRS"
2930
},
3031
"administratorLogin": "cloudsa",
3132
"sslEnforcement": "Enabled",
3233
"publicNetworkAccess": "Enabled",
3334
"state": "Ready",
35+
"haState": "NotEnabled",
36+
"haEnabled": "Disabled",
3437
"fullyQualifiedDomainName": "testserver.mysql.database.azure.com",
3538
"version": "5.7",
3639
"replicationRole": "Replica",
@@ -54,12 +57,15 @@
5457
"storageProfile": {
5558
"storageMB": 256000,
5659
"storageIops": 200,
57-
"backupRetentionDays": 35
60+
"backupRetentionDays": 35,
61+
"fileStorageSkuName": "Premium_LRS"
5862
},
5963
"administratorLogin": "cloudsa",
6064
"sslEnforcement": "Enabled",
6165
"publicNetworkAccess": "Enabled",
6266
"state": "Ready",
67+
"haState": "NotEnabled",
68+
"haEnabled": "Disabled",
6369
"fullyQualifiedDomainName": "testserver1.mysql.database.azure.com",
6470
"version": "5.7",
6571
"replicationRole": "Replica",
@@ -83,12 +89,15 @@
8389
"storageProfile": {
8490
"storageMB": 256000,
8591
"storageIops": 200,
86-
"backupRetentionDays": 35
92+
"backupRetentionDays": 35,
93+
"fileStorageSkuName": "Premium_LRS"
8794
},
8895
"administratorLogin": "cloudsa",
8996
"sslEnforcement": "Enabled",
9097
"publicNetworkAccess": "Enabled",
9198
"state": "Ready",
99+
"haState": "NotEnabled",
100+
"haEnabled": "Disabled",
92101
"fullyQualifiedDomainName": "testserver2.mysql.database.azure.com",
93102
"version": "5.7",
94103
"replicationRole": "Replica",

specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2020-07-01-preview/examples/ServerCreate.json

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,15 @@
3838
"storageProfile": {
3939
"storageMB": 128000,
4040
"storageIops": 200,
41-
"backupRetentionDays": 7
41+
"backupRetentionDays": 7,
42+
"fileStorageSkuName": "Premium_LRS"
4243
},
4344
"version": "5.7",
4445
"sslEnforcement": "Enabled",
4546
"publicNetworkAccess": "Enabled",
4647
"state": "Ready",
48+
"haState": "NotEnabled",
49+
"haEnabled": "Disabled",
4750
"fullyQualifiedDomainName": "mysqltestsvc4.mysql.database.azure.com"
4851
},
4952
"location": "westus",
@@ -73,12 +76,15 @@
7376
"storageProfile": {
7477
"storageMB": 128000,
7578
"storageIops": 200,
76-
"backupRetentionDays": 7
79+
"backupRetentionDays": 7,
80+
"fileStorageSkuName": "Premium_LRS"
7781
},
7882
"version": "5.7",
7983
"sslEnforcement": "Enabled",
8084
"publicNetworkAccess": "Enabled",
8185
"state": "Ready",
86+
"haState": "NotEnabled",
87+
"haEnabled": "Disabled",
8288
"fullyQualifiedDomainName": "mysqltestsvc4.mysql.database.azure.com"
8389
}
8490
}

specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2020-07-01-preview/examples/ServerCreateReplica.json

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,15 @@
2424
"storageProfile": {
2525
"storageMB": 128000,
2626
"storageIops": 200,
27-
"backupRetentionDays": 14
27+
"backupRetentionDays": 14,
28+
"fileStorageSkuName": "Premium_LRS"
2829
},
2930
"version": "5.7",
3031
"sslEnforcement": "Enabled",
3132
"publicNetworkAccess": "Enabled",
3233
"state": "Ready",
34+
"haState": "NotEnabled",
35+
"haEnabled": "Disabled",
3336
"fullyQualifiedDomainName": "targetserver.mysql.database.azure.com",
3437
"replicationRole": "Replica",
3538
"sourceServerId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/PrimaryResourceGroup/providers/Microsoft.DBforMySQL/flexibleServers/primaryserver",
@@ -55,12 +58,15 @@
5558
"storageProfile": {
5659
"storageMB": 128000,
5760
"storageIops": 200,
58-
"backupRetentionDays": 14
61+
"backupRetentionDays": 14,
62+
"fileStorageSkuName": "Premium_LRS"
5963
},
6064
"version": "5.7",
6165
"sslEnforcement": "Enabled",
6266
"publicNetworkAccess": "Enabled",
6367
"state": "Ready",
68+
"haState": "NotEnabled",
69+
"haEnabled": "Disabled",
6470
"fullyQualifiedDomainName": "targetserver.mysql.database.azure.com",
6571
"replicationRole": "Replica",
6672
"sourceServerId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/PrimaryResourceGroup/providers/Microsoft.DBforMySQL/flexibleServers/primaryserver",

specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2020-07-01-preview/examples/ServerCreateWithPointInTimeRestore.json

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,15 @@
3232
"storageProfile": {
3333
"storageMB": 128000,
3434
"storageIops": 200,
35-
"backupRetentionDays": 7
35+
"backupRetentionDays": 7,
36+
"fileStorageSkuName": "Premium_LRS"
3637
},
3738
"version": "5.7",
3839
"sslEnforcement": "Enabled",
3940
"publicNetworkAccess": "Enabled",
4041
"state": "Ready",
42+
"haState": "NotEnabled",
43+
"haEnabled": "Disabled",
4144
"fullyQualifiedDomainName": "targetserver.mysql.database.azure.com"
4245
},
4346
"location": "brazilsouth",
@@ -67,12 +70,15 @@
6770
"storageProfile": {
6871
"storageMB": 128000,
6972
"storageIops": 200,
70-
"backupRetentionDays": 7
73+
"backupRetentionDays": 7,
74+
"fileStorageSkuName": "Premium_LRS"
7175
},
7276
"version": "5.7",
7377
"sslEnforcement": "Enabled",
7478
"publicNetworkAccess": "Enabled",
7579
"state": "Ready",
80+
"haState": "NotEnabled",
81+
"haEnabled": "Disabled",
7682
"fullyQualifiedDomainName": "targetserver.mysql.database.azure.com"
7783
}
7884
}

specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2020-07-01-preview/examples/ServerGet.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
"storageProfile": {
1818
"storageMB": 128000,
1919
"storageIops": 200,
20-
"backupRetentionDays": 7
20+
"backupRetentionDays": 7,
21+
"fileStorageSkuName": "Premium_ZRS"
2122
},
2223
"version": "5.7",
2324
"sslEnforcement": "Enabled",

specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2020-07-01-preview/examples/ServerGetWithVnet.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,13 @@
1717
"storageProfile": {
1818
"storageMB": 128000,
1919
"storageIops": 200,
20-
"backupRetentionDays": 7
20+
"backupRetentionDays": 7,
21+
"fileStorageSkuName": "Premium_LRS"
2122
},
2223
"version": "5.7",
2324
"sslEnforcement": "Enabled",
2425
"state": "Ready",
26+
"haState": "NotEnabled",
2527
"fullyQualifiedDomainName": "mysqltestsrv.mysql.database.azure.com",
2628
"replicationRole": "None",
2729
"sourceServerId": "",

specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2020-07-01-preview/examples/ServerUpdate.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@
2222
"administratorLogin": "cloudsa",
2323
"storageProfile": {
2424
"storageMB": 128000,
25-
"backupRetentionDays": 7
25+
"backupRetentionDays": 7,
26+
"fileStorageSkuName": "Premium_ZRS"
2627
},
2728
"version": "5.7",
2829
"sslEnforcement": "Disabled",

specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2020-07-01-preview/examples/ServerUpdateWithCustomerMaintenanceWindow.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@
2626
"administratorLogin": "cloudsa",
2727
"storageProfile": {
2828
"storageMB": 128000,
29-
"backupRetentionDays": 7
29+
"backupRetentionDays": 7,
30+
"fileStorageSkuName": "Premium_LRS"
3031
},
3132
"version": "5.7",
3233
"sslEnforcement": "Disabled",

specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2020-07-01-preview/examples/ServersList.json

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,14 @@
1717
"storageProfile": {
1818
"storageMB": 5120,
1919
"storageIops": 200,
20-
"backupRetentionDays": 7
20+
"backupRetentionDays": 7,
21+
"fileStorageSkuName": "Premium_LRS"
2122
},
2223
"version": "5.7",
2324
"sslEnforcement": "Enabled",
2425
"state": "Ready",
26+
"haState": "NotEnabled",
27+
"haEnabled": "Disabled",
2528
"fullyQualifiedDomainName": "mysqltestsvc1.mysql.database.azure.com",
2629
"publicNetworkAccess": "Enabled"
2730
},
@@ -40,11 +43,14 @@
4043
"storageProfile": {
4144
"storageMB": 5120,
4245
"storageIops": 200,
43-
"backupRetentionDays": 7
46+
"backupRetentionDays": 7,
47+
"fileStorageSkuName": "Premium_LRS"
4448
},
4549
"version": "5.7",
4650
"sslEnforcement": "Enabled",
4751
"state": "Ready",
52+
"haState": "NotEnabled",
53+
"haEnabled": "Disabled",
4854
"fullyQualifiedDomainName": "mysqltstsvc2.mysql.database.azure.com",
4955
"publicNetworkAccess": "Enabled"
5056
},
@@ -63,11 +69,14 @@
6369
"storageProfile": {
6470
"storageMB": 102400,
6571
"storageIops": 200,
66-
"backupRetentionDays": 35
72+
"backupRetentionDays": 35,
73+
"fileStorageSkuName": "Premium_LRS"
6774
},
6875
"version": "5.7",
6976
"sslEnforcement": "Enabled",
7077
"state": "Ready",
78+
"haState": "NotEnabled",
79+
"haEnabled": "Disabled",
7180
"fullyQualifiedDomainName": "mysqltestsvc3.mysql.database.azure.com",
7281
"publicNetworkAccess": "Enabled"
7382
},

specification/mysql/resource-manager/Microsoft.DBforMySQL/preview/2020-07-01-preview/examples/ServersListByResourceGroup.json

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,14 @@
1818
"storageProfile": {
1919
"storageMB": 5120,
2020
"storageIops": 200,
21-
"backupRetentionDays": 7
21+
"backupRetentionDays": 7,
22+
"fileStorageSkuName": "Premium_LRS"
2223
},
2324
"version": "5.7",
2425
"sslEnforcement": "Enabled",
2526
"state": "Ready",
27+
"haState": "NotEnabled",
28+
"haEnabled": "Disabled",
2629
"fullyQualifiedDomainName": "mysqltestsvc1.mysql.database.azure.com",
2730
"publicNetworkAccess": "Enabled"
2831
},
@@ -41,11 +44,14 @@
4144
"storageProfile": {
4245
"storageMB": 5120,
4346
"storageIops": 200,
44-
"backupRetentionDays": 7
47+
"backupRetentionDays": 7,
48+
"fileStorageSkuName": "Premium_LRS"
4549
},
4650
"version": "5.7",
4751
"sslEnforcement": "Enabled",
4852
"state": "Ready",
53+
"haState": "NotEnabled",
54+
"haEnabled": "Disabled",
4955
"fullyQualifiedDomainName": "mysqltstsvc2.mysql.database.azure.com",
5056
"publicNetworkAccess": "Enabled"
5157
},

0 commit comments

Comments
 (0)