/// <summary> /// Edits a hook for a repository /// </summary> /// <remarks>See <a href="http://developer.github.com/v3/repos/hooks/#edit-a-hook">API documentation</a> for more information.</remarks> /// <returns></returns> public Task<RepositoryHook> Edit(string owner, string repositoryName, int hookId, EditRepositoryHook hook) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); Ensure.ArgumentNotNullOrEmptyString(repositoryName, "repositoryName"); Ensure.ArgumentNotNull(hook, "hook"); return ApiConnection.Patch<RepositoryHook>(ApiUrls.RepositoryHookById(owner, repositoryName, hookId), hook); }
/// <summary> /// Edits a hook for a repository /// </summary> /// <param name="owner">The repository's owner</param> /// <param name="name">The repository's name</param> /// <param name="hookId">The repository's hook id</param> /// <param name="hook">The requested changes to an edit repository hook</param> /// <remarks>See <a href="http://developer.github.com/v3/repos/hooks/#edit-a-hook">API documentation</a> for more information.</remarks> public Task <RepositoryHook> Edit(string owner, string name, int hookId, EditRepositoryHook hook) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); Ensure.ArgumentNotNullOrEmptyString(name, "name"); Ensure.ArgumentNotNull(hook, "hook"); return(ApiConnection.Patch <RepositoryHook>(ApiUrls.RepositoryHookById(owner, name, hookId), hook)); }
/// <summary> /// Edits a hook for a repository /// </summary> /// <param name="repositoryId">The Id of the repository</param> /// <param name="hookId">The repository's hook id</param> /// <param name="hook">The requested changes to an edit repository hook</param> /// <remarks>See <a href="http://developer.github.com/v3/repos/hooks/#edit-a-hook">API documentation</a> for more information.</remarks> public Task<RepositoryHook> Edit(int repositoryId, int hookId, EditRepositoryHook hook) { Ensure.ArgumentNotNull(hook, "hook"); return ApiConnection.Patch<RepositoryHook>(ApiUrls.RepositoryHookById(repositoryId, hookId), hook); }
/// <summary> /// Edits a hook for a repository /// </summary> /// <param name="repositoryId">The Id of the repository</param> /// <param name="hookId">The repository's hook id</param> /// <param name="hook">The requested changes to an edit repository hook</param> /// <remarks>See <a href="http://developer.github.com/v3/repos/hooks/#edit-a-hook">API documentation</a> for more information.</remarks> public Task <RepositoryHook> Edit(long repositoryId, int hookId, EditRepositoryHook hook) { Ensure.ArgumentNotNull(hook, "hook"); return(ApiConnection.Patch <RepositoryHook>(ApiUrls.RepositoryHookById(repositoryId, hookId), hook)); }