Show / Hide Table of Contents

Class Namespace

This is the namespace details of a tenancy in Logging Analytics application

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

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 Logging 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 Logging Analytics

Remarks

Required

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