/// <summary>
 /// Returns a collection of all available versions of a given process. Allows
 /// odata query options.
 /// </summary>
 /// <remarks>
 /// Required permissions: Packages.View.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='processId'>
 /// The Id of the process for which the versions are fetched.
 /// </param>
 /// <param name='expand'>
 /// Expands related entities inline.
 /// </param>
 /// <param name='filter'>
 /// Filters the results, based on a Boolean condition.
 /// </param>
 /// <param name='select'>
 /// Selects which properties to include in the response.
 /// </param>
 /// <param name='orderby'>
 /// Sorts the results.
 /// </param>
 /// <param name='top'>
 /// Returns only the first n results.
 /// </param>
 /// <param name='skip'>
 /// Skips the first n results.
 /// </param>
 /// <param name='count'>
 /// Includes a count of the matching results in the odata-count header.
 /// </param>
 public static ODataResponseListProcessDto GetProcessVersionsByProcessid(this IProcesses operations, string processId, string expand = default(string), string filter = default(string), string select = default(string), string orderby = default(string), int?top = default(int?), int?skip = default(int?), bool?count = default(bool?))
 {
     return(operations.GetProcessVersionsByProcessidAsync(processId, expand, filter, select, orderby, top, skip, count).GetAwaiter().GetResult());
 }
 /// <summary>
 /// Returns a collection of all available versions of a given process. Allows
 /// odata query options.
 /// </summary>
 /// <remarks>
 /// Required permissions: Packages.View.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='processId'>
 /// The Id of the process for which the versions are fetched.
 /// </param>
 public static ODataResponseListProcessDto GetProcessVersionsByProcessid(this IProcesses operations, string processId)
 {
     return(operations.GetProcessVersionsByProcessidAsync(processId).GetAwaiter().GetResult());
 }
예제 #3
0
 /// <summary>
 /// Returns a collection of all available versions of a given process. Allows
 /// odata query options.
 /// </summary>
 /// <remarks>
 /// Client Credentials Flow required permissions: Execution or Execution.Read.
 ///
 /// Required permissions: (Packages.View - Lists versions of a package in a
 /// Tenant Feed) and (FolderPackages.View - Lists versions of a package in a
 /// Folder Feed).
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='processId'>
 /// The Id of the process for which the versions are fetched.
 /// </param>
 /// <param name='feedId'>
 /// </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='top'>
 /// Limits the number of items returned from a collection. The maximum value is
 /// 1000.
 /// </param>
 /// <param name='skip'>
 /// Excludes the specified number of items of the queried collection from the
 /// result.
 /// </param>
 /// <param name='count'>
 /// Indicates whether the total count of items within a collection are returned
 /// in the result.
 /// </param>
 public static ODataValueOfIEnumerableOfProcessDto GetProcessVersionsByProcessid(this IProcesses operations, string processId, System.Guid?feedId = default(System.Guid?), string expand = default(string), string filter = default(string), string select = default(string), string orderby = default(string), int?top = default(int?), int?skip = default(int?), bool?count = default(bool?))
 {
     return(operations.GetProcessVersionsByProcessidAsync(processId, feedId, expand, filter, select, orderby, top, skip, count).GetAwaiter().GetResult());
 }