-
Notifications
You must be signed in to change notification settings - Fork 82
/
add_fields_command_descriptor.go
150 lines (122 loc) · 4.6 KB
/
add_fields_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
// Copyright (c) 2016, 2018, 2022, 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"
)
// AddFieldsCommandDescriptor Command descriptor for querylanguage ADDFIELDS command.
type AddFieldsCommandDescriptor 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"`
// List of subQueries specified as addFields command arguments
SubQueries []ParseQueryOutput `mandatory:"false" json:"subQueries"`
}
//GetDisplayQueryString returns DisplayQueryString
func (m AddFieldsCommandDescriptor) GetDisplayQueryString() *string {
return m.DisplayQueryString
}
//GetInternalQueryString returns InternalQueryString
func (m AddFieldsCommandDescriptor) GetInternalQueryString() *string {
return m.InternalQueryString
}
//GetCategory returns Category
func (m AddFieldsCommandDescriptor) GetCategory() *string {
return m.Category
}
//GetReferencedFields returns ReferencedFields
func (m AddFieldsCommandDescriptor) GetReferencedFields() []AbstractField {
return m.ReferencedFields
}
//GetDeclaredFields returns DeclaredFields
func (m AddFieldsCommandDescriptor) GetDeclaredFields() []AbstractField {
return m.DeclaredFields
}
func (m AddFieldsCommandDescriptor) 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 AddFieldsCommandDescriptor) 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 AddFieldsCommandDescriptor) MarshalJSON() (buff []byte, e error) {
type MarshalTypeAddFieldsCommandDescriptor AddFieldsCommandDescriptor
s := struct {
DiscriminatorParam string `json:"name"`
MarshalTypeAddFieldsCommandDescriptor
}{
"ADD_FIELDS",
(MarshalTypeAddFieldsCommandDescriptor)(m),
}
return json.Marshal(&s)
}
// UnmarshalJSON unmarshals from json
func (m *AddFieldsCommandDescriptor) UnmarshalJSON(data []byte) (e error) {
model := struct {
Category *string `json:"category"`
ReferencedFields []abstractfield `json:"referencedFields"`
DeclaredFields []abstractfield `json:"declaredFields"`
SubQueries []ParseQueryOutput `json:"subQueries"`
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.SubQueries = make([]ParseQueryOutput, len(model.SubQueries))
for i, n := range model.SubQueries {
m.SubQueries[i] = n
}
m.DisplayQueryString = model.DisplayQueryString
m.InternalQueryString = model.InternalQueryString
return
}