Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
slewis74 committed May 22, 2019
2 parents 2a6e62b + 5744f03 commit f9c23ca
Show file tree
Hide file tree
Showing 26 changed files with 1,114 additions and 24 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,7 @@ Octopus.Client
Octopus.Client.Repositories.Async.ICertificateConfigurationRepository CertificateConfiguration { get; }
Octopus.Client.Repositories.Async.IConfigurationRepository Configuration { get; }
Octopus.Client.Repositories.Async.IFeaturesConfigurationRepository FeaturesConfiguration { get; }
Octopus.Client.Repositories.Async.ILicensesRepository Licenses { get; }
Octopus.Client.Repositories.Async.IMigrationRepository Migrations { get; }
Octopus.Client.Repositories.Async.IOctopusServerNodeRepository OctopusServerNodes { get; }
Octopus.Client.Repositories.Async.IPerformanceConfigurationRepository PerformanceConfiguration { get; }
Expand All @@ -229,6 +230,7 @@ Octopus.Client
Octopus.Client.Repositories.ICommunityActionTemplateRepository CommunityActionTemplates { get; }
Octopus.Client.Repositories.IConfigurationRepository Configuration { get; }
Octopus.Client.Repositories.IFeaturesConfigurationRepository FeaturesConfiguration { get; }
Octopus.Client.Repositories.ILicensesRepository Licenses { get; }
Octopus.Client.Repositories.IMigrationRepository Migrations { get; }
Octopus.Client.Repositories.IOctopusServerNodeRepository OctopusServerNodes { get; }
Octopus.Client.Repositories.IPerformanceConfigurationRepository PerformanceConfiguration { get; }
Expand Down Expand Up @@ -303,6 +305,7 @@ Octopus.Client
Octopus.Client.Repositories.Async.IFeedRepository Feeds { get; }
Octopus.Client.Repositories.Async.IInterruptionRepository Interruptions { get; }
Octopus.Client.Repositories.Async.ILibraryVariableSetRepository LibraryVariableSets { get; }
Octopus.Client.Repositories.Async.ILicensesRepository Licenses { get; }
Octopus.Client.Repositories.Async.ILifecyclesRepository Lifecycles { get; }
Octopus.Client.Repositories.Async.IMachinePolicyRepository MachinePolicies { get; }
Octopus.Client.Repositories.Async.IMachineRoleRepository MachineRoles { get; }
Expand Down Expand Up @@ -426,6 +429,7 @@ Octopus.Client
Octopus.Client.Repositories.IFeedRepository Feeds { get; }
Octopus.Client.Repositories.IInterruptionRepository Interruptions { get; }
Octopus.Client.Repositories.ILibraryVariableSetRepository LibraryVariableSets { get; }
Octopus.Client.Repositories.ILicensesRepository Licenses { get; }
Octopus.Client.Repositories.ILifecyclesRepository Lifecycles { get; }
Octopus.Client.Repositories.IMachinePolicyRepository MachinePolicies { get; }
Octopus.Client.Repositories.IMachineRoleRepository MachineRoles { get; }
Expand Down Expand Up @@ -687,7 +691,9 @@ Octopus.Client.Editors
Octopus.Client.Editors.LibraryVariableSetEditor CreateOrModify(String)
Octopus.Client.Editors.LibraryVariableSetEditor CreateOrModify(String, String)
Octopus.Client.Editors.LibraryVariableSetEditor Customize(Action<LibraryVariableSetResource>)
Octopus.Client.Editors.LibraryVariableSetEditor Load(String)
Octopus.Client.Editors.LibraryVariableSetEditor Save()
Octopus.Client.Model.LibraryVariableSetUsageResource Usages()
}
class LifecycleEditor
Octopus.Client.Editors.IResourceEditor<LifecycleResource, LifecycleEditor>
Expand Down Expand Up @@ -1203,6 +1209,12 @@ Octopus.Client.Editors.Async
}
Octopus.Client.Exceptions
{
class DefaultSpaceNotFoundException
ISerializable
Exception
{
.ctor(Octopus.Client.Extensibility.IHaveSpaceResource)
}
class OctopusDeserializationException
ISerializable
Octopus.Client.Exceptions.OctopusException
Expand Down Expand Up @@ -1277,6 +1289,12 @@ Octopus.Client.Exceptions
ReadOnlyCollection<String> Errors { get; }
Octopus.Client.Exceptions.TDetails DetailsAs()
}
class ResourceSpaceDoesNotMatchRepositorySpaceException
ISerializable
Exception
{
.ctor(Octopus.Client.Extensibility.IHaveSpaceResource, Octopus.Client.Model.SpaceResource)
}
class UnsupportedApiVersionException
ISerializable
Octopus.Client.Exceptions.OctopusException
Expand Down Expand Up @@ -2663,6 +2681,11 @@ Octopus.Client.Model
IncludeCheckedMachines = 1
}
HealthCheckType
{
RunScript = 0
OnlyConnectivity = 1
}
HealthCheckType
{
FullHealthCheck = 0
ConnectionTest = 1
Expand Down Expand Up @@ -2764,6 +2787,21 @@ Octopus.Client.Model
List<ActionTemplateParameterResource> Templates { get; set; }
Dictionary<String, PropertyValueResource> Variables { get; set; }
}
class LibraryVariableSetProjectUsage
{
.ctor()
Boolean IsCurrentlyBeingUsedInProject { get; set; }
String ProjectId { get; set; }
String ProjectName { get; set; }
String ProjectSlug { get; set; }
ICollection<LibraryVariableSetReleaseUsageEntry> Releases { get; set; }
}
class LibraryVariableSetReleaseUsageEntry
{
.ctor()
String ReleaseId { get; set; }
String ReleaseVersion { get; set; }
}
class LibraryVariableSetResource
Octopus.Client.Extensibility.IResource
Octopus.Client.Model.IAuditedResource
Expand Down Expand Up @@ -2792,6 +2830,70 @@ Octopus.Client.Model
Octopus.Client.Model.LibraryVariableSetResource AddOrUpdateVariableTemplate(String, String, IDictionary<String, String>, String, String)
Octopus.Client.Model.LibraryVariableSetResource Clear()
}
class LibraryVariableSetUsageResource
Octopus.Client.Extensibility.IResource
Octopus.Client.Model.IAuditedResource
Octopus.Client.Model.Resource
{
.ctor()
Int32 CountOfProjectsUserCannotSee { get; set; }
Int32 CountOfReleasesUserCannotSee { get; set; }
ICollection<LibraryVariableSetProjectUsage> Projects { get; set; }
}
abstract class LicenseKinds
{
static System.String CommercialLicense
static System.String CommunityEdition
static System.String Trial
static System.String Unlicensed
}
class LicenseLimitStatusResource
{
.ctor()
Int32 CurrentUsage { get; set; }
String Disposition { get; set; }
Int32 EffectiveLimit { get; set; }
String EffectiveLimitDescription { get; set; }
Boolean IsUnlimited { get; set; }
String Message { get; set; }
String Name { get; set; }
}
abstract class LicenseMessageDispositions
{
static System.String Error
static System.String Information
static System.String Warning
}
class LicenseMessageResource
{
.ctor()
String Disposition { get; set; }
String Message { get; set; }
}
class LicenseResource
Octopus.Client.Extensibility.IResource
Octopus.Client.Model.IAuditedResource
Octopus.Client.Model.Resource
{
.ctor()
String LicenseText { get; set; }
String SerialNumber { get; set; }
}
class LicenseStatusResource
Octopus.Client.Extensibility.IResource
Octopus.Client.Model.IAuditedResource
Octopus.Client.Model.Resource
{
.ctor()
String ComplianceSummary { get; set; }
Int32 DaysToEffectiveExpiryDate { get; set; }
DateTime EffectiveExpiryDate { get; set; }
String HostingEnvironment { get; set; }
Boolean IsCompliant { get; set; }
String LicenseKind { get; set; }
Octopus.Client.Model.LicenseLimitStatusResource[] Limits { get; set; }
Octopus.Client.Model.LicenseMessageResource[] Messages { get; set; }
}
class LifecycleProgressionResource
Octopus.Client.Extensibility.IResource
Octopus.Client.Model.IAuditedResource
Expand Down Expand Up @@ -2893,9 +2995,12 @@ Octopus.Client.Model
{
.ctor()
.ctor(Octopus.Client.Model.MachineScriptPolicy, Octopus.Client.Model.MachineScriptPolicy)
Octopus.Client.Model.MachineScriptPolicy BashHealthCheckPolicy { get; set; }
TimeSpan HealthCheckInterval { get; set; }
Octopus.Client.Model.MachineScriptPolicy SshEndpointHealthCheckPolicy { get; set; }
Octopus.Client.Model.MachineScriptPolicy TentacleEndpointHealthCheckPolicy { get; set; }
Octopus.Client.Model.HealthCheckType HealthCheckType { get; set; }
Octopus.Client.Model.MachineScriptPolicy PowerShellHealthCheckPolicy { get; set; }
Octopus.Client.Model.MachineScriptPolicy SshEndpointHealthCheckPolicy { get; }
Octopus.Client.Model.MachineScriptPolicy TentacleEndpointHealthCheckPolicy { get; }
}
MachineModelHealthStatus
{
Expand Down Expand Up @@ -5908,6 +6013,7 @@ Octopus.Client.Repositories
void TakeResponsibility(Octopus.Client.Model.InterruptionResource)
}
interface ILibraryVariableSetRepository
Octopus.Client.Repositories.IResourceRepository
Octopus.Client.Repositories.ICreate<LibraryVariableSetResource>
Octopus.Client.Repositories.IGet<LibraryVariableSetResource>
Octopus.Client.Repositories.IModify<LibraryVariableSetResource>
Expand All @@ -5918,6 +6024,12 @@ Octopus.Client.Repositories
Octopus.Client.Editors.LibraryVariableSetEditor CreateOrModify(String)
Octopus.Client.Editors.LibraryVariableSetEditor CreateOrModify(String, String)
}
interface ILicensesRepository
{
Octopus.Client.Model.LicenseResource GetCurrent()
Octopus.Client.Model.LicenseStatusResource GetStatus()
Octopus.Client.Model.LicenseResource UpdateCurrent(Octopus.Client.Model.LicenseResource)
}
interface ILifecyclesRepository
Octopus.Client.Repositories.IGet<LifecycleResource>
Octopus.Client.Repositories.ICreate<LifecycleResource>
Expand Down Expand Up @@ -6094,7 +6206,7 @@ Octopus.Client.Repositories
}
interface IServerStatusRepository
{
Octopus.Client.Model.ServerStatusHealthResource GetServerHealth(Octopus.Client.Model.ServerStatusResource)
Octopus.Client.Model.ServerStatusHealthResource GetServerHealth()
Octopus.Client.Model.ServerStatusResource GetServerStatus()
Octopus.Client.Model.SystemInfoResource GetSystemInfo(Octopus.Client.Model.ServerStatusResource)
}
Expand Down Expand Up @@ -6516,6 +6628,12 @@ Octopus.Client.Repositories.Async
Task<LibraryVariableSetEditor> CreateOrModify(String)
Task<LibraryVariableSetEditor> CreateOrModify(String, String)
}
interface ILicensesRepository
{
Task<LicenseResource> GetCurrent()
Task<LicenseStatusResource> GetStatus()
Task<LicenseResource> UpdateCurrent(Octopus.Client.Model.LicenseResource)
}
interface ILifecyclesRepository
Octopus.Client.Repositories.Async.IGet<LifecycleResource>
Octopus.Client.Repositories.Async.ICreate<LifecycleResource>
Expand Down Expand Up @@ -6692,7 +6810,7 @@ Octopus.Client.Repositories.Async
}
interface IServerStatusRepository
{
Task<ServerStatusHealthResource> GetServerHealth(Octopus.Client.Model.ServerStatusResource)
Task<ServerStatusHealthResource> GetServerHealth()
Task<ServerStatusResource> GetServerStatus()
Task<SystemInfoResource> GetSystemInfo(Octopus.Client.Model.ServerStatusResource)
}
Expand Down Expand Up @@ -6894,6 +7012,11 @@ Octopus.Client.Serialization
{
.ctor()
}
class DateConverter
IsoDateTimeConverter
{
.ctor()
}
class EndpointConverter
Octopus.Client.Serialization.InheritedClassConverter<EndpointResource, CommunicationStyle>
{
Expand Down
Loading

0 comments on commit f9c23ca

Please sign in to comment.