0

I am upgrading to Azure SDK V12.

In the following Package List under "Libraries using Azure.Core" I find:

But as yet have found a client to manage SQL Server Dbs other than the following:

These last 2 are Microsoft.Management* namespaces which *I believe* means they are not V12. The code I am updating is using Microsoft.Azure.Management.Sql.Fluent presently.

ttugates
  • 5,818
  • 3
  • 44
  • 54
  • Is that you want to know if the package `Azure.ResourceManager.Sql` exists? – Jim Xu Mar 03 '21 at 06:44
  • If so, Microsoft does not publish the package. For more details, please refer to https://azure.github.io/azure-sdk/releases/latest/mgmt/dotnet.html – Jim Xu Mar 03 '21 at 06:54
  • @JimXu - Does `Azure.ResourceManager.Sql` exist(anywhere)? I do not see it in the referenced link under Management, nor All. In the referenced link, there are no Sql related Management libraries that I find. Thus my question, Does Azure SDK V12 have a SQL Db management client? – ttugates Mar 03 '21 at 13:49
  • Azure SDK V12 does not have a SQL Db management client – Jim Xu Mar 03 '21 at 13:57
  • @JimXu - Thank you. This is relevant as I have already updated BlobStorage (for ex) to V12, however when I export a Db to BlobStorage, I need to use `Microsoft.Azure.Management.Storage.Fluent`'s `IStorageAccount`. So I find I am restoring code I just removed / updated for the needs of SQL Db management. Specifically, `Microsoft.Azure.Management.Sql.Fluent` ultimately needs `Microsoft.Azure.Management.Fluent` which pulls in a very long list of older `Microsoft.Azure.Management.*`. If I knew this before I started I would not have invested the time to update to V12 elsewhere. – ttugates Mar 03 '21 at 15:15
  • Do you have any other concerns? if you have no, do you mind if I summarize the comment as an answer? – Jim Xu Mar 04 '21 at 02:07
  • One of the ‘Microsoft.Azure.Management’ is marked pre-release, implying its actively being developed. An answer of your comment would be useful to others. Any info you have about the future of Azure Sdk as regards to including Management of SQL Dbs would be very appreciated. Thank you – ttugates Mar 04 '21 at 02:13

1 Answers1

1

I summarize the comments as a solution

Now, If you want to manage Azure SQL resource with Azure management sdk, we just can the package Microsoft.Azure.Management.Sql. The new management SDK based on Azure. Cores Azure.ResourceManager.Sql does not publish. Microsoft is developing it. If you want to check the update, you can visit the page.

Jim Xu
  • 21,610
  • 2
  • 19
  • 39