Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Nelson/apikeysenabled #730

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion source/Octopus.Client.Tests/Octopus.Client.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.3.0" />
<PackageReference Include="NUnit" Version="3.13.3" />
<PackageReference Include="NUnit3TestAdapter" Version="4.2.1" />
<PackageReference Include="NUnit3TestAdapter" Version="4.4.0" />
<PackageReference Include="TeamCity.VSTest.TestAdapter" Version="1.0.15" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="Assent" Version="1.5.0" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1955,6 +1955,7 @@ Octopus.Client.Model
Boolean RememberMeEnabled { get; set; }
Int32 SessionTimeoutInSeconds { get; set; }
String[] TrustedRedirectUrls { get; set; }
Boolean UserApiKeysEnabled { get; set; }
}
abstract class AutoDeploy
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1972,6 +1972,7 @@ Octopus.Client.Model
Boolean RememberMeEnabled { get; set; }
Int32 SessionTimeoutInSeconds { get; set; }
String[] TrustedRedirectUrls { get; set; }
Boolean UserApiKeysEnabled { get; set; }
}
abstract class AutoDeploy
{
Expand Down Expand Up @@ -2788,6 +2789,7 @@ Octopus.Client.Model
Octopus.Client.Model.GuidedFailureMode DefaultGuidedFailureMode { get; set; }
Boolean DefaultToSkipIfAlreadyInstalled { get; set; }
String DeploymentChangesTemplate { get; set; }
Boolean ForcePackageDownload { get; set; }
String ProjectId { get; set; }
String ReleaseNotesTemplate { get; set; }
String SpaceId { get; set; }
Expand Down Expand Up @@ -4350,6 +4352,7 @@ Octopus.Client.Model
String DeploymentProcessId { get; set; }
String Description { get; set; }
Boolean DiscreteChannelRelease { get; set; }
Boolean ForcePackageDownload { get; set; }
Octopus.Client.Model.IconResource Icon { get; set; }
List<String> IncludedLibraryVariableSetIds { get; set; }
Boolean IsDisabled { get; set; }
Expand Down Expand Up @@ -4708,6 +4711,7 @@ Octopus.Client.Model
String Description { get; set; }
Octopus.Client.Model.ReferenceCollection Environments { get; }
Octopus.Client.Model.RunbookEnvironmentScope EnvironmentScope { get; set; }
Boolean ForcePackageDownload { get; set; }
Octopus.Client.Model.TenantedDeploymentMode MultiTenancyMode { get; set; }
String Name { get; set; }
String ProjectId { get; set; }
Expand Down Expand Up @@ -5726,24 +5730,6 @@ Octopus.Client.Model
Octopus.Client.Model.DeploymentActionPackageResource DonorPackage { get; set; }
String Template { get; set; }
}
class WebPortalConfigResource
Octopus.Client.Extensibility.IResource
{
.ctor()
String Id { get; set; }
Octopus.Client.Extensibility.LinkCollection Links { get; set; }
Octopus.Client.Model.WebPortalSecurityResource Security { get; set; }
}
class WebPortalSecurityResource
{
.ctor()
Boolean ContentSecurityPolicyEnabled { get; set; }
String CorsWhitelist { get; set; }
Boolean HttpStrictTransportSecurityEnabled { get; set; }
Int64 HttpStrictTransportSecurityMaxAge { get; set; }
String ReferrerPolicy { get; set; }
Octopus.Client.Model.XOptionsResource XOptions { get; set; }
}
class WorkerPoolResource
Octopus.Client.Extensibility.IResource
Octopus.Client.Model.IAuditedResource
Expand Down Expand Up @@ -5805,14 +5791,6 @@ Octopus.Client.Model
String Thumbprint { get; set; }
Int32 Version { get; set; }
}
class XOptionsResource
{
static System.String XFrameAllowFromDescription
static System.String XFrameOptionsDescription
.ctor()
String XFrameOptionAllowFrom { get; set; }
String XFrameOptions { get; set; }
}
}
Octopus.Client.Model.Accounts
{
Expand Down Expand Up @@ -7055,6 +7033,41 @@ Octopus.Client.Model.Versioning
Object GetFormat(Type)
}
}
Octopus.Client.Model.WebPortalConfiguration
{
class WebPortalConfigResource
Octopus.Client.Extensibility.IResource
{
.ctor()
String Id { get; set; }
Octopus.Client.Extensibility.LinkCollection Links { get; set; }
Octopus.Client.Model.WebPortalConfiguration.WebPortalLoggingResource Logging { get; set; }
Octopus.Client.Model.WebPortalConfiguration.WebPortalSecurityResource Security { get; set; }
}
class WebPortalLoggingResource
{
.ctor()
String[] TrustedProxies { get; set; }
}
class WebPortalSecurityResource
{
.ctor()
Boolean ContentSecurityPolicyEnabled { get; set; }
String CorsWhitelist { get; set; }
Boolean HttpStrictTransportSecurityEnabled { get; set; }
Int64 HttpStrictTransportSecurityMaxAge { get; set; }
String ReferrerPolicy { get; set; }
Octopus.Client.Model.WebPortalConfiguration.XOptionsResource XOptions { get; set; }
}
class XOptionsResource
{
static System.String XFrameAllowFromDescription
static System.String XFrameOptionsDescription
.ctor()
String XFrameOptionAllowFrom { get; set; }
String XFrameOptions { get; set; }
}
}
Octopus.Client.Operations
{
class InvalidRegistrationArgumentsException
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,8 @@ public AuthenticationConfigResource()

[Writeable]
public bool RememberMeEnabled { get; set; }

[Writeable]
public bool UserApiKeysEnabled { get; set; }
}
}