Show / Hide Table of Contents

Class DependentSource

A source that depends on or uses the resource such as a field or a parser

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

Properties

Dependencies

Declaration
[JsonProperty(PropertyName = "dependencies")]
public List<Dependency> Dependencies { get; set; }
Property Value
Type Description
List<Dependency>

The list of dependencies defined by the source.

EntityTypes

Declaration
[JsonProperty(PropertyName = "entityTypes")]
public List<LogAnalyticsSourceEntityType> EntityTypes { get; set; }
Property Value
Type Description
List<LogAnalyticsSourceEntityType>

The entity types.

IsAutoAssociationEnabled

Declaration
[JsonProperty(PropertyName = "isAutoAssociationEnabled")]
public bool? IsAutoAssociationEnabled { get; set; }
Property Value
Type Description
bool?

A flag indicating whether or not the source is marked for auto association.

IsSystem

Declaration
[JsonProperty(PropertyName = "isSystem")]
public bool? IsSystem { get; set; }
Property Value
Type Description
bool?

The system flag. A value of false denotes a custom, or user defined object. A value of true denotes a built in object.

SourceDisplayName

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

The source display name.

SourceId

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

The source unique identifier.

SourceName

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

The source name.

SourceType

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

The source type.

In this article
Back to top