You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When creating a SQL database with the DTU-based model, is it possible to set the amount of DTU's to something else than the default? It so, how can this be achieved?
When creating a SQL database with the DTU-based model, is it possible to enable zone availability? If so, how can this be achieved?
If this is possible with the new SDK (Azure.ResourceManager.Sql), i'd be happy to migrate. But there is basically no docs (probably because it's still in beta?) and I could not figure out how to even create a database without tweaking anything.
Why is this not a Bug or a feature Request?
Not sure if this is missing functionality - maybe it's there but I could not find it.
Setup (please complete the following information if applicable):
Version of the Library used: 1.38.1
The code I'm using so far:
using Microsoft.Azure.Management.ResourceManager.Fluent.Authentication;using Microsoft.Azure.Management.Sql.Fluent;namespace Test;publicclassSetup{publicasync Task CreateDatabase(AzureCredentialscredentials,stringsubscription,stringsqlServerResourceId){varazure= Microsoft.Azure.Management.Fluent.Azure.Authenticate(credentials).WithSubscription(subscription);varsqlServer= azure.SqlServers.GetById(sqlServerResourceId);await sqlServer.Databases.Define("TestDatabase").WithCollation("SQL_Latin1_General_CP1_CI_AS").WithStandardEdition(SqlDatabaseStandardServiceObjective.S1, SqlDatabaseStandardStorage.Max20Gb).CreateAsync();}}
Information Checklist
Kindly make sure that you have added all the following information above and checkoff the required fields otherwise we will treat the issuer as an incomplete report
Query Added
Setup information Added
Thanks for your help!
The text was updated successfully, but these errors were encountered:
Query/Question
If this is possible with the new SDK (
Azure.ResourceManager.Sql
), i'd be happy to migrate. But there is basically no docs (probably because it's still in beta?) and I could not figure out how to even create a database without tweaking anything.Why is this not a Bug or a feature Request?
Not sure if this is missing functionality - maybe it's there but I could not find it.
Setup (please complete the following information if applicable):
The code I'm using so far:
Information Checklist
Kindly make sure that you have added all the following information above and checkoff the required fields otherwise we will treat the issuer as an incomplete report
Thanks for your help!
The text was updated successfully, but these errors were encountered: