mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-19 05:35:11 +00:00
88 lines
4.3 KiB
C#
88 lines
4.3 KiB
C#
using System;
|
|
|
|
namespace Octokit.Reactive
|
|
{
|
|
/// <summary>
|
|
/// A client for GitHub's Repository Deployment Statuses API.
|
|
/// Gets and creates Deployment Statuses.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/repos/deployments/">Repository Deployment Statuses API documentation</a> for more information.
|
|
/// </remarks>
|
|
public interface IObservableDeploymentStatusClient
|
|
{
|
|
/// <summary>
|
|
/// Gets all the statuses for the given deployment. Any user with pull access to a repository can
|
|
/// view deployments.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// http://developer.github.com/v3/repos/deployments/#list-deployment-statuses
|
|
/// </remarks>
|
|
/// <param name="owner">The owner of the repository.</param>
|
|
/// <param name="name">The name of the repository.</param>
|
|
/// <param name="deploymentId">The id of the deployment.</param>
|
|
IObservable<DeploymentStatus> GetAll(string owner, string name, int deploymentId);
|
|
|
|
/// <summary>
|
|
/// Gets all the statuses for the given deployment. Any user with pull access to a repository can
|
|
/// view deployments.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// http://developer.github.com/v3/repos/deployments/#list-deployment-statuses
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The Id of the repository.</param>
|
|
/// <param name="deploymentId">The id of the deployment.</param>
|
|
IObservable<DeploymentStatus> GetAll(int repositoryId, int deploymentId);
|
|
|
|
/// <summary>
|
|
/// Gets all the statuses for the given deployment. Any user with pull access to a repository can
|
|
/// view deployments.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// http://developer.github.com/v3/repos/deployments/#list-deployment-statuses
|
|
/// </remarks>
|
|
/// <param name="owner">The owner of the repository.</param>
|
|
/// <param name="name">The name of the repository.</param>
|
|
/// <param name="deploymentId">The id of the deployment.</param>
|
|
/// <param name="options">Options for changing the API response</param>
|
|
IObservable<DeploymentStatus> GetAll(string owner, string name, int deploymentId, ApiOptions options);
|
|
|
|
/// <summary>
|
|
/// Gets all the statuses for the given deployment. Any user with pull access to a repository can
|
|
/// view deployments.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// http://developer.github.com/v3/repos/deployments/#list-deployment-statuses
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The Id of the repository.</param>
|
|
/// <param name="deploymentId">The id of the deployment.</param>
|
|
/// <param name="options">Options for changing the API response</param>
|
|
IObservable<DeploymentStatus> GetAll(int repositoryId, int deploymentId, ApiOptions options);
|
|
|
|
/// <summary>
|
|
/// Creates a new status for the given deployment. Users with push access can create deployment
|
|
/// statuses for a given deployment.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// http://developer.github.com/v3/repos/deployments/#create-a-deployment-status
|
|
/// </remarks>
|
|
/// <param name="owner">The owner of the repository.</param>
|
|
/// <param name="name">The name of the repository.</param>
|
|
/// <param name="deploymentId">The id of the deployment.</param>
|
|
/// <param name="newDeploymentStatus">The new deployment status to create.</param>
|
|
IObservable<DeploymentStatus> Create(string owner, string name, int deploymentId, NewDeploymentStatus newDeploymentStatus);
|
|
|
|
/// <summary>
|
|
/// Creates a new status for the given deployment. Users with push access can create deployment
|
|
/// statuses for a given deployment.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// http://developer.github.com/v3/repos/deployments/#create-a-deployment-status
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The Id of the repository.</param>
|
|
/// <param name="deploymentId">The id of the deployment.</param>
|
|
/// <param name="newDeploymentStatus">The new deployment status to create.</param>
|
|
IObservable<DeploymentStatus> Create(int repositoryId, int deploymentId, NewDeploymentStatus newDeploymentStatus);
|
|
}
|
|
}
|