コード例 #1
0
 /// <summary>
 /// Returns a list of all infrastructure roles at a location.
 /// </summary>
 /// <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 <InfraRole> > ListNextAsync(this IInfraRolesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }
コード例 #2
0
 /// <summary>
 /// Returns the requested infrastructure role description.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// Name of the resource group.
 /// </param>
 /// <param name='location'>
 /// Location of the resource.
 /// </param>
 /// <param name='infraRole'>
 /// Infrastructure role name.
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <InfraRole> GetAsync(this IInfraRolesOperations operations, string resourceGroupName, string location, string infraRole, CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, location, infraRole, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }
コード例 #3
0
 /// <summary>
 /// Returns a list of all infrastructure roles at a location.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// Name of the resource group.
 /// </param>
 /// <param name='location'>
 /// Location of the resource.
 /// </param>
 /// <param name='odataQuery'>
 /// OData parameters to apply to the operation.
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <IPage <InfraRole> > ListAsync(this IInfraRolesOperations operations, string resourceGroupName, string location, ODataQuery <InfraRole> odataQuery = default(ODataQuery <InfraRole>), CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, location, odataQuery, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }
コード例 #4
0
 /// <summary>
 /// Returns a list of all infrastructure roles at a location.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// Name of the resource group.
 /// </param>
 /// <param name='location'>
 /// Location of the resource.
 /// </param>
 /// <param name='odataQuery'>
 /// OData parameters to apply to the operation.
 /// </param>
 public static IPage <InfraRole> List(this IInfraRolesOperations operations, string resourceGroupName, string location, ODataQuery <InfraRole> odataQuery = default(ODataQuery <InfraRole>))
 {
     return(operations.ListAsync(resourceGroupName, location, odataQuery).GetAwaiter().GetResult());
 }
コード例 #5
0
 /// <summary>
 /// Returns the requested infrastructure role description.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// Name of the resource group.
 /// </param>
 /// <param name='location'>
 /// Location of the resource.
 /// </param>
 /// <param name='infraRole'>
 /// Infrastructure role name.
 /// </param>
 public static InfraRole Get(this IInfraRolesOperations operations, string resourceGroupName, string location, string infraRole)
 {
     return(operations.GetAsync(resourceGroupName, location, infraRole).GetAwaiter().GetResult());
 }
コード例 #6
0
 /// <summary>
 /// Returns a list of all infrastructure roles at a location.
 /// </summary>
 /// <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 <InfraRole> ListNext(this IInfraRolesOperations operations, string nextPageLink)
 {
     return(operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult());
 }
コード例 #7
0
 /// <summary>
 /// Restarts the requestd infrastructure role.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// Name of the resource group.
 /// </param>
 /// <param name='location'>
 /// Location of the resource.
 /// </param>
 /// <param name='infraRole'>
 /// Infrastructure role name.
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task BeginRestartAsync(this IInfraRolesOperations operations, string resourceGroupName, string location, string infraRole, CancellationToken cancellationToken = default(CancellationToken))
 {
     (await operations.BeginRestartWithHttpMessagesAsync(resourceGroupName, location, infraRole, null, cancellationToken).ConfigureAwait(false)).Dispose();
 }
コード例 #8
0
 /// <summary>
 /// Restarts the requestd infrastructure role.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// Name of the resource group.
 /// </param>
 /// <param name='location'>
 /// Location of the resource.
 /// </param>
 /// <param name='infraRole'>
 /// Infrastructure role name.
 /// </param>
 public static void BeginRestart(this IInfraRolesOperations operations, string resourceGroupName, string location, string infraRole)
 {
     operations.BeginRestartAsync(resourceGroupName, location, infraRole).GetAwaiter().GetResult();
 }