/// <summary>
 /// Returns a collection of all robots that can execute the process with the
 /// provided Id.
 /// </summary>
 /// <remarks>
 /// Required permissions: Robots.View and Environments.View and Processes.View.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='processId'>
 /// The Id of the process for which the robots 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 ODataResponseListRobotDto GetRobotsForProcessByProcessid(this IRobots 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.GetRobotsForProcessByProcessidAsync(processId, expand, filter, select, orderby, top, skip, count).GetAwaiter().GetResult());
 }
Exemplo n.º 2
0
 /// <summary>
 /// Returns a collection of all robots that can execute the process with the
 /// provided Id.
 /// </summary>
 /// <remarks>
 /// Client Credentials Flow required permissions: Robots or Robots.Read.
 ///
 /// Required permissions: Robots.View and Environments.View and Processes.View.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='processId'>
 /// The Id of the process for which the robots are fetched.
 /// </param>
 /// <param name='xUIPATHOrganizationUnitId'>
 /// Folder/OrganizationUnit Id
 /// </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 ODataValueIEnumerableRobotDto GetRobotsForProcessByProcessid(this IRobots operations, string processId, long?xUIPATHOrganizationUnitId = default(long?), 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.GetRobotsForProcessByProcessidAsync(processId, xUIPATHOrganizationUnitId, expand, filter, select, orderby, top, skip, count).GetAwaiter().GetResult());
 }