Show / Hide Table of Contents

Class LogAnalyticsResourceCategory

A resource and its category.

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

Properties

CategoryName

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

The category name to which this resource belongs.

CompartmentId

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

Compartment ID of the resource

IsSystem

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

The system flag. A value of false denotes a user-created category assignment. A value of true denotes an Oracle-defined category assignment.

ResourceDisplayName

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

The resource display name.

ResourceId

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

The unique identifier of the resource, usually a name or ocid.

ResourceType

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

The resource type.

In this article
Back to top