diff --git a/source/Octopus.Client.Tests/PublicSurfaceAreaFixture.ThePublicSurfaceAreaShouldNotRegress..NETCore.approved.txt b/source/Octopus.Client.Tests/PublicSurfaceAreaFixture.ThePublicSurfaceAreaShouldNotRegress..NETCore.approved.txt index a24b03229..3c1302395 100644 --- a/source/Octopus.Client.Tests/PublicSurfaceAreaFixture.ThePublicSurfaceAreaShouldNotRegress..NETCore.approved.txt +++ b/source/Octopus.Client.Tests/PublicSurfaceAreaFixture.ThePublicSurfaceAreaShouldNotRegress..NETCore.approved.txt @@ -1344,6 +1344,7 @@ Octopus.Client.Model { .ctor() Octopus.Client.Model.ReferenceCollection IncludedEnvironmentIds { get; set; } + Octopus.Client.Model.ReferenceCollection IncludedProjectGroupIds { get; set; } Octopus.Client.Model.ReferenceCollection IncludedProjectIds { get; set; } Octopus.Client.Model.ReferenceCollection IncludedTenantIds { get; set; } Octopus.Client.Model.ReferenceCollection IncludedTenantTags { get; set; } diff --git a/source/Octopus.Client.Tests/PublicSurfaceAreaFixture.ThePublicSurfaceAreaShouldNotRegress..NETFramework.approved.txt b/source/Octopus.Client.Tests/PublicSurfaceAreaFixture.ThePublicSurfaceAreaShouldNotRegress..NETFramework.approved.txt index f05b206fe..ae853ff29 100644 --- a/source/Octopus.Client.Tests/PublicSurfaceAreaFixture.ThePublicSurfaceAreaShouldNotRegress..NETFramework.approved.txt +++ b/source/Octopus.Client.Tests/PublicSurfaceAreaFixture.ThePublicSurfaceAreaShouldNotRegress..NETFramework.approved.txt @@ -1814,6 +1814,7 @@ Octopus.Client.Model { .ctor() Octopus.Client.Model.ReferenceCollection IncludedEnvironmentIds { get; set; } + Octopus.Client.Model.ReferenceCollection IncludedProjectGroupIds { get; set; } Octopus.Client.Model.ReferenceCollection IncludedProjectIds { get; set; } Octopus.Client.Model.ReferenceCollection IncludedTenantIds { get; set; } Octopus.Client.Model.ReferenceCollection IncludedTenantTags { get; set; } diff --git a/source/Octopus.Client/Model/DashboardConfigurationResource.cs b/source/Octopus.Client/Model/DashboardConfigurationResource.cs index 1f8ff1e05..7a52fe9e2 100644 --- a/source/Octopus.Client/Model/DashboardConfigurationResource.cs +++ b/source/Octopus.Client/Model/DashboardConfigurationResource.cs @@ -7,12 +7,16 @@ public class DashboardConfigurationResource : Resource { public DashboardConfigurationResource() { + IncludedProjectGroupIds = new ReferenceCollection(); IncludedProjectIds = new ReferenceCollection(); IncludedEnvironmentIds = new ReferenceCollection(); IncludedTenantIds = new ReferenceCollection(); IncludedTenantTags = new ReferenceCollection(); } + [Writeable] + public ReferenceCollection IncludedProjectGroupIds { get; set; } + [Writeable] public ReferenceCollection IncludedProjectIds { get; set; }