2017-12-08 12 views

答えて

0

以下のコードスニペットでは、Windows Azure管理クラスライブラリが必要です。

あなたがそれをインストールしていない場合は、パッケージマネージャコンソールで以下のコマンドを実行します

PM> Install-Package Microsoft.WindowsAzure.Management.Libraries -Pre 

次のコードは、C#を使用して、クラウドの認証情報のサブスクリプションを取得する方法を示しています。

public static string subscriptionId = "{Your-Subscription-id}";  

        public static string base64EncodedCertificate = "Your-certificate-Base64-string";  

        static SubscriptionCloudCredentials getCredentials()  

        {  

            return new CertificateCloudCredentials(subscriptionId, new X509Certificate2(Convert.FromBase64String(base64EncodedCertificate)));  

        }  

次のコードは、C#コードを使用してSQLデータベースを作成する方法を示しています。

static void Main(string[] args)  

      {  

           

          SqlManagementClient client = new SqlManagementClient(getCredentials());  

       //Server Name is your SQL Azure DataBase server name, for example:mysqlserver001  

          client.Databases.Create("{Server-Name}", new Microsoft.WindowsAzure.Management.Sql.Models.DatabaseCreateParameters()  

          {  

              Name = "SqlDBTest",  

              MaximumDatabaseSizeInGB = 1,  

              CollationName = "SQL_Latin1_General_CP1_CI_AS",  

              Edition="Web"  

          });  

           

          Console.ReadLine();  

      }  
+0

申し訳ありませんが、リソースグループを指定する場所は表示されません。私はDatabaseCreateParametersでリソースグループの言及を見つけることができませんでした – Terry151151

+0

また、私はリソースグループを設定するために、関数チェーンの下の任意のメソッドを見つけることができません。私は現在、リソースグループでストレージアカウントを作成するために、このFluentバージョンを使用しています。 – Terry151151

関連する問題