Files
octokit.net/Octokit/Clients/IActionsWorkflowJobsClient.cs
2022-11-23 09:35:58 -06:00

108 lines
5.2 KiB
C#

using System.Threading.Tasks;
namespace Octokit
{
/// <summary>
/// A client for GitHub's Actions Workflow jobs API.
/// </summary>
/// <remarks>
/// See the <a href="https://developer.github.com/v3/actions/workflow-jobs/">Actions Workflow jobs API documentation</a> for more information.
/// </remarks>
public interface IActionsWorkflowJobsClient
{
/// <summary>
/// Re-runs a specific workflow job in a repository.
/// </summary>
/// <remarks>
/// https://developer.github.com/v3/actions/workflow-runs/#re-run-a-job-from-a-workflow-run
/// </remarks>
/// <param name="owner">The owner of the repository.</param>
/// <param name="name">The name of the repository.</param>
/// <param name="jobId">The Id of the workflow job.</param>
Task Rerun(string owner, string name, long jobId);
/// <summary>
/// Gets a specific job in a workflow run.
/// </summary>
/// <remarks>
/// https://developer.github.com/v3/actions/workflow-jobs/#get-a-job-for-a-workflow-run
/// </remarks>
/// <param name="owner">The owner of the repository.</param>
/// <param name="name">The name of the repository.</param>
/// <param name="jobId">The unique identifier of the job.</param>
Task<WorkflowJob> Get(string owner, string name, long jobId);
/// <summary>
/// Gets the plain text log file for a workflow job.
/// </summary>
/// <remarks>
/// https://developer.github.com/v3/actions/workflow-jobs/#download-job-logs-for-a-workflow-run
/// </remarks>
/// <param name="owner">The owner of the repository.</param>
/// <param name="name">The name of the repository.</param>
/// <param name="jobId">The Id of the workflow job.</param>
Task<string> GetLogs(string owner, string name, long jobId);
/// <summary>
/// Lists jobs for a specific workflow run.
/// </summary>
/// <remarks>
/// https://developer.github.com/v3/actions/workflow-runs/#list-jobs-for-a-workflow-run
/// </remarks>
/// <param name="owner">The owner of the repository.</param>
/// <param name="name">The name of the repository.</param>
/// <param name="runId">The Id of the workflow run.</param>
Task<WorkflowJobsResponse> List(string owner, string name, long runId);
/// <summary>
/// Lists jobs for a specific workflow run.
/// </summary>
/// <remarks>
/// https://developer.github.com/v3/actions/workflow-runs/#list-jobs-for-a-workflow-run
/// </remarks>
/// <param name="owner">The owner of the repository.</param>
/// <param name="name">The name of the repository.</param>
/// <param name="runId">The Id of the workflow run.</param>
/// <param name="workflowRunJobsRequest">Details to filter the request, such as by when completed.</param>
Task<WorkflowJobsResponse> List(string owner, string name, long runId, WorkflowRunJobsRequest workflowRunJobsRequest);
/// <summary>
/// Lists jobs for a specific workflow run.
/// </summary>
/// <remarks>
/// https://developer.github.com/v3/actions/workflow-runs/#list-jobs-for-a-workflow-run
/// </remarks>
/// <param name="owner">The owner of the repository.</param>
/// <param name="name">The name of the repository.</param>
/// <param name="runId">The Id of the workflow run.</param>
/// <param name="workflowRunJobsRequest">Details to filter the request, such as by when completed.</param>
/// <param name="options">Options to change the API response.</param>
Task<WorkflowJobsResponse> List(string owner, string name, long runId, WorkflowRunJobsRequest workflowRunJobsRequest, ApiOptions options);
/// <summary>
/// Lists jobs for a specific workflow run attempt.
/// </summary>
/// <remarks>
/// https://developer.github.com/v3/actions/workflow-runs/#list-jobs-for-a-workflow-run-attempt
/// </remarks>
/// <param name="owner">The owner of the repository.</param>
/// <param name="name">The name of the repository.</param>
/// <param name="runId">The Id of the workflow run.</param>
/// <param name="attemptNumber">The attempt number of the workflow run.</param>
Task<WorkflowJobsResponse> List(string owner, string name, long runId, int attemptNumber);
/// <summary>
/// Lists jobs for a specific workflow run attempt.
/// </summary>
/// <remarks>
/// https://developer.github.com/v3/actions/workflow-runs/#list-jobs-for-a-workflow-run-attempt
/// </remarks>
/// <param name="owner">The owner of the repository.</param>
/// <param name="name">The name of the repository.</param>
/// <param name="runId">The Id of the workflow run.</param>
/// <param name="attemptNumber">The attempt number of the workflow run.</param>
/// <param name="options">Options to change the API response.</param>
Task<WorkflowJobsResponse> List(string owner, string name, long runId, int attemptNumber, ApiOptions options);
}
}