forked from Azure/azure-sdk-for-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
models.go
2076 lines (1914 loc) · 70.7 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
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package kusto
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
//
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is regenerated.
import (
"context"
"encoding/json"
"github.com/Azure/go-autorest/autorest"
"github.com/Azure/go-autorest/autorest/azure"
"github.com/Azure/go-autorest/autorest/to"
"github.com/Azure/go-autorest/tracing"
"net/http"
)
// The package's fully qualified name.
const fqdn = "github.com/Azure/azure-sdk-for-go/services/kusto/mgmt/2019-05-15/kusto"
// AzureCapacity azure capacity definition.
type AzureCapacity struct {
// ScaleType - Scale type. Possible values include: 'Automatic', 'Manual', 'None'
ScaleType AzureScaleType `json:"scaleType,omitempty"`
// Minimum - Minimum allowed capacity.
Minimum *int32 `json:"minimum,omitempty"`
// Maximum - Maximum allowed capacity.
Maximum *int32 `json:"maximum,omitempty"`
// Default - The default capacity that would be used.
Default *int32 `json:"default,omitempty"`
}
// AzureEntityResource the resource model definition for an Azure Resource Manager resource with an etag.
type AzureEntityResource struct {
// Etag - READ-ONLY; Resource Etag.
Etag *string `json:"etag,omitempty"`
// ID - READ-ONLY; Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
ID *string `json:"id,omitempty"`
// Name - READ-ONLY; The name of the resource
Name *string `json:"name,omitempty"`
// Type - READ-ONLY; The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Type *string `json:"type,omitempty"`
}
// MarshalJSON is the custom marshaler for AzureEntityResource.
func (aer AzureEntityResource) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
return json.Marshal(objectMap)
}
// AzureResourceSku azure resource SKU definition.
type AzureResourceSku struct {
// ResourceType - Resource Namespace and Type.
ResourceType *string `json:"resourceType,omitempty"`
// Sku - The SKU details.
Sku *AzureSku `json:"sku,omitempty"`
// Capacity - The number of instances of the cluster.
Capacity *AzureCapacity `json:"capacity,omitempty"`
}
// AzureSku azure SKU definition.
type AzureSku struct {
// Name - SKU name. Possible values include: 'StandardDS13V21TBPS', 'StandardDS13V22TBPS', 'StandardDS14V23TBPS', 'StandardDS14V24TBPS', 'StandardD13V2', 'StandardD14V2', 'StandardL8s', 'StandardL16s', 'StandardD11V2', 'StandardD12V2', 'StandardL4s', 'DevNoSLAStandardD11V2'
Name AzureSkuName `json:"name,omitempty"`
// Capacity - The number of instances of the cluster.
Capacity *int32 `json:"capacity,omitempty"`
// Tier - SKU tier. Possible values include: 'Basic', 'Standard'
Tier AzureSkuTier `json:"tier,omitempty"`
}
// CheckNameResult the result returned from a check name availability request.
type CheckNameResult struct {
autorest.Response `json:"-"`
// NameAvailable - Specifies a Boolean value that indicates if the name is available.
NameAvailable *bool `json:"nameAvailable,omitempty"`
// Name - The name that was checked.
Name *string `json:"name,omitempty"`
// Message - Message indicating an unavailable name due to a conflict, or a description of the naming rules that are violated.
Message *string `json:"message,omitempty"`
// Reason - Message providing the reason why the given name is invalid. Possible values include: 'Invalid', 'AlreadyExists'
Reason Reason `json:"reason,omitempty"`
}
// CloudError an error response from Kusto.
type CloudError struct {
// Error - An error response from Kusto.
Error *CloudErrorBody `json:"error,omitempty"`
}
// CloudErrorBody an error response from Kusto.
type CloudErrorBody struct {
// Code - An identifier for the error. Codes are invariant and are intended to be consumed programmatically.
Code *string `json:"code,omitempty"`
// Message - A message describing the error, intended to be suitable for displaying in a user interface.
Message *string `json:"message,omitempty"`
// Target - The target of the particular error. For example, the name of the property in error.
Target *string `json:"target,omitempty"`
// Details - A list of additional details about the error.
Details *[]CloudErrorBody `json:"details,omitempty"`
}
// Cluster class representing a Kusto cluster.
type Cluster struct {
autorest.Response `json:"-"`
// Sku - The SKU of the cluster.
Sku *AzureSku `json:"sku,omitempty"`
// Zones - The availability zones of the cluster.
Zones *[]string `json:"zones,omitempty"`
// ClusterProperties - The cluster properties.
*ClusterProperties `json:"properties,omitempty"`
// Tags - Resource tags.
Tags map[string]*string `json:"tags"`
// Location - The geo-location where the resource lives
Location *string `json:"location,omitempty"`
// ID - READ-ONLY; Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
ID *string `json:"id,omitempty"`
// Name - READ-ONLY; The name of the resource
Name *string `json:"name,omitempty"`
// Type - READ-ONLY; The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Type *string `json:"type,omitempty"`
}
// MarshalJSON is the custom marshaler for Cluster.
func (c Cluster) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if c.Sku != nil {
objectMap["sku"] = c.Sku
}
if c.Zones != nil {
objectMap["zones"] = c.Zones
}
if c.ClusterProperties != nil {
objectMap["properties"] = c.ClusterProperties
}
if c.Tags != nil {
objectMap["tags"] = c.Tags
}
if c.Location != nil {
objectMap["location"] = c.Location
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for Cluster struct.
func (c *Cluster) 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 "sku":
if v != nil {
var sku AzureSku
err = json.Unmarshal(*v, &sku)
if err != nil {
return err
}
c.Sku = &sku
}
case "zones":
if v != nil {
var zones []string
err = json.Unmarshal(*v, &zones)
if err != nil {
return err
}
c.Zones = &zones
}
case "properties":
if v != nil {
var clusterProperties ClusterProperties
err = json.Unmarshal(*v, &clusterProperties)
if err != nil {
return err
}
c.ClusterProperties = &clusterProperties
}
case "tags":
if v != nil {
var tags map[string]*string
err = json.Unmarshal(*v, &tags)
if err != nil {
return err
}
c.Tags = tags
}
case "location":
if v != nil {
var location string
err = json.Unmarshal(*v, &location)
if err != nil {
return err
}
c.Location = &location
}
case "id":
if v != nil {
var ID string
err = json.Unmarshal(*v, &ID)
if err != nil {
return err
}
c.ID = &ID
}
case "name":
if v != nil {
var name string
err = json.Unmarshal(*v, &name)
if err != nil {
return err
}
c.Name = &name
}
case "type":
if v != nil {
var typeVar string
err = json.Unmarshal(*v, &typeVar)
if err != nil {
return err
}
c.Type = &typeVar
}
}
}
return nil
}
// ClusterCheckNameRequest the result returned from a cluster check name availability request.
type ClusterCheckNameRequest struct {
// Name - Cluster name.
Name *string `json:"name,omitempty"`
// Type - The type of resource, Microsoft.Kusto/clusters.
Type *string `json:"type,omitempty"`
}
// ClusterListResult the list Kusto clusters operation response.
type ClusterListResult struct {
autorest.Response `json:"-"`
// Value - The list of Kusto clusters.
Value *[]Cluster `json:"value,omitempty"`
}
// ClusterProperties class representing the Kusto cluster properties.
type ClusterProperties struct {
// State - READ-ONLY; The state of the resource. Possible values include: 'StateCreating', 'StateUnavailable', 'StateRunning', 'StateDeleting', 'StateDeleted', 'StateStopping', 'StateStopped', 'StateStarting', 'StateUpdating'
State State `json:"state,omitempty"`
// ProvisioningState - READ-ONLY; The provisioned state of the resource. Possible values include: 'Running', 'Creating', 'Deleting', 'Succeeded', 'Failed', 'Moving'
ProvisioningState ProvisioningState `json:"provisioningState,omitempty"`
// URI - READ-ONLY; The cluster URI.
URI *string `json:"uri,omitempty"`
// DataIngestionURI - READ-ONLY; The cluster data ingestion URI.
DataIngestionURI *string `json:"dataIngestionUri,omitempty"`
// TrustedExternalTenants - The cluster's external tenants.
TrustedExternalTenants *[]TrustedExternalTenant `json:"trustedExternalTenants,omitempty"`
// OptimizedAutoscale - Optimized auto scale definition.
OptimizedAutoscale *OptimizedAutoscale `json:"optimizedAutoscale,omitempty"`
// EnableDiskEncryption - A boolean value that indicates if the cluster's disks are encrypted.
EnableDiskEncryption *bool `json:"enableDiskEncryption,omitempty"`
// EnableStreamingIngest - A boolean value that indicates if the streaming ingest is enabled.
EnableStreamingIngest *bool `json:"enableStreamingIngest,omitempty"`
// VirtualNetworkConfiguration - Virtual network definition.
VirtualNetworkConfiguration *VirtualNetworkConfiguration `json:"virtualNetworkConfiguration,omitempty"`
}
// MarshalJSON is the custom marshaler for ClusterProperties.
func (cp ClusterProperties) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if cp.TrustedExternalTenants != nil {
objectMap["trustedExternalTenants"] = cp.TrustedExternalTenants
}
if cp.OptimizedAutoscale != nil {
objectMap["optimizedAutoscale"] = cp.OptimizedAutoscale
}
if cp.EnableDiskEncryption != nil {
objectMap["enableDiskEncryption"] = cp.EnableDiskEncryption
}
if cp.EnableStreamingIngest != nil {
objectMap["enableStreamingIngest"] = cp.EnableStreamingIngest
}
if cp.VirtualNetworkConfiguration != nil {
objectMap["virtualNetworkConfiguration"] = cp.VirtualNetworkConfiguration
}
return json.Marshal(objectMap)
}
// ClustersCreateOrUpdateFuture an abstraction for monitoring and retrieving the results of a long-running
// operation.
type ClustersCreateOrUpdateFuture struct {
azure.FutureAPI
// Result returns the result of the asynchronous operation.
// If the operation has not completed it will return an error.
Result func(ClustersClient) (Cluster, error)
}
// UnmarshalJSON is the custom unmarshaller for CreateFuture.
func (future *ClustersCreateOrUpdateFuture) UnmarshalJSON(body []byte) error {
var azFuture azure.Future
if err := json.Unmarshal(body, &azFuture); err != nil {
return err
}
future.FutureAPI = &azFuture
future.Result = future.result
return nil
}
// result is the default implementation for ClustersCreateOrUpdateFuture.Result.
func (future *ClustersCreateOrUpdateFuture) result(client ClustersClient) (c Cluster, err error) {
var done bool
done, err = future.DoneWithContext(context.Background(), client)
if err != nil {
err = autorest.NewErrorWithError(err, "kusto.ClustersCreateOrUpdateFuture", "Result", future.Response(), "Polling failure")
return
}
if !done {
c.Response.Response = future.Response()
err = azure.NewAsyncOpIncompleteError("kusto.ClustersCreateOrUpdateFuture")
return
}
sender := autorest.DecorateSender(client, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...))
if c.Response.Response, err = future.GetResult(sender); err == nil && c.Response.Response.StatusCode != http.StatusNoContent {
c, err = client.CreateOrUpdateResponder(c.Response.Response)
if err != nil {
err = autorest.NewErrorWithError(err, "kusto.ClustersCreateOrUpdateFuture", "Result", c.Response.Response, "Failure responding to request")
}
}
return
}
// ClustersDeleteFuture an abstraction for monitoring and retrieving the results of a long-running
// operation.
type ClustersDeleteFuture struct {
azure.FutureAPI
// Result returns the result of the asynchronous operation.
// If the operation has not completed it will return an error.
Result func(ClustersClient) (autorest.Response, error)
}
// UnmarshalJSON is the custom unmarshaller for CreateFuture.
func (future *ClustersDeleteFuture) UnmarshalJSON(body []byte) error {
var azFuture azure.Future
if err := json.Unmarshal(body, &azFuture); err != nil {
return err
}
future.FutureAPI = &azFuture
future.Result = future.result
return nil
}
// result is the default implementation for ClustersDeleteFuture.Result.
func (future *ClustersDeleteFuture) result(client ClustersClient) (ar autorest.Response, err error) {
var done bool
done, err = future.DoneWithContext(context.Background(), client)
if err != nil {
err = autorest.NewErrorWithError(err, "kusto.ClustersDeleteFuture", "Result", future.Response(), "Polling failure")
return
}
if !done {
ar.Response = future.Response()
err = azure.NewAsyncOpIncompleteError("kusto.ClustersDeleteFuture")
return
}
ar.Response = future.Response()
return
}
// ClustersStartFuture an abstraction for monitoring and retrieving the results of a long-running
// operation.
type ClustersStartFuture struct {
azure.FutureAPI
// Result returns the result of the asynchronous operation.
// If the operation has not completed it will return an error.
Result func(ClustersClient) (autorest.Response, error)
}
// UnmarshalJSON is the custom unmarshaller for CreateFuture.
func (future *ClustersStartFuture) UnmarshalJSON(body []byte) error {
var azFuture azure.Future
if err := json.Unmarshal(body, &azFuture); err != nil {
return err
}
future.FutureAPI = &azFuture
future.Result = future.result
return nil
}
// result is the default implementation for ClustersStartFuture.Result.
func (future *ClustersStartFuture) result(client ClustersClient) (ar autorest.Response, err error) {
var done bool
done, err = future.DoneWithContext(context.Background(), client)
if err != nil {
err = autorest.NewErrorWithError(err, "kusto.ClustersStartFuture", "Result", future.Response(), "Polling failure")
return
}
if !done {
ar.Response = future.Response()
err = azure.NewAsyncOpIncompleteError("kusto.ClustersStartFuture")
return
}
ar.Response = future.Response()
return
}
// ClustersStopFuture an abstraction for monitoring and retrieving the results of a long-running operation.
type ClustersStopFuture struct {
azure.FutureAPI
// Result returns the result of the asynchronous operation.
// If the operation has not completed it will return an error.
Result func(ClustersClient) (autorest.Response, error)
}
// UnmarshalJSON is the custom unmarshaller for CreateFuture.
func (future *ClustersStopFuture) UnmarshalJSON(body []byte) error {
var azFuture azure.Future
if err := json.Unmarshal(body, &azFuture); err != nil {
return err
}
future.FutureAPI = &azFuture
future.Result = future.result
return nil
}
// result is the default implementation for ClustersStopFuture.Result.
func (future *ClustersStopFuture) result(client ClustersClient) (ar autorest.Response, err error) {
var done bool
done, err = future.DoneWithContext(context.Background(), client)
if err != nil {
err = autorest.NewErrorWithError(err, "kusto.ClustersStopFuture", "Result", future.Response(), "Polling failure")
return
}
if !done {
ar.Response = future.Response()
err = azure.NewAsyncOpIncompleteError("kusto.ClustersStopFuture")
return
}
ar.Response = future.Response()
return
}
// ClustersUpdateFuture an abstraction for monitoring and retrieving the results of a long-running
// operation.
type ClustersUpdateFuture struct {
azure.FutureAPI
// Result returns the result of the asynchronous operation.
// If the operation has not completed it will return an error.
Result func(ClustersClient) (Cluster, error)
}
// UnmarshalJSON is the custom unmarshaller for CreateFuture.
func (future *ClustersUpdateFuture) UnmarshalJSON(body []byte) error {
var azFuture azure.Future
if err := json.Unmarshal(body, &azFuture); err != nil {
return err
}
future.FutureAPI = &azFuture
future.Result = future.result
return nil
}
// result is the default implementation for ClustersUpdateFuture.Result.
func (future *ClustersUpdateFuture) result(client ClustersClient) (c Cluster, err error) {
var done bool
done, err = future.DoneWithContext(context.Background(), client)
if err != nil {
err = autorest.NewErrorWithError(err, "kusto.ClustersUpdateFuture", "Result", future.Response(), "Polling failure")
return
}
if !done {
c.Response.Response = future.Response()
err = azure.NewAsyncOpIncompleteError("kusto.ClustersUpdateFuture")
return
}
sender := autorest.DecorateSender(client, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...))
if c.Response.Response, err = future.GetResult(sender); err == nil && c.Response.Response.StatusCode != http.StatusNoContent {
c, err = client.UpdateResponder(c.Response.Response)
if err != nil {
err = autorest.NewErrorWithError(err, "kusto.ClustersUpdateFuture", "Result", c.Response.Response, "Failure responding to request")
}
}
return
}
// ClusterUpdate class representing an update to a Kusto cluster.
type ClusterUpdate struct {
// Tags - Resource tags.
Tags map[string]*string `json:"tags"`
// Location - Resource location.
Location *string `json:"location,omitempty"`
// Sku - The SKU of the cluster.
Sku *AzureSku `json:"sku,omitempty"`
// ClusterProperties - The cluster properties.
*ClusterProperties `json:"properties,omitempty"`
// ID - READ-ONLY; Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
ID *string `json:"id,omitempty"`
// Name - READ-ONLY; The name of the resource
Name *string `json:"name,omitempty"`
// Type - READ-ONLY; The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Type *string `json:"type,omitempty"`
}
// MarshalJSON is the custom marshaler for ClusterUpdate.
func (cu ClusterUpdate) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if cu.Tags != nil {
objectMap["tags"] = cu.Tags
}
if cu.Location != nil {
objectMap["location"] = cu.Location
}
if cu.Sku != nil {
objectMap["sku"] = cu.Sku
}
if cu.ClusterProperties != nil {
objectMap["properties"] = cu.ClusterProperties
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for ClusterUpdate struct.
func (cu *ClusterUpdate) 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 "tags":
if v != nil {
var tags map[string]*string
err = json.Unmarshal(*v, &tags)
if err != nil {
return err
}
cu.Tags = tags
}
case "location":
if v != nil {
var location string
err = json.Unmarshal(*v, &location)
if err != nil {
return err
}
cu.Location = &location
}
case "sku":
if v != nil {
var sku AzureSku
err = json.Unmarshal(*v, &sku)
if err != nil {
return err
}
cu.Sku = &sku
}
case "properties":
if v != nil {
var clusterProperties ClusterProperties
err = json.Unmarshal(*v, &clusterProperties)
if err != nil {
return err
}
cu.ClusterProperties = &clusterProperties
}
case "id":
if v != nil {
var ID string
err = json.Unmarshal(*v, &ID)
if err != nil {
return err
}
cu.ID = &ID
}
case "name":
if v != nil {
var name string
err = json.Unmarshal(*v, &name)
if err != nil {
return err
}
cu.Name = &name
}
case "type":
if v != nil {
var typeVar string
err = json.Unmarshal(*v, &typeVar)
if err != nil {
return err
}
cu.Type = &typeVar
}
}
}
return nil
}
// Database class representing a Kusto database.
type Database struct {
autorest.Response `json:"-"`
// Location - Resource location.
Location *string `json:"location,omitempty"`
// DatabaseProperties - The database properties.
*DatabaseProperties `json:"properties,omitempty"`
// ID - READ-ONLY; Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
ID *string `json:"id,omitempty"`
// Name - READ-ONLY; The name of the resource
Name *string `json:"name,omitempty"`
// Type - READ-ONLY; The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Type *string `json:"type,omitempty"`
}
// MarshalJSON is the custom marshaler for Database.
func (d Database) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if d.Location != nil {
objectMap["location"] = d.Location
}
if d.DatabaseProperties != nil {
objectMap["properties"] = d.DatabaseProperties
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for Database struct.
func (d *Database) 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 "location":
if v != nil {
var location string
err = json.Unmarshal(*v, &location)
if err != nil {
return err
}
d.Location = &location
}
case "properties":
if v != nil {
var databaseProperties DatabaseProperties
err = json.Unmarshal(*v, &databaseProperties)
if err != nil {
return err
}
d.DatabaseProperties = &databaseProperties
}
case "id":
if v != nil {
var ID string
err = json.Unmarshal(*v, &ID)
if err != nil {
return err
}
d.ID = &ID
}
case "name":
if v != nil {
var name string
err = json.Unmarshal(*v, &name)
if err != nil {
return err
}
d.Name = &name
}
case "type":
if v != nil {
var typeVar string
err = json.Unmarshal(*v, &typeVar)
if err != nil {
return err
}
d.Type = &typeVar
}
}
}
return nil
}
// DatabaseCheckNameRequest the result returned from a database check name availability request.
type DatabaseCheckNameRequest struct {
// Name - Database name.
Name *string `json:"name,omitempty"`
// Type - The type of resource, Microsoft.Kusto/clusters/databases.
Type *string `json:"type,omitempty"`
}
// DatabaseListResult the list Kusto databases operation response.
type DatabaseListResult struct {
autorest.Response `json:"-"`
// Value - The list of Kusto databases.
Value *[]Database `json:"value,omitempty"`
}
// DatabasePrincipal a class representing database principal entity.
type DatabasePrincipal struct {
// Role - Database principal role. Possible values include: 'Admin', 'Ingestor', 'Monitor', 'User', 'UnrestrictedViewers', 'Viewer'
Role DatabasePrincipalRole `json:"role,omitempty"`
// Name - Database principal name.
Name *string `json:"name,omitempty"`
// Type - Database principal type. Possible values include: 'DatabasePrincipalTypeApp', 'DatabasePrincipalTypeGroup', 'DatabasePrincipalTypeUser'
Type DatabasePrincipalType `json:"type,omitempty"`
// Fqn - Database principal fully qualified name.
Fqn *string `json:"fqn,omitempty"`
// Email - Database principal email if exists.
Email *string `json:"email,omitempty"`
// AppID - Application id - relevant only for application principal type.
AppID *string `json:"appId,omitempty"`
// TenantName - READ-ONLY; The tenant name of the principal
TenantName *string `json:"tenantName,omitempty"`
}
// MarshalJSON is the custom marshaler for DatabasePrincipal.
func (dp DatabasePrincipal) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if dp.Role != "" {
objectMap["role"] = dp.Role
}
if dp.Name != nil {
objectMap["name"] = dp.Name
}
if dp.Type != "" {
objectMap["type"] = dp.Type
}
if dp.Fqn != nil {
objectMap["fqn"] = dp.Fqn
}
if dp.Email != nil {
objectMap["email"] = dp.Email
}
if dp.AppID != nil {
objectMap["appId"] = dp.AppID
}
return json.Marshal(objectMap)
}
// DatabasePrincipalListRequest the list Kusto database principals operation request.
type DatabasePrincipalListRequest struct {
// Value - The list of Kusto database principals.
Value *[]DatabasePrincipal `json:"value,omitempty"`
}
// DatabasePrincipalListResult the list Kusto database principals operation response.
type DatabasePrincipalListResult struct {
autorest.Response `json:"-"`
// Value - The list of Kusto database principals.
Value *[]DatabasePrincipal `json:"value,omitempty"`
}
// DatabaseProperties class representing the Kusto database properties.
type DatabaseProperties struct {
// ProvisioningState - READ-ONLY; The provisioned state of the resource. Possible values include: 'Running', 'Creating', 'Deleting', 'Succeeded', 'Failed', 'Moving'
ProvisioningState ProvisioningState `json:"provisioningState,omitempty"`
// SoftDeletePeriod - The time the data should be kept before it stops being accessible to queries in TimeSpan.
SoftDeletePeriod *string `json:"softDeletePeriod,omitempty"`
// HotCachePeriod - The time the data should be kept in cache for fast queries in TimeSpan.
HotCachePeriod *string `json:"hotCachePeriod,omitempty"`
// Statistics - The statistics of the database.
Statistics *DatabaseStatistics `json:"statistics,omitempty"`
}
// MarshalJSON is the custom marshaler for DatabaseProperties.
func (dp DatabaseProperties) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if dp.SoftDeletePeriod != nil {
objectMap["softDeletePeriod"] = dp.SoftDeletePeriod
}
if dp.HotCachePeriod != nil {
objectMap["hotCachePeriod"] = dp.HotCachePeriod
}
if dp.Statistics != nil {
objectMap["statistics"] = dp.Statistics
}
return json.Marshal(objectMap)
}
// DatabasesCreateOrUpdateFuture an abstraction for monitoring and retrieving the results of a long-running
// operation.
type DatabasesCreateOrUpdateFuture struct {
azure.FutureAPI
// Result returns the result of the asynchronous operation.
// If the operation has not completed it will return an error.
Result func(DatabasesClient) (Database, error)
}
// UnmarshalJSON is the custom unmarshaller for CreateFuture.
func (future *DatabasesCreateOrUpdateFuture) UnmarshalJSON(body []byte) error {
var azFuture azure.Future
if err := json.Unmarshal(body, &azFuture); err != nil {
return err
}
future.FutureAPI = &azFuture
future.Result = future.result
return nil
}
// result is the default implementation for DatabasesCreateOrUpdateFuture.Result.
func (future *DatabasesCreateOrUpdateFuture) result(client DatabasesClient) (d Database, err error) {
var done bool
done, err = future.DoneWithContext(context.Background(), client)
if err != nil {
err = autorest.NewErrorWithError(err, "kusto.DatabasesCreateOrUpdateFuture", "Result", future.Response(), "Polling failure")
return
}
if !done {
d.Response.Response = future.Response()
err = azure.NewAsyncOpIncompleteError("kusto.DatabasesCreateOrUpdateFuture")
return
}
sender := autorest.DecorateSender(client, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...))
if d.Response.Response, err = future.GetResult(sender); err == nil && d.Response.Response.StatusCode != http.StatusNoContent {
d, err = client.CreateOrUpdateResponder(d.Response.Response)
if err != nil {
err = autorest.NewErrorWithError(err, "kusto.DatabasesCreateOrUpdateFuture", "Result", d.Response.Response, "Failure responding to request")
}
}
return
}
// DatabasesDeleteFuture an abstraction for monitoring and retrieving the results of a long-running
// operation.
type DatabasesDeleteFuture struct {
azure.FutureAPI
// Result returns the result of the asynchronous operation.
// If the operation has not completed it will return an error.
Result func(DatabasesClient) (autorest.Response, error)
}
// UnmarshalJSON is the custom unmarshaller for CreateFuture.
func (future *DatabasesDeleteFuture) UnmarshalJSON(body []byte) error {
var azFuture azure.Future
if err := json.Unmarshal(body, &azFuture); err != nil {
return err
}
future.FutureAPI = &azFuture
future.Result = future.result
return nil
}
// result is the default implementation for DatabasesDeleteFuture.Result.
func (future *DatabasesDeleteFuture) result(client DatabasesClient) (ar autorest.Response, err error) {
var done bool
done, err = future.DoneWithContext(context.Background(), client)
if err != nil {
err = autorest.NewErrorWithError(err, "kusto.DatabasesDeleteFuture", "Result", future.Response(), "Polling failure")
return
}
if !done {
ar.Response = future.Response()
err = azure.NewAsyncOpIncompleteError("kusto.DatabasesDeleteFuture")
return
}
ar.Response = future.Response()
return
}
// DatabaseStatistics a class that contains database statistics information.
type DatabaseStatistics struct {
// Size - The database size - the total size of compressed data and index in bytes.
Size *float64 `json:"size,omitempty"`
}
// DatabasesUpdateFuture an abstraction for monitoring and retrieving the results of a long-running
// operation.
type DatabasesUpdateFuture struct {
azure.FutureAPI
// Result returns the result of the asynchronous operation.
// If the operation has not completed it will return an error.
Result func(DatabasesClient) (Database, error)
}
// UnmarshalJSON is the custom unmarshaller for CreateFuture.
func (future *DatabasesUpdateFuture) UnmarshalJSON(body []byte) error {
var azFuture azure.Future
if err := json.Unmarshal(body, &azFuture); err != nil {
return err
}
future.FutureAPI = &azFuture
future.Result = future.result
return nil
}
// result is the default implementation for DatabasesUpdateFuture.Result.
func (future *DatabasesUpdateFuture) result(client DatabasesClient) (d Database, err error) {
var done bool
done, err = future.DoneWithContext(context.Background(), client)
if err != nil {
err = autorest.NewErrorWithError(err, "kusto.DatabasesUpdateFuture", "Result", future.Response(), "Polling failure")
return
}
if !done {
d.Response.Response = future.Response()
err = azure.NewAsyncOpIncompleteError("kusto.DatabasesUpdateFuture")
return
}
sender := autorest.DecorateSender(client, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...))
if d.Response.Response, err = future.GetResult(sender); err == nil && d.Response.Response.StatusCode != http.StatusNoContent {
d, err = client.UpdateResponder(d.Response.Response)
if err != nil {
err = autorest.NewErrorWithError(err, "kusto.DatabasesUpdateFuture", "Result", d.Response.Response, "Failure responding to request")
}
}
return
}
// DatabaseUpdate class representing an update to a Kusto database.
type DatabaseUpdate struct {
// Location - Resource location.
Location *string `json:"location,omitempty"`
// DatabaseProperties - The properties of the updated database.
*DatabaseProperties `json:"properties,omitempty"`
// ID - READ-ONLY; Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
ID *string `json:"id,omitempty"`
// Name - READ-ONLY; The name of the resource
Name *string `json:"name,omitempty"`
// Type - READ-ONLY; The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Type *string `json:"type,omitempty"`
}
// MarshalJSON is the custom marshaler for DatabaseUpdate.
func (du DatabaseUpdate) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if du.Location != nil {
objectMap["location"] = du.Location
}
if du.DatabaseProperties != nil {
objectMap["properties"] = du.DatabaseProperties
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for DatabaseUpdate struct.
func (du *DatabaseUpdate) 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 "location":
if v != nil {
var location string
err = json.Unmarshal(*v, &location)
if err != nil {
return err
}
du.Location = &location
}
case "properties":
if v != nil {
var databaseProperties DatabaseProperties
err = json.Unmarshal(*v, &databaseProperties)
if err != nil {
return err
}
du.DatabaseProperties = &databaseProperties
}
case "id":
if v != nil {
var ID string
err = json.Unmarshal(*v, &ID)
if err != nil {
return err
}
du.ID = &ID
}
case "name":
if v != nil {
var name string
err = json.Unmarshal(*v, &name)
if err != nil {
return err
}
du.Name = &name
}
case "type":
if v != nil {
var typeVar string
err = json.Unmarshal(*v, &typeVar)
if err != nil {
return err
}
du.Type = &typeVar
}
}
}
return nil
}
// BasicDataConnection class representing an data connection.
type BasicDataConnection interface {