-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathdevice_configuration_device_state_summary.go
298 lines (296 loc) · 10.6 KB
/
device_configuration_device_state_summary.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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
package models
import (
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91 "github.com/microsoft/kiota-abstractions-go/serialization"
)
type DeviceConfigurationDeviceStateSummary struct {
Entity
}
// NewDeviceConfigurationDeviceStateSummary instantiates a new DeviceConfigurationDeviceStateSummary and sets the default values.
func NewDeviceConfigurationDeviceStateSummary()(*DeviceConfigurationDeviceStateSummary) {
m := &DeviceConfigurationDeviceStateSummary{
Entity: *NewEntity(),
}
return m
}
// CreateDeviceConfigurationDeviceStateSummaryFromDiscriminatorValue creates a new instance of the appropriate class based on discriminator value
// returns a Parsable when successful
func CreateDeviceConfigurationDeviceStateSummaryFromDiscriminatorValue(parseNode i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, error) {
return NewDeviceConfigurationDeviceStateSummary(), nil
}
// GetCompliantDeviceCount gets the compliantDeviceCount property value. Number of compliant devices
// returns a *int32 when successful
func (m *DeviceConfigurationDeviceStateSummary) GetCompliantDeviceCount()(*int32) {
val, err := m.GetBackingStore().Get("compliantDeviceCount")
if err != nil {
panic(err)
}
if val != nil {
return val.(*int32)
}
return nil
}
// GetConflictDeviceCount gets the conflictDeviceCount property value. Number of conflict devices
// returns a *int32 when successful
func (m *DeviceConfigurationDeviceStateSummary) GetConflictDeviceCount()(*int32) {
val, err := m.GetBackingStore().Get("conflictDeviceCount")
if err != nil {
panic(err)
}
if val != nil {
return val.(*int32)
}
return nil
}
// GetErrorDeviceCount gets the errorDeviceCount property value. Number of error devices
// returns a *int32 when successful
func (m *DeviceConfigurationDeviceStateSummary) GetErrorDeviceCount()(*int32) {
val, err := m.GetBackingStore().Get("errorDeviceCount")
if err != nil {
panic(err)
}
if val != nil {
return val.(*int32)
}
return nil
}
// GetFieldDeserializers the deserialization information for the current model
// returns a map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error) when successful
func (m *DeviceConfigurationDeviceStateSummary) GetFieldDeserializers()(map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error)) {
res := m.Entity.GetFieldDeserializers()
res["compliantDeviceCount"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetInt32Value()
if err != nil {
return err
}
if val != nil {
m.SetCompliantDeviceCount(val)
}
return nil
}
res["conflictDeviceCount"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetInt32Value()
if err != nil {
return err
}
if val != nil {
m.SetConflictDeviceCount(val)
}
return nil
}
res["errorDeviceCount"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetInt32Value()
if err != nil {
return err
}
if val != nil {
m.SetErrorDeviceCount(val)
}
return nil
}
res["nonCompliantDeviceCount"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetInt32Value()
if err != nil {
return err
}
if val != nil {
m.SetNonCompliantDeviceCount(val)
}
return nil
}
res["notApplicableDeviceCount"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetInt32Value()
if err != nil {
return err
}
if val != nil {
m.SetNotApplicableDeviceCount(val)
}
return nil
}
res["remediatedDeviceCount"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetInt32Value()
if err != nil {
return err
}
if val != nil {
m.SetRemediatedDeviceCount(val)
}
return nil
}
res["unknownDeviceCount"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetInt32Value()
if err != nil {
return err
}
if val != nil {
m.SetUnknownDeviceCount(val)
}
return nil
}
return res
}
// GetNonCompliantDeviceCount gets the nonCompliantDeviceCount property value. Number of NonCompliant devices
// returns a *int32 when successful
func (m *DeviceConfigurationDeviceStateSummary) GetNonCompliantDeviceCount()(*int32) {
val, err := m.GetBackingStore().Get("nonCompliantDeviceCount")
if err != nil {
panic(err)
}
if val != nil {
return val.(*int32)
}
return nil
}
// GetNotApplicableDeviceCount gets the notApplicableDeviceCount property value. Number of not applicable devices
// returns a *int32 when successful
func (m *DeviceConfigurationDeviceStateSummary) GetNotApplicableDeviceCount()(*int32) {
val, err := m.GetBackingStore().Get("notApplicableDeviceCount")
if err != nil {
panic(err)
}
if val != nil {
return val.(*int32)
}
return nil
}
// GetRemediatedDeviceCount gets the remediatedDeviceCount property value. Number of remediated devices
// returns a *int32 when successful
func (m *DeviceConfigurationDeviceStateSummary) GetRemediatedDeviceCount()(*int32) {
val, err := m.GetBackingStore().Get("remediatedDeviceCount")
if err != nil {
panic(err)
}
if val != nil {
return val.(*int32)
}
return nil
}
// GetUnknownDeviceCount gets the unknownDeviceCount property value. Number of unknown devices
// returns a *int32 when successful
func (m *DeviceConfigurationDeviceStateSummary) GetUnknownDeviceCount()(*int32) {
val, err := m.GetBackingStore().Get("unknownDeviceCount")
if err != nil {
panic(err)
}
if val != nil {
return val.(*int32)
}
return nil
}
// Serialize serializes information the current object
func (m *DeviceConfigurationDeviceStateSummary) Serialize(writer i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.SerializationWriter)(error) {
err := m.Entity.Serialize(writer)
if err != nil {
return err
}
{
err = writer.WriteInt32Value("compliantDeviceCount", m.GetCompliantDeviceCount())
if err != nil {
return err
}
}
{
err = writer.WriteInt32Value("conflictDeviceCount", m.GetConflictDeviceCount())
if err != nil {
return err
}
}
{
err = writer.WriteInt32Value("errorDeviceCount", m.GetErrorDeviceCount())
if err != nil {
return err
}
}
{
err = writer.WriteInt32Value("nonCompliantDeviceCount", m.GetNonCompliantDeviceCount())
if err != nil {
return err
}
}
{
err = writer.WriteInt32Value("notApplicableDeviceCount", m.GetNotApplicableDeviceCount())
if err != nil {
return err
}
}
{
err = writer.WriteInt32Value("remediatedDeviceCount", m.GetRemediatedDeviceCount())
if err != nil {
return err
}
}
{
err = writer.WriteInt32Value("unknownDeviceCount", m.GetUnknownDeviceCount())
if err != nil {
return err
}
}
return nil
}
// SetCompliantDeviceCount sets the compliantDeviceCount property value. Number of compliant devices
func (m *DeviceConfigurationDeviceStateSummary) SetCompliantDeviceCount(value *int32)() {
err := m.GetBackingStore().Set("compliantDeviceCount", value)
if err != nil {
panic(err)
}
}
// SetConflictDeviceCount sets the conflictDeviceCount property value. Number of conflict devices
func (m *DeviceConfigurationDeviceStateSummary) SetConflictDeviceCount(value *int32)() {
err := m.GetBackingStore().Set("conflictDeviceCount", value)
if err != nil {
panic(err)
}
}
// SetErrorDeviceCount sets the errorDeviceCount property value. Number of error devices
func (m *DeviceConfigurationDeviceStateSummary) SetErrorDeviceCount(value *int32)() {
err := m.GetBackingStore().Set("errorDeviceCount", value)
if err != nil {
panic(err)
}
}
// SetNonCompliantDeviceCount sets the nonCompliantDeviceCount property value. Number of NonCompliant devices
func (m *DeviceConfigurationDeviceStateSummary) SetNonCompliantDeviceCount(value *int32)() {
err := m.GetBackingStore().Set("nonCompliantDeviceCount", value)
if err != nil {
panic(err)
}
}
// SetNotApplicableDeviceCount sets the notApplicableDeviceCount property value. Number of not applicable devices
func (m *DeviceConfigurationDeviceStateSummary) SetNotApplicableDeviceCount(value *int32)() {
err := m.GetBackingStore().Set("notApplicableDeviceCount", value)
if err != nil {
panic(err)
}
}
// SetRemediatedDeviceCount sets the remediatedDeviceCount property value. Number of remediated devices
func (m *DeviceConfigurationDeviceStateSummary) SetRemediatedDeviceCount(value *int32)() {
err := m.GetBackingStore().Set("remediatedDeviceCount", value)
if err != nil {
panic(err)
}
}
// SetUnknownDeviceCount sets the unknownDeviceCount property value. Number of unknown devices
func (m *DeviceConfigurationDeviceStateSummary) SetUnknownDeviceCount(value *int32)() {
err := m.GetBackingStore().Set("unknownDeviceCount", value)
if err != nil {
panic(err)
}
}
type DeviceConfigurationDeviceStateSummaryable interface {
Entityable
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable
GetCompliantDeviceCount()(*int32)
GetConflictDeviceCount()(*int32)
GetErrorDeviceCount()(*int32)
GetNonCompliantDeviceCount()(*int32)
GetNotApplicableDeviceCount()(*int32)
GetRemediatedDeviceCount()(*int32)
GetUnknownDeviceCount()(*int32)
SetCompliantDeviceCount(value *int32)()
SetConflictDeviceCount(value *int32)()
SetErrorDeviceCount(value *int32)()
SetNonCompliantDeviceCount(value *int32)()
SetNotApplicableDeviceCount(value *int32)()
SetRemediatedDeviceCount(value *int32)()
SetUnknownDeviceCount(value *int32)()
}