Show / Hide Table of Contents

Class ModuleCommandDescriptor

Command descriptor for querylanguage MODULE command.

Inheritance
object
AbstractCommandDescriptor
ModuleCommandDescriptor
Inherited Members
AbstractCommandDescriptor.DisplayQueryString
AbstractCommandDescriptor.InternalQueryString
AbstractCommandDescriptor.Category
AbstractCommandDescriptor.ReferencedFields
AbstractCommandDescriptor.DeclaredFields
AbstractCommandDescriptor.IsHidden
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 ModuleCommandDescriptor : AbstractCommandDescriptor

Properties

Arguments

Declaration
[JsonProperty(PropertyName = "arguments")]
public List<VariableDefinition> Arguments { get; set; }
Property Value
Type Description
List<VariableDefinition>

Optional list of arguments used in the macro.

Description

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

Description of the macro.

Example

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

Description of the macro.

Properties

Declaration
[JsonProperty(PropertyName = "properties")]
public List<PropertyDefinition> Properties { get; set; }
Property Value
Type Description
List<PropertyDefinition>

Optional list of properties for the macro.

In this article
Back to top