forked from oracle/oci-go-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
unified_agent_grok_parser.go
99 lines (75 loc) · 3.11 KB
/
unified_agent_grok_parser.go
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
// Copyright (c) 2016, 2018, 2020, Oracle and/or its affiliates. All rights reserved.
// This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
// Code generated. DO NOT EDIT.
// loggingManagementControlplane API
//
// loggingManagementControlplane API specification
//
package logging
import (
"encoding/json"
"github.com/oracle/oci-go-sdk/common"
)
// UnifiedAgentGrokParser grok parser
type UnifiedAgentGrokParser struct {
// Specify time field for event time. If the event doesn't have this field, current time is used.
FieldTimeKey *string `mandatory:"false" json:"fieldTimeKey"`
// Specify types for converting field into other type.
Types map[string]string `mandatory:"false" json:"types"`
// Specify null value pattern
NullValuePattern *string `mandatory:"false" json:"nullValuePattern"`
// If true, empty string field is replaced with nil
IsNullEmptyString *bool `mandatory:"false" json:"isNullEmptyString"`
// If true, use Fluent::EventTime.now(current time) as a timestamp when time_key is specified
IsEstimateCurrentEvent *bool `mandatory:"false" json:"isEstimateCurrentEvent"`
// If true, keep time field in the record.
IsKeepTimeKey *bool `mandatory:"false" json:"isKeepTimeKey"`
// Specify timeout for parse processing. This is mainly for detecting wrong regexp pattern.
TimeoutInMilliseconds *int `mandatory:"false" json:"timeoutInMilliseconds"`
GrokNameKey *string `mandatory:"false" json:"grokNameKey"`
GrokFailureKey *string `mandatory:"false" json:"grokFailureKey"`
Patterns []GrokPattern `mandatory:"false" json:"patterns"`
}
//GetFieldTimeKey returns FieldTimeKey
func (m UnifiedAgentGrokParser) GetFieldTimeKey() *string {
return m.FieldTimeKey
}
//GetTypes returns Types
func (m UnifiedAgentGrokParser) GetTypes() map[string]string {
return m.Types
}
//GetNullValuePattern returns NullValuePattern
func (m UnifiedAgentGrokParser) GetNullValuePattern() *string {
return m.NullValuePattern
}
//GetIsNullEmptyString returns IsNullEmptyString
func (m UnifiedAgentGrokParser) GetIsNullEmptyString() *bool {
return m.IsNullEmptyString
}
//GetIsEstimateCurrentEvent returns IsEstimateCurrentEvent
func (m UnifiedAgentGrokParser) GetIsEstimateCurrentEvent() *bool {
return m.IsEstimateCurrentEvent
}
//GetIsKeepTimeKey returns IsKeepTimeKey
func (m UnifiedAgentGrokParser) GetIsKeepTimeKey() *bool {
return m.IsKeepTimeKey
}
//GetTimeoutInMilliseconds returns TimeoutInMilliseconds
func (m UnifiedAgentGrokParser) GetTimeoutInMilliseconds() *int {
return m.TimeoutInMilliseconds
}
func (m UnifiedAgentGrokParser) String() string {
return common.PointerString(m)
}
// MarshalJSON marshals to json representation
func (m UnifiedAgentGrokParser) MarshalJSON() (buff []byte, e error) {
type MarshalTypeUnifiedAgentGrokParser UnifiedAgentGrokParser
s := struct {
DiscriminatorParam string `json:"parserType"`
MarshalTypeUnifiedAgentGrokParser
}{
"GROK",
(MarshalTypeUnifiedAgentGrokParser)(m),
}
return json.Marshal(&s)
}