Name | Type | Description | Notes |
---|---|---|---|
Name | string | Name of the field extraction rule. Use a name that makes it easy to identify the rule. | |
Scope | string | Scope of the field extraction rule. This could be a sourceCategory, sourceHost, or any other metadata that describes the data you want to extract from. Think of the Scope as the first portion of an ad hoc search, before the first pipe ( | ). You'll use the Scope to run a search against the rule. |
ParseExpression | string | Describes the fields to be parsed. |
func NewBaseExtractionRuleDefinition(name string, scope string, parseExpression string, ) *BaseExtractionRuleDefinition
NewBaseExtractionRuleDefinition instantiates a new BaseExtractionRuleDefinition object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed
func NewBaseExtractionRuleDefinitionWithDefaults() *BaseExtractionRuleDefinition
NewBaseExtractionRuleDefinitionWithDefaults instantiates a new BaseExtractionRuleDefinition object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set
func (o *BaseExtractionRuleDefinition) GetName() string
GetName returns the Name field if non-nil, zero value otherwise.
func (o *BaseExtractionRuleDefinition) GetNameOk() (*string, bool)
GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *BaseExtractionRuleDefinition) SetName(v string)
SetName sets Name field to given value.
func (o *BaseExtractionRuleDefinition) GetScope() string
GetScope returns the Scope field if non-nil, zero value otherwise.
func (o *BaseExtractionRuleDefinition) GetScopeOk() (*string, bool)
GetScopeOk returns a tuple with the Scope field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *BaseExtractionRuleDefinition) SetScope(v string)
SetScope sets Scope field to given value.
func (o *BaseExtractionRuleDefinition) GetParseExpression() string
GetParseExpression returns the ParseExpression field if non-nil, zero value otherwise.
func (o *BaseExtractionRuleDefinition) GetParseExpressionOk() (*string, bool)
GetParseExpressionOk returns a tuple with the ParseExpression field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *BaseExtractionRuleDefinition) SetParseExpression(v string)
SetParseExpression sets ParseExpression field to given value.