示例#1
0
 /// <summary>
 /// Get Big Data pool
 /// </summary>
 /// <remarks>
 /// Get a Big Data pool.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group. The name is case insensitive.
 /// </param>
 /// <param name='workspaceName'>
 /// The name of the workspace.
 /// </param>
 /// <param name='bigDataPoolName'>
 /// Big Data pool name
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <BigDataPoolResourceInfo> GetAsync(this IBigDataPoolsOperations operations, string resourceGroupName, string workspaceName, string bigDataPoolName, CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, workspaceName, bigDataPoolName, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }
示例#2
0
 /// <summary>
 /// Update a Big Data pool.
 /// </summary>
 /// <remarks>
 /// Patch a Big Data pool.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group. The name is case insensitive.
 /// </param>
 /// <param name='workspaceName'>
 /// The name of the workspace.
 /// </param>
 /// <param name='bigDataPoolName'>
 /// Big Data pool name
 /// </param>
 /// <param name='bigDataPoolPatchInfo'>
 /// The updated Big Data pool properties
 /// </param>
 public static BigDataPoolResourceInfo Update(this IBigDataPoolsOperations operations, string resourceGroupName, string workspaceName, string bigDataPoolName, BigDataPoolPatchInfo bigDataPoolPatchInfo)
 {
     return(operations.UpdateAsync(resourceGroupName, workspaceName, bigDataPoolName, bigDataPoolPatchInfo).GetAwaiter().GetResult());
 }
示例#3
0
 /// <summary>
 /// List the Big Data pools in a workspace.
 /// </summary>
 /// <remarks>
 /// List Big Data pools in a workspace.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='nextPageLink'>
 /// The NextLink from the previous successful call to List operation.
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <IPage <BigDataPoolResourceInfo> > ListByWorkspaceNextAsync(this IBigDataPoolsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.ListByWorkspaceNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }
示例#4
0
 /// <summary>
 /// List the Big Data pools in a workspace.
 /// </summary>
 /// <remarks>
 /// List Big Data pools in a workspace.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='nextPageLink'>
 /// The NextLink from the previous successful call to List operation.
 /// </param>
 public static IPage <BigDataPoolResourceInfo> ListByWorkspaceNext(this IBigDataPoolsOperations operations, string nextPageLink)
 {
     return(operations.ListByWorkspaceNextAsync(nextPageLink).GetAwaiter().GetResult());
 }
示例#5
0
 /// <summary>
 /// Get Big Data pool
 /// </summary>
 /// <remarks>
 /// Get a Big Data pool.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group. The name is case insensitive.
 /// </param>
 /// <param name='workspaceName'>
 /// The name of the workspace.
 /// </param>
 /// <param name='bigDataPoolName'>
 /// Big Data pool name
 /// </param>
 public static BigDataPoolResourceInfo Get(this IBigDataPoolsOperations operations, string resourceGroupName, string workspaceName, string bigDataPoolName)
 {
     return(operations.GetAsync(resourceGroupName, workspaceName, bigDataPoolName).GetAwaiter().GetResult());
 }
示例#6
0
 /// <summary>
 /// Delete a Big Data pool.
 /// </summary>
 /// <remarks>
 /// Delete a Big Data pool from the workspace.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group. The name is case insensitive.
 /// </param>
 /// <param name='workspaceName'>
 /// The name of the workspace.
 /// </param>
 /// <param name='bigDataPoolName'>
 /// Big Data pool name
 /// </param>
 public static object BeginDelete(this IBigDataPoolsOperations operations, string resourceGroupName, string workspaceName, string bigDataPoolName)
 {
     return(operations.BeginDeleteAsync(resourceGroupName, workspaceName, bigDataPoolName).GetAwaiter().GetResult());
 }
示例#7
0
 /// <summary>
 /// Create a Big Data pool.
 /// </summary>
 /// <remarks>
 /// Create a new Big Data pool.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group. The name is case insensitive.
 /// </param>
 /// <param name='workspaceName'>
 /// The name of the workspace.
 /// </param>
 /// <param name='bigDataPoolName'>
 /// Big Data pool name
 /// </param>
 /// <param name='bigDataPoolInfo'>
 /// The Big Data pool to create.
 /// </param>
 /// <param name='force'>
 /// Whether to stop any running jobs in the Big Data pool
 /// </param>
 public static BigDataPoolResourceInfo BeginCreateOrUpdate(this IBigDataPoolsOperations operations, string resourceGroupName, string workspaceName, string bigDataPoolName, BigDataPoolResourceInfo bigDataPoolInfo, bool?force = false)
 {
     return(operations.BeginCreateOrUpdateAsync(resourceGroupName, workspaceName, bigDataPoolName, bigDataPoolInfo, force).GetAwaiter().GetResult());
 }
示例#8
0
 /// <summary>
 /// List the Big Data pools in a workspace.
 /// </summary>
 /// <remarks>
 /// List Big Data pools in a workspace.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group. The name is case insensitive.
 /// </param>
 /// <param name='workspaceName'>
 /// The name of the workspace.
 /// </param>
 public static IPage <BigDataPoolResourceInfo> ListByWorkspace(this IBigDataPoolsOperations operations, string resourceGroupName, string workspaceName)
 {
     return(operations.ListByWorkspaceAsync(resourceGroupName, workspaceName).GetAwaiter().GetResult());
 }