Show / Hide Table of Contents

Class AssociableEntity

Entity details including whether or not it is eligible for association with the source.

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

Properties

AgentId

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

The OCID of the Management Agent.

EligibilityStatus

Declaration
[JsonProperty(PropertyName = "eligibilityStatus")]
[JsonConverter(typeof(ResponseEnumConverter))]
public AssociableEntity.EligibilityStatusEnum? EligibilityStatus { get; set; }
Property Value
Type Description
AssociableEntity.EligibilityStatusEnum?

This field indicates whether the entity is (in)eligible to be associated with this source.

EntityId

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

The entity OCID.

EntityName

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

The name of the entity.

EntityTypeDisplayName

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

The display name of the entity type.

EntityTypeName

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

The type name of the entity.

Host

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

The entity host.

IneligibilityDetails

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

The reason the entity is not eligible for association.

In this article
Back to top