mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-05 23:06:10 +00:00
347 lines
19 KiB
C#
347 lines
19 KiB
C#
using System;
|
|
using System.Diagnostics.CodeAnalysis;
|
|
using System.Reactive;
|
|
using System.Threading;
|
|
|
|
namespace Octokit.Reactive
|
|
{
|
|
/// <summary>
|
|
/// A client for GitHub's Releases API.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/repos/releases/">Releases API documentation</a> for more information.
|
|
/// </remarks>
|
|
public interface IObservableReleasesClient
|
|
{
|
|
/// <summary>
|
|
/// Generates a <see cref="GeneratedReleaseNotes"/>s for the specified repository with auto generated notes.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="owner">The repository's owner</param>
|
|
/// <param name="name">The repository's name</param>
|
|
/// <param name="data">The request for generating release notes</param>
|
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
|
IObservable<GeneratedReleaseNotes> GenerateReleaseNotes(string owner, string name, GenerateReleaseNotesRequest data);
|
|
|
|
/// <summary>
|
|
/// Generates a <see cref="GeneratedReleaseNotes"/>s for the specified repository with auto generated notes.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The Id of the repository</param>
|
|
/// <param name="data">The request for generating release notes</param>
|
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
|
IObservable<GeneratedReleaseNotes> GenerateReleaseNotes(long repositoryId, GenerateReleaseNotesRequest data);
|
|
|
|
/// <summary>
|
|
/// Gets all <see cref="Release"/>s for the specified repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/repos/releases/#list-releases-for-a-repository">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="owner">The repository's owner</param>
|
|
/// <param name="name">The repository's name</param>
|
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
|
IObservable<Release> GetAll(string owner, string name);
|
|
|
|
/// <summary>
|
|
/// Gets all <see cref="Release"/>s for the specified repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/repos/releases/#list-releases-for-a-repository">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The Id of the repository</param>
|
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
|
IObservable<Release> GetAll(long repositoryId);
|
|
|
|
/// <summary>
|
|
/// Gets all <see cref="Release"/>s for the specified repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/repos/releases/#list-releases-for-a-repository">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="owner">The repository's owner</param>
|
|
/// <param name="name">The repository's name</param>
|
|
/// <param name="options">Options for changing the API response</param>
|
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
|
IObservable<Release> GetAll(string owner, string name, ApiOptions options);
|
|
|
|
/// <summary>
|
|
/// Gets all <see cref="Release"/>s for the specified repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/repos/releases/#list-releases-for-a-repository">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>
|
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
|
IObservable<Release> GetAll(long repositoryId, ApiOptions options);
|
|
|
|
/// <summary>
|
|
/// Gets a single <see cref="Release"/> for the specified repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/repos/releases/#get-a-single-release">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="owner">The repository's owner</param>
|
|
/// <param name="name">The repository's name</param>
|
|
/// <param name="id">The id of the release</param>
|
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
|
IObservable<Release> Get(string owner, string name, int id);
|
|
|
|
/// <summary>
|
|
/// Gets a single <see cref="Release"/> for the specified repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/repos/releases/#get-a-release-by-tag-name">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="owner">The repository's owner</param>
|
|
/// <param name="name">The repository's name</param>
|
|
/// <param name="tag">The tag of the release</param>
|
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
|
IObservable<Release> Get(string owner, string name, string tag);
|
|
|
|
/// <summary>
|
|
/// Gets a single <see cref="Release"/> for the specified repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/repos/releases/#get-a-single-release">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The Id of the repository</param>
|
|
/// <param name="id">The id of the release</param>
|
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
|
IObservable<Release> Get(long repositoryId, int id);
|
|
|
|
/// <summary>
|
|
/// Gets a single <see cref="Release"/> for the specified repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/repos/releases/#get-a-release-by-tag-name">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The Id of the repository</param>
|
|
/// <param name="tag">The tag of the release</param>
|
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
|
IObservable<Release> Get(long repositoryId, string tag);
|
|
|
|
/// <summary>
|
|
/// Gets the latest <see cref="Release"/> for the specified repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="https://developer.github.com/v3/repos/releases/#get-the-latest-release">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="owner">The repository's owner</param>
|
|
/// <param name="name">The repository's name</param>
|
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
|
IObservable<Release> GetLatest(string owner, string name);
|
|
|
|
/// <summary>
|
|
/// Gets the latest <see cref="Release"/> for the specified repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="https://developer.github.com/v3/repos/releases/#get-the-latest-release">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The Id of the repository</param>
|
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
|
IObservable<Release> GetLatest(long repositoryId);
|
|
|
|
/// <summary>
|
|
/// Creates a new <see cref="Release"/> for the specified repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/repos/releases/#create-a-release">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="owner">The repository's owner</param>
|
|
/// <param name="name">The repository's name</param>
|
|
/// <param name="data">A description of the release to create</param>
|
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
|
IObservable<Release> Create(string owner, string name, NewRelease data);
|
|
|
|
/// <summary>
|
|
/// Creates a new <see cref="Release"/> for the specified repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/repos/releases/#create-a-release">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The Id of the repository</param>
|
|
/// <param name="data">A description of the release to create</param>
|
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
|
IObservable<Release> Create(long repositoryId, NewRelease data);
|
|
|
|
/// <summary>
|
|
/// Edits an existing <see cref="Release"/> for the specified repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/repos/releases/#edit-a-release">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="owner">The repository's owner</param>
|
|
/// <param name="name">The repository's name</param>
|
|
/// <param name="id">The id of the release</param>
|
|
/// <param name="data">A description of the release to edit</param>
|
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
|
IObservable<Release> Edit(string owner, string name, int id, ReleaseUpdate data);
|
|
|
|
/// <summary>
|
|
/// Edits an existing <see cref="Release"/> for the specified repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/repos/releases/#edit-a-release">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The Id of the repository</param>
|
|
/// <param name="id">The id of the release</param>
|
|
/// <param name="data">A description of the release to edit</param>
|
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
|
IObservable<Release> Edit(long repositoryId, int id, ReleaseUpdate data);
|
|
|
|
/// <summary>
|
|
/// Deletes an existing <see cref="Release"/> for the specified repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/repos/releases/#delete-a-release">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="owner">The repository's owner</param>
|
|
/// <param name="name">The repository's name</param>
|
|
/// <param name="id">The id of the release to delete</param>
|
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
|
IObservable<Unit> Delete(string owner, string name, int id);
|
|
|
|
/// <summary>
|
|
/// Deletes an existing <see cref="Release"/> for the specified repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/repos/releases/#delete-a-release">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The Id of the repository</param>
|
|
/// <param name="id">The id of the release to delete</param>
|
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
|
IObservable<Unit> Delete(long repositoryId, int id);
|
|
|
|
/// <summary>
|
|
/// Gets all <see cref="ReleaseAsset"/> for the specified release of the specified repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/repos/releases/#list-assets-for-a-release">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="owner">The repository's owner</param>
|
|
/// <param name="name">The repository's name</param>
|
|
/// <param name="id">The id of the <see cref="Release"/>.</param>
|
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
|
IObservable<ReleaseAsset> GetAllAssets(string owner, string name, int id);
|
|
|
|
/// <summary>
|
|
/// Gets all <see cref="ReleaseAsset"/> for the specified release of the specified repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/repos/releases/#list-assets-for-a-release">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The Id of the repository</param>
|
|
/// <param name="id">The id of the <see cref="Release"/>.</param>
|
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
|
IObservable<ReleaseAsset> GetAllAssets(long repositoryId, int id);
|
|
|
|
/// <summary>
|
|
/// Gets all <see cref="ReleaseAsset"/> for the specified release of the specified repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/repos/releases/#list-assets-for-a-release">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="owner">The repository's owner</param>
|
|
/// <param name="name">The repository's name</param>
|
|
/// <param name="id">The id of the <see cref="Release"/>.</param>
|
|
/// <param name="options">Options for changing the API response</param>
|
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
|
IObservable<ReleaseAsset> GetAllAssets(string owner, string name, int id, ApiOptions options);
|
|
|
|
/// <summary>
|
|
/// Gets all <see cref="ReleaseAsset"/> for the specified release of the specified repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/repos/releases/#list-assets-for-a-release">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The Id of the repository</param>
|
|
/// <param name="id">The id of the <see cref="Release"/>.</param>
|
|
/// <param name="options">Options for changing the API response</param>
|
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
|
IObservable<ReleaseAsset> GetAllAssets(long repositoryId, int id, ApiOptions options);
|
|
|
|
/// <summary>
|
|
/// Uploads a <see cref="ReleaseAsset"/> for the specified release.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/repos/releases/#upload-a-release-asset">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="release">The <see cref="Release"/> to attach the uploaded asset to</param>
|
|
/// <param name="data">Description of the asset with its data</param>
|
|
/// <param name="cancellationToken">An optional token to monitor for cancellation requests</param>
|
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
|
IObservable<ReleaseAsset> UploadAsset(Release release, ReleaseAssetUpload data, CancellationToken cancellationToken = default);
|
|
|
|
/// <summary>
|
|
/// Gets the specified <see cref="ReleaseAsset"/> for the specified release of the specified repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/repos/releases/#get-a-single-release-asset">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="owner">The repository's owner</param>
|
|
/// <param name="name">The repository's name</param>
|
|
/// <param name="assetId">The id of the <see cref="ReleaseAsset"/></param>
|
|
IObservable<ReleaseAsset> GetAsset(string owner, string name, int assetId);
|
|
|
|
/// <summary>
|
|
/// Gets the specified <see cref="ReleaseAsset"/> for the specified release of the specified repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/repos/releases/#get-a-single-release-asset">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The Id of the repository</param>
|
|
/// <param name="assetId">The id of the <see cref="ReleaseAsset"/></param>
|
|
IObservable<ReleaseAsset> GetAsset(long repositoryId, int assetId);
|
|
|
|
/// <summary>
|
|
/// Edits the <see cref="ReleaseAsset"/> for the specified release of the specified repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/repos/releases/#edit-a-release-asset">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="owner">The repository's owner</param>
|
|
/// <param name="name">The repository's name</param>
|
|
/// <param name="assetId">The id of the <see cref="ReleaseAsset"/></param>
|
|
/// <param name="data">Description of the asset with its amended data</param>
|
|
IObservable<ReleaseAsset> EditAsset(string owner, string name, int assetId, ReleaseAssetUpdate data);
|
|
|
|
/// <summary>
|
|
/// Edits the <see cref="ReleaseAsset"/> for the specified release of the specified repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/repos/releases/#edit-a-release-asset">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The Id of the repository</param>
|
|
/// <param name="assetId">The id of the <see cref="ReleaseAsset"/></param>
|
|
/// <param name="data">Description of the asset with its amended data</param>
|
|
IObservable<ReleaseAsset> EditAsset(long repositoryId, int assetId, ReleaseAssetUpdate data);
|
|
|
|
/// <summary>
|
|
/// Deletes the specified <see cref="ReleaseAsset"/> from the specified repository
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/repos/releases/#delete-a-release-asset">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="owner">The repository's owner</param>
|
|
/// <param name="name">The repository's name</param>
|
|
/// <param name="id">The id of the <see cref="ReleaseAsset"/>.</param>
|
|
IObservable<Unit> DeleteAsset(string owner, string name, int id);
|
|
|
|
/// <summary>
|
|
/// Deletes the specified <see cref="ReleaseAsset"/> from the specified repository
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/repos/releases/#delete-a-release-asset">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The Id of the repository</param>
|
|
/// <param name="id">The id of the <see cref="ReleaseAsset"/>.</param>
|
|
IObservable<Unit> DeleteAsset(long repositoryId, int id);
|
|
}
|
|
}
|