-
Notifications
You must be signed in to change notification settings - Fork 82
/
time_cluster_column.go
241 lines (187 loc) · 7.94 KB
/
time_cluster_column.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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
// Copyright (c) 2016, 2018, 2023, 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.
// LogAnalytics API
//
// The LogAnalytics API for the LogAnalytics service.
//
package loganalytics
import (
"encoding/json"
"fmt"
"github.com/oracle/oci-go-sdk/v65/common"
"strings"
)
// TimeClusterColumn Column returned by querylanguage TIMECLUSTER command.
type TimeClusterColumn struct {
// Column display name - will be alias if column is renamed by queryStrng.
DisplayName *string `mandatory:"false" json:"displayName"`
// If the column is a 'List of Values' column, this array contains the field values that are applicable to query results or all if no filters applied.
Values []FieldValue `mandatory:"false" json:"values"`
// Identifies if all values in this column come from a pre-defined list of values.
IsListOfValues *bool `mandatory:"false" json:"isListOfValues"`
// Identifies if this column allows multiple values to exist in a single row.
IsMultiValued *bool `mandatory:"false" json:"isMultiValued"`
// A flag indicating whether or not the field is a case sensitive field. Only applies to string fields.
IsCaseSensitive *bool `mandatory:"false" json:"isCaseSensitive"`
// Identifies if this column can be used as a grouping field in any grouping command.
IsGroupable *bool `mandatory:"false" json:"isGroupable"`
// Identifies if this column can be used as an expression parameter in any command that accepts querylanguage expressions.
IsEvaluable *bool `mandatory:"false" json:"isEvaluable"`
// Same as displayName unless column renamed in which case this will hold the original display name for the column.
OriginalDisplayName *string `mandatory:"false" json:"originalDisplayName"`
// Internal identifier for the column.
InternalName *string `mandatory:"false" json:"internalName"`
// Time span between each timestamp in the timeseries datapoints.
IntervalGap *string `mandatory:"false" json:"intervalGap"`
// List of timestamps making up the timeseries datapoints.
Intervals []int64 `mandatory:"false" json:"intervals"`
// Group by columns specified in the command.
GroupByColumns []AbstractColumn `mandatory:"false" json:"groupByColumns"`
// Timeseries clusters identified by the command.
Clusters map[string]TimeStatsCluster `mandatory:"false" json:"clusters"`
// List of series data sets for each statistical function specified in the command.
Series []TimeClusterDataColumn `mandatory:"false" json:"series"`
// Subsystem column belongs to.
SubSystem SubSystemNameEnum `mandatory:"false" json:"subSystem,omitempty"`
// Field denoting column data type.
ValueType ValueTypeEnum `mandatory:"false" json:"valueType,omitempty"`
}
//GetDisplayName returns DisplayName
func (m TimeClusterColumn) GetDisplayName() *string {
return m.DisplayName
}
//GetSubSystem returns SubSystem
func (m TimeClusterColumn) GetSubSystem() SubSystemNameEnum {
return m.SubSystem
}
//GetValues returns Values
func (m TimeClusterColumn) GetValues() []FieldValue {
return m.Values
}
//GetIsListOfValues returns IsListOfValues
func (m TimeClusterColumn) GetIsListOfValues() *bool {
return m.IsListOfValues
}
//GetIsMultiValued returns IsMultiValued
func (m TimeClusterColumn) GetIsMultiValued() *bool {
return m.IsMultiValued
}
//GetIsCaseSensitive returns IsCaseSensitive
func (m TimeClusterColumn) GetIsCaseSensitive() *bool {
return m.IsCaseSensitive
}
//GetIsGroupable returns IsGroupable
func (m TimeClusterColumn) GetIsGroupable() *bool {
return m.IsGroupable
}
//GetIsEvaluable returns IsEvaluable
func (m TimeClusterColumn) GetIsEvaluable() *bool {
return m.IsEvaluable
}
//GetValueType returns ValueType
func (m TimeClusterColumn) GetValueType() ValueTypeEnum {
return m.ValueType
}
//GetOriginalDisplayName returns OriginalDisplayName
func (m TimeClusterColumn) GetOriginalDisplayName() *string {
return m.OriginalDisplayName
}
//GetInternalName returns InternalName
func (m TimeClusterColumn) GetInternalName() *string {
return m.InternalName
}
func (m TimeClusterColumn) 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 TimeClusterColumn) ValidateEnumValue() (bool, error) {
errMessage := []string{}
if _, ok := GetMappingSubSystemNameEnum(string(m.SubSystem)); !ok && m.SubSystem != "" {
errMessage = append(errMessage, fmt.Sprintf("unsupported enum value for SubSystem: %s. Supported values are: %s.", m.SubSystem, strings.Join(GetSubSystemNameEnumStringValues(), ",")))
}
if _, ok := GetMappingValueTypeEnum(string(m.ValueType)); !ok && m.ValueType != "" {
errMessage = append(errMessage, fmt.Sprintf("unsupported enum value for ValueType: %s. Supported values are: %s.", m.ValueType, strings.Join(GetValueTypeEnumStringValues(), ",")))
}
if len(errMessage) > 0 {
return true, fmt.Errorf(strings.Join(errMessage, "\n"))
}
return false, nil
}
// MarshalJSON marshals to json representation
func (m TimeClusterColumn) MarshalJSON() (buff []byte, e error) {
type MarshalTypeTimeClusterColumn TimeClusterColumn
s := struct {
DiscriminatorParam string `json:"type"`
MarshalTypeTimeClusterColumn
}{
"TIME_CLUSTER_COLUMN",
(MarshalTypeTimeClusterColumn)(m),
}
return json.Marshal(&s)
}
// UnmarshalJSON unmarshals from json
func (m *TimeClusterColumn) UnmarshalJSON(data []byte) (e error) {
model := struct {
DisplayName *string `json:"displayName"`
SubSystem SubSystemNameEnum `json:"subSystem"`
Values []FieldValue `json:"values"`
IsListOfValues *bool `json:"isListOfValues"`
IsMultiValued *bool `json:"isMultiValued"`
IsCaseSensitive *bool `json:"isCaseSensitive"`
IsGroupable *bool `json:"isGroupable"`
IsEvaluable *bool `json:"isEvaluable"`
ValueType ValueTypeEnum `json:"valueType"`
OriginalDisplayName *string `json:"originalDisplayName"`
InternalName *string `json:"internalName"`
IntervalGap *string `json:"intervalGap"`
Intervals []int64 `json:"intervals"`
GroupByColumns []abstractcolumn `json:"groupByColumns"`
Clusters map[string]TimeStatsCluster `json:"clusters"`
Series []TimeClusterDataColumn `json:"series"`
}{}
e = json.Unmarshal(data, &model)
if e != nil {
return
}
var nn interface{}
m.DisplayName = model.DisplayName
m.SubSystem = model.SubSystem
m.Values = make([]FieldValue, len(model.Values))
for i, n := range model.Values {
m.Values[i] = n
}
m.IsListOfValues = model.IsListOfValues
m.IsMultiValued = model.IsMultiValued
m.IsCaseSensitive = model.IsCaseSensitive
m.IsGroupable = model.IsGroupable
m.IsEvaluable = model.IsEvaluable
m.ValueType = model.ValueType
m.OriginalDisplayName = model.OriginalDisplayName
m.InternalName = model.InternalName
m.IntervalGap = model.IntervalGap
m.Intervals = make([]int64, len(model.Intervals))
for i, n := range model.Intervals {
m.Intervals[i] = n
}
m.GroupByColumns = make([]AbstractColumn, len(model.GroupByColumns))
for i, n := range model.GroupByColumns {
nn, e = n.UnmarshalPolymorphicJSON(n.JsonData)
if e != nil {
return e
}
if nn != nil {
m.GroupByColumns[i] = nn.(AbstractColumn)
} else {
m.GroupByColumns[i] = nil
}
}
m.Clusters = model.Clusters
m.Series = make([]TimeClusterDataColumn, len(model.Series))
for i, n := range model.Series {
m.Series[i] = n
}
return
}