forked from Azure/azure-sdk-for-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodels.go
810 lines (744 loc) · 25.8 KB
/
models.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
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
package operationalinsights
// Copyright (c) Microsoft and contributors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
//
// See the License for the specific language governing permissions and
// limitations under the License.
//
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is regenerated.
import (
"encoding/json"
"github.com/Azure/go-autorest/autorest"
"github.com/Azure/go-autorest/autorest/azure"
"github.com/Azure/go-autorest/autorest/date"
"github.com/Azure/go-autorest/autorest/to"
"net/http"
)
// PurgeState enumerates the values for purge state.
type PurgeState string
const (
// Completed ...
Completed PurgeState = "Completed"
// Pending ...
Pending PurgeState = "Pending"
)
// PossiblePurgeStateValues returns an array of possible values for the PurgeState const type.
func PossiblePurgeStateValues() []PurgeState {
return []PurgeState{Completed, Pending}
}
// SearchSortEnum enumerates the values for search sort enum.
type SearchSortEnum string
const (
// Asc ...
Asc SearchSortEnum = "asc"
// Desc ...
Desc SearchSortEnum = "desc"
)
// PossibleSearchSortEnumValues returns an array of possible values for the SearchSortEnum const type.
func PossibleSearchSortEnumValues() []SearchSortEnum {
return []SearchSortEnum{Asc, Desc}
}
// StorageInsightState enumerates the values for storage insight state.
type StorageInsightState string
const (
// ERROR ...
ERROR StorageInsightState = "ERROR"
// OK ...
OK StorageInsightState = "OK"
)
// PossibleStorageInsightStateValues returns an array of possible values for the StorageInsightState const type.
func PossibleStorageInsightStateValues() []StorageInsightState {
return []StorageInsightState{ERROR, OK}
}
// CoreSummary the core summary of a search.
type CoreSummary struct {
// Status - The status of a core summary.
Status *string `json:"status,omitempty"`
// NumberOfDocuments - The number of documents of a core summary.
NumberOfDocuments *int64 `json:"numberOfDocuments,omitempty"`
}
// LinkTarget metadata for a workspace that isn't linked to an Azure subscription.
type LinkTarget struct {
// CustomerID - The GUID that uniquely identifies the workspace.
CustomerID *string `json:"customerId,omitempty"`
// DisplayName - The display name of the workspace.
DisplayName *string `json:"accountName,omitempty"`
// WorkspaceName - The DNS valid workspace name.
WorkspaceName *string `json:"workspaceName,omitempty"`
// Location - The location of the workspace.
Location *string `json:"location,omitempty"`
}
// ListLinkTarget ...
type ListLinkTarget struct {
autorest.Response `json:"-"`
Value *[]LinkTarget `json:"value,omitempty"`
}
// Operation supported operation of OperationsManagement resource provider.
type Operation struct {
// Name - Operation name: {provider}/{resource}/{operation}
Name *string `json:"name,omitempty"`
// Display - Display metadata associated with the operation.
Display *OperationDisplay `json:"display,omitempty"`
}
// OperationDisplay display metadata associated with the operation.
type OperationDisplay struct {
// Provider - Service provider: Microsoft OperationsManagement.
Provider *string `json:"provider,omitempty"`
// Resource - Resource on which the operation is performed etc.
Resource *string `json:"resource,omitempty"`
// Operation - Type of operation: get, read, delete, etc.
Operation *string `json:"operation,omitempty"`
}
// OperationListResult result of the request to list solution operations.
type OperationListResult struct {
autorest.Response `json:"-"`
// Value - List of solution operations supported by the OperationsManagement resource provider.
Value *[]Operation `json:"value,omitempty"`
}
// ProxyResource common properties of proxy resource.
type ProxyResource struct {
// ID - Resource ID.
ID *string `json:"id,omitempty"`
// Name - Resource name.
Name *string `json:"name,omitempty"`
// Type - Resource type.
Type *string `json:"type,omitempty"`
// Tags - Resource tags
Tags map[string]*string `json:"tags"`
}
// MarshalJSON is the custom marshaler for ProxyResource.
func (pr ProxyResource) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if pr.ID != nil {
objectMap["id"] = pr.ID
}
if pr.Name != nil {
objectMap["name"] = pr.Name
}
if pr.Type != nil {
objectMap["type"] = pr.Type
}
if pr.Tags != nil {
objectMap["tags"] = pr.Tags
}
return json.Marshal(objectMap)
}
// Resource the resource definition.
type Resource struct {
// ID - Resource Id
ID *string `json:"id,omitempty"`
// Name - Resource name
Name *string `json:"name,omitempty"`
// Type - Resource type
Type *string `json:"type,omitempty"`
// Location - Resource location
Location *string `json:"location,omitempty"`
// Tags - Resource tags
Tags map[string]*string `json:"tags"`
}
// MarshalJSON is the custom marshaler for Resource.
func (r Resource) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if r.ID != nil {
objectMap["id"] = r.ID
}
if r.Name != nil {
objectMap["name"] = r.Name
}
if r.Type != nil {
objectMap["type"] = r.Type
}
if r.Location != nil {
objectMap["location"] = r.Location
}
if r.Tags != nil {
objectMap["tags"] = r.Tags
}
return json.Marshal(objectMap)
}
// SavedSearch value object for saved search results.
type SavedSearch struct {
autorest.Response `json:"-"`
// ID - The id of the saved search.
ID *string `json:"id,omitempty"`
// Name - The name of the saved search.
Name *string `json:"name,omitempty"`
// Type - The type of the saved search.
Type *string `json:"type,omitempty"`
// ETag - The etag of the saved search.
ETag *string `json:"eTag,omitempty"`
// SavedSearchProperties - Gets or sets properties of the saved search.
*SavedSearchProperties `json:"properties,omitempty"`
}
// MarshalJSON is the custom marshaler for SavedSearch.
func (ss SavedSearch) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if ss.ID != nil {
objectMap["id"] = ss.ID
}
if ss.Name != nil {
objectMap["name"] = ss.Name
}
if ss.Type != nil {
objectMap["type"] = ss.Type
}
if ss.ETag != nil {
objectMap["eTag"] = ss.ETag
}
if ss.SavedSearchProperties != nil {
objectMap["properties"] = ss.SavedSearchProperties
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for SavedSearch struct.
func (ss *SavedSearch) UnmarshalJSON(body []byte) error {
var m map[string]*json.RawMessage
err := json.Unmarshal(body, &m)
if err != nil {
return err
}
for k, v := range m {
switch k {
case "id":
if v != nil {
var ID string
err = json.Unmarshal(*v, &ID)
if err != nil {
return err
}
ss.ID = &ID
}
case "name":
if v != nil {
var name string
err = json.Unmarshal(*v, &name)
if err != nil {
return err
}
ss.Name = &name
}
case "type":
if v != nil {
var typeVar string
err = json.Unmarshal(*v, &typeVar)
if err != nil {
return err
}
ss.Type = &typeVar
}
case "eTag":
if v != nil {
var eTag string
err = json.Unmarshal(*v, &eTag)
if err != nil {
return err
}
ss.ETag = &eTag
}
case "properties":
if v != nil {
var savedSearchProperties SavedSearchProperties
err = json.Unmarshal(*v, &savedSearchProperties)
if err != nil {
return err
}
ss.SavedSearchProperties = &savedSearchProperties
}
}
}
return nil
}
// SavedSearchesListResult the saved search operation response.
type SavedSearchesListResult struct {
autorest.Response `json:"-"`
// Metadata - The metadata from search results.
Metadata *SearchMetadata `json:"metaData,omitempty"`
// Value - The array of result values.
Value *[]SavedSearch `json:"value,omitempty"`
}
// SavedSearchProperties value object for saved search results.
type SavedSearchProperties struct {
// Category - The category of the saved search. This helps the user to find a saved search faster.
Category *string `json:"category,omitempty"`
// DisplayName - Saved search display name.
DisplayName *string `json:"displayName,omitempty"`
// Query - The query expression for the saved search. Please see https://docs.microsoft.com/en-us/azure/log-analytics/log-analytics-search-reference for reference.
Query *string `json:"query,omitempty"`
// Version - The version number of the query lanuage. Only verion 1 is allowed here.
Version *int64 `json:"version,omitempty"`
// Tags - The tags attached to the saved search.
Tags *[]Tag `json:"tags,omitempty"`
}
// SearchError details for a search error.
type SearchError struct {
// Type - The error type.
Type *string `json:"type,omitempty"`
// Message - The error message.
Message *string `json:"message,omitempty"`
}
// SearchGetSchemaResponse the get schema operation response.
type SearchGetSchemaResponse struct {
autorest.Response `json:"-"`
// Metadata - The metadata from search results.
Metadata *SearchMetadata `json:"metadata,omitempty"`
// Value - The array of result values.
Value *[]SearchSchemaValue `json:"value,omitempty"`
}
// SearchHighlight highlight details.
type SearchHighlight struct {
// Pre - The string that is put before a matched result.
Pre *string `json:"pre,omitempty"`
// Post - The string that is put after a matched result.
Post *string `json:"post,omitempty"`
}
// SearchMetadata metadata for search results.
type SearchMetadata struct {
// SearchID - The request id of the search.
SearchID *string `json:"requestId,omitempty"`
// ResultType - The search result type.
ResultType *string `json:"resultType,omitempty"`
// Total - The total number of search results.
Total *int64 `json:"total,omitempty"`
// Top - The number of top search results.
Top *int64 `json:"top,omitempty"`
// ID - The id of the search results request.
ID *string `json:"id,omitempty"`
// CoreSummaries - The core summaries.
CoreSummaries *[]CoreSummary `json:"coreSummaries,omitempty"`
// Status - The status of the search results.
Status *string `json:"status,omitempty"`
// StartTime - The start time for the search.
StartTime *date.Time `json:"startTime,omitempty"`
// LastUpdated - The time of last update.
LastUpdated *date.Time `json:"lastUpdated,omitempty"`
// ETag - The ETag of the search results.
ETag *string `json:"eTag,omitempty"`
// Sort - How the results are sorted.
Sort *[]SearchSort `json:"sort,omitempty"`
// RequestTime - The request time.
RequestTime *int64 `json:"requestTime,omitempty"`
// AggregatedValueField - The aggregated value field.
AggregatedValueField *string `json:"aggregatedValueField,omitempty"`
// AggregatedGroupingFields - The aggregated grouping fields.
AggregatedGroupingFields *string `json:"aggregatedGroupingFields,omitempty"`
// Sum - The sum of all aggregates returned in the result set.
Sum *int64 `json:"sum,omitempty"`
// Max - The max of all aggregates returned in the result set.
Max *int64 `json:"max,omitempty"`
// Schema - The schema.
Schema *SearchMetadataSchema `json:"schema,omitempty"`
}
// SearchMetadataSchema schema metadata for search.
type SearchMetadataSchema struct {
// Name - The name of the metadata schema.
Name *string `json:"name,omitempty"`
// Version - The version of the metadata schema.
Version *int32 `json:"version,omitempty"`
}
// SearchParameters parameters specifying the search query and range.
type SearchParameters struct {
// Top - The number to get from the top.
Top *int64 `json:"top,omitempty"`
// Highlight - The highlight that looks for all occurences of a string.
Highlight *SearchHighlight `json:"highlight,omitempty"`
// Query - The query to search.
Query *string `json:"query,omitempty"`
// Start - The start date filter, so the only query results returned are after this date.
Start *date.Time `json:"start,omitempty"`
// End - The end date filter, so the only query results returned are before this date.
End *date.Time `json:"end,omitempty"`
}
// SearchResultsResponse the get search result operation response.
type SearchResultsResponse struct {
autorest.Response `json:"-"`
// ID - The id of the search, which includes the full url.
ID *string `json:"id,omitempty"`
// Metadata - The metadata from search results.
Metadata *SearchMetadata `json:"metaData,omitempty"`
// Value - The array of result values.
Value *[]interface{} `json:"value,omitempty"`
// Error - The error.
Error *SearchError `json:"error,omitempty"`
}
// SearchSchemaValue value object for schema results.
type SearchSchemaValue struct {
// Name - The name of the schema.
Name *string `json:"name,omitempty"`
// DisplayName - The display name of the schema.
DisplayName *string `json:"displayName,omitempty"`
// Type - The type.
Type *string `json:"type,omitempty"`
// Indexed - The boolean that indicates the field is searchable as free text.
Indexed *bool `json:"indexed,omitempty"`
// Stored - The boolean that indicates whether or not the field is stored.
Stored *bool `json:"stored,omitempty"`
// Facet - The boolean that indicates whether or not the field is a facet.
Facet *bool `json:"facet,omitempty"`
// OwnerType - The array of workflows containing the field.
OwnerType *[]string `json:"ownerType,omitempty"`
}
// SearchSort the sort parameters for search.
type SearchSort struct {
// Name - The name of the field the search query is sorted on.
Name *string `json:"name,omitempty"`
// Order - The sort order of the search. Possible values include: 'Asc', 'Desc'
Order SearchSortEnum `json:"order,omitempty"`
}
// SetObject ...
type SetObject struct {
autorest.Response `json:"-"`
Value interface{} `json:"value,omitempty"`
}
// StorageAccount describes a storage account connection.
type StorageAccount struct {
// ID - The Azure Resource Manager ID of the storage account resource.
ID *string `json:"id,omitempty"`
// Key - The storage account key.
Key *string `json:"key,omitempty"`
}
// StorageInsight the top level storage insight resource container.
type StorageInsight struct {
autorest.Response `json:"-"`
// StorageInsightProperties - Storage insight properties.
*StorageInsightProperties `json:"properties,omitempty"`
// ETag - The ETag of the storage insight.
ETag *string `json:"eTag,omitempty"`
// ID - Resource ID.
ID *string `json:"id,omitempty"`
// Name - Resource name.
Name *string `json:"name,omitempty"`
// Type - Resource type.
Type *string `json:"type,omitempty"`
// Tags - Resource tags
Tags map[string]*string `json:"tags"`
}
// MarshalJSON is the custom marshaler for StorageInsight.
func (si StorageInsight) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if si.StorageInsightProperties != nil {
objectMap["properties"] = si.StorageInsightProperties
}
if si.ETag != nil {
objectMap["eTag"] = si.ETag
}
if si.ID != nil {
objectMap["id"] = si.ID
}
if si.Name != nil {
objectMap["name"] = si.Name
}
if si.Type != nil {
objectMap["type"] = si.Type
}
if si.Tags != nil {
objectMap["tags"] = si.Tags
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for StorageInsight struct.
func (si *StorageInsight) UnmarshalJSON(body []byte) error {
var m map[string]*json.RawMessage
err := json.Unmarshal(body, &m)
if err != nil {
return err
}
for k, v := range m {
switch k {
case "properties":
if v != nil {
var storageInsightProperties StorageInsightProperties
err = json.Unmarshal(*v, &storageInsightProperties)
if err != nil {
return err
}
si.StorageInsightProperties = &storageInsightProperties
}
case "eTag":
if v != nil {
var eTag string
err = json.Unmarshal(*v, &eTag)
if err != nil {
return err
}
si.ETag = &eTag
}
case "id":
if v != nil {
var ID string
err = json.Unmarshal(*v, &ID)
if err != nil {
return err
}
si.ID = &ID
}
case "name":
if v != nil {
var name string
err = json.Unmarshal(*v, &name)
if err != nil {
return err
}
si.Name = &name
}
case "type":
if v != nil {
var typeVar string
err = json.Unmarshal(*v, &typeVar)
if err != nil {
return err
}
si.Type = &typeVar
}
case "tags":
if v != nil {
var tags map[string]*string
err = json.Unmarshal(*v, &tags)
if err != nil {
return err
}
si.Tags = tags
}
}
}
return nil
}
// StorageInsightListResult the list storage insights operation response.
type StorageInsightListResult struct {
autorest.Response `json:"-"`
// Value - Gets or sets a list of storage insight instances.
Value *[]StorageInsight `json:"value,omitempty"`
// OdataNextLink - The link (url) to the next page of results.
OdataNextLink *string `json:"@odata.nextLink,omitempty"`
}
// StorageInsightListResultIterator provides access to a complete listing of StorageInsight values.
type StorageInsightListResultIterator struct {
i int
page StorageInsightListResultPage
}
// Next advances to the next value. If there was an error making
// the request the iterator does not advance and the error is returned.
func (iter *StorageInsightListResultIterator) Next() error {
iter.i++
if iter.i < len(iter.page.Values()) {
return nil
}
err := iter.page.Next()
if err != nil {
iter.i--
return err
}
iter.i = 0
return nil
}
// NotDone returns true if the enumeration should be started or is not yet complete.
func (iter StorageInsightListResultIterator) NotDone() bool {
return iter.page.NotDone() && iter.i < len(iter.page.Values())
}
// Response returns the raw server response from the last page request.
func (iter StorageInsightListResultIterator) Response() StorageInsightListResult {
return iter.page.Response()
}
// Value returns the current value or a zero-initialized value if the
// iterator has advanced beyond the end of the collection.
func (iter StorageInsightListResultIterator) Value() StorageInsight {
if !iter.page.NotDone() {
return StorageInsight{}
}
return iter.page.Values()[iter.i]
}
// IsEmpty returns true if the ListResult contains no values.
func (silr StorageInsightListResult) IsEmpty() bool {
return silr.Value == nil || len(*silr.Value) == 0
}
// storageInsightListResultPreparer prepares a request to retrieve the next set of results.
// It returns nil if no more results exist.
func (silr StorageInsightListResult) storageInsightListResultPreparer() (*http.Request, error) {
if silr.OdataNextLink == nil || len(to.String(silr.OdataNextLink)) < 1 {
return nil, nil
}
return autorest.Prepare(&http.Request{},
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(silr.OdataNextLink)))
}
// StorageInsightListResultPage contains a page of StorageInsight values.
type StorageInsightListResultPage struct {
fn func(StorageInsightListResult) (StorageInsightListResult, error)
silr StorageInsightListResult
}
// Next advances to the next page of values. If there was an error making
// the request the page does not advance and the error is returned.
func (page *StorageInsightListResultPage) Next() error {
next, err := page.fn(page.silr)
if err != nil {
return err
}
page.silr = next
return nil
}
// NotDone returns true if the page enumeration should be started or is not yet complete.
func (page StorageInsightListResultPage) NotDone() bool {
return !page.silr.IsEmpty()
}
// Response returns the raw server response from the last page request.
func (page StorageInsightListResultPage) Response() StorageInsightListResult {
return page.silr
}
// Values returns the slice of values for the current page or nil if there are no values.
func (page StorageInsightListResultPage) Values() []StorageInsight {
if page.silr.IsEmpty() {
return nil
}
return *page.silr.Value
}
// StorageInsightProperties storage insight properties.
type StorageInsightProperties struct {
// Containers - The names of the blob containers that the workspace should read
Containers *[]string `json:"containers,omitempty"`
// Tables - The names of the Azure tables that the workspace should read
Tables *[]string `json:"tables,omitempty"`
// StorageAccount - The storage account connection details
StorageAccount *StorageAccount `json:"storageAccount,omitempty"`
// Status - The status of the storage insight
Status *StorageInsightStatus `json:"status,omitempty"`
}
// StorageInsightStatus the status of the storage insight.
type StorageInsightStatus struct {
// State - The state of the storage insight connection to the workspace. Possible values include: 'OK', 'ERROR'
State StorageInsightState `json:"state,omitempty"`
// Description - Description of the state of the storage insight.
Description *string `json:"description,omitempty"`
}
// Tag a tag of a saved search.
type Tag struct {
// Name - The tag name.
Name *string `json:"name,omitempty"`
// Value - The tag value.
Value *string `json:"value,omitempty"`
}
// WorkspacePurgeBody describes the body of a purge request for an App Insights Workspace
type WorkspacePurgeBody struct {
// Table - Table from which to purge data.
Table *string `json:"table,omitempty"`
// Filters - The set of columns and filters (queries) to run over them to purge the resulting data.
Filters *[]WorkspacePurgeBodyFilters `json:"filters,omitempty"`
}
// WorkspacePurgeBodyFilters user-defined filters to return data which will be purged from the table.
type WorkspacePurgeBodyFilters struct {
// Column - The column of the table over which the given query should run
Column *string `json:"column,omitempty"`
// Filter - A query to to run over the provided table and column to purge the corresponding data.
Filter *string `json:"filter,omitempty"`
}
// WorkspacePurgeResponse response containing operationId for a specific purge action.
type WorkspacePurgeResponse struct {
// OperationID - Id to use when querying for status for a particular purge operation.
OperationID *string `json:"operationId,omitempty"`
}
// WorkspacePurgeStatusResponse response containing status for a specific purge operation.
type WorkspacePurgeStatusResponse struct {
// Status - Status of the operation represented by the requested Id. Possible values include: 'Pending', 'Completed'
Status PurgeState `json:"status,omitempty"`
}
// WorkspacesGetSearchResultsFuture an abstraction for monitoring and retrieving the results of a long-running
// operation.
type WorkspacesGetSearchResultsFuture struct {
azure.Future
req *http.Request
}
// Result returns the result of the asynchronous operation.
// If the operation has not completed it will return an error.
func (future WorkspacesGetSearchResultsFuture) Result(client WorkspacesClient) (srr SearchResultsResponse, err error) {
var done bool
done, err = future.Done(client)
if err != nil {
err = autorest.NewErrorWithError(err, "operationalinsights.WorkspacesGetSearchResultsFuture", "Result", future.Response(), "Polling failure")
return
}
if !done {
return srr, azure.NewAsyncOpIncompleteError("operationalinsights.WorkspacesGetSearchResultsFuture")
}
if future.PollingMethod() == azure.PollingLocation {
srr, err = client.GetSearchResultsResponder(future.Response())
if err != nil {
err = autorest.NewErrorWithError(err, "operationalinsights.WorkspacesGetSearchResultsFuture", "Result", future.Response(), "Failure responding to request")
}
return
}
var req *http.Request
var resp *http.Response
if future.PollingURL() != "" {
req, err = http.NewRequest(http.MethodGet, future.PollingURL(), nil)
if err != nil {
return
}
} else {
req = autorest.ChangeToGet(future.req)
}
resp, err = autorest.SendWithSender(client, req,
autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...))
if err != nil {
err = autorest.NewErrorWithError(err, "operationalinsights.WorkspacesGetSearchResultsFuture", "Result", resp, "Failure sending request")
return
}
srr, err = client.GetSearchResultsResponder(resp)
if err != nil {
err = autorest.NewErrorWithError(err, "operationalinsights.WorkspacesGetSearchResultsFuture", "Result", resp, "Failure responding to request")
}
return
}
// WorkspacesPurgeFuture an abstraction for monitoring and retrieving the results of a long-running operation.
type WorkspacesPurgeFuture struct {
azure.Future
req *http.Request
}
// Result returns the result of the asynchronous operation.
// If the operation has not completed it will return an error.
func (future WorkspacesPurgeFuture) Result(client WorkspacesClient) (so SetObject, err error) {
var done bool
done, err = future.Done(client)
if err != nil {
err = autorest.NewErrorWithError(err, "operationalinsights.WorkspacesPurgeFuture", "Result", future.Response(), "Polling failure")
return
}
if !done {
return so, azure.NewAsyncOpIncompleteError("operationalinsights.WorkspacesPurgeFuture")
}
if future.PollingMethod() == azure.PollingLocation {
so, err = client.PurgeResponder(future.Response())
if err != nil {
err = autorest.NewErrorWithError(err, "operationalinsights.WorkspacesPurgeFuture", "Result", future.Response(), "Failure responding to request")
}
return
}
var req *http.Request
var resp *http.Response
if future.PollingURL() != "" {
req, err = http.NewRequest(http.MethodGet, future.PollingURL(), nil)
if err != nil {
return
}
} else {
req = autorest.ChangeToGet(future.req)
}
resp, err = autorest.SendWithSender(client, req,
autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...))
if err != nil {
err = autorest.NewErrorWithError(err, "operationalinsights.WorkspacesPurgeFuture", "Result", resp, "Failure sending request")
return
}
so, err = client.PurgeResponder(resp)
if err != nil {
err = autorest.NewErrorWithError(err, "operationalinsights.WorkspacesPurgeFuture", "Result", resp, "Failure responding to request")
}
return
}