コード例 #1
0
 public async Task ResizePool(
     string poolName,
     int targetDedicated,
     TimeSpan?timeout,
     TVMDeallocationOption?deallocationOption)
 {
     using (IPoolManager poolManager = this.Client.OpenPoolManager())
     {
         await poolManager.ResizePoolAsync(poolName, targetDedicated, timeout, deallocationOption);
     }
 }