예제 #1
0
 /// <summary>
 /// Gets runtimes for the specified folder
 /// </summary>
 /// <remarks>
 /// Client Credentials Flow required permissions: Machines or Machines.Read.
 ///
 /// Required permissions: Machines.View.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='folderId'>
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <ODataValueIEnumerableMachineRuntimeDto> GetRuntimesForFolderByFolderidAsync(this IMachines operations, long folderId, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken))
 {
     using (var _result = await operations.GetRuntimesForFolderByFolderidWithHttpMessagesAsync(folderId, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }
예제 #2
0
 /// <summary>
 /// Gets runtimes for the specified folder
 /// </summary>
 /// <remarks>
 /// Client Credentials Flow required permissions: Machines or Machines.Read.
 ///
 /// Required permissions: Machines.View.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='folderId'>
 /// </param>
 /// <param name='expand'>
 /// Indicates the related entities to be represented inline. The maximum depth
 /// is 2.
 /// </param>
 /// <param name='filter'>
 /// Restricts the set of items returned. The maximum number of expressions is
 /// 100.
 /// </param>
 /// <param name='select'>
 /// Limits the properties returned in the result.
 /// </param>
 /// <param name='orderby'>
 /// Specifies the order in which items are returned. The maximum number of
 /// expressions is 5.
 /// </param>
 /// <param name='count'>
 /// Indicates whether the total count of items within a collection are returned
 /// in the result.
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <ODataValueOfIEnumerableOfMachineRuntimeDto> GetRuntimesForFolderByFolderidAsync(this IMachines operations, long folderId, string expand = default(string), string filter = default(string), string select = default(string), string orderby = default(string), bool?count = default(bool?), CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.GetRuntimesForFolderByFolderidWithHttpMessagesAsync(folderId, expand, filter, select, orderby, count, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }