mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-18 05:05:14 +00:00
89 lines
3.5 KiB
C#
89 lines
3.5 KiB
C#
using System;
|
|
using System.Diagnostics.CodeAnalysis;
|
|
using System.Reactive;
|
|
|
|
namespace Octokit.Reactive
|
|
{
|
|
/// <summary>
|
|
/// A client for GitHub's User Keys API.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/users/keys/">User Keys API documentation</a> for more information.
|
|
/// </remarks>
|
|
public interface IObservableUserKeysClient
|
|
{
|
|
/// <summary>
|
|
/// Gets all verified public keys for a user.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// https://developer.github.com/v3/users/keys/#list-public-keys-for-a-user
|
|
/// </remarks>
|
|
/// <param name="userName">The @ handle of the user.</param>
|
|
/// <returns>Lists the verified public keys for a user.</returns>
|
|
IObservable<PublicKey> GetAll(string userName);
|
|
|
|
/// <summary>
|
|
/// Gets all verified public keys for a user.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// https://developer.github.com/v3/users/keys/#list-public-keys-for-a-user
|
|
/// </remarks>
|
|
/// <param name="userName">The @ handle of the user.</param>
|
|
/// <param name="options">Options to change API's behavior.</param>
|
|
/// <returns>Lists the verified public keys for a user.</returns>
|
|
IObservable<PublicKey> GetAll(string userName, ApiOptions options);
|
|
|
|
/// <summary>
|
|
/// Gets all public keys for the authenticated user.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// https://developer.github.com/v3/users/keys/#list-your-public-keys
|
|
/// </remarks>
|
|
/// <returns>Lists the current user's keys.</returns>
|
|
[SuppressMessage("Microsoft.Design", "CA1024:UsePropertiesWhereAppropriate")]
|
|
IObservable<PublicKey> GetAllForCurrent();
|
|
|
|
/// <summary>
|
|
/// Gets all public keys for the authenticated user.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// https://developer.github.com/v3/users/keys/#list-your-public-keys
|
|
/// </remarks>
|
|
/// <param name="options">Options to change API's behavior.</param>
|
|
/// <returns>Lists the current user's keys.</returns>
|
|
[SuppressMessage("Microsoft.Design", "CA1024:UsePropertiesWhereAppropriate")]
|
|
IObservable<PublicKey> GetAllForCurrent(ApiOptions options);
|
|
|
|
/// <summary>
|
|
/// Retrieves the <see cref="PublicKey"/> for the specified id.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// https://developer.github.com/v3/users/keys/#get-a-single-public-key
|
|
/// </remarks>
|
|
/// <param name="id">The ID of the SSH key</param>
|
|
/// <returns>View extended details for a single public key.</returns>
|
|
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
|
|
IObservable<PublicKey> Get(int id);
|
|
|
|
/// <summary>
|
|
/// Create a public key <see cref="NewPublicKey"/>.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// https://developer.github.com/v3/users/keys/#create-a-public-key
|
|
/// </remarks>
|
|
/// <param name="newKey">The SSH Key contents</param>
|
|
/// <returns>Creates a public key.</returns>
|
|
IObservable<PublicKey> Create(NewPublicKey newKey);
|
|
|
|
/// <summary>
|
|
/// Delete a public key.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// https://developer.github.com/v3/users/keys/#delete-a-public-key
|
|
/// </remarks>
|
|
/// <param name="id">The id of the key to delete</param>
|
|
/// <returns>Removes a public key.</returns>
|
|
IObservable<Unit> Delete(int id);
|
|
}
|
|
}
|