diff --git a/source/Octopus.Client.Tests/PublicSurfaceAreaFixture.ThePublicSurfaceAreaShouldNotRegress..NETCore.approved.txt b/source/Octopus.Client.Tests/PublicSurfaceAreaFixture.ThePublicSurfaceAreaShouldNotRegress..NETCore.approved.txt index b6b1c5617..06d437270 100644 --- a/source/Octopus.Client.Tests/PublicSurfaceAreaFixture.ThePublicSurfaceAreaShouldNotRegress..NETCore.approved.txt +++ b/source/Octopus.Client.Tests/PublicSurfaceAreaFixture.ThePublicSurfaceAreaShouldNotRegress..NETCore.approved.txt @@ -4691,6 +4691,7 @@ Octopus.Client.Repositories.Async Octopus.Client.Repositories.Async.IGet Octopus.Client.Repositories.Async.ICreate Octopus.Client.Repositories.Async.IPaginate + Octopus.Client.Repositories.Async.IDelete { Task> FindAll(String[], String[], Int32, Nullable) Task> FindBy(String[], String[], Int32, Nullable) diff --git a/source/Octopus.Client.Tests/PublicSurfaceAreaFixture.ThePublicSurfaceAreaShouldNotRegress..NETFramework.approved.txt b/source/Octopus.Client.Tests/PublicSurfaceAreaFixture.ThePublicSurfaceAreaShouldNotRegress..NETFramework.approved.txt index c9245d39a..0e661c3fc 100644 --- a/source/Octopus.Client.Tests/PublicSurfaceAreaFixture.ThePublicSurfaceAreaShouldNotRegress..NETFramework.approved.txt +++ b/source/Octopus.Client.Tests/PublicSurfaceAreaFixture.ThePublicSurfaceAreaShouldNotRegress..NETFramework.approved.txt @@ -5205,6 +5205,7 @@ Octopus.Client.Repositories Octopus.Client.Repositories.IGet Octopus.Client.Repositories.ICreate Octopus.Client.Repositories.IPaginate + Octopus.Client.Repositories.IDelete { Octopus.Client.Model.ResourceCollection FindAll(String[], String[], Int32, Nullable) Octopus.Client.Model.ResourceCollection FindBy(String[], String[], Int32, Nullable) @@ -5592,7 +5593,7 @@ Octopus.Client.Repositories .ctor(Octopus.Client.IOctopusClient) Octopus.Client.Model.PerformanceConfigurationResource Get() Octopus.Client.Model.PerformanceConfigurationResource Modify(Octopus.Client.Model.PerformanceConfigurationResource) -} + } } Octopus.Client.Repositories.Async { @@ -5736,6 +5737,7 @@ Octopus.Client.Repositories.Async Octopus.Client.Repositories.Async.IGet Octopus.Client.Repositories.Async.ICreate Octopus.Client.Repositories.Async.IPaginate + Octopus.Client.Repositories.Async.IDelete { Task> FindAll(String[], String[], Int32, Nullable) Task> FindBy(String[], String[], Int32, Nullable) diff --git a/source/Octopus.Client/Repositories/Async/DeploymentRepository.cs b/source/Octopus.Client/Repositories/Async/DeploymentRepository.cs index 2fd829336..909498684 100644 --- a/source/Octopus.Client/Repositories/Async/DeploymentRepository.cs +++ b/source/Octopus.Client/Repositories/Async/DeploymentRepository.cs @@ -4,7 +4,7 @@ namespace Octopus.Client.Repositories.Async { - public interface IDeploymentRepository : IGet, ICreate, IPaginate + public interface IDeploymentRepository : IGet, ICreate, IPaginate, IDelete { Task GetTask(DeploymentResource resource); diff --git a/source/Octopus.Client/Repositories/DeploymentRepository.cs b/source/Octopus.Client/Repositories/DeploymentRepository.cs index 91a0faa8c..63b313fca 100644 --- a/source/Octopus.Client/Repositories/DeploymentRepository.cs +++ b/source/Octopus.Client/Repositories/DeploymentRepository.cs @@ -3,7 +3,7 @@ namespace Octopus.Client.Repositories { - public interface IDeploymentRepository : IGet, ICreate, IPaginate + public interface IDeploymentRepository : IGet, ICreate, IPaginate, IDelete { TaskResource GetTask(DeploymentResource resource);