Skip to content

Commit

Permalink
Merge pull request #461 from OctopusDeploy/enh-smtptimeout
Browse files Browse the repository at this point in the history
adding Timeout prop to SmtpConfigurationResource
  • Loading branch information
dalmirog authored Sep 11, 2019
2 parents 9fca4bc + d065138 commit fdc8c58
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4218,6 +4218,7 @@ Octopus.Client.Model
String SmtpLogin { get; set; }
Octopus.Client.Model.SensitiveValue SmtpPassword { get; set; }
Nullable<Int32> SmtpPort { get; set; }
Nullable<Int32> Timeout { get; set; }
}
class SpaceResource
Octopus.Client.Extensibility.IResource
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4238,6 +4238,7 @@ Octopus.Client.Model
String SmtpLogin { get; set; }
Octopus.Client.Model.SensitiveValue SmtpPassword { get; set; }
Nullable<Int32> SmtpPort { get; set; }
Nullable<Int32> Timeout { get; set; }
}
class SpaceResource
Octopus.Client.Extensibility.IResource
Expand Down
3 changes: 3 additions & 0 deletions source/Octopus.Client/Model/SmtpConfigurationResource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ public class SmtpConfigurationResource : Resource

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

[Writeable]
public int? Timeout { get; set; }

[Writeable]
public SensitiveValue SmtpPassword { get; set; }
Expand Down

0 comments on commit fdc8c58

Please sign in to comment.