-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathmodel_observability_pipeline_parse_grok_processor_rule.go
More file actions
170 lines (149 loc) · 6.66 KB
/
model_observability_pipeline_parse_grok_processor_rule.go
File metadata and controls
170 lines (149 loc) · 6.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
// Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
// This product includes software developed at Datadog (https://www.datadoghq.com/).
// Copyright 2019-Present Datadog, Inc.
package datadogV2
import (
"fmt"
"github.com/DataDog/datadog-api-client-go/v2/api/datadog"
)
// ObservabilityPipelineParseGrokProcessorRule A Grok parsing rule used in the `parse_grok` processor. Each rule defines how to extract structured fields
// from a specific log field using Grok patterns.
type ObservabilityPipelineParseGrokProcessorRule struct {
// A list of Grok parsing rules that define how to extract fields from the source field.
// Each rule must contain a name and a valid Grok pattern.
MatchRules []ObservabilityPipelineParseGrokProcessorRuleMatchRule `json:"match_rules"`
// The value of the source field in log events to be processed by the Grok rules.
Source string `json:"source"`
// A list of Grok helper rules that can be referenced by the parsing rules.
SupportRules []ObservabilityPipelineParseGrokProcessorRuleSupportRule `json:"support_rules,omitempty"`
// UnparsedObject contains the raw value of the object if there was an error when deserializing into the struct
UnparsedObject map[string]interface{} `json:"-"`
AdditionalProperties map[string]interface{} `json:"-"`
}
// NewObservabilityPipelineParseGrokProcessorRule instantiates a new ObservabilityPipelineParseGrokProcessorRule 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 NewObservabilityPipelineParseGrokProcessorRule(matchRules []ObservabilityPipelineParseGrokProcessorRuleMatchRule, source string) *ObservabilityPipelineParseGrokProcessorRule {
this := ObservabilityPipelineParseGrokProcessorRule{}
this.MatchRules = matchRules
this.Source = source
return &this
}
// NewObservabilityPipelineParseGrokProcessorRuleWithDefaults instantiates a new ObservabilityPipelineParseGrokProcessorRule 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 NewObservabilityPipelineParseGrokProcessorRuleWithDefaults() *ObservabilityPipelineParseGrokProcessorRule {
this := ObservabilityPipelineParseGrokProcessorRule{}
return &this
}
// GetMatchRules returns the MatchRules field value.
func (o *ObservabilityPipelineParseGrokProcessorRule) GetMatchRules() []ObservabilityPipelineParseGrokProcessorRuleMatchRule {
if o == nil {
var ret []ObservabilityPipelineParseGrokProcessorRuleMatchRule
return ret
}
return o.MatchRules
}
// GetMatchRulesOk returns a tuple with the MatchRules field value
// and a boolean to check if the value has been set.
func (o *ObservabilityPipelineParseGrokProcessorRule) GetMatchRulesOk() (*[]ObservabilityPipelineParseGrokProcessorRuleMatchRule, bool) {
if o == nil {
return nil, false
}
return &o.MatchRules, true
}
// SetMatchRules sets field value.
func (o *ObservabilityPipelineParseGrokProcessorRule) SetMatchRules(v []ObservabilityPipelineParseGrokProcessorRuleMatchRule) {
o.MatchRules = v
}
// GetSource returns the Source field value.
func (o *ObservabilityPipelineParseGrokProcessorRule) GetSource() string {
if o == nil {
var ret string
return ret
}
return o.Source
}
// GetSourceOk returns a tuple with the Source field value
// and a boolean to check if the value has been set.
func (o *ObservabilityPipelineParseGrokProcessorRule) GetSourceOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.Source, true
}
// SetSource sets field value.
func (o *ObservabilityPipelineParseGrokProcessorRule) SetSource(v string) {
o.Source = v
}
// GetSupportRules returns the SupportRules field value if set, zero value otherwise.
func (o *ObservabilityPipelineParseGrokProcessorRule) GetSupportRules() []ObservabilityPipelineParseGrokProcessorRuleSupportRule {
if o == nil || o.SupportRules == nil {
var ret []ObservabilityPipelineParseGrokProcessorRuleSupportRule
return ret
}
return o.SupportRules
}
// GetSupportRulesOk returns a tuple with the SupportRules field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ObservabilityPipelineParseGrokProcessorRule) GetSupportRulesOk() (*[]ObservabilityPipelineParseGrokProcessorRuleSupportRule, bool) {
if o == nil || o.SupportRules == nil {
return nil, false
}
return &o.SupportRules, true
}
// HasSupportRules returns a boolean if a field has been set.
func (o *ObservabilityPipelineParseGrokProcessorRule) HasSupportRules() bool {
return o != nil && o.SupportRules != nil
}
// SetSupportRules gets a reference to the given []ObservabilityPipelineParseGrokProcessorRuleSupportRule and assigns it to the SupportRules field.
func (o *ObservabilityPipelineParseGrokProcessorRule) SetSupportRules(v []ObservabilityPipelineParseGrokProcessorRuleSupportRule) {
o.SupportRules = v
}
// MarshalJSON serializes the struct using spec logic.
func (o ObservabilityPipelineParseGrokProcessorRule) MarshalJSON() ([]byte, error) {
toSerialize := map[string]interface{}{}
if o.UnparsedObject != nil {
return datadog.Marshal(o.UnparsedObject)
}
toSerialize["match_rules"] = o.MatchRules
toSerialize["source"] = o.Source
if o.SupportRules != nil {
toSerialize["support_rules"] = o.SupportRules
}
for key, value := range o.AdditionalProperties {
toSerialize[key] = value
}
return datadog.Marshal(toSerialize)
}
// UnmarshalJSON deserializes the given payload.
func (o *ObservabilityPipelineParseGrokProcessorRule) UnmarshalJSON(bytes []byte) (err error) {
all := struct {
MatchRules *[]ObservabilityPipelineParseGrokProcessorRuleMatchRule `json:"match_rules"`
Source *string `json:"source"`
SupportRules []ObservabilityPipelineParseGrokProcessorRuleSupportRule `json:"support_rules,omitempty"`
}{}
if err = datadog.Unmarshal(bytes, &all); err != nil {
return datadog.Unmarshal(bytes, &o.UnparsedObject)
}
if all.MatchRules == nil {
return fmt.Errorf("required field match_rules missing")
}
if all.Source == nil {
return fmt.Errorf("required field source missing")
}
additionalProperties := make(map[string]interface{})
if err = datadog.Unmarshal(bytes, &additionalProperties); err == nil {
datadog.DeleteKeys(additionalProperties, &[]string{"match_rules", "source", "support_rules"})
} else {
return err
}
o.MatchRules = *all.MatchRules
o.Source = *all.Source
o.SupportRules = all.SupportRules
if len(additionalProperties) > 0 {
o.AdditionalProperties = additionalProperties
}
return nil
}