Skip to content

Commit

Permalink
Merge pull request #460 from OctopusDeploy/nj/os-details
Browse files Browse the repository at this point in the history
OS details on machines
  • Loading branch information
NickJosevski committed Sep 4, 2019
2 parents ace5e29 + fa4ad81 commit 9fca4bc
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3009,6 +3009,9 @@ Octopus.Client.Model
Boolean IsInProcess { get; set; }
String MachinePolicyId { get; set; }
String Name { get; set; }
String OperatingSystem { get; set; }
String ShellName { get; set; }
String ShellVersion { get; set; }
Octopus.Client.Model.MachineModelStatus Status { get; set; }
String StatusSummary { get; set; }
String Thumbprint { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3025,6 +3025,9 @@ Octopus.Client.Model
Boolean IsInProcess { get; set; }
String MachinePolicyId { get; set; }
String Name { get; set; }
String OperatingSystem { get; set; }
String ShellName { get; set; }
String ShellVersion { get; set; }
Octopus.Client.Model.MachineModelStatus Status { get; set; }
String StatusSummary { get; set; }
String Thumbprint { get; set; }
Expand Down
4 changes: 4 additions & 0 deletions source/Octopus.Client/Model/MachineBasedResource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,9 @@ public abstract class MachineBasedResource : Resource, INamedResource

[Writeable]
public EndpointResource Endpoint { get; set; }

public string OperatingSystem { get; set; }
public string ShellName { get; set; }
public string ShellVersion { get; set; }
}
}

0 comments on commit 9fca4bc

Please sign in to comment.