-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathdevice_management_export_job.go
420 lines (418 loc) · 15.4 KB
/
device_management_export_job.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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
package models
import (
i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e "time"
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91 "github.com/microsoft/kiota-abstractions-go/serialization"
)
// DeviceManagementExportJob entity representing a job to export a report.
type DeviceManagementExportJob struct {
Entity
}
// NewDeviceManagementExportJob instantiates a new DeviceManagementExportJob and sets the default values.
func NewDeviceManagementExportJob()(*DeviceManagementExportJob) {
m := &DeviceManagementExportJob{
Entity: *NewEntity(),
}
return m
}
// CreateDeviceManagementExportJobFromDiscriminatorValue creates a new instance of the appropriate class based on discriminator value
// returns a Parsable when successful
func CreateDeviceManagementExportJobFromDiscriminatorValue(parseNode i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, error) {
return NewDeviceManagementExportJob(), nil
}
// GetExpirationDateTime gets the expirationDateTime property value. Time that the exported report expires
// returns a *Time when successful
func (m *DeviceManagementExportJob) GetExpirationDateTime()(*i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time) {
val, err := m.GetBackingStore().Get("expirationDateTime")
if err != nil {
panic(err)
}
if val != nil {
return val.(*i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time)
}
return nil
}
// GetFieldDeserializers the deserialization information for the current model
// returns a map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error) when successful
func (m *DeviceManagementExportJob) GetFieldDeserializers()(map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error)) {
res := m.Entity.GetFieldDeserializers()
res["expirationDateTime"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetTimeValue()
if err != nil {
return err
}
if val != nil {
m.SetExpirationDateTime(val)
}
return nil
}
res["filter"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetStringValue()
if err != nil {
return err
}
if val != nil {
m.SetFilter(val)
}
return nil
}
res["format"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetEnumValue(ParseDeviceManagementReportFileFormat)
if err != nil {
return err
}
if val != nil {
m.SetFormat(val.(*DeviceManagementReportFileFormat))
}
return nil
}
res["localizationType"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetEnumValue(ParseDeviceManagementExportJobLocalizationType)
if err != nil {
return err
}
if val != nil {
m.SetLocalizationType(val.(*DeviceManagementExportJobLocalizationType))
}
return nil
}
res["reportName"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetStringValue()
if err != nil {
return err
}
if val != nil {
m.SetReportName(val)
}
return nil
}
res["requestDateTime"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetTimeValue()
if err != nil {
return err
}
if val != nil {
m.SetRequestDateTime(val)
}
return nil
}
res["select"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetCollectionOfPrimitiveValues("string")
if err != nil {
return err
}
if val != nil {
res := make([]string, len(val))
for i, v := range val {
if v != nil {
res[i] = *(v.(*string))
}
}
m.SetSelectEscaped(res)
}
return nil
}
res["snapshotId"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetStringValue()
if err != nil {
return err
}
if val != nil {
m.SetSnapshotId(val)
}
return nil
}
res["status"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetEnumValue(ParseDeviceManagementReportStatus)
if err != nil {
return err
}
if val != nil {
m.SetStatus(val.(*DeviceManagementReportStatus))
}
return nil
}
res["url"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetStringValue()
if err != nil {
return err
}
if val != nil {
m.SetUrl(val)
}
return nil
}
return res
}
// GetFilter gets the filter property value. Filters applied on the report
// returns a *string when successful
func (m *DeviceManagementExportJob) GetFilter()(*string) {
val, err := m.GetBackingStore().Get("filter")
if err != nil {
panic(err)
}
if val != nil {
return val.(*string)
}
return nil
}
// GetFormat gets the format property value. Possible values for the file format of a report to be exported.
// returns a *DeviceManagementReportFileFormat when successful
func (m *DeviceManagementExportJob) GetFormat()(*DeviceManagementReportFileFormat) {
val, err := m.GetBackingStore().Get("format")
if err != nil {
panic(err)
}
if val != nil {
return val.(*DeviceManagementReportFileFormat)
}
return nil
}
// GetLocalizationType gets the localizationType property value. Configures how the requested export job is localized.
// returns a *DeviceManagementExportJobLocalizationType when successful
func (m *DeviceManagementExportJob) GetLocalizationType()(*DeviceManagementExportJobLocalizationType) {
val, err := m.GetBackingStore().Get("localizationType")
if err != nil {
panic(err)
}
if val != nil {
return val.(*DeviceManagementExportJobLocalizationType)
}
return nil
}
// GetReportName gets the reportName property value. Name of the report
// returns a *string when successful
func (m *DeviceManagementExportJob) GetReportName()(*string) {
val, err := m.GetBackingStore().Get("reportName")
if err != nil {
panic(err)
}
if val != nil {
return val.(*string)
}
return nil
}
// GetRequestDateTime gets the requestDateTime property value. Time that the exported report was requested
// returns a *Time when successful
func (m *DeviceManagementExportJob) GetRequestDateTime()(*i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time) {
val, err := m.GetBackingStore().Get("requestDateTime")
if err != nil {
panic(err)
}
if val != nil {
return val.(*i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time)
}
return nil
}
// GetSelectEscaped gets the select property value. Columns selected from the report
// returns a []string when successful
func (m *DeviceManagementExportJob) GetSelectEscaped()([]string) {
val, err := m.GetBackingStore().Get("selectEscaped")
if err != nil {
panic(err)
}
if val != nil {
return val.([]string)
}
return nil
}
// GetSnapshotId gets the snapshotId property value. A snapshot is an identifiable subset of the dataset represented by the ReportName. A sessionId or CachedReportConfiguration id can be used here. If a sessionId is specified, Filter, Select, and OrderBy are applied to the data represented by the sessionId. Filter, Select, and OrderBy cannot be specified together with a CachedReportConfiguration id.
// returns a *string when successful
func (m *DeviceManagementExportJob) GetSnapshotId()(*string) {
val, err := m.GetBackingStore().Get("snapshotId")
if err != nil {
panic(err)
}
if val != nil {
return val.(*string)
}
return nil
}
// GetStatus gets the status property value. Possible statuses associated with a generated report.
// returns a *DeviceManagementReportStatus when successful
func (m *DeviceManagementExportJob) GetStatus()(*DeviceManagementReportStatus) {
val, err := m.GetBackingStore().Get("status")
if err != nil {
panic(err)
}
if val != nil {
return val.(*DeviceManagementReportStatus)
}
return nil
}
// GetUrl gets the url property value. Temporary location of the exported report
// returns a *string when successful
func (m *DeviceManagementExportJob) GetUrl()(*string) {
val, err := m.GetBackingStore().Get("url")
if err != nil {
panic(err)
}
if val != nil {
return val.(*string)
}
return nil
}
// Serialize serializes information the current object
func (m *DeviceManagementExportJob) Serialize(writer i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.SerializationWriter)(error) {
err := m.Entity.Serialize(writer)
if err != nil {
return err
}
{
err = writer.WriteTimeValue("expirationDateTime", m.GetExpirationDateTime())
if err != nil {
return err
}
}
{
err = writer.WriteStringValue("filter", m.GetFilter())
if err != nil {
return err
}
}
if m.GetFormat() != nil {
cast := (*m.GetFormat()).String()
err = writer.WriteStringValue("format", &cast)
if err != nil {
return err
}
}
if m.GetLocalizationType() != nil {
cast := (*m.GetLocalizationType()).String()
err = writer.WriteStringValue("localizationType", &cast)
if err != nil {
return err
}
}
{
err = writer.WriteStringValue("reportName", m.GetReportName())
if err != nil {
return err
}
}
{
err = writer.WriteTimeValue("requestDateTime", m.GetRequestDateTime())
if err != nil {
return err
}
}
if m.GetSelectEscaped() != nil {
err = writer.WriteCollectionOfStringValues("select", m.GetSelectEscaped())
if err != nil {
return err
}
}
{
err = writer.WriteStringValue("snapshotId", m.GetSnapshotId())
if err != nil {
return err
}
}
if m.GetStatus() != nil {
cast := (*m.GetStatus()).String()
err = writer.WriteStringValue("status", &cast)
if err != nil {
return err
}
}
{
err = writer.WriteStringValue("url", m.GetUrl())
if err != nil {
return err
}
}
return nil
}
// SetExpirationDateTime sets the expirationDateTime property value. Time that the exported report expires
func (m *DeviceManagementExportJob) SetExpirationDateTime(value *i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time)() {
err := m.GetBackingStore().Set("expirationDateTime", value)
if err != nil {
panic(err)
}
}
// SetFilter sets the filter property value. Filters applied on the report
func (m *DeviceManagementExportJob) SetFilter(value *string)() {
err := m.GetBackingStore().Set("filter", value)
if err != nil {
panic(err)
}
}
// SetFormat sets the format property value. Possible values for the file format of a report to be exported.
func (m *DeviceManagementExportJob) SetFormat(value *DeviceManagementReportFileFormat)() {
err := m.GetBackingStore().Set("format", value)
if err != nil {
panic(err)
}
}
// SetLocalizationType sets the localizationType property value. Configures how the requested export job is localized.
func (m *DeviceManagementExportJob) SetLocalizationType(value *DeviceManagementExportJobLocalizationType)() {
err := m.GetBackingStore().Set("localizationType", value)
if err != nil {
panic(err)
}
}
// SetReportName sets the reportName property value. Name of the report
func (m *DeviceManagementExportJob) SetReportName(value *string)() {
err := m.GetBackingStore().Set("reportName", value)
if err != nil {
panic(err)
}
}
// SetRequestDateTime sets the requestDateTime property value. Time that the exported report was requested
func (m *DeviceManagementExportJob) SetRequestDateTime(value *i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time)() {
err := m.GetBackingStore().Set("requestDateTime", value)
if err != nil {
panic(err)
}
}
// SetSelectEscaped sets the select property value. Columns selected from the report
func (m *DeviceManagementExportJob) SetSelectEscaped(value []string)() {
err := m.GetBackingStore().Set("selectEscaped", value)
if err != nil {
panic(err)
}
}
// SetSnapshotId sets the snapshotId property value. A snapshot is an identifiable subset of the dataset represented by the ReportName. A sessionId or CachedReportConfiguration id can be used here. If a sessionId is specified, Filter, Select, and OrderBy are applied to the data represented by the sessionId. Filter, Select, and OrderBy cannot be specified together with a CachedReportConfiguration id.
func (m *DeviceManagementExportJob) SetSnapshotId(value *string)() {
err := m.GetBackingStore().Set("snapshotId", value)
if err != nil {
panic(err)
}
}
// SetStatus sets the status property value. Possible statuses associated with a generated report.
func (m *DeviceManagementExportJob) SetStatus(value *DeviceManagementReportStatus)() {
err := m.GetBackingStore().Set("status", value)
if err != nil {
panic(err)
}
}
// SetUrl sets the url property value. Temporary location of the exported report
func (m *DeviceManagementExportJob) SetUrl(value *string)() {
err := m.GetBackingStore().Set("url", value)
if err != nil {
panic(err)
}
}
type DeviceManagementExportJobable interface {
Entityable
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable
GetExpirationDateTime()(*i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time)
GetFilter()(*string)
GetFormat()(*DeviceManagementReportFileFormat)
GetLocalizationType()(*DeviceManagementExportJobLocalizationType)
GetReportName()(*string)
GetRequestDateTime()(*i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time)
GetSelectEscaped()([]string)
GetSnapshotId()(*string)
GetStatus()(*DeviceManagementReportStatus)
GetUrl()(*string)
SetExpirationDateTime(value *i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time)()
SetFilter(value *string)()
SetFormat(value *DeviceManagementReportFileFormat)()
SetLocalizationType(value *DeviceManagementExportJobLocalizationType)()
SetReportName(value *string)()
SetRequestDateTime(value *i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time)()
SetSelectEscaped(value []string)()
SetSnapshotId(value *string)()
SetStatus(value *DeviceManagementReportStatus)()
SetUrl(value *string)()
}