Name | Type | Description | Notes |
---|---|---|---|
Name | string | Name of the dynamic parsing rule. Use a name that makes it easy to identify the rule. | |
Scope | string | Scope of the dynamic parsing 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. |
Enabled | bool | Is the dynamic parsing rule enabled. | [default to true] |
CreatedAt | string | Creation timestamp in UTC in RFC3339 format. | |
CreatedBy | string | Identifier of the user who created the resource. | |
ModifiedAt | string | Last modification timestamp in UTC. | |
ModifiedBy | string | Identifier of the user who last modified the resource. | |
Id | string | Unique identifier for the dynamic parsing rule. | |
IsSystemRule | bool | Whether the rule has been defined by the system, rather than by a user. |
func NewDynamicRule(name string, scope string, enabled bool, createdAt string, createdBy string, modifiedAt string, modifiedBy string, id string, isSystemRule bool, ) *DynamicRule
NewDynamicRule instantiates a new DynamicRule 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 NewDynamicRuleWithDefaults() *DynamicRule
NewDynamicRuleWithDefaults instantiates a new DynamicRule 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 *DynamicRule) GetName() string
GetName returns the Name field if non-nil, zero value otherwise.
func (o *DynamicRule) 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 *DynamicRule) SetName(v string)
SetName sets Name field to given value.
func (o *DynamicRule) GetScope() string
GetScope returns the Scope field if non-nil, zero value otherwise.
func (o *DynamicRule) 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 *DynamicRule) SetScope(v string)
SetScope sets Scope field to given value.
func (o *DynamicRule) GetEnabled() bool
GetEnabled returns the Enabled field if non-nil, zero value otherwise.
func (o *DynamicRule) GetEnabledOk() (*bool, bool)
GetEnabledOk returns a tuple with the Enabled field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *DynamicRule) SetEnabled(v bool)
SetEnabled sets Enabled field to given value.
func (o *DynamicRule) GetCreatedAt() string
GetCreatedAt returns the CreatedAt field if non-nil, zero value otherwise.
func (o *DynamicRule) GetCreatedAtOk() (*string, bool)
GetCreatedAtOk returns a tuple with the CreatedAt field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *DynamicRule) SetCreatedAt(v string)
SetCreatedAt sets CreatedAt field to given value.
func (o *DynamicRule) GetCreatedBy() string
GetCreatedBy returns the CreatedBy field if non-nil, zero value otherwise.
func (o *DynamicRule) GetCreatedByOk() (*string, bool)
GetCreatedByOk returns a tuple with the CreatedBy field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *DynamicRule) SetCreatedBy(v string)
SetCreatedBy sets CreatedBy field to given value.
func (o *DynamicRule) GetModifiedAt() string
GetModifiedAt returns the ModifiedAt field if non-nil, zero value otherwise.
func (o *DynamicRule) GetModifiedAtOk() (*string, bool)
GetModifiedAtOk returns a tuple with the ModifiedAt field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *DynamicRule) SetModifiedAt(v string)
SetModifiedAt sets ModifiedAt field to given value.
func (o *DynamicRule) GetModifiedBy() string
GetModifiedBy returns the ModifiedBy field if non-nil, zero value otherwise.
func (o *DynamicRule) GetModifiedByOk() (*string, bool)
GetModifiedByOk returns a tuple with the ModifiedBy field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *DynamicRule) SetModifiedBy(v string)
SetModifiedBy sets ModifiedBy field to given value.
func (o *DynamicRule) GetId() string
GetId returns the Id field if non-nil, zero value otherwise.
func (o *DynamicRule) GetIdOk() (*string, bool)
GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *DynamicRule) SetId(v string)
SetId sets Id field to given value.
func (o *DynamicRule) GetIsSystemRule() bool
GetIsSystemRule returns the IsSystemRule field if non-nil, zero value otherwise.
func (o *DynamicRule) GetIsSystemRuleOk() (*bool, bool)
GetIsSystemRuleOk returns a tuple with the IsSystemRule field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *DynamicRule) SetIsSystemRule(v bool)
SetIsSystemRule sets IsSystemRule field to given value.