An Azure relational database service.
I believe you can check from the portal -- Overview page of SQL Database and you can find used, remaining, allocated and max storage details.
You can also use below powershell command and get the MaxSizeBytes details.
Get-AzSqlDatabase -ResourceGroupName "ResourceGroup01" -ServerName "Server01" -DatabaseName
Thank you!