Show / Hide Table of Contents

Class ResourceProfileEndpointSummary

Summary information for resource profile endpoints.

Inheritance
object
ResourceProfileEndpointSummary
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 ResourceProfileEndpointSummary

Properties

AsnNumber

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

ASN number of sighting

Country

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

Country of sighting

Id

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

Unique identifier for sighting endpoints

Remarks

Required

IpAddress

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

IP address for sighting

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 sighting

Remarks

Required

IpClassificationType

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

IP address classification type

Latitude

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

Latitude of sighting

Longitude

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

Longitude of sighting

ProblemId

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

Problem ID for sighting endpoints

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

ResourceProfileId

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

Resource profile ID associated with the impacted resource

Remarks

Required

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

SightingType

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

Type of sighting for sighting endpoints

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

TimeFirstDetected

Declaration
[JsonProperty(PropertyName = "timeFirstDetected")]
public DateTime? TimeFirstDetected { get; set; }
Property Value
Type Description
DateTime?

Time the activities were first detected.

TimeFirstOccurred

Declaration
[JsonProperty(PropertyName = "timeFirstOccurred")]
public DateTime? TimeFirstOccurred { get; set; }
Property Value
Type Description
DateTime?

Time the activities were first performed.

TimeLastDetected

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

Time the activities were last detected.

Remarks

Required

TimeLastOccurred

Declaration
[JsonProperty(PropertyName = "timeLastOccurred")]
public DateTime? TimeLastOccurred { get; set; }
Property Value
Type Description
DateTime?

Time the activities were last performed.

In this article
Back to top