Show / Hide Table of Contents

Class ProblemEndpointSummary

Summary information for endpoints associated with a problem (Problem object).

Inheritance
object
ProblemEndpointSummary
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.CloudguardService.Models
Assembly: OCI.DotNetSDK.Cloudguard.dll
Syntax
public class ProblemEndpointSummary

Properties

AsnNumber

Declaration
[JsonProperty(PropertyName = "asnNumber")]
public string AsnNumber { get; set; }
Property Value
Type Description
string

ASN number of the endpoint

Country

Declaration
[JsonProperty(PropertyName = "country")]
public string Country { get; set; }
Property Value
Type Description
string

Country of the endpoint

Id

Declaration
[Required(ErrorMessage = "Id is required.")]
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
Property Value
Type Description
string

Unique identifier for problem endpoint.

Remarks

Required

IpAddress

Declaration
[Required(ErrorMessage = "IpAddress is required.")]
[JsonProperty(PropertyName = "ipAddress")]
public string IpAddress { get; set; }
Property Value
Type Description
string

IP address of the endpoint

Remarks

Required

IpAddressType

Declaration
[Required(ErrorMessage = "IpAddressType is required.")]
[JsonProperty(PropertyName = "ipAddressType")]
public string IpAddressType { get; set; }
Property Value
Type Description
string

Type of IP address for the endpoint

Remarks

Required

IpClassificationType

Declaration
[JsonProperty(PropertyName = "ipClassificationType")]
public string IpClassificationType { get; set; }
Property Value
Type Description
string

IP address classification type for the endpoint

Latitude

Declaration
[JsonProperty(PropertyName = "latitude")]
public double Latitude { get; set; }
Property Value
Type Description
double

Latitude of the endpoint

Longitude

Declaration
[JsonProperty(PropertyName = "longitude")]
public double Longitude { get; set; }
Property Value
Type Description
double

Longitude of the endpoint

ProblemId

Declaration
[Required(ErrorMessage = "ProblemId is required.")]
[JsonProperty(PropertyName = "problemId")]
public string ProblemId { get; set; }
Property Value
Type Description
string

Unique identifier for problem associated with the endpoint

Remarks

Required

Regions

Declaration
[JsonProperty(PropertyName = "regions")]
public List<string> Regions { get; set; }
Property Value
Type Description
List<string>

Regions where activities were performed from this IP address

Services

Declaration
[JsonProperty(PropertyName = "services")]
public List<string> Services { get; set; }
Property Value
Type Description
List<string>

List of services where activities were performed from this IP address

SightingId

Declaration
[Required(ErrorMessage = "SightingId is required.")]
[JsonProperty(PropertyName = "sightingId")]
public string SightingId { get; set; }
Property Value
Type Description
string

Unique identifier for sighting associated with the endpoint

Remarks

Required

SightingType

Declaration
[Required(ErrorMessage = "SightingType is required.")]
[JsonProperty(PropertyName = "sightingType")]
public string SightingType { get; set; }
Property Value
Type Description
string

Unique identifier for the sighting type associated with the endpoint

Remarks

Required

SightingTypeDisplayName

Declaration
[Required(ErrorMessage = "SightingTypeDisplayName is required.")]
[JsonProperty(PropertyName = "sightingTypeDisplayName")]
public string SightingTypeDisplayName { get; set; }
Property Value
Type Description
string

Display name of the sighting type

Remarks

Required

TimeLastDetected

Declaration
[Required(ErrorMessage = "TimeLastDetected is required.")]
[JsonProperty(PropertyName = "timeLastDetected")]
public DateTime? TimeLastDetected { get; set; }
Property Value
Type Description
DateTime?

Time when activities were last detected

Remarks

Required

In this article
Back to top