added new overloads

This commit is contained in:
aedampir@gmail.com
2016-06-09 17:43:08 +07:00
parent 9859faeb0e
commit 36d7d2cf24
4 changed files with 195 additions and 0 deletions

View File

@@ -23,6 +23,17 @@ namespace Octokit.Reactive
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
IObservable<Page> Get(string owner, string name);
/// <summary>
/// Gets the page metadata for a given repository
/// </summary>
/// <param name="repositoryId">The ID of the repository</param>
/// <remarks>
/// See the <a href="https://developer.github.com/v3/repos/pages/#get-information-about-a-pages-site">API documentation</a> for more information.
/// </remarks>
/// <returns>A <see cref="IObservable{Page}"/> of <see cref="Page"/> representing page metadata of specified repository.</returns>
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
IObservable<Page> Get(int repositoryId);
/// <summary>
/// Gets all build metadata for a given repository
/// </summary>
@@ -34,6 +45,16 @@ namespace Octokit.Reactive
/// <returns>A <see cref="IObservable{PagesBuild}"/> of <see cref="PagesBuild"/>s representing pages build metadata of specified repository.</returns>
IObservable<PagesBuild> GetAll(string owner, string name);
/// <summary>
/// Gets all build metadata for a given repository
/// </summary>
/// <param name="repositoryId">The ID of the repository</param>
/// <remarks>
/// See the <a href="https://developer.github.com/v3/repos/pages/#list-pages-builds">API documentation</a> for more information.
/// </remarks>
/// <returns>A <see cref="IObservable{PagesBuild}"/> of <see cref="PagesBuild"/>s representing pages build metadata of specified repository.</returns>
IObservable<PagesBuild> GetAll(int repositoryId);
/// <summary>
/// Gets all build metadata for a given repository
/// </summary>
@@ -46,6 +67,17 @@ namespace Octokit.Reactive
/// <returns>A <see cref="IObservable{PagesBuild}"/> of <see cref="PagesBuild"/>s representing pages build metadata of specified repository.</returns>
IObservable<PagesBuild> GetAll(string owner, string name, ApiOptions options);
/// <summary>
/// Gets all build metadata for a given repository
/// </summary>
/// <param name="repositoryId">The ID of the repository</param>
/// <param name="options">Options to change the API response</param>
/// <remarks>
/// See the <a href="https://developer.github.com/v3/repos/pages/#list-pages-builds">API documentation</a> for more information.
/// </remarks>
/// <returns>A <see cref="IObservable{PagesBuild}"/> of <see cref="PagesBuild"/>s representing pages build metadata of specified repository.</returns>
IObservable<PagesBuild> GetAll(int repositoryId, ApiOptions options);
/// <summary>
/// Gets the build metadata for the last build for a given repository
/// </summary>
@@ -56,5 +88,15 @@ namespace Octokit.Reactive
/// </remarks>
/// <returns>A <see cref="IObservable{Page}"/> of <see cref="Page"/> representing latest pages build metadata of specified repository.</returns>
IObservable<PagesBuild> GetLatest(string owner, string name);
/// <summary>
/// Gets the build metadata for the last build for a given repository
/// </summary>
/// <param name="repositoryId">The ID of the repository</param>
/// <remarks>
/// See the <a href="https://developer.github.com/v3/repos/pages/#list-latest-pages-build">API documentation</a> for more information.
/// </remarks>
/// <returns>A <see cref="IObservable{Page}"/> of <see cref="Page"/> representing latest pages build metadata of specified repository.</returns>
IObservable<PagesBuild> GetLatest(int repositoryId);
}
}