-
Notifications
You must be signed in to change notification settings - Fork 82
/
unified_json_parser.go
187 lines (153 loc) · 6.48 KB
/
unified_json_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
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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
// Copyright (c) 2016, 2018, 2024, 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.
// Logging Management API
//
// Use the Logging Management API to create, read, list, update, move and delete
// log groups, log objects, log saved searches, and agent configurations.
// For more information, see Logging Overview (https://docs.cloud.oracle.com/iaas/Content/Logging/Concepts/loggingoverview.htm).
//
package logging
import (
"encoding/json"
"fmt"
"github.com/oracle/oci-go-sdk/v65/common"
"strings"
)
// UnifiedJsonParser JSON parser.
type UnifiedJsonParser struct {
// Specifies the time field for the event time. If the event doesn't have this field, the current time is used.
FieldTimeKey *string `mandatory:"false" json:"fieldTimeKey"`
// Specify types for converting a field into another type.
// For example,
// With this configuration:
// <parse>
// @type csv
// keys time,host,req_id,user
// time_key time
// </parse>
// This incoming event:
// "2013/02/28 12:00:00,192.168.0.1,111,-"
// is parsed as:
// 1362020400 (2013/02/28/ 12:00:00)
// record:
// {
// "host" : "192.168.0.1",
// "req_id" : "111",
// "user" : "-"
// }
Types map[string]string `mandatory:"false" json:"types"`
// Specify the null value pattern.
NullValuePattern *string `mandatory:"false" json:"nullValuePattern"`
// If true, an empty string field is replaced with a null value.
IsNullEmptyString *bool `mandatory:"false" json:"isNullEmptyString"`
// If true, use Fluent::EventTime.now(current time) as a timestamp when the time_key is specified.
IsEstimateCurrentEvent *bool `mandatory:"false" json:"isEstimateCurrentEvent"`
// If true, keep the time field in the record.
IsKeepTimeKey *bool `mandatory:"false" json:"isKeepTimeKey"`
// Specify the timeout for parse processing. This is mainly for detecting an incorrect regexp pattern.
TimeoutInMilliseconds *int `mandatory:"false" json:"timeoutInMilliseconds"`
// Process time value using the specified format.
TimeFormat *string `mandatory:"false" json:"timeFormat"`
// If true, a separator parameter can be further defined.
ParseNested *bool `mandatory:"false" json:"parseNested"`
// Keys of adjacent levels are joined by the separator.
Separator *string `mandatory:"false" json:"separator"`
// JSON parser time type.
TimeType UnifiedJsonParserTimeTypeEnum `mandatory:"false" json:"timeType,omitempty"`
}
// GetFieldTimeKey returns FieldTimeKey
func (m UnifiedJsonParser) GetFieldTimeKey() *string {
return m.FieldTimeKey
}
// GetTypes returns Types
func (m UnifiedJsonParser) GetTypes() map[string]string {
return m.Types
}
// GetNullValuePattern returns NullValuePattern
func (m UnifiedJsonParser) GetNullValuePattern() *string {
return m.NullValuePattern
}
// GetIsNullEmptyString returns IsNullEmptyString
func (m UnifiedJsonParser) GetIsNullEmptyString() *bool {
return m.IsNullEmptyString
}
// GetIsEstimateCurrentEvent returns IsEstimateCurrentEvent
func (m UnifiedJsonParser) GetIsEstimateCurrentEvent() *bool {
return m.IsEstimateCurrentEvent
}
// GetIsKeepTimeKey returns IsKeepTimeKey
func (m UnifiedJsonParser) GetIsKeepTimeKey() *bool {
return m.IsKeepTimeKey
}
// GetTimeoutInMilliseconds returns TimeoutInMilliseconds
func (m UnifiedJsonParser) GetTimeoutInMilliseconds() *int {
return m.TimeoutInMilliseconds
}
func (m UnifiedJsonParser) String() string {
return common.PointerString(m)
}
// ValidateEnumValue returns an error when providing an unsupported enum value
// This function is being called during constructing API request process
// Not recommended for calling this function directly
func (m UnifiedJsonParser) ValidateEnumValue() (bool, error) {
errMessage := []string{}
if _, ok := GetMappingUnifiedJsonParserTimeTypeEnum(string(m.TimeType)); !ok && m.TimeType != "" {
errMessage = append(errMessage, fmt.Sprintf("unsupported enum value for TimeType: %s. Supported values are: %s.", m.TimeType, strings.Join(GetUnifiedJsonParserTimeTypeEnumStringValues(), ",")))
}
if len(errMessage) > 0 {
return true, fmt.Errorf(strings.Join(errMessage, "\n"))
}
return false, nil
}
// MarshalJSON marshals to json representation
func (m UnifiedJsonParser) MarshalJSON() (buff []byte, e error) {
type MarshalTypeUnifiedJsonParser UnifiedJsonParser
s := struct {
DiscriminatorParam string `json:"parserType"`
MarshalTypeUnifiedJsonParser
}{
"JSON",
(MarshalTypeUnifiedJsonParser)(m),
}
return json.Marshal(&s)
}
// UnifiedJsonParserTimeTypeEnum Enum with underlying type: string
type UnifiedJsonParserTimeTypeEnum string
// Set of constants representing the allowable values for UnifiedJsonParserTimeTypeEnum
const (
UnifiedJsonParserTimeTypeFloat UnifiedJsonParserTimeTypeEnum = "FLOAT"
UnifiedJsonParserTimeTypeUnixtime UnifiedJsonParserTimeTypeEnum = "UNIXTIME"
UnifiedJsonParserTimeTypeString UnifiedJsonParserTimeTypeEnum = "STRING"
)
var mappingUnifiedJsonParserTimeTypeEnum = map[string]UnifiedJsonParserTimeTypeEnum{
"FLOAT": UnifiedJsonParserTimeTypeFloat,
"UNIXTIME": UnifiedJsonParserTimeTypeUnixtime,
"STRING": UnifiedJsonParserTimeTypeString,
}
var mappingUnifiedJsonParserTimeTypeEnumLowerCase = map[string]UnifiedJsonParserTimeTypeEnum{
"float": UnifiedJsonParserTimeTypeFloat,
"unixtime": UnifiedJsonParserTimeTypeUnixtime,
"string": UnifiedJsonParserTimeTypeString,
}
// GetUnifiedJsonParserTimeTypeEnumValues Enumerates the set of values for UnifiedJsonParserTimeTypeEnum
func GetUnifiedJsonParserTimeTypeEnumValues() []UnifiedJsonParserTimeTypeEnum {
values := make([]UnifiedJsonParserTimeTypeEnum, 0)
for _, v := range mappingUnifiedJsonParserTimeTypeEnum {
values = append(values, v)
}
return values
}
// GetUnifiedJsonParserTimeTypeEnumStringValues Enumerates the set of values in String for UnifiedJsonParserTimeTypeEnum
func GetUnifiedJsonParserTimeTypeEnumStringValues() []string {
return []string{
"FLOAT",
"UNIXTIME",
"STRING",
}
}
// GetMappingUnifiedJsonParserTimeTypeEnum performs case Insensitive comparison on enum value and return the desired enum
func GetMappingUnifiedJsonParserTimeTypeEnum(val string) (UnifiedJsonParserTimeTypeEnum, bool) {
enum, ok := mappingUnifiedJsonParserTimeTypeEnumLowerCase[strings.ToLower(val)]
return enum, ok
}