Show / Hide Table of Contents

Class LogAnalyticsParserMetaPluginParameter

LogAnalyticsParserMetaPluginParameter

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

Properties

Description

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

The parameter description.

IsMandatory

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

A flag indicating whether or not the parameter is mandatory.

IsRepeatable

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

A flag indicating whether or not the parameter is repeatable.

Name

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

The parameter internal name.

PluginName

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

The plugin internal name.

Type

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

The parameter type.

In this article
Back to top