mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-06 07:16:09 +00:00
84 lines
3.7 KiB
C#
84 lines
3.7 KiB
C#
namespace Octokit.Reactive
|
|
{
|
|
/// <summary>
|
|
/// A client for GitHub's Enterprise API.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/enterprise/">Enterprise API documentation</a> for more information.
|
|
/// </remarks>
|
|
public interface IObservableEnterpriseClient
|
|
{
|
|
/// <summary>
|
|
/// A client for GitHub's Enterprise Admin Stats API
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/enterprise/admin_stats/">Enterprise Admin Stats API documentation</a> for more information.
|
|
/// </remarks>
|
|
IObservableEnterpriseAdminStatsClient AdminStats { get; }
|
|
|
|
/// <summary>
|
|
/// A client for GitHub's Enterprise Audit Log API
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="https://docs.github.com/en/enterprise-cloud@latest/rest/enterprise-admin/audit-log">Enterprise Audit Log API documentation</a> for more information.
|
|
/// </remarks>
|
|
IObservableEnterpriseAuditLogClient AuditLog { get; }
|
|
|
|
/// <summary>
|
|
/// A client for GitHub's Enterprise LDAP API
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="https://developer.github.com/v3/enterprise/ldap/">Enterprise LDAP API documentation</a> for more information.
|
|
/// </remarks>
|
|
IObservableEnterpriseLdapClient Ldap { get; }
|
|
|
|
/// <summary>
|
|
/// A client for GitHub's Enterprise License API
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="https://developer.github.com/v3/enterprise/license/">Enterprise License API documentation</a> for more information.
|
|
/// </remarks>
|
|
IObservableEnterpriseLicenseClient License { get; }
|
|
|
|
/// <summary>
|
|
/// A client for GitHub's Enterprise Management Console API
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="https://developer.github.com/v3/enterprise/management_console/">Enterprise Management Console API documentation</a> for more information.
|
|
/// </remarks>
|
|
IObservableEnterpriseManagementConsoleClient ManagementConsole { get; }
|
|
|
|
/// <summary>
|
|
/// A client for GitHub's Enterprise Organization API
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="https://developer.github.com/v3/enterprise/orgs/">Enterprise Organization API documentation</a> for more information.
|
|
/// </remarks>
|
|
IObservableEnterpriseOrganizationClient Organization { get; }
|
|
|
|
/// <summary>
|
|
/// A client for GitHub's Enterprise Search Indexing API
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="https://developer.github.com/v3/enterprise/search_indexing/">Enterprise Search Indexing API documentation</a> for more information.
|
|
/// </remarks>
|
|
IObservableEnterpriseSearchIndexingClient SearchIndexing { get; }
|
|
|
|
/// <summary>
|
|
/// A client for GitHub's Enterprise Pre-receive Environments API
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="https://developer.github.com/v3/enterprise-admin/pre_receive_environments/">Enterprise Pre-receive Environments API documentation</a> for more information.
|
|
///</remarks>
|
|
IObservableEnterprisePreReceiveEnvironmentsClient PreReceiveEnvironment { get; }
|
|
|
|
/// <summary>
|
|
/// A client for GitHub's Enterprise Pre-receive Hooks API
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="https://docs.github.com/enterprise-server/rest/reference/enterprise-admin#pre-receive-hooks">Enterprise Pre-receive Hooks API documentation</a> for more information.
|
|
///</remarks>
|
|
IObservableEnterprisePreReceiveHooksClient PreReceiveHook { get; }
|
|
}
|
|
}
|