/// <summary> /// Deletes a comment on a pull request review. /// </summary> /// <remarks>http://developer.github.com/v3/pulls/comments/#delete-a-comment</remarks> /// <param name="owner">The owner of the repository</param> /// <param name="name">The name of the repository</param> /// <param name="number">The pull request review comment number</param> /// <returns></returns> public Task Delete(string owner, string name, int number) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); Ensure.ArgumentNotNullOrEmptyString(name, "name"); return(ApiConnection.Delete(ApiUrls.PullRequestReviewComment(owner, name, number))); }
/// <summary> /// Deletes the specified repository. /// </summary> /// <remarks> /// See the <a href="http://developer.github.com/v3/repos/#delete-a-repository">API documentation</a> for more information. /// Deleting a repository requires admin access. If OAuth is used, the `delete_repo` scope is required. /// </remarks> /// <param name="owner">The owner of the repository</param> /// <param name="name">The name of the repository</param> /// <exception cref="ApiException">Thrown when a general API error occurs.</exception> public Task Delete(string owner, string name) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); Ensure.ArgumentNotNullOrEmptyString(name, "name"); return(ApiConnection.Delete(ApiUrls.Repository(owner, name))); }
/// <summary> /// Make the authenticated user's organization membership private. /// </summary> /// <remarks> /// This method requries 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> public Task Conceal(string org, string user) { Ensure.ArgumentNotNullOrEmptyString(org, "org"); Ensure.ArgumentNotNullOrEmptyString(user, "user"); return(ApiConnection.Delete(ApiUrls.OrganizationMembership(org, 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> public Task Delete(string org, string user) { Ensure.ArgumentNotNullOrEmptyString(org, "org"); Ensure.ArgumentNotNullOrEmptyString(user, "user"); return(ApiConnection.Delete("orgs/{0}/members/{1}".FormatUri(org, user))); }
/// <summary> /// Removes all labels from an issue /// </summary> /// <remarks> /// See the <a href="http://developer.github.com/v3/issues/labels/#remove-all-labels-from-an-issue">API documentation</a> for more information. /// </remarks> /// <param name="owner">The owner of the repository</param> /// <param name="name">The name of the repository</param> /// <param name="number">The number of the issue</param> public Task RemoveAllFromIssue(string owner, string name, int number) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); Ensure.ArgumentNotNullOrEmptyString(name, "name"); return(ApiConnection.Delete(ApiUrls.IssueLabels(owner, name, number))); }
/// <summary> /// Removes a label from an issue /// </summary> /// <remarks> /// See the <a href="http://developer.github.com/v3/issues/labels/#remove-a-label-from-an-issue">API documentation</a> for more information. /// </remarks> /// <param name="owner">The owner of the repository</param> /// <param name="name">The name of the repository</param> /// <param name="number">The number of the issue</param> /// <param name="labelName">The name of the label to remove</param> public Task RemoveFromIssue(string owner, string name, int number, string labelName) { Ensure.ArgumentNotNullOrEmptyString(owner, nameof(owner)); Ensure.ArgumentNotNullOrEmptyString(name, nameof(name)); Ensure.ArgumentNotNullOrEmptyString(labelName, nameof(labelName)); return(ApiConnection.Delete(ApiUrls.IssueLabel(owner, name, number, labelName))); }
/// <summary> /// Deletes a collaborator from the repository. /// </summary> /// <remarks> /// See the <a href="http://developer.github.com/v3/repos/collaborators/#remove-collaborator">API documentation</a> for more information. /// </remarks> /// <param name="owner">The owner of the repository</param> /// <param name="name">The name of the repository</param> /// <param name="user">Username of the deleted collaborator</param> /// <exception cref="ApiException">Thrown when a general API error occurs.</exception> public Task Delete(string owner, string name, string user) { Ensure.ArgumentNotNullOrEmptyString(owner, nameof(owner)); Ensure.ArgumentNotNullOrEmptyString(name, nameof(name)); Ensure.ArgumentNotNullOrEmptyString(user, nameof(user)); return(ApiConnection.Delete(ApiUrls.RepoCollaborator(owner, name, user))); }
public Task <IReadOnlyList <Label> > RemoveFromIssue(string owner, string name, int number, string labelName) { Ensure.ArgumentNotNullOrEmptyString(owner, nameof(owner)); Ensure.ArgumentNotNullOrEmptyString(name, nameof(name)); Ensure.ArgumentNotNullOrEmptyString(labelName, nameof(labelName)); return(ApiConnection.Delete <IReadOnlyList <Label> >(ApiUrls.IssueLabel(owner, name, number, labelName), AcceptHeaders.LabelsApiPreview)); }
/// <summary> /// Deletes a label. /// </summary> /// <remarks> /// See the <a href="http://developer.github.com/v3/issues/labels/#delete-a-label">API documentation</a> for more information. /// </remarks> /// <param name="owner">The owner of the repository</param> /// <param name="name">The name of the repository</param> /// <param name="labelName">The name of the label</param> public Task Delete(string owner, string name, string labelName) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); Ensure.ArgumentNotNullOrEmptyString(name, "name"); Ensure.ArgumentNotNullOrEmptyString(labelName, "labelName"); return(ApiConnection.Delete(ApiUrls.Label(owner, name, labelName))); }
/// <summary> /// Removes a label from an issue /// </summary> /// <remarks> /// See the <a href="http://developer.github.com/v3/issues/labels/#remove-a-label-from-an-issue">API documentation</a> for more information. /// </remarks> /// <param name="owner">The owner of the repository</param> /// <param name="repo">The name of the repository</param> /// <param name="number">The number of the issue</param> /// <param name="label">The name of the label to remove</param> /// <returns></returns> public Task RemoveFromIssue(string owner, string repo, int number, string label) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); Ensure.ArgumentNotNullOrEmptyString(repo, "repo"); Ensure.ArgumentNotNullOrEmptyString(label, "label"); return(ApiConnection.Delete(ApiUrls.IssueLabel(owner, repo, number, label))); }
public Task <Issue> RemoveAssignees(string owner, string name, int number, AssigneesUpdate assignees) { Ensure.ArgumentNotNullOrEmptyString(owner, nameof(owner)); Ensure.ArgumentNotNullOrEmptyString(name, nameof(name)); Ensure.ArgumentNotNull(assignees, nameof(assignees)); return(ApiConnection.Delete <Issue>(ApiUrls.IssueAssignees(owner, name, number), assignees)); }
public Task Delete(string owner, string name, int number, PullRequestReviewRequest users) { Ensure.ArgumentNotNullOrEmptyString(owner, nameof(owner)); Ensure.ArgumentNotNullOrEmptyString(name, nameof(name)); Ensure.ArgumentNotNull(users, nameof(users)); return(ApiConnection.Delete(ApiUrls.PullRequestReviewRequests(owner, name, number), users, AcceptHeaders.PullRequestReviewsApiPreview)); }
/// <summary> /// Deletes a reference for a given repository by reference name /// </summary> /// <remarks> /// http://developer.github.com/v3/git/refs/#delete-a-reference /// </remarks> /// <param name="owner">The owner of the repository</param> /// <param name="name">The name of the repository</param> /// <param name="reference">The name of the reference</param> /// <returns></returns> public Task Delete(string owner, string name, string reference) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); Ensure.ArgumentNotNullOrEmptyString(name, "name"); Ensure.ArgumentNotNullOrEmptyString(reference, "reference"); return(ApiConnection.Delete(ApiUrls.Reference(owner, name, reference))); }
/// <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> public Task DeleteAsset(string owner, string name, int id) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); Ensure.ArgumentNotNullOrEmptyString(name, "name"); var endpoint = ApiUrls.Asset(owner, name, id); return ApiConnection.Delete(endpoint); }
public Task DeleteArchive(string org, int id) { Ensure.ArgumentNotNullOrEmptyString(org, nameof(org)); var endpoint = ApiUrls.EnterpriseMigrationArchive(org, id); return(ApiConnection.Delete(endpoint, new object(), AcceptHeaders.MigrationsApiPreview)); }
/// <summary> /// Deletes a collaborator from the repo /// </summary> /// <remarks> /// See the <a href="http://developer.github.com/v3/repos/collaborators/#remove-collaborator">API documentation</a> for more information. /// </remarks> /// <exception cref="ApiException">Thrown when a general API error occurs.</exception> /// <returns><see cref="Task"/></returns> public Task Delete(string owner, string repo, string user) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); Ensure.ArgumentNotNullOrEmptyString(repo, "repo"); Ensure.ArgumentNotNullOrEmptyString(user, "user"); return(ApiConnection.Delete(ApiUrls.RepoCollaborator(owner, repo, user))); }
/// <summary> /// Revokes a single OAuth token for an OAuth application. /// </summary> /// <remarks> /// This method requires authentication. /// See the <a href="https://developer.github.com/v3/oauth_authorizations/#revoke-an-authorization-for-an-application">API documentation for more information.</a> /// </remarks> /// <param name="clientId">ClientID of the OAuth application for the token</param> /// <param name="accessToken">The OAuth token to revoke</param> /// <returns>A <see cref="Task"/> for the request's execution.</returns> public Task RevokeApplicationAuthentication(string clientId, string accessToken) { Ensure.ArgumentNotNullOrEmptyString(clientId, "clientId"); Ensure.ArgumentNotNullOrEmptyString(accessToken, "accessToken"); return(ApiConnection.Delete( ApiUrls.ApplicationAuthorization(clientId, accessToken))); }
/// <summary> /// Remove user restrictions for the specified branch (applies only to Organization owned repositories) /// </summary> /// <remarks> /// See the <a href="https://developer.github.com/v3/repos/branches/#remove-user-restrictions-of-protected-branch">API documentation</a> for more details /// </remarks> /// <param name="owner">The owner of the repository</param> /// <param name="name">The name of the repository</param> /// <param name="branch">The name of the branch</param> /// <param name="users">List of users with push access to remove</param> public Task <IReadOnlyList <User> > DeleteProtectedBranchUserRestrictions(string owner, string name, string branch, BranchProtectionUserCollection users) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); Ensure.ArgumentNotNullOrEmptyString(name, "name"); Ensure.ArgumentNotNullOrEmptyString(branch, "branch"); Ensure.ArgumentNotNull(users, "users"); return(ApiConnection.Delete <IReadOnlyList <User> >(ApiUrls.RepoRestrictionsUsers(owner, name, branch), users, AcceptHeaders.ProtectedBranchesApiPreview)); }
/// <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> public Task Delete(string owner, string name, int id) { Ensure.ArgumentNotNullOrEmptyString(owner, nameof(owner)); Ensure.ArgumentNotNullOrEmptyString(name, nameof(name)); var endpoint = ApiUrls.Releases(owner, name, id); return(ApiConnection.Delete(endpoint)); }
/// <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="number">The id of the release to delete</param> /// <exception cref="ApiException">Thrown when a general API error occurs.</exception> /// <returns></returns> public Task DeleteRelease(string owner, string name, int number) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); Ensure.ArgumentNotNullOrEmptyString(name, "name"); var endpoint = ApiUrls.Releases(owner, name, number); return(ApiConnection.Delete(endpoint)); }
/// <summary> /// Remove a repository from the team /// </summary> /// <exception cref="ApiException">Thrown when a general API error occurs.</exception> /// <returns></returns> public Task RemoveRepository(int id, string organization, string repoName) { Ensure.ArgumentNotNullOrEmptyString(organization, "organization"); Ensure.ArgumentNotNullOrEmptyString(repoName, "repoName"); var endpoint = ApiUrls.TeamRepository(id, organization, repoName); return(ApiConnection.Delete(endpoint)); }
public Task Delete(string owner, string name, int number, long reviewId) { Ensure.ArgumentNotNullOrEmptyString(owner, nameof(owner)); Ensure.ArgumentNotNullOrEmptyString(name, nameof(name)); var endpoint = ApiUrls.PullRequestReview(owner, name, number, reviewId); return(ApiConnection.Delete(endpoint)); }
/// <summary> /// Remove the required status checks context for the specified branch /// </summary> /// <remarks> /// See the <a href="https://developer.github.com/v3/repos/branches/#remove-required-status-checks-contexts-of-protected-branch">API documentation</a> for more details /// </remarks> /// <param name="owner">The owner of the repository</param> /// <param name="name">The name of the repository</param> /// <param name="branch">The name of the branch</param> /// <param name="contexts">The contexts to remove</param> public Task <IReadOnlyList <string> > DeleteRequiredStatusChecksContexts(string owner, string name, string branch, IReadOnlyList <string> contexts) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); Ensure.ArgumentNotNullOrEmptyString(name, "name"); Ensure.ArgumentNotNullOrEmptyString(branch, "branch"); Ensure.ArgumentNotNull(contexts, "contexts"); return(ApiConnection.Delete <IReadOnlyList <string> >(ApiUrls.RepoRequiredStatusChecksContexts(owner, name, branch), contexts, AcceptHeaders.ProtectedBranchesApiPreview)); }
/// <summary> /// Creates a commit that deletes a file in a repository. /// </summary> /// <param name="repositoryId">The Id of the repository</param> /// <param name="path">The path to the file</param> /// <param name="request">Information about the file to delete</param> public Task DeleteFile(int repositoryId, string path, DeleteFileRequest request) { Ensure.ArgumentNotNullOrEmptyString(path, "path"); Ensure.ArgumentNotNull(request, "request"); var deleteUrl = ApiUrls.RepositoryContent(repositoryId, path); return(ApiConnection.Delete(deleteUrl, request)); }
/// <summary> /// Remove team restrictions for the specified branch (applies only to Organization owned repositories) /// </summary> /// <remarks> /// See the <a href="https://developer.github.com/v3/repos/branches/#remove-team-restrictions-of-protected-branch">API documentation</a> for more details /// </remarks> /// <param name="owner">The owner of the repository</param> /// <param name="name">The name of the repository</param> /// <param name="branch">The name of the branch</param> /// <param name="teams">List of teams to remove</param> public Task <IReadOnlyList <Team> > DeleteProtectedBranchTeamRestrictions(string owner, string name, string branch, BranchProtectionTeamCollection teams) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); Ensure.ArgumentNotNullOrEmptyString(name, "name"); Ensure.ArgumentNotNullOrEmptyString(branch, "branch"); Ensure.ArgumentNotNull(teams, "teams"); return(ApiConnection.Delete <IReadOnlyList <Team> >(ApiUrls.RepoRestrictionsTeams(owner, name, branch), teams, AcceptHeaders.ProtectedBranchesApiPreview)); }
/// <summary> /// Deletes the specified repository. /// </summary> /// <remarks> /// See the <a href="http://developer.github.com/v3/repos/#delete-a-repository">API documentation</a> for more information. /// Deleting a repository requires admin access. If OAuth is used, the `delete_repo` scope is required. /// </remarks> /// <param name="owner">The owner of the repository</param> /// <param name="name">The name of the repository</param> /// <exception cref="ApiException">Thrown when a general API error occurs.</exception> public Task Delete(string owner, string name) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); Ensure.ArgumentNotNullOrEmptyString(name, "name"); var endpoint = "repos/{0}/{1}".FormatUri(owner, name); return(ApiConnection.Delete(endpoint)); }
public Task UnlockRepository(string org, int id, string repo) { Ensure.ArgumentNotNullOrEmptyString(org, nameof(org)); Ensure.ArgumentNotNullOrEmptyString(repo, nameof(repo)); var endpoint = ApiUrls.EnterpriseMigrationUnlockRepository(org, id, repo); return(ApiConnection.Delete(endpoint, new object(), AcceptHeaders.MigrationsApiPreview)); }
/// <summary> /// Deletes email addresses for the authenticated user. /// </summary> /// <remarks> /// http://developer.github.com/v3/users/emails/#delete-email-addresses /// </remarks> /// <param name="emailAddresses">The email addresses to delete.</param> /// <returns>Returns the added <see cref="EmailAddress"/>es.</returns> public Task Delete(params string[] emailAddresses) { Ensure.ArgumentNotNull(emailAddresses, "emailAddresses"); if (emailAddresses.Any(string.IsNullOrWhiteSpace)) { throw new ArgumentException("Cannot contain null, empty or whitespace values", "emailAddresses"); } return(ApiConnection.Delete(ApiUrls.Emails(), emailAddresses)); }
/// <summary> /// Deletes a collaborator from the repo /// </summary> /// <remarks> /// See the <a href="http://developer.github.com/v3/repos/collaborators/#remove-collaborator">API documentation</a> for more information. /// </remarks> /// <exception cref="ApiException">Thrown when a general API error occurs.</exception> /// <returns><see cref="Task"/></returns> public Task Delete(string owner, string repo, string user) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); Ensure.ArgumentNotNullOrEmptyString(repo, "repo"); Ensure.ArgumentNotNullOrEmptyString(user, "user"); var endpoint = "repos/{0}/{1}/collaborators/{2}".FormatUri(owner, repo, user); return(ApiConnection.Delete(endpoint)); }
/// <summary> /// Creates a commit that deletes a file in a repository. /// </summary> /// <param name="owner">The owner of the repository</param> /// <param name="name">The name of the repository</param> /// <param name="path">The path to the file</param> /// <param name="request">Information about the file to delete</param> public Task DeleteFile(string owner, string name, string path, DeleteFileRequest request) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); Ensure.ArgumentNotNullOrEmptyString(name, "name"); Ensure.ArgumentNotNullOrEmptyString(path, "path"); Ensure.ArgumentNotNull(request, "request"); var deleteUrl = ApiUrls.RepositoryContent(owner, name, path); return(ApiConnection.Delete(deleteUrl, request)); }