Show / Hide Table of Contents

Class Dependency

Details of a dependency an object or feature defines on another. For example, a source may depend on a parser either directly or indirectly.

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

Properties

ReferenceDisplayName

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

The display name of the dependency object

ReferenceId

Declaration
[JsonProperty(PropertyName = "referenceId")]
public long? ReferenceId { get; set; }
Property Value
Type Description
long?

The unique identifier of the reference, if available.

ReferenceName

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

The name of the dependency object

ReferenceType

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

The type of reference that defines the dependency.

Type

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

The dependency type.

In this article
Back to top