forked from Azure/azure-sdk-for-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodels.go
1768 lines (1587 loc) · 62.5 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 machinelearningservices
// 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 (
"context"
"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"
"github.com/Azure/go-autorest/tracing"
"net/http"
)
// The package's fully qualified name.
const fqdn = "github.com/Azure/azure-sdk-for-go/services/preview/machinelearningservices/mgmt/2018-03-01-preview/machinelearningservices"
// ComputeType enumerates the values for compute type.
type ComputeType string
const (
// ComputeTypeAKS ...
ComputeTypeAKS ComputeType = "AKS"
// ComputeTypeBatchAI ...
ComputeTypeBatchAI ComputeType = "BatchAI"
// ComputeTypeDataFactory ...
ComputeTypeDataFactory ComputeType = "DataFactory"
// ComputeTypeHDInsight ...
ComputeTypeHDInsight ComputeType = "HDInsight"
// ComputeTypeVirtualMachine ...
ComputeTypeVirtualMachine ComputeType = "VirtualMachine"
)
// PossibleComputeTypeValues returns an array of possible values for the ComputeType const type.
func PossibleComputeTypeValues() []ComputeType {
return []ComputeType{ComputeTypeAKS, ComputeTypeBatchAI, ComputeTypeDataFactory, ComputeTypeHDInsight, ComputeTypeVirtualMachine}
}
// ComputeTypeBasicCompute enumerates the values for compute type basic compute.
type ComputeTypeBasicCompute string
const (
// ComputeTypeAKS1 ...
ComputeTypeAKS1 ComputeTypeBasicCompute = "AKS"
// ComputeTypeBatchAI1 ...
ComputeTypeBatchAI1 ComputeTypeBasicCompute = "BatchAI"
// ComputeTypeCompute ...
ComputeTypeCompute ComputeTypeBasicCompute = "Compute"
// ComputeTypeDataFactory1 ...
ComputeTypeDataFactory1 ComputeTypeBasicCompute = "DataFactory"
// ComputeTypeHDInsight1 ...
ComputeTypeHDInsight1 ComputeTypeBasicCompute = "HDInsight"
// ComputeTypeVirtualMachine1 ...
ComputeTypeVirtualMachine1 ComputeTypeBasicCompute = "VirtualMachine"
)
// PossibleComputeTypeBasicComputeValues returns an array of possible values for the ComputeTypeBasicCompute const type.
func PossibleComputeTypeBasicComputeValues() []ComputeTypeBasicCompute {
return []ComputeTypeBasicCompute{ComputeTypeAKS1, ComputeTypeBatchAI1, ComputeTypeCompute, ComputeTypeDataFactory1, ComputeTypeHDInsight1, ComputeTypeVirtualMachine1}
}
// ComputeTypeBasicComputeSecrets enumerates the values for compute type basic compute secrets.
type ComputeTypeBasicComputeSecrets string
const (
// ComputeTypeBasicComputeSecretsComputeTypeAKS ...
ComputeTypeBasicComputeSecretsComputeTypeAKS ComputeTypeBasicComputeSecrets = "AKS"
// ComputeTypeBasicComputeSecretsComputeTypeComputeSecrets ...
ComputeTypeBasicComputeSecretsComputeTypeComputeSecrets ComputeTypeBasicComputeSecrets = "ComputeSecrets"
// ComputeTypeBasicComputeSecretsComputeTypeVirtualMachine ...
ComputeTypeBasicComputeSecretsComputeTypeVirtualMachine ComputeTypeBasicComputeSecrets = "VirtualMachine"
)
// PossibleComputeTypeBasicComputeSecretsValues returns an array of possible values for the ComputeTypeBasicComputeSecrets const type.
func PossibleComputeTypeBasicComputeSecretsValues() []ComputeTypeBasicComputeSecrets {
return []ComputeTypeBasicComputeSecrets{ComputeTypeBasicComputeSecretsComputeTypeAKS, ComputeTypeBasicComputeSecretsComputeTypeComputeSecrets, ComputeTypeBasicComputeSecretsComputeTypeVirtualMachine}
}
// ProvisioningState enumerates the values for provisioning state.
type ProvisioningState string
const (
// Canceled ...
Canceled ProvisioningState = "Canceled"
// Creating ...
Creating ProvisioningState = "Creating"
// Deleting ...
Deleting ProvisioningState = "Deleting"
// Failed ...
Failed ProvisioningState = "Failed"
// Succeeded ...
Succeeded ProvisioningState = "Succeeded"
// Unknown ...
Unknown ProvisioningState = "Unknown"
// Updating ...
Updating ProvisioningState = "Updating"
)
// PossibleProvisioningStateValues returns an array of possible values for the ProvisioningState const type.
func PossibleProvisioningStateValues() []ProvisioningState {
return []ProvisioningState{Canceled, Creating, Deleting, Failed, Succeeded, Unknown, Updating}
}
// ResourceIdentityType enumerates the values for resource identity type.
type ResourceIdentityType string
const (
// SystemAssigned ...
SystemAssigned ResourceIdentityType = "SystemAssigned"
)
// PossibleResourceIdentityTypeValues returns an array of possible values for the ResourceIdentityType const type.
func PossibleResourceIdentityTypeValues() []ResourceIdentityType {
return []ResourceIdentityType{SystemAssigned}
}
// Status enumerates the values for status.
type Status string
const (
// Disabled ...
Disabled Status = "Disabled"
// Enabled ...
Enabled Status = "Enabled"
)
// PossibleStatusValues returns an array of possible values for the Status const type.
func PossibleStatusValues() []Status {
return []Status{Disabled, Enabled}
}
// AKS a Machine Learning compute based on AKS.
type AKS struct {
// Properties - AKS properties
Properties *AKSProperties `json:"properties,omitempty"`
// ComputeLocation - Location for the underlying compute
ComputeLocation *string `json:"computeLocation,omitempty"`
// ProvisioningState - READ-ONLY; The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed. Possible values include: 'Unknown', 'Updating', 'Creating', 'Deleting', 'Succeeded', 'Failed', 'Canceled'
ProvisioningState ProvisioningState `json:"provisioningState,omitempty"`
// Description - The description of the Machine Learning compute.
Description *string `json:"description,omitempty"`
// CreatedOn - READ-ONLY; The date and time when the compute was created.
CreatedOn *date.Time `json:"createdOn,omitempty"`
// ModifiedOn - READ-ONLY; The date and time when the compute was last modified.
ModifiedOn *date.Time `json:"modifiedOn,omitempty"`
// ResourceID - ARM resource id of the compute
ResourceID *string `json:"resourceId,omitempty"`
// ProvisioningErrors - READ-ONLY; Errors during provisioning
ProvisioningErrors *[]Error `json:"provisioningErrors,omitempty"`
// ComputeType - Possible values include: 'ComputeTypeCompute', 'ComputeTypeAKS1', 'ComputeTypeBatchAI1', 'ComputeTypeVirtualMachine1', 'ComputeTypeHDInsight1', 'ComputeTypeDataFactory1'
ComputeType ComputeTypeBasicCompute `json:"computeType,omitempty"`
}
// MarshalJSON is the custom marshaler for AKS.
func (a AKS) MarshalJSON() ([]byte, error) {
a.ComputeType = ComputeTypeAKS1
objectMap := make(map[string]interface{})
if a.Properties != nil {
objectMap["properties"] = a.Properties
}
if a.ComputeLocation != nil {
objectMap["computeLocation"] = a.ComputeLocation
}
if a.Description != nil {
objectMap["description"] = a.Description
}
if a.ResourceID != nil {
objectMap["resourceId"] = a.ResourceID
}
if a.ComputeType != "" {
objectMap["computeType"] = a.ComputeType
}
return json.Marshal(objectMap)
}
// AsAKS is the BasicCompute implementation for AKS.
func (a AKS) AsAKS() (*AKS, bool) {
return &a, true
}
// AsBatchAI is the BasicCompute implementation for AKS.
func (a AKS) AsBatchAI() (*BatchAI, bool) {
return nil, false
}
// AsVirtualMachine is the BasicCompute implementation for AKS.
func (a AKS) AsVirtualMachine() (*VirtualMachine, bool) {
return nil, false
}
// AsHDInsight is the BasicCompute implementation for AKS.
func (a AKS) AsHDInsight() (*HDInsight, bool) {
return nil, false
}
// AsDataFactory is the BasicCompute implementation for AKS.
func (a AKS) AsDataFactory() (*DataFactory, bool) {
return nil, false
}
// AsCompute is the BasicCompute implementation for AKS.
func (a AKS) AsCompute() (*Compute, bool) {
return nil, false
}
// AsBasicCompute is the BasicCompute implementation for AKS.
func (a AKS) AsBasicCompute() (BasicCompute, bool) {
return &a, true
}
// AksComputeSecrets secrets related to a Machine Learning compute based on AKS.
type AksComputeSecrets struct {
// UserKubeConfig - Content of kubeconfig file that can be used to connect to the Kubernetes cluster.
UserKubeConfig *string `json:"userKubeConfig,omitempty"`
// AdminKubeConfig - Content of kubeconfig file that can be used to connect to the Kubernetes cluster.
AdminKubeConfig *string `json:"adminKubeConfig,omitempty"`
// ImagePullSecretName - Image registry pull secret.
ImagePullSecretName *string `json:"imagePullSecretName,omitempty"`
// ComputeType - Possible values include: 'ComputeTypeBasicComputeSecretsComputeTypeComputeSecrets', 'ComputeTypeBasicComputeSecretsComputeTypeAKS', 'ComputeTypeBasicComputeSecretsComputeTypeVirtualMachine'
ComputeType ComputeTypeBasicComputeSecrets `json:"computeType,omitempty"`
}
// MarshalJSON is the custom marshaler for AksComputeSecrets.
func (acs AksComputeSecrets) MarshalJSON() ([]byte, error) {
acs.ComputeType = ComputeTypeBasicComputeSecretsComputeTypeAKS
objectMap := make(map[string]interface{})
if acs.UserKubeConfig != nil {
objectMap["userKubeConfig"] = acs.UserKubeConfig
}
if acs.AdminKubeConfig != nil {
objectMap["adminKubeConfig"] = acs.AdminKubeConfig
}
if acs.ImagePullSecretName != nil {
objectMap["imagePullSecretName"] = acs.ImagePullSecretName
}
if acs.ComputeType != "" {
objectMap["computeType"] = acs.ComputeType
}
return json.Marshal(objectMap)
}
// AsAksComputeSecrets is the BasicComputeSecrets implementation for AksComputeSecrets.
func (acs AksComputeSecrets) AsAksComputeSecrets() (*AksComputeSecrets, bool) {
return &acs, true
}
// AsVirtualMachineSecrets is the BasicComputeSecrets implementation for AksComputeSecrets.
func (acs AksComputeSecrets) AsVirtualMachineSecrets() (*VirtualMachineSecrets, bool) {
return nil, false
}
// AsComputeSecrets is the BasicComputeSecrets implementation for AksComputeSecrets.
func (acs AksComputeSecrets) AsComputeSecrets() (*ComputeSecrets, bool) {
return nil, false
}
// AsBasicComputeSecrets is the BasicComputeSecrets implementation for AksComputeSecrets.
func (acs AksComputeSecrets) AsBasicComputeSecrets() (BasicComputeSecrets, bool) {
return &acs, true
}
// AKSProperties AKS properties
type AKSProperties struct {
// ClusterFqdn - Cluster full qualified domain name
ClusterFqdn *string `json:"clusterFqdn,omitempty"`
// SystemServices - System services
SystemServices *[]SystemService `json:"systemServices,omitempty"`
// AgentCount - Number of agents
AgentCount *int32 `json:"agentCount,omitempty"`
// AgentVMSize - Agent virtual machine size
AgentVMSize *string `json:"agentVMSize,omitempty"`
// SslConfiguration - SSL configuration
SslConfiguration *SslConfiguration `json:"sslConfiguration,omitempty"`
}
// BatchAI a Machine Learning compute based on Azure BatchAI.
type BatchAI struct {
// Properties - BatchAI properties
Properties *BatchAIProperties `json:"properties,omitempty"`
// ComputeLocation - Location for the underlying compute
ComputeLocation *string `json:"computeLocation,omitempty"`
// ProvisioningState - READ-ONLY; The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed. Possible values include: 'Unknown', 'Updating', 'Creating', 'Deleting', 'Succeeded', 'Failed', 'Canceled'
ProvisioningState ProvisioningState `json:"provisioningState,omitempty"`
// Description - The description of the Machine Learning compute.
Description *string `json:"description,omitempty"`
// CreatedOn - READ-ONLY; The date and time when the compute was created.
CreatedOn *date.Time `json:"createdOn,omitempty"`
// ModifiedOn - READ-ONLY; The date and time when the compute was last modified.
ModifiedOn *date.Time `json:"modifiedOn,omitempty"`
// ResourceID - ARM resource id of the compute
ResourceID *string `json:"resourceId,omitempty"`
// ProvisioningErrors - READ-ONLY; Errors during provisioning
ProvisioningErrors *[]Error `json:"provisioningErrors,omitempty"`
// ComputeType - Possible values include: 'ComputeTypeCompute', 'ComputeTypeAKS1', 'ComputeTypeBatchAI1', 'ComputeTypeVirtualMachine1', 'ComputeTypeHDInsight1', 'ComputeTypeDataFactory1'
ComputeType ComputeTypeBasicCompute `json:"computeType,omitempty"`
}
// MarshalJSON is the custom marshaler for BatchAI.
func (ba BatchAI) MarshalJSON() ([]byte, error) {
ba.ComputeType = ComputeTypeBatchAI1
objectMap := make(map[string]interface{})
if ba.Properties != nil {
objectMap["properties"] = ba.Properties
}
if ba.ComputeLocation != nil {
objectMap["computeLocation"] = ba.ComputeLocation
}
if ba.Description != nil {
objectMap["description"] = ba.Description
}
if ba.ResourceID != nil {
objectMap["resourceId"] = ba.ResourceID
}
if ba.ComputeType != "" {
objectMap["computeType"] = ba.ComputeType
}
return json.Marshal(objectMap)
}
// AsAKS is the BasicCompute implementation for BatchAI.
func (ba BatchAI) AsAKS() (*AKS, bool) {
return nil, false
}
// AsBatchAI is the BasicCompute implementation for BatchAI.
func (ba BatchAI) AsBatchAI() (*BatchAI, bool) {
return &ba, true
}
// AsVirtualMachine is the BasicCompute implementation for BatchAI.
func (ba BatchAI) AsVirtualMachine() (*VirtualMachine, bool) {
return nil, false
}
// AsHDInsight is the BasicCompute implementation for BatchAI.
func (ba BatchAI) AsHDInsight() (*HDInsight, bool) {
return nil, false
}
// AsDataFactory is the BasicCompute implementation for BatchAI.
func (ba BatchAI) AsDataFactory() (*DataFactory, bool) {
return nil, false
}
// AsCompute is the BasicCompute implementation for BatchAI.
func (ba BatchAI) AsCompute() (*Compute, bool) {
return nil, false
}
// AsBasicCompute is the BasicCompute implementation for BatchAI.
func (ba BatchAI) AsBasicCompute() (BasicCompute, bool) {
return &ba, true
}
// BatchAIProperties batchAI properties
type BatchAIProperties struct {
// VMSize - Virtual Machine Size
VMSize *string `json:"vmSize,omitempty"`
// VMPriority - Virtual Machine priority
VMPriority *string `json:"vmPriority,omitempty"`
// ScaleSettings - Scale settings for BatchAI
ScaleSettings *ScaleSettings `json:"scaleSettings,omitempty"`
}
// BasicCompute machine Learning compute object.
type BasicCompute interface {
AsAKS() (*AKS, bool)
AsBatchAI() (*BatchAI, bool)
AsVirtualMachine() (*VirtualMachine, bool)
AsHDInsight() (*HDInsight, bool)
AsDataFactory() (*DataFactory, bool)
AsCompute() (*Compute, bool)
}
// Compute machine Learning compute object.
type Compute struct {
// ComputeLocation - Location for the underlying compute
ComputeLocation *string `json:"computeLocation,omitempty"`
// ProvisioningState - READ-ONLY; The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed. Possible values include: 'Unknown', 'Updating', 'Creating', 'Deleting', 'Succeeded', 'Failed', 'Canceled'
ProvisioningState ProvisioningState `json:"provisioningState,omitempty"`
// Description - The description of the Machine Learning compute.
Description *string `json:"description,omitempty"`
// CreatedOn - READ-ONLY; The date and time when the compute was created.
CreatedOn *date.Time `json:"createdOn,omitempty"`
// ModifiedOn - READ-ONLY; The date and time when the compute was last modified.
ModifiedOn *date.Time `json:"modifiedOn,omitempty"`
// ResourceID - ARM resource id of the compute
ResourceID *string `json:"resourceId,omitempty"`
// ProvisioningErrors - READ-ONLY; Errors during provisioning
ProvisioningErrors *[]Error `json:"provisioningErrors,omitempty"`
// ComputeType - Possible values include: 'ComputeTypeCompute', 'ComputeTypeAKS1', 'ComputeTypeBatchAI1', 'ComputeTypeVirtualMachine1', 'ComputeTypeHDInsight1', 'ComputeTypeDataFactory1'
ComputeType ComputeTypeBasicCompute `json:"computeType,omitempty"`
}
func unmarshalBasicCompute(body []byte) (BasicCompute, error) {
var m map[string]interface{}
err := json.Unmarshal(body, &m)
if err != nil {
return nil, err
}
switch m["computeType"] {
case string(ComputeTypeAKS1):
var a AKS
err := json.Unmarshal(body, &a)
return a, err
case string(ComputeTypeBatchAI1):
var ba BatchAI
err := json.Unmarshal(body, &ba)
return ba, err
case string(ComputeTypeVirtualMachine1):
var VM VirtualMachine
err := json.Unmarshal(body, &VM)
return VM, err
case string(ComputeTypeHDInsight1):
var hi HDInsight
err := json.Unmarshal(body, &hi)
return hi, err
case string(ComputeTypeDataFactory1):
var df DataFactory
err := json.Unmarshal(body, &df)
return df, err
default:
var c Compute
err := json.Unmarshal(body, &c)
return c, err
}
}
func unmarshalBasicComputeArray(body []byte) ([]BasicCompute, error) {
var rawMessages []*json.RawMessage
err := json.Unmarshal(body, &rawMessages)
if err != nil {
return nil, err
}
cArray := make([]BasicCompute, len(rawMessages))
for index, rawMessage := range rawMessages {
c, err := unmarshalBasicCompute(*rawMessage)
if err != nil {
return nil, err
}
cArray[index] = c
}
return cArray, nil
}
// MarshalJSON is the custom marshaler for Compute.
func (c Compute) MarshalJSON() ([]byte, error) {
c.ComputeType = ComputeTypeCompute
objectMap := make(map[string]interface{})
if c.ComputeLocation != nil {
objectMap["computeLocation"] = c.ComputeLocation
}
if c.Description != nil {
objectMap["description"] = c.Description
}
if c.ResourceID != nil {
objectMap["resourceId"] = c.ResourceID
}
if c.ComputeType != "" {
objectMap["computeType"] = c.ComputeType
}
return json.Marshal(objectMap)
}
// AsAKS is the BasicCompute implementation for Compute.
func (c Compute) AsAKS() (*AKS, bool) {
return nil, false
}
// AsBatchAI is the BasicCompute implementation for Compute.
func (c Compute) AsBatchAI() (*BatchAI, bool) {
return nil, false
}
// AsVirtualMachine is the BasicCompute implementation for Compute.
func (c Compute) AsVirtualMachine() (*VirtualMachine, bool) {
return nil, false
}
// AsHDInsight is the BasicCompute implementation for Compute.
func (c Compute) AsHDInsight() (*HDInsight, bool) {
return nil, false
}
// AsDataFactory is the BasicCompute implementation for Compute.
func (c Compute) AsDataFactory() (*DataFactory, bool) {
return nil, false
}
// AsCompute is the BasicCompute implementation for Compute.
func (c Compute) AsCompute() (*Compute, bool) {
return &c, true
}
// AsBasicCompute is the BasicCompute implementation for Compute.
func (c Compute) AsBasicCompute() (BasicCompute, bool) {
return &c, true
}
// ComputeResource machine Learning compute object wrapped into ARM resource envelope.
type ComputeResource struct {
autorest.Response `json:"-"`
// Properties - Compute properties
Properties BasicCompute `json:"properties,omitempty"`
// ID - READ-ONLY; Specifies the resource ID.
ID *string `json:"id,omitempty"`
// Name - READ-ONLY; Specifies the name of the resource.
Name *string `json:"name,omitempty"`
// Identity - The identity of the resource.
Identity *Identity `json:"identity,omitempty"`
// Location - Specifies the location of the resource.
Location *string `json:"location,omitempty"`
// Type - READ-ONLY; Specifies the type of the resource.
Type *string `json:"type,omitempty"`
// Tags - Contains resource tags defined as key/value pairs.
Tags map[string]*string `json:"tags"`
}
// MarshalJSON is the custom marshaler for ComputeResource.
func (cr ComputeResource) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
objectMap["properties"] = cr.Properties
if cr.Identity != nil {
objectMap["identity"] = cr.Identity
}
if cr.Location != nil {
objectMap["location"] = cr.Location
}
if cr.Tags != nil {
objectMap["tags"] = cr.Tags
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for ComputeResource struct.
func (cr *ComputeResource) 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 {
properties, err := unmarshalBasicCompute(*v)
if err != nil {
return err
}
cr.Properties = properties
}
case "id":
if v != nil {
var ID string
err = json.Unmarshal(*v, &ID)
if err != nil {
return err
}
cr.ID = &ID
}
case "name":
if v != nil {
var name string
err = json.Unmarshal(*v, &name)
if err != nil {
return err
}
cr.Name = &name
}
case "identity":
if v != nil {
var identity Identity
err = json.Unmarshal(*v, &identity)
if err != nil {
return err
}
cr.Identity = &identity
}
case "location":
if v != nil {
var location string
err = json.Unmarshal(*v, &location)
if err != nil {
return err
}
cr.Location = &location
}
case "type":
if v != nil {
var typeVar string
err = json.Unmarshal(*v, &typeVar)
if err != nil {
return err
}
cr.Type = &typeVar
}
case "tags":
if v != nil {
var tags map[string]*string
err = json.Unmarshal(*v, &tags)
if err != nil {
return err
}
cr.Tags = tags
}
}
}
return nil
}
// BasicComputeSecrets secrets related to a Machine Learning compute. Might differ for every type of compute.
type BasicComputeSecrets interface {
AsAksComputeSecrets() (*AksComputeSecrets, bool)
AsVirtualMachineSecrets() (*VirtualMachineSecrets, bool)
AsComputeSecrets() (*ComputeSecrets, bool)
}
// ComputeSecrets secrets related to a Machine Learning compute. Might differ for every type of compute.
type ComputeSecrets struct {
autorest.Response `json:"-"`
// ComputeType - Possible values include: 'ComputeTypeBasicComputeSecretsComputeTypeComputeSecrets', 'ComputeTypeBasicComputeSecretsComputeTypeAKS', 'ComputeTypeBasicComputeSecretsComputeTypeVirtualMachine'
ComputeType ComputeTypeBasicComputeSecrets `json:"computeType,omitempty"`
}
func unmarshalBasicComputeSecrets(body []byte) (BasicComputeSecrets, error) {
var m map[string]interface{}
err := json.Unmarshal(body, &m)
if err != nil {
return nil, err
}
switch m["computeType"] {
case string(ComputeTypeBasicComputeSecretsComputeTypeAKS):
var acs AksComputeSecrets
err := json.Unmarshal(body, &acs)
return acs, err
case string(ComputeTypeBasicComputeSecretsComputeTypeVirtualMachine):
var vms VirtualMachineSecrets
err := json.Unmarshal(body, &vms)
return vms, err
default:
var cs ComputeSecrets
err := json.Unmarshal(body, &cs)
return cs, err
}
}
func unmarshalBasicComputeSecretsArray(body []byte) ([]BasicComputeSecrets, error) {
var rawMessages []*json.RawMessage
err := json.Unmarshal(body, &rawMessages)
if err != nil {
return nil, err
}
csArray := make([]BasicComputeSecrets, len(rawMessages))
for index, rawMessage := range rawMessages {
cs, err := unmarshalBasicComputeSecrets(*rawMessage)
if err != nil {
return nil, err
}
csArray[index] = cs
}
return csArray, nil
}
// MarshalJSON is the custom marshaler for ComputeSecrets.
func (cs ComputeSecrets) MarshalJSON() ([]byte, error) {
cs.ComputeType = ComputeTypeBasicComputeSecretsComputeTypeComputeSecrets
objectMap := make(map[string]interface{})
if cs.ComputeType != "" {
objectMap["computeType"] = cs.ComputeType
}
return json.Marshal(objectMap)
}
// AsAksComputeSecrets is the BasicComputeSecrets implementation for ComputeSecrets.
func (cs ComputeSecrets) AsAksComputeSecrets() (*AksComputeSecrets, bool) {
return nil, false
}
// AsVirtualMachineSecrets is the BasicComputeSecrets implementation for ComputeSecrets.
func (cs ComputeSecrets) AsVirtualMachineSecrets() (*VirtualMachineSecrets, bool) {
return nil, false
}
// AsComputeSecrets is the BasicComputeSecrets implementation for ComputeSecrets.
func (cs ComputeSecrets) AsComputeSecrets() (*ComputeSecrets, bool) {
return &cs, true
}
// AsBasicComputeSecrets is the BasicComputeSecrets implementation for ComputeSecrets.
func (cs ComputeSecrets) AsBasicComputeSecrets() (BasicComputeSecrets, bool) {
return &cs, true
}
// ComputeSecretsModel ...
type ComputeSecretsModel struct {
autorest.Response `json:"-"`
Value BasicComputeSecrets `json:"value,omitempty"`
}
// UnmarshalJSON is the custom unmarshaler for ComputeSecretsModel struct.
func (csm *ComputeSecretsModel) UnmarshalJSON(body []byte) error {
cs, err := unmarshalBasicComputeSecrets(body)
if err != nil {
return err
}
csm.Value = cs
return nil
}
// DataFactory a DataFactory compute.
type DataFactory struct {
// ComputeLocation - Location for the underlying compute
ComputeLocation *string `json:"computeLocation,omitempty"`
// ProvisioningState - READ-ONLY; The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed. Possible values include: 'Unknown', 'Updating', 'Creating', 'Deleting', 'Succeeded', 'Failed', 'Canceled'
ProvisioningState ProvisioningState `json:"provisioningState,omitempty"`
// Description - The description of the Machine Learning compute.
Description *string `json:"description,omitempty"`
// CreatedOn - READ-ONLY; The date and time when the compute was created.
CreatedOn *date.Time `json:"createdOn,omitempty"`
// ModifiedOn - READ-ONLY; The date and time when the compute was last modified.
ModifiedOn *date.Time `json:"modifiedOn,omitempty"`
// ResourceID - ARM resource id of the compute
ResourceID *string `json:"resourceId,omitempty"`
// ProvisioningErrors - READ-ONLY; Errors during provisioning
ProvisioningErrors *[]Error `json:"provisioningErrors,omitempty"`
// ComputeType - Possible values include: 'ComputeTypeCompute', 'ComputeTypeAKS1', 'ComputeTypeBatchAI1', 'ComputeTypeVirtualMachine1', 'ComputeTypeHDInsight1', 'ComputeTypeDataFactory1'
ComputeType ComputeTypeBasicCompute `json:"computeType,omitempty"`
}
// MarshalJSON is the custom marshaler for DataFactory.
func (df DataFactory) MarshalJSON() ([]byte, error) {
df.ComputeType = ComputeTypeDataFactory1
objectMap := make(map[string]interface{})
if df.ComputeLocation != nil {
objectMap["computeLocation"] = df.ComputeLocation
}
if df.Description != nil {
objectMap["description"] = df.Description
}
if df.ResourceID != nil {
objectMap["resourceId"] = df.ResourceID
}
if df.ComputeType != "" {
objectMap["computeType"] = df.ComputeType
}
return json.Marshal(objectMap)
}
// AsAKS is the BasicCompute implementation for DataFactory.
func (df DataFactory) AsAKS() (*AKS, bool) {
return nil, false
}
// AsBatchAI is the BasicCompute implementation for DataFactory.
func (df DataFactory) AsBatchAI() (*BatchAI, bool) {
return nil, false
}
// AsVirtualMachine is the BasicCompute implementation for DataFactory.
func (df DataFactory) AsVirtualMachine() (*VirtualMachine, bool) {
return nil, false
}
// AsHDInsight is the BasicCompute implementation for DataFactory.
func (df DataFactory) AsHDInsight() (*HDInsight, bool) {
return nil, false
}
// AsDataFactory is the BasicCompute implementation for DataFactory.
func (df DataFactory) AsDataFactory() (*DataFactory, bool) {
return &df, true
}
// AsCompute is the BasicCompute implementation for DataFactory.
func (df DataFactory) AsCompute() (*Compute, bool) {
return nil, false
}
// AsBasicCompute is the BasicCompute implementation for DataFactory.
func (df DataFactory) AsBasicCompute() (BasicCompute, bool) {
return &df, true
}
// Error wrapper for error response to follow ARM guidelines.
type Error struct {
// Error - The error response.
Error *ErrorResponse `json:"error,omitempty"`
}
// ErrorDetail error detail information.
type ErrorDetail struct {
// Code - Error code.
Code *string `json:"code,omitempty"`
// Message - Error message.
Message *string `json:"message,omitempty"`
}
// ErrorResponse error response information.
type ErrorResponse struct {
// Code - Error code.
Code *string `json:"code,omitempty"`
// Message - Error message.
Message *string `json:"message,omitempty"`
// Details - An array of error detail objects.
Details *[]ErrorDetail `json:"details,omitempty"`
}
// HDInsight a HDInsight compute.
type HDInsight struct {
Properties *HDInsightProperties `json:"properties,omitempty"`
// ComputeLocation - Location for the underlying compute
ComputeLocation *string `json:"computeLocation,omitempty"`
// ProvisioningState - READ-ONLY; The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed. Possible values include: 'Unknown', 'Updating', 'Creating', 'Deleting', 'Succeeded', 'Failed', 'Canceled'
ProvisioningState ProvisioningState `json:"provisioningState,omitempty"`
// Description - The description of the Machine Learning compute.
Description *string `json:"description,omitempty"`
// CreatedOn - READ-ONLY; The date and time when the compute was created.
CreatedOn *date.Time `json:"createdOn,omitempty"`
// ModifiedOn - READ-ONLY; The date and time when the compute was last modified.
ModifiedOn *date.Time `json:"modifiedOn,omitempty"`
// ResourceID - ARM resource id of the compute
ResourceID *string `json:"resourceId,omitempty"`
// ProvisioningErrors - READ-ONLY; Errors during provisioning
ProvisioningErrors *[]Error `json:"provisioningErrors,omitempty"`
// ComputeType - Possible values include: 'ComputeTypeCompute', 'ComputeTypeAKS1', 'ComputeTypeBatchAI1', 'ComputeTypeVirtualMachine1', 'ComputeTypeHDInsight1', 'ComputeTypeDataFactory1'
ComputeType ComputeTypeBasicCompute `json:"computeType,omitempty"`
}
// MarshalJSON is the custom marshaler for HDInsight.
func (hi HDInsight) MarshalJSON() ([]byte, error) {
hi.ComputeType = ComputeTypeHDInsight1
objectMap := make(map[string]interface{})
if hi.Properties != nil {
objectMap["properties"] = hi.Properties
}
if hi.ComputeLocation != nil {
objectMap["computeLocation"] = hi.ComputeLocation
}
if hi.Description != nil {
objectMap["description"] = hi.Description
}
if hi.ResourceID != nil {
objectMap["resourceId"] = hi.ResourceID
}
if hi.ComputeType != "" {
objectMap["computeType"] = hi.ComputeType
}
return json.Marshal(objectMap)
}
// AsAKS is the BasicCompute implementation for HDInsight.
func (hi HDInsight) AsAKS() (*AKS, bool) {
return nil, false
}
// AsBatchAI is the BasicCompute implementation for HDInsight.
func (hi HDInsight) AsBatchAI() (*BatchAI, bool) {
return nil, false
}
// AsVirtualMachine is the BasicCompute implementation for HDInsight.
func (hi HDInsight) AsVirtualMachine() (*VirtualMachine, bool) {
return nil, false
}
// AsHDInsight is the BasicCompute implementation for HDInsight.
func (hi HDInsight) AsHDInsight() (*HDInsight, bool) {
return &hi, true
}
// AsDataFactory is the BasicCompute implementation for HDInsight.
func (hi HDInsight) AsDataFactory() (*DataFactory, bool) {
return nil, false
}
// AsCompute is the BasicCompute implementation for HDInsight.
func (hi HDInsight) AsCompute() (*Compute, bool) {
return nil, false
}
// AsBasicCompute is the BasicCompute implementation for HDInsight.
func (hi HDInsight) AsBasicCompute() (BasicCompute, bool) {
return &hi, true
}
// HDInsightProperties ...
type HDInsightProperties struct {
// SSHPort - Port open for ssh connections on the master node of the cluster.
SSHPort *int32 `json:"sshPort,omitempty"`
// Address - Public IP address of the master node of the cluster.
Address *string `json:"address,omitempty"`
// AdministratorAccount - Admin credentials for master node of the cluster
AdministratorAccount *VirtualMachineSSHCredentials `json:"administratorAccount,omitempty"`
}
// Identity identity for the resource.
type Identity struct {
// PrincipalID - READ-ONLY; The principal ID of resource identity.
PrincipalID *string `json:"principalId,omitempty"`
// TenantID - READ-ONLY; The tenant ID of resource.
TenantID *string `json:"tenantId,omitempty"`
// Type - The identity type. Possible values include: 'SystemAssigned'
Type ResourceIdentityType `json:"type,omitempty"`
}
// ListWorkspaceKeysResult ...
type ListWorkspaceKeysResult struct {
autorest.Response `json:"-"`
// UserStorageKey - READ-ONLY
UserStorageKey *string `json:"userStorageKey,omitempty"`
// UserStorageResourceID - READ-ONLY
UserStorageResourceID *string `json:"userStorageResourceId,omitempty"`
// AppInsightsInstrumentationKey - READ-ONLY
AppInsightsInstrumentationKey *string `json:"appInsightsInstrumentationKey,omitempty"`
// ContainerRegistryCredentials - READ-ONLY
ContainerRegistryCredentials *RegistryListCredentialsResult `json:"containerRegistryCredentials,omitempty"`
}
// MachineLearningComputeCreateOrUpdateFuture an abstraction for monitoring and retrieving the results of a
// long-running operation.
type MachineLearningComputeCreateOrUpdateFuture struct {
azure.Future
}
// Result returns the result of the asynchronous operation.
// If the operation has not completed it will return an error.
func (future *MachineLearningComputeCreateOrUpdateFuture) Result(client MachineLearningComputeClient) (cr ComputeResource, err error) {
var done bool
done, err = future.DoneWithContext(context.Background(), client)
if err != nil {
err = autorest.NewErrorWithError(err, "machinelearningservices.MachineLearningComputeCreateOrUpdateFuture", "Result", future.Response(), "Polling failure")
return
}
if !done {
err = azure.NewAsyncOpIncompleteError("machinelearningservices.MachineLearningComputeCreateOrUpdateFuture")
return
}
sender := autorest.DecorateSender(client, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...))
if cr.Response.Response, err = future.GetResult(sender); err == nil && cr.Response.Response.StatusCode != http.StatusNoContent {
cr, err = client.CreateOrUpdateResponder(cr.Response.Response)
if err != nil {
err = autorest.NewErrorWithError(err, "machinelearningservices.MachineLearningComputeCreateOrUpdateFuture", "Result", cr.Response.Response, "Failure responding to request")
}
}
return
}
// MachineLearningComputeDeleteFuture an abstraction for monitoring and retrieving the results of a
// long-running operation.
type MachineLearningComputeDeleteFuture struct {
azure.Future
}
// Result returns the result of the asynchronous operation.
// If the operation has not completed it will return an error.
func (future *MachineLearningComputeDeleteFuture) Result(client MachineLearningComputeClient) (ar autorest.Response, err error) {
var done bool
done, err = future.DoneWithContext(context.Background(), client)
if err != nil {
err = autorest.NewErrorWithError(err, "machinelearningservices.MachineLearningComputeDeleteFuture", "Result", future.Response(), "Polling failure")
return
}
if !done {
err = azure.NewAsyncOpIncompleteError("machinelearningservices.MachineLearningComputeDeleteFuture")
return
}
ar.Response = future.Response()
return
}
// MachineLearningComputeSystemUpdateFuture an abstraction for monitoring and retrieving the results of a
// long-running operation.
type MachineLearningComputeSystemUpdateFuture struct {
azure.Future
}
// Result returns the result of the asynchronous operation.
// If the operation has not completed it will return an error.