mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-18 05:05:14 +00:00
120 lines
5.6 KiB
C#
120 lines
5.6 KiB
C#
using System;
|
|
using System.Diagnostics.CodeAnalysis;
|
|
using System.Reactive;
|
|
|
|
namespace Octokit.Reactive
|
|
{
|
|
/// <summary>
|
|
/// A client for GitHub's Repository Deploy Keys API.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="https://developer.github.com/v3/repos/keys/">Deploy Keys API documentation</a> for more information.
|
|
/// </remarks>
|
|
public interface IObservableRepositoryDeployKeysClient
|
|
{
|
|
/// <summary>
|
|
/// Get a single deploy key by number for a repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="https://developer.github.com/v3/repos/keys/#get"> API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="owner">The owner of the repository.</param>
|
|
/// <param name="name">The name of the repository.</param>
|
|
/// <param name="number">The id of the deploy key.</param>
|
|
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
|
|
IObservable<DeployKey> Get(string owner, string name, int number);
|
|
|
|
/// <summary>
|
|
/// Get a single deploy key by number for a repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="https://developer.github.com/v3/repos/keys/#get"> API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The Id of the repository.</param>
|
|
/// <param name="number">The id of the deploy key.</param>
|
|
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
|
|
IObservable<DeployKey> Get(long repositoryId, int number);
|
|
|
|
/// <summary>
|
|
/// Get all deploy keys for a repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="https://developer.github.com/v3/repos/keys/#list"> API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="owner">The owner of the repository.</param>
|
|
/// <param name="name">The name of the repository.</param>
|
|
IObservable<DeployKey> GetAll(string owner, string name);
|
|
|
|
/// <summary>
|
|
/// Get all deploy keys for a repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="https://developer.github.com/v3/repos/keys/#list"> API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The Id of the repository.</param>
|
|
IObservable<DeployKey> GetAll(long repositoryId);
|
|
|
|
/// <summary>
|
|
/// Get all deploy keys for a repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="https://developer.github.com/v3/repos/keys/#list"> API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="owner">The owner of the repository.</param>
|
|
/// <param name="name">The name of the repository.</param>
|
|
/// <param name="options">Options for changing the API response</param>
|
|
IObservable<DeployKey> GetAll(string owner, string name, ApiOptions options);
|
|
|
|
/// <summary>
|
|
/// Get all deploy keys for a repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="https://developer.github.com/v3/repos/keys/#list"> API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The Id of the repository.</param>
|
|
/// <param name="options">Options for changing the API response</param>
|
|
IObservable<DeployKey> GetAll(long repositoryId, ApiOptions options);
|
|
|
|
/// <summary>
|
|
/// Creates a new deploy key for a repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="https://developer.github.com/v3/repos/keys/#create"> API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="owner">The owner of the repository.</param>
|
|
/// <param name="name">The name of the repository.</param>
|
|
/// <param name="newDeployKey">The deploy key to create for the repository.</param>
|
|
IObservable<DeployKey> Create(string owner, string name, NewDeployKey newDeployKey);
|
|
|
|
/// <summary>
|
|
/// Creates a new deploy key for a repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="https://developer.github.com/v3/repos/keys/#create"> API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The Id of the repository.</param>
|
|
/// <param name="newDeployKey">The deploy key to create for the repository.</param>
|
|
IObservable<DeployKey> Create(long repositoryId, NewDeployKey newDeployKey);
|
|
|
|
/// <summary>
|
|
/// Deletes a deploy key from a repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="https://developer.github.com/v3/repos/keys/#delete"> API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="owner">The owner of the repository.</param>
|
|
/// <param name="name">The name of the repository.</param>
|
|
/// <param name="number">The id of the deploy key to delete.</param>
|
|
IObservable<Unit> Delete(string owner, string name, int number);
|
|
|
|
/// <summary>
|
|
/// Deletes a deploy key from a repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="https://developer.github.com/v3/repos/keys/#delete"> API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The Id of the repository.</param>
|
|
/// <param name="number">The id of the deploy key to delete.</param>
|
|
IObservable<Unit> Delete(long repositoryId, int number);
|
|
}
|
|
} |