/// <summary> /// Returns a collection of all the ids of the robots associated to an schedule /// based on schedule Id. /// </summary> /// <remarks> /// Client Credentials Flow required permissions: Jobs or Jobs.Read. /// /// Required permissions: Schedules.View. /// </remarks> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='key'> /// The Id of the schedule for which the robot ids are fetched. /// </param> /// <param name='xUIPATHOrganizationUnitId'> /// Folder/OrganizationUnit Id /// </param> public static ODataValueIEnumerableInt64 GetRobotIdsForScheduleByKey(this IProcessSchedules operations, long key, long?xUIPATHOrganizationUnitId = default(long?)) { return(operations.GetRobotIdsForScheduleByKeyAsync(key, xUIPATHOrganizationUnitId).GetAwaiter().GetResult()); }
/// <summary> /// Returns a collection of all the ids of the robots associated to an schedule /// based on schedule Id. /// </summary> /// <remarks> /// Required permissions: Schedules.View. /// </remarks> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='key'> /// The Id of the schedule for which the robot ids are fetched. /// </param> public static ODataResponseListInt64 GetRobotIdsForScheduleByKey(this IProcessSchedules operations, long key) { return(operations.GetRobotIdsForScheduleByKeyAsync(key).GetAwaiter().GetResult()); }
/// <summary> /// Returns a collection of all the ids of the robots associated to an schedule /// based on schedule Id. /// </summary> /// <remarks> /// Client Credentials Flow required permissions: Jobs or Jobs.Read. /// /// Required permissions: Schedules.View. /// </remarks> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='key'> /// The Id of the schedule for which the robot ids are fetched. /// </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='xUIPATHOrganizationUnitId'> /// Folder/OrganizationUnit Id /// </param> public static ODataValueOfIEnumerableOfInt64 GetRobotIdsForScheduleByKey(this IProcessSchedules operations, long key, string expand = default(string), string filter = default(string), string select = default(string), string orderby = default(string), bool?count = default(bool?), long?xUIPATHOrganizationUnitId = default(long?)) { return(operations.GetRobotIdsForScheduleByKeyAsync(key, expand, filter, select, orderby, count, xUIPATHOrganizationUnitId).GetAwaiter().GetResult()); }