Skip to content

Commit

Permalink
Typo fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
danielabbatt committed Aug 23, 2023
1 parent 5a4a8bf commit b309557
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions LogicMonitor.Api/Netscans/Netscan.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public class Netscan : NamedItem, IExecutable
/// Information that determines how duplicate discovered devices should be handled
/// </summary>
[DataMember(Name = "duplicate")]
public ExcludeDuplicateIps DuplicatesStrategy { get; set; } = new();
public ExcludeDuplicateIps DuplicatesStrategy { get; set; } = new();

/// <summary>
/// The Id of the device
Expand Down Expand Up @@ -94,13 +94,13 @@ public class Netscan : NamedItem, IExecutable
/// The Discovered device rules
/// </summary>
[DataMember(Name = "ddr")]
public Ec2DDR? Ddr { get; set; }
public DiscoveredDeviceRule? DiscoveredDeviceRule { get; set; }

/// <summary>
/// The credentials to be used for the scan
/// </summary>
[DataMember(Name = "credentials")]
public EC2NetscanPolicyCredential Credentials { get; set; } = new();
public NetscanCredentials Credentials { get; set; } = new();

/// <summary>
/// Which IP the EC2 instance should be monitored with for nec2 scans: private or public
Expand Down

0 comments on commit b309557

Please sign in to comment.