-
Notifications
You must be signed in to change notification settings - Fork 82
/
stats_command_descriptor.go
178 lines (145 loc) · 5.33 KB
/
stats_command_descriptor.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
// 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"
)
// StatsCommandDescriptor Command descriptor for querylanguage STATS command.
type StatsCommandDescriptor struct {
// Command fragment display string from user specified query string formatted by query builder.
DisplayQueryString *string `mandatory:"true" json:"displayQueryString"`
// Command fragment internal string from user specified query string formatted by query builder.
InternalQueryString *string `mandatory:"true" json:"internalQueryString"`
// querylanguage command designation for example; reporting vs filtering
Category *string `mandatory:"false" json:"category"`
// Fields referenced in command fragment from user specified query string.
ReferencedFields []AbstractField `mandatory:"false" json:"referencedFields"`
// Fields declared in command fragment from user specified query string.
DeclaredFields []AbstractField `mandatory:"false" json:"declaredFields"`
// Field denoting if this is a hidden command that is not shown in the query string.
IsHidden *bool `mandatory:"false" json:"isHidden"`
// Group by fields if specified in the query string.
GroupByFields []AbstractField `mandatory:"false" json:"groupByFields"`
// Statistical functions specified in the query string. Atleast 1 is required for a STATS command.
Functions []FunctionField `mandatory:"false" json:"functions"`
}
//GetDisplayQueryString returns DisplayQueryString
func (m StatsCommandDescriptor) GetDisplayQueryString() *string {
return m.DisplayQueryString
}
//GetInternalQueryString returns InternalQueryString
func (m StatsCommandDescriptor) GetInternalQueryString() *string {
return m.InternalQueryString
}
//GetCategory returns Category
func (m StatsCommandDescriptor) GetCategory() *string {
return m.Category
}
//GetReferencedFields returns ReferencedFields
func (m StatsCommandDescriptor) GetReferencedFields() []AbstractField {
return m.ReferencedFields
}
//GetDeclaredFields returns DeclaredFields
func (m StatsCommandDescriptor) GetDeclaredFields() []AbstractField {
return m.DeclaredFields
}
//GetIsHidden returns IsHidden
func (m StatsCommandDescriptor) GetIsHidden() *bool {
return m.IsHidden
}
func (m StatsCommandDescriptor) 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 StatsCommandDescriptor) ValidateEnumValue() (bool, error) {
errMessage := []string{}
if len(errMessage) > 0 {
return true, fmt.Errorf(strings.Join(errMessage, "\n"))
}
return false, nil
}
// MarshalJSON marshals to json representation
func (m StatsCommandDescriptor) MarshalJSON() (buff []byte, e error) {
type MarshalTypeStatsCommandDescriptor StatsCommandDescriptor
s := struct {
DiscriminatorParam string `json:"name"`
MarshalTypeStatsCommandDescriptor
}{
"STATS",
(MarshalTypeStatsCommandDescriptor)(m),
}
return json.Marshal(&s)
}
// UnmarshalJSON unmarshals from json
func (m *StatsCommandDescriptor) UnmarshalJSON(data []byte) (e error) {
model := struct {
Category *string `json:"category"`
ReferencedFields []abstractfield `json:"referencedFields"`
DeclaredFields []abstractfield `json:"declaredFields"`
IsHidden *bool `json:"isHidden"`
GroupByFields []abstractfield `json:"groupByFields"`
Functions []FunctionField `json:"functions"`
DisplayQueryString *string `json:"displayQueryString"`
InternalQueryString *string `json:"internalQueryString"`
}{}
e = json.Unmarshal(data, &model)
if e != nil {
return
}
var nn interface{}
m.Category = model.Category
m.ReferencedFields = make([]AbstractField, len(model.ReferencedFields))
for i, n := range model.ReferencedFields {
nn, e = n.UnmarshalPolymorphicJSON(n.JsonData)
if e != nil {
return e
}
if nn != nil {
m.ReferencedFields[i] = nn.(AbstractField)
} else {
m.ReferencedFields[i] = nil
}
}
m.DeclaredFields = make([]AbstractField, len(model.DeclaredFields))
for i, n := range model.DeclaredFields {
nn, e = n.UnmarshalPolymorphicJSON(n.JsonData)
if e != nil {
return e
}
if nn != nil {
m.DeclaredFields[i] = nn.(AbstractField)
} else {
m.DeclaredFields[i] = nil
}
}
m.IsHidden = model.IsHidden
m.GroupByFields = make([]AbstractField, len(model.GroupByFields))
for i, n := range model.GroupByFields {
nn, e = n.UnmarshalPolymorphicJSON(n.JsonData)
if e != nil {
return e
}
if nn != nil {
m.GroupByFields[i] = nn.(AbstractField)
} else {
m.GroupByFields[i] = nil
}
}
m.Functions = make([]FunctionField, len(model.Functions))
for i, n := range model.Functions {
m.Functions[i] = n
}
m.DisplayQueryString = model.DisplayQueryString
m.InternalQueryString = model.InternalQueryString
return
}