Show / Hide Table of Contents

Class NamespaceSummary

The is the namespace summary of a tenancy in Log Analytics application

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

Properties

CompartmentId

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

The is the tenancy ID

Remarks

Required

IsArchivingEnabled

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

This indicates if old data can be archived for a tenancy

IsDataEverIngested

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

This indicates if data has ever been ingested for the tenancy in Log Analytics

IsLogSetEnabled

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

This indicates if the log set feature is enabled for the tenancy

IsOnboarded

Declaration
[Required(ErrorMessage = "IsOnboarded is required.")]
[JsonProperty(PropertyName = "isOnboarded")]
public bool? IsOnboarded { get; set; }
Property Value
Type Description
bool?

This indicates if the tenancy is onboarded to Log Analytics

Remarks

Required

LifecycleState

Declaration
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public NamespaceSummary.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
NamespaceSummary.LifecycleStateEnum?

The current state of the compartment.

NamespaceName

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

This is the namespace name of a tenancy

Remarks

Required

In this article
Back to top