Show / Hide Table of Contents

Class LogAnalyticsEntityTopologyLink

Log Analytics entity relationship link used in hierarchical representation of entity relationships topology.

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

Properties

Contexts

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

Array of log analytics entity relationship context.

DestinationEntityId

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

The log analytics entity OCID. This ID is a reference used by log analytics features and it represents a resource that is provisioned and managed by the customer on their premises or on the cloud.

Remarks

Required

SourceEntityId

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

The log analytics entity OCID. This ID is a reference used by log analytics features and it represents a resource that is provisioned and managed by the customer on their premises or on the cloud.

Remarks

Required

TimeLastDiscovered

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

The date and time the resource was last discovered, in the format defined by RFC3339.

In this article
Back to top