Show / Hide Table of Contents

Class Level

An object used to represent a level at which a property or resource or constraint is defined.

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

Properties

Constraints

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

A string representation of constraints that apply at this level. For example, a property defined at SOURCE level could further be applicable only for SOURCE_TYPE:database_sql.

Name

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

The level name.

Remarks

Required

In this article
Back to top