powerful-football-81694
01/10/2020, 12:52 PM{
"type": "Microsoft.Sql/servers/databases",
"apiVersion": "2019-06-01-preview",
"name": "ideliverable-licensing/Licensing",
"location": "northeurope",
"sku": {
"name": "GP_S_Gen5",
"tier": "GeneralPurpose",
"family": "Gen5",
"capacity": 1
},
"kind": "v12.0,user,vcore,serverless",
"properties": {
"collation": "SQL_Latin1_General_CP1_CI_AS",
"maxSizeBytes": 17179869184,
"catalogCollation": "SQL_Latin1_General_CP1_CI_AS",
"zoneRedundant": false,
"readScale": "Disabled",
"readReplicaCount": 0,
"autoPauseDelay": 60,
"storageAccountType": "GRS",
"minCapacity": 0.5
}
}
But a lot of these options are missing from the corresponding Pulumi.Azure
classes. How do we specify the “Gen5" SKU, the “serverless” kind, the minimum/maximum number of vcores, and the auto-pause delay? Pulumi.Azure.Sql.DatabaseArgs
don’t include any of these as far as I can tell.
Thankful for any and all guidance!adventurous-garage-59192
01/10/2020, 1:57 PMTemplateDeployment
can be used as a stop-gap in the meantime.powerful-football-81694
01/10/2020, 2:08 PMadventurous-garage-59192
01/10/2020, 3:14 PMpowerful-football-81694
01/10/2020, 3:24 PMadventurous-garage-59192
01/11/2020, 12:34 AMpowerful-football-81694
01/11/2020, 12:50 PM