mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-06 07:16:09 +00:00
* Added api request to cancel an organization invitation * Added tests --------- Co-authored-by: Nick Floyd <139819+nickfloyd@users.noreply.github.com>
403 lines
19 KiB
C#
403 lines
19 KiB
C#
using System;
|
|
using System.Reactive;
|
|
|
|
namespace Octokit.Reactive
|
|
{
|
|
public interface IObservableOrganizationMembersClient
|
|
{
|
|
/// <summary>
|
|
/// <para>
|
|
/// List all users who are members of an organization. A member is a user that
|
|
/// belongs to at least 1 team in the organization.
|
|
/// </para>
|
|
/// <para>
|
|
/// If the authenticated user is also an owner of this organization then both
|
|
/// concealed and public member will be returned.
|
|
/// </para>
|
|
/// <para>
|
|
/// If the requester is not an owner of the organization the query will be redirected
|
|
/// to the public members list.
|
|
/// </para>
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/orgs/members/#members-list">API documentation</a>
|
|
/// for more information.
|
|
/// </remarks>
|
|
/// <param name="org">The login for the organization</param>
|
|
/// <returns></returns>
|
|
IObservable<User> GetAll(string org);
|
|
|
|
/// <summary>
|
|
/// <para>
|
|
/// List all users who are members of an organization. A member is a user that
|
|
/// belongs to at least 1 team in the organization.
|
|
/// </para>
|
|
/// <para>
|
|
/// If the authenticated user is also an owner of this organization then both
|
|
/// concealed and public member will be returned.
|
|
/// </para>
|
|
/// <para>
|
|
/// If the requester is not an owner of the organization the query will be redirected
|
|
/// to the public members list.
|
|
/// </para>
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/orgs/members/#members-list">API documentation</a>
|
|
/// for more information.
|
|
/// </remarks>
|
|
/// <param name="org">The login for the organization</param>
|
|
/// <param name="options">Options for changing the API response</param>
|
|
/// <returns></returns>
|
|
IObservable<User> GetAll(string org, ApiOptions options);
|
|
|
|
/// <summary>
|
|
/// <para>
|
|
/// List all users who are members of an organization. A member is a user that
|
|
/// belongs to at least 1 team in the organization.
|
|
/// </para>
|
|
/// <para>
|
|
/// If the authenticated user is also an owner of this organization then both
|
|
/// concealed and public member will be returned.
|
|
/// </para>
|
|
/// <para>
|
|
/// If the requester is not an owner of the organization the query will be redirected
|
|
/// to the public members list.
|
|
/// </para>
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/orgs/members/#members-list">API documentation</a>
|
|
/// for more information.
|
|
/// </remarks>
|
|
/// <param name="org">The login for the organization</param>
|
|
/// <param name="filter">The members filter, <see cref="OrganizationMembersFilter"/> </param>
|
|
/// <returns></returns>
|
|
IObservable<User> GetAll(string org, OrganizationMembersFilter filter);
|
|
|
|
/// <summary>
|
|
/// <para>
|
|
/// List all users who are members of an organization. A member is a user that
|
|
/// belongs to at least 1 team in the organization.
|
|
/// </para>
|
|
/// <para>
|
|
/// If the authenticated user is also an owner of this organization then both
|
|
/// concealed and public member will be returned.
|
|
/// </para>
|
|
/// <para>
|
|
/// If the requester is not an owner of the organization the query will be redirected
|
|
/// to the public members list.
|
|
/// </para>
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/orgs/members/#members-list">API documentation</a>
|
|
/// for more information.
|
|
/// </remarks>
|
|
/// <param name="org">The login for the organization</param>
|
|
/// <param name="filter">The members filter, <see cref="OrganizationMembersFilter"/> </param>
|
|
/// <param name="options">Options for changing the API response</param>
|
|
/// <returns></returns>
|
|
IObservable<User> GetAll(string org, OrganizationMembersFilter filter, ApiOptions options);
|
|
|
|
/// <summary>
|
|
/// <para>
|
|
/// List all users who are members of an organization. A member is a user that
|
|
/// belongs to at least 1 team in the organization.
|
|
/// </para>
|
|
/// <para>
|
|
/// If the authenticated user is also an owner of this organization then both
|
|
/// concealed and public member will be returned.
|
|
/// </para>
|
|
/// <para>
|
|
/// If the requester is not an owner of the organization the query will be redirected
|
|
/// to the public members list.
|
|
/// </para>
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/orgs/members/#members-list">API documentation</a>
|
|
/// for more information.
|
|
/// </remarks>
|
|
/// <param name="org">The login for the organization</param>
|
|
/// <param name="role">The role filter to use when getting the users, <see cref="OrganizationMembersRole"/></param>
|
|
/// <returns></returns>
|
|
IObservable<User> GetAll(string org, OrganizationMembersRole role);
|
|
|
|
/// <summary>
|
|
/// <para>
|
|
/// List all users who are members of an organization. A member is a user that
|
|
/// belongs to at least 1 team in the organization.
|
|
/// </para>
|
|
/// <para>
|
|
/// If the authenticated user is also an owner of this organization then both
|
|
/// concealed and public member will be returned.
|
|
/// </para>
|
|
/// <para>
|
|
/// If the requester is not an owner of the organization the query will be redirected
|
|
/// to the public members list.
|
|
/// </para>
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/orgs/members/#members-list">API documentation</a>
|
|
/// for more information.
|
|
/// </remarks>
|
|
/// <param name="org">The login for the organization</param>
|
|
/// <param name="role">The role filter to use when getting the users, <see cref="OrganizationMembersRole"/></param>
|
|
/// <param name="options">Options for changing the API response</param>
|
|
/// <returns></returns>
|
|
IObservable<User> GetAll(string org, OrganizationMembersRole role, ApiOptions options);
|
|
|
|
/// <summary>
|
|
/// <para>
|
|
/// List all users who are members of an organization. A member is a user that
|
|
/// belongs to at least 1 team in the organization.
|
|
/// </para>
|
|
/// <para>
|
|
/// If the authenticated user is also an owner of this organization then both
|
|
/// concealed and public member will be returned.
|
|
/// </para>
|
|
/// <para>
|
|
/// If the requester is not an owner of the organization the query will be redirected
|
|
/// to the public members list.
|
|
/// </para>
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/orgs/members/#members-list">API documentation</a>
|
|
/// for more information.
|
|
/// </remarks>
|
|
/// <param name="org">The login for the organization</param>
|
|
/// <param name="filter">The members filter, <see cref="OrganizationMembersFilter"/> </param>
|
|
/// <param name="role">The role filter to use when getting the users, <see cref="OrganizationMembersRole"/></param>
|
|
/// <returns></returns>
|
|
IObservable<User> GetAll(string org, OrganizationMembersFilter filter, OrganizationMembersRole role);
|
|
|
|
/// <summary>
|
|
/// <para>
|
|
/// List all users who are members of an organization. A member is a user that
|
|
/// belongs to at least 1 team in the organization.
|
|
/// </para>
|
|
/// <para>
|
|
/// If the authenticated user is also an owner of this organization then both
|
|
/// concealed and public member will be returned.
|
|
/// </para>
|
|
/// <para>
|
|
/// If the requester is not an owner of the organization the query will be redirected
|
|
/// to the public members list.
|
|
/// </para>
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/orgs/members/#members-list">API documentation</a>
|
|
/// for more information.
|
|
/// </remarks>
|
|
/// <param name="org">The login for the organization</param>
|
|
/// <param name="filter">The members filter, <see cref="OrganizationMembersFilter"/> </param>
|
|
/// <param name="role">The role filter to use when getting the users, <see cref="OrganizationMembersRole"/></param>
|
|
/// <param name="options">Options for changing the API response</param>
|
|
/// <returns></returns>
|
|
IObservable<User> GetAll(string org, OrganizationMembersFilter filter, OrganizationMembersRole role, ApiOptions options);
|
|
|
|
/// <summary>
|
|
/// List all users who have publicized their membership of the organization.
|
|
/// </summary>
|
|
/// <remarks>http://developer.github.com/v3/orgs/members/#public-members-list</remarks>
|
|
/// <param name="org">The login for the organization</param>
|
|
/// <returns></returns>
|
|
IObservable<User> GetAllPublic(string org);
|
|
|
|
/// <summary>
|
|
/// List all users who have publicized their membership of the organization.
|
|
/// </summary>
|
|
/// <remarks>http://developer.github.com/v3/orgs/members/#public-members-list</remarks>
|
|
/// <param name="org">The login for the organization</param>
|
|
/// <param name="options">Options for changing the API response</param>
|
|
/// <returns></returns>
|
|
IObservable<User> GetAllPublic(string org, ApiOptions options);
|
|
|
|
/// <summary>
|
|
/// Check if a user is, publicly or privately, a member of the organization.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/orgs/members/#check-membership">API documentation</a>
|
|
/// for more information.
|
|
/// </remarks>
|
|
/// <param name="org">The login for the organization</param>
|
|
/// <param name="user">The login for the user</param>
|
|
/// <returns></returns>
|
|
IObservable<bool> CheckMember(string org, string user);
|
|
|
|
/// <summary>
|
|
/// Check is a user is publicly a member of the organization.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/orgs/members/#check-public-membership">API documentation</a>
|
|
/// for more information.
|
|
/// </remarks>
|
|
/// <param name="org">The login for the organization</param>
|
|
/// <param name="user">The login for the user</param>
|
|
/// <returns></returns>
|
|
IObservable<bool> CheckMemberPublic(string org, string user);
|
|
|
|
/// <summary>
|
|
/// Removes a user from the organization, this will also remove them from all teams
|
|
/// within the organization and they will no longer have any access to the organization's
|
|
/// repositories.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/orgs/members/#remove-a-member">API documentation</a>
|
|
/// for more information.
|
|
/// </remarks>
|
|
/// <param name="org">The login for the organization</param>
|
|
/// <param name="user">The login for the user</param>
|
|
/// <returns></returns>
|
|
IObservable<Unit> Delete(string org, string user);
|
|
|
|
/// <summary>
|
|
/// Make the authenticated user's organization membership public.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// This method requires authentication.
|
|
/// See the <a href="http://developer.github.com/v3/orgs/members/#publicize-a-users-membership">API documentation</a>
|
|
/// for more information.
|
|
/// </remarks>
|
|
/// <param name="org">The login for the organization</param>
|
|
/// <param name="user">The login for the user</param>
|
|
/// <returns></returns>
|
|
IObservable<bool> Publicize(string org, string user);
|
|
|
|
/// <summary>
|
|
/// Make the authenticated user's organization membership private.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// This method requires authentication.
|
|
/// See the <a href="http://developer.github.com/v3/orgs/members/#conceal-a-users-membership">API documentation</a>
|
|
/// for more information.
|
|
/// </remarks>
|
|
/// <param name="org">The login for the organization</param>
|
|
/// <param name="user">The login for the user</param>
|
|
/// <returns></returns>
|
|
IObservable<Unit> Conceal(string org, string user);
|
|
|
|
/// <summary>
|
|
/// Get a user's membership with an organization.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// This method requires authentication.
|
|
/// The authenticated user must be an organization member.
|
|
/// See the <a href="https://developer.github.com/v3/orgs/members/#get-organization-membership">API documentation</a>
|
|
/// for more information.
|
|
/// </remarks>
|
|
/// <param name="org">The login for the organization</param>
|
|
/// <param name="user">The login for the user</param>
|
|
/// <returns></returns>
|
|
IObservable<OrganizationMembership> GetOrganizationMembership(string org, string user);
|
|
|
|
/// <summary>
|
|
/// Add a user to the organization or update the user's role withing the organization.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// This method requires authentication.
|
|
/// The authenticated user must be an organization owner.
|
|
/// See the <a href="https://developer.github.com/v3/orgs/members/#add-or-update-organization-membership">API documentation</a>
|
|
/// for more information.
|
|
/// </remarks>
|
|
/// <param name="org">The login for the organization</param>
|
|
/// <param name="user">The login for the user</param>
|
|
/// <param name="addOrUpdateRequest">An <see cref="OrganizationMembershipUpdate"/> instance describing the
|
|
/// changes to make to the user's organization membership</param>
|
|
/// <returns></returns>
|
|
IObservable<OrganizationMembership> AddOrUpdateOrganizationMembership(string org, string user, OrganizationMembershipUpdate addOrUpdateRequest);
|
|
|
|
/// <summary>
|
|
/// Remove a user's membership with an organization.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// This method requires authentication.
|
|
/// The authenticated user must be an organization owner.
|
|
/// See the <a href="https://developer.github.com/v3/orgs/members/#remove-organization-membership">API documentation</a>
|
|
/// for more information.
|
|
/// </remarks>
|
|
/// <param name="org">The login for the organization</param>
|
|
/// <param name="user">The login for the user</param>
|
|
/// <returns></returns>
|
|
IObservable<Unit> RemoveOrganizationMembership(string org, string user);
|
|
|
|
/// <summary>
|
|
/// List all pending invitations for the organization.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="https://developer.github.com/v3/orgs/members/#list-pending-organization-invitations">API Documentation</a>
|
|
/// for more information.
|
|
/// </remarks>
|
|
/// <param name="org">The login for the organization</param>
|
|
/// <returns></returns>
|
|
IObservable<OrganizationMembershipInvitation> GetAllPendingInvitations(string org);
|
|
|
|
/// <summary>
|
|
/// List all pending invitations for the organization.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="https://developer.github.com/v3/orgs/members/#list-pending-organization-invitations">API Documentation</a>
|
|
/// for more information.
|
|
/// </remarks>
|
|
/// <param name="org">The login for the organization</param>
|
|
/// <param name="options">Options to change API behaviour</param>
|
|
/// <returns></returns>
|
|
IObservable<OrganizationMembershipInvitation> GetAllPendingInvitations(string org, ApiOptions options);
|
|
|
|
/// <summary>
|
|
/// List failed organization invitations.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="https://docs.github.com/rest/orgs/members#list-failed-organization-invitations">API Documentation</a>
|
|
/// for more information.
|
|
/// </remarks>
|
|
/// <param name="org">The login for the organization</param>
|
|
/// <returns></returns>
|
|
IObservable<OrganizationMembershipInvitation> GetAllFailedInvitations(string org);
|
|
|
|
/// <summary>
|
|
/// List failed organization invitations.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="https://docs.github.com/rest/orgs/members#list-failed-organization-invitations">API Documentation</a>
|
|
/// for more information.
|
|
/// </remarks>
|
|
/// <param name="org">The login for the organization</param>
|
|
/// <param name="options">Options to change API behaviour</param>
|
|
/// <returns></returns>
|
|
IObservable<OrganizationMembershipInvitation> GetAllFailedInvitations(string org, ApiOptions options);
|
|
|
|
/// <summary>
|
|
/// Cancel an organization invitation. In order to cancel an organization invitation, the authenticated user must be an organization owner.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="https://docs.github.com/en/rest/orgs/members#cancel-an-organization-invitation">API Documentation</a>
|
|
/// for more information.
|
|
/// </remarks>
|
|
/// <param name="org">The login for the organization</param>
|
|
/// <param name="invitationId">The unique identifier of the invitation</param>
|
|
/// <returns></returns>
|
|
IObservable<Unit> CancelOrganizationInvitation(string org, int invitationId);
|
|
|
|
/// <summary>
|
|
/// Returns all <see cref="OrganizationMembership" />s for the current user.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="https://docs.github.com/en/rest/orgs/members#list-organization-memberships-for-the-authenticated-user">API Documentation</a>
|
|
/// for more information.
|
|
/// </remarks>
|
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
|
/// <returns></returns>
|
|
IObservable<OrganizationMembership> GetAllOrganizationMembershipsForCurrent();
|
|
|
|
/// <summary>
|
|
/// Returns all <see cref="OrganizationMembership" />s for the current user.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="https://docs.github.com/en/rest/orgs/members#list-organization-memberships-for-the-authenticated-user">API Documentation</a>
|
|
/// for more information.
|
|
/// </remarks>
|
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
|
/// <param name="options">Options to change API behaviour</param>
|
|
/// <returns></returns>
|
|
IObservable<OrganizationMembership> GetAllOrganizationMembershipsForCurrent(ApiOptions options);
|
|
}
|
|
}
|