forked from Azure/azure-sdk-for-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
models.go
5847 lines (5444 loc) · 203 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 storsimple
// 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"
)
// AlertEmailNotificationStatus enumerates the values for alert email notification status.
type AlertEmailNotificationStatus string
const (
// Disabled ...
Disabled AlertEmailNotificationStatus = "Disabled"
// Enabled ...
Enabled AlertEmailNotificationStatus = "Enabled"
)
// AlertScope enumerates the values for alert scope.
type AlertScope string
const (
// AlertScopeDevice ...
AlertScopeDevice AlertScope = "Device"
// AlertScopeResource ...
AlertScopeResource AlertScope = "Resource"
)
// AlertSeverity enumerates the values for alert severity.
type AlertSeverity string
const (
// Critical ...
Critical AlertSeverity = "Critical"
// Informational ...
Informational AlertSeverity = "Informational"
// Warning ...
Warning AlertSeverity = "Warning"
)
// AlertSourceType enumerates the values for alert source type.
type AlertSourceType string
const (
// AlertSourceTypeDevice ...
AlertSourceTypeDevice AlertSourceType = "Device"
// AlertSourceTypeResource ...
AlertSourceTypeResource AlertSourceType = "Resource"
)
// AlertStatus enumerates the values for alert status.
type AlertStatus string
const (
// Active ...
Active AlertStatus = "Active"
// Cleared ...
Cleared AlertStatus = "Cleared"
)
// AuthenticationType enumerates the values for authentication type.
type AuthenticationType string
const (
// Basic ...
Basic AuthenticationType = "Basic"
// Invalid ...
Invalid AuthenticationType = "Invalid"
// None ...
None AuthenticationType = "None"
// NTLM ...
NTLM AuthenticationType = "NTLM"
)
// AuthorizationEligibility enumerates the values for authorization eligibility.
type AuthorizationEligibility string
const (
// Eligible ...
Eligible AuthorizationEligibility = "Eligible"
// InEligible ...
InEligible AuthorizationEligibility = "InEligible"
)
// AuthorizationStatus enumerates the values for authorization status.
type AuthorizationStatus string
const (
// AuthorizationStatusDisabled ...
AuthorizationStatusDisabled AuthorizationStatus = "Disabled"
// AuthorizationStatusEnabled ...
AuthorizationStatusEnabled AuthorizationStatus = "Enabled"
)
// BackupJobCreationType enumerates the values for backup job creation type.
type BackupJobCreationType string
const (
// Adhoc ...
Adhoc BackupJobCreationType = "Adhoc"
// BySchedule ...
BySchedule BackupJobCreationType = "BySchedule"
// BySSM ...
BySSM BackupJobCreationType = "BySSM"
)
// BackupPolicyCreationType enumerates the values for backup policy creation type.
type BackupPolicyCreationType string
const (
// BackupPolicyCreationTypeBySaaS ...
BackupPolicyCreationTypeBySaaS BackupPolicyCreationType = "BySaaS"
// BackupPolicyCreationTypeBySSM ...
BackupPolicyCreationTypeBySSM BackupPolicyCreationType = "BySSM"
)
// BackupStatus enumerates the values for backup status.
type BackupStatus string
const (
// BackupStatusDisabled ...
BackupStatusDisabled BackupStatus = "Disabled"
// BackupStatusEnabled ...
BackupStatusEnabled BackupStatus = "Enabled"
)
// BackupType enumerates the values for backup type.
type BackupType string
const (
// CloudSnapshot ...
CloudSnapshot BackupType = "CloudSnapshot"
// LocalSnapshot ...
LocalSnapshot BackupType = "LocalSnapshot"
)
// ControllerID enumerates the values for controller id.
type ControllerID string
const (
// ControllerIDController0 ...
ControllerIDController0 ControllerID = "Controller0"
// ControllerIDController1 ...
ControllerIDController1 ControllerID = "Controller1"
// ControllerIDNone ...
ControllerIDNone ControllerID = "None"
// ControllerIDUnknown ...
ControllerIDUnknown ControllerID = "Unknown"
)
// ControllerPowerStateAction enumerates the values for controller power state action.
type ControllerPowerStateAction string
const (
// Restart ...
Restart ControllerPowerStateAction = "Restart"
// Shutdown ...
Shutdown ControllerPowerStateAction = "Shutdown"
// Start ...
Start ControllerPowerStateAction = "Start"
)
// ControllerStatus enumerates the values for controller status.
type ControllerStatus string
const (
// ControllerStatusFailure ...
ControllerStatusFailure ControllerStatus = "Failure"
// ControllerStatusNotPresent ...
ControllerStatusNotPresent ControllerStatus = "NotPresent"
// ControllerStatusOk ...
ControllerStatusOk ControllerStatus = "Ok"
// ControllerStatusPoweredOff ...
ControllerStatusPoweredOff ControllerStatus = "PoweredOff"
// ControllerStatusRecovering ...
ControllerStatusRecovering ControllerStatus = "Recovering"
// ControllerStatusWarning ...
ControllerStatusWarning ControllerStatus = "Warning"
)
// DayOfWeek enumerates the values for day of week.
type DayOfWeek string
const (
// Friday ...
Friday DayOfWeek = "Friday"
// Monday ...
Monday DayOfWeek = "Monday"
// Saturday ...
Saturday DayOfWeek = "Saturday"
// Sunday ...
Sunday DayOfWeek = "Sunday"
// Thursday ...
Thursday DayOfWeek = "Thursday"
// Tuesday ...
Tuesday DayOfWeek = "Tuesday"
// Wednesday ...
Wednesday DayOfWeek = "Wednesday"
)
// DeviceConfigurationStatus enumerates the values for device configuration status.
type DeviceConfigurationStatus string
const (
// Complete ...
Complete DeviceConfigurationStatus = "Complete"
// Pending ...
Pending DeviceConfigurationStatus = "Pending"
)
// DeviceStatus enumerates the values for device status.
type DeviceStatus string
const (
// Creating ...
Creating DeviceStatus = "Creating"
// Deactivated ...
Deactivated DeviceStatus = "Deactivated"
// Deactivating ...
Deactivating DeviceStatus = "Deactivating"
// Deleted ...
Deleted DeviceStatus = "Deleted"
// MaintenanceMode ...
MaintenanceMode DeviceStatus = "MaintenanceMode"
// Offline ...
Offline DeviceStatus = "Offline"
// Online ...
Online DeviceStatus = "Online"
// Provisioning ...
Provisioning DeviceStatus = "Provisioning"
// ReadyToSetup ...
ReadyToSetup DeviceStatus = "ReadyToSetup"
// RequiresAttention ...
RequiresAttention DeviceStatus = "RequiresAttention"
// Unknown ...
Unknown DeviceStatus = "Unknown"
)
// DeviceType enumerates the values for device type.
type DeviceType string
const (
// DeviceTypeInvalid ...
DeviceTypeInvalid DeviceType = "Invalid"
// DeviceTypeSeries8000PhysicalAppliance ...
DeviceTypeSeries8000PhysicalAppliance DeviceType = "Series8000PhysicalAppliance"
// DeviceTypeSeries8000VirtualAppliance ...
DeviceTypeSeries8000VirtualAppliance DeviceType = "Series8000VirtualAppliance"
)
// EncryptionAlgorithm enumerates the values for encryption algorithm.
type EncryptionAlgorithm string
const (
// EncryptionAlgorithmAES256 ...
EncryptionAlgorithmAES256 EncryptionAlgorithm = "AES256"
// EncryptionAlgorithmNone ...
EncryptionAlgorithmNone EncryptionAlgorithm = "None"
// EncryptionAlgorithmRSAESPKCS1V15 ...
EncryptionAlgorithmRSAESPKCS1V15 EncryptionAlgorithm = "RSAES_PKCS1_v_1_5"
)
// EncryptionStatus enumerates the values for encryption status.
type EncryptionStatus string
const (
// EncryptionStatusDisabled ...
EncryptionStatusDisabled EncryptionStatus = "Disabled"
// EncryptionStatusEnabled ...
EncryptionStatusEnabled EncryptionStatus = "Enabled"
)
// FeatureSupportStatus enumerates the values for feature support status.
type FeatureSupportStatus string
const (
// NotAvailable ...
NotAvailable FeatureSupportStatus = "NotAvailable"
// Supported ...
Supported FeatureSupportStatus = "Supported"
// UnsupportedDeviceVersion ...
UnsupportedDeviceVersion FeatureSupportStatus = "UnsupportedDeviceVersion"
)
// HardwareComponentStatus enumerates the values for hardware component status.
type HardwareComponentStatus string
const (
// HardwareComponentStatusFailure ...
HardwareComponentStatusFailure HardwareComponentStatus = "Failure"
// HardwareComponentStatusNotPresent ...
HardwareComponentStatusNotPresent HardwareComponentStatus = "NotPresent"
// HardwareComponentStatusOk ...
HardwareComponentStatusOk HardwareComponentStatus = "Ok"
// HardwareComponentStatusPoweredOff ...
HardwareComponentStatusPoweredOff HardwareComponentStatus = "PoweredOff"
// HardwareComponentStatusRecovering ...
HardwareComponentStatusRecovering HardwareComponentStatus = "Recovering"
// HardwareComponentStatusUnknown ...
HardwareComponentStatusUnknown HardwareComponentStatus = "Unknown"
// HardwareComponentStatusWarning ...
HardwareComponentStatusWarning HardwareComponentStatus = "Warning"
)
// InEligibilityCategory enumerates the values for in eligibility category.
type InEligibilityCategory string
const (
// DeviceNotOnline ...
DeviceNotOnline InEligibilityCategory = "DeviceNotOnline"
// NotSupportedAppliance ...
NotSupportedAppliance InEligibilityCategory = "NotSupportedAppliance"
// RolloverPending ...
RolloverPending InEligibilityCategory = "RolloverPending"
)
// ISCSIAndCloudStatus enumerates the values for iscsi and cloud status.
type ISCSIAndCloudStatus string
const (
// ISCSIAndCloudStatusCloudEnabled ...
ISCSIAndCloudStatusCloudEnabled ISCSIAndCloudStatus = "CloudEnabled"
// ISCSIAndCloudStatusDisabled ...
ISCSIAndCloudStatusDisabled ISCSIAndCloudStatus = "Disabled"
// ISCSIAndCloudStatusIscsiAndCloudEnabled ...
ISCSIAndCloudStatusIscsiAndCloudEnabled ISCSIAndCloudStatus = "IscsiAndCloudEnabled"
// ISCSIAndCloudStatusIscsiEnabled ...
ISCSIAndCloudStatusIscsiEnabled ISCSIAndCloudStatus = "IscsiEnabled"
)
// JobStatus enumerates the values for job status.
type JobStatus string
const (
// Canceled ...
Canceled JobStatus = "Canceled"
// Failed ...
Failed JobStatus = "Failed"
// Running ...
Running JobStatus = "Running"
// Succeeded ...
Succeeded JobStatus = "Succeeded"
)
// JobType enumerates the values for job type.
type JobType string
const (
// CloneVolume ...
CloneVolume JobType = "CloneVolume"
// CreateCloudAppliance ...
CreateCloudAppliance JobType = "CreateCloudAppliance"
// CreateLocallyPinnedVolume ...
CreateLocallyPinnedVolume JobType = "CreateLocallyPinnedVolume"
// FailoverVolumeContainers ...
FailoverVolumeContainers JobType = "FailoverVolumeContainers"
// InstallUpdates ...
InstallUpdates JobType = "InstallUpdates"
// ManualBackup ...
ManualBackup JobType = "ManualBackup"
// ModifyVolume ...
ModifyVolume JobType = "ModifyVolume"
// RestoreBackup ...
RestoreBackup JobType = "RestoreBackup"
// ScheduledBackup ...
ScheduledBackup JobType = "ScheduledBackup"
// SupportPackageLogs ...
SupportPackageLogs JobType = "SupportPackageLogs"
)
// KeyRolloverStatus enumerates the values for key rollover status.
type KeyRolloverStatus string
const (
// NotRequired ...
NotRequired KeyRolloverStatus = "NotRequired"
// Required ...
Required KeyRolloverStatus = "Required"
)
// Kind enumerates the values for kind.
type Kind string
const (
// Series8000 ...
Series8000 Kind = "Series8000"
)
// ManagerType enumerates the values for manager type.
type ManagerType string
const (
// GardaV1 ...
GardaV1 ManagerType = "GardaV1"
// HelsinkiV1 ...
HelsinkiV1 ManagerType = "HelsinkiV1"
)
// MetricAggregationType enumerates the values for metric aggregation type.
type MetricAggregationType string
const (
// MetricAggregationTypeAverage ...
MetricAggregationTypeAverage MetricAggregationType = "Average"
// MetricAggregationTypeLast ...
MetricAggregationTypeLast MetricAggregationType = "Last"
// MetricAggregationTypeMaximum ...
MetricAggregationTypeMaximum MetricAggregationType = "Maximum"
// MetricAggregationTypeMinimum ...
MetricAggregationTypeMinimum MetricAggregationType = "Minimum"
// MetricAggregationTypeNone ...
MetricAggregationTypeNone MetricAggregationType = "None"
// MetricAggregationTypeTotal ...
MetricAggregationTypeTotal MetricAggregationType = "Total"
)
// MetricUnit enumerates the values for metric unit.
type MetricUnit string
const (
// Bytes ...
Bytes MetricUnit = "Bytes"
// BytesPerSecond ...
BytesPerSecond MetricUnit = "BytesPerSecond"
// Count ...
Count MetricUnit = "Count"
// CountPerSecond ...
CountPerSecond MetricUnit = "CountPerSecond"
// Percent ...
Percent MetricUnit = "Percent"
// Seconds ...
Seconds MetricUnit = "Seconds"
)
// MonitoringStatus enumerates the values for monitoring status.
type MonitoringStatus string
const (
// MonitoringStatusDisabled ...
MonitoringStatusDisabled MonitoringStatus = "Disabled"
// MonitoringStatusEnabled ...
MonitoringStatusEnabled MonitoringStatus = "Enabled"
)
// NetInterfaceID enumerates the values for net interface id.
type NetInterfaceID string
const (
// NetInterfaceIDData0 ...
NetInterfaceIDData0 NetInterfaceID = "Data0"
// NetInterfaceIDData1 ...
NetInterfaceIDData1 NetInterfaceID = "Data1"
// NetInterfaceIDData2 ...
NetInterfaceIDData2 NetInterfaceID = "Data2"
// NetInterfaceIDData3 ...
NetInterfaceIDData3 NetInterfaceID = "Data3"
// NetInterfaceIDData4 ...
NetInterfaceIDData4 NetInterfaceID = "Data4"
// NetInterfaceIDData5 ...
NetInterfaceIDData5 NetInterfaceID = "Data5"
// NetInterfaceIDInvalid ...
NetInterfaceIDInvalid NetInterfaceID = "Invalid"
)
// NetInterfaceStatus enumerates the values for net interface status.
type NetInterfaceStatus string
const (
// NetInterfaceStatusDisabled ...
NetInterfaceStatusDisabled NetInterfaceStatus = "Disabled"
// NetInterfaceStatusEnabled ...
NetInterfaceStatusEnabled NetInterfaceStatus = "Enabled"
)
// NetworkMode enumerates the values for network mode.
type NetworkMode string
const (
// NetworkModeBOTH ...
NetworkModeBOTH NetworkMode = "BOTH"
// NetworkModeInvalid ...
NetworkModeInvalid NetworkMode = "Invalid"
// NetworkModeIPV4 ...
NetworkModeIPV4 NetworkMode = "IPV4"
// NetworkModeIPV6 ...
NetworkModeIPV6 NetworkMode = "IPV6"
)
// OperationStatus enumerates the values for operation status.
type OperationStatus string
const (
// OperationStatusDeleting ...
OperationStatusDeleting OperationStatus = "Deleting"
// OperationStatusNone ...
OperationStatusNone OperationStatus = "None"
// OperationStatusRestoring ...
OperationStatusRestoring OperationStatus = "Restoring"
// OperationStatusUpdating ...
OperationStatusUpdating OperationStatus = "Updating"
)
// OwnerShipStatus enumerates the values for owner ship status.
type OwnerShipStatus string
const (
// NotOwned ...
NotOwned OwnerShipStatus = "NotOwned"
// Owned ...
Owned OwnerShipStatus = "Owned"
)
// RecurrenceType enumerates the values for recurrence type.
type RecurrenceType string
const (
// Daily ...
Daily RecurrenceType = "Daily"
// Hourly ...
Hourly RecurrenceType = "Hourly"
// Minutes ...
Minutes RecurrenceType = "Minutes"
// Weekly ...
Weekly RecurrenceType = "Weekly"
)
// RemoteManagementModeConfiguration enumerates the values for remote management mode configuration.
type RemoteManagementModeConfiguration string
const (
// RemoteManagementModeConfigurationDisabled ...
RemoteManagementModeConfigurationDisabled RemoteManagementModeConfiguration = "Disabled"
// RemoteManagementModeConfigurationHTTPSAndHTTPEnabled ...
RemoteManagementModeConfigurationHTTPSAndHTTPEnabled RemoteManagementModeConfiguration = "HttpsAndHttpEnabled"
// RemoteManagementModeConfigurationHTTPSEnabled ...
RemoteManagementModeConfigurationHTTPSEnabled RemoteManagementModeConfiguration = "HttpsEnabled"
// RemoteManagementModeConfigurationUnknown ...
RemoteManagementModeConfigurationUnknown RemoteManagementModeConfiguration = "Unknown"
)
// ScheduledBackupStatus enumerates the values for scheduled backup status.
type ScheduledBackupStatus string
const (
// ScheduledBackupStatusDisabled ...
ScheduledBackupStatusDisabled ScheduledBackupStatus = "Disabled"
// ScheduledBackupStatusEnabled ...
ScheduledBackupStatusEnabled ScheduledBackupStatus = "Enabled"
)
// ScheduleStatus enumerates the values for schedule status.
type ScheduleStatus string
const (
// ScheduleStatusDisabled ...
ScheduleStatusDisabled ScheduleStatus = "Disabled"
// ScheduleStatusEnabled ...
ScheduleStatusEnabled ScheduleStatus = "Enabled"
)
// SslStatus enumerates the values for ssl status.
type SslStatus string
const (
// SslStatusDisabled ...
SslStatusDisabled SslStatus = "Disabled"
// SslStatusEnabled ...
SslStatusEnabled SslStatus = "Enabled"
)
// TargetEligibilityResultCode enumerates the values for target eligibility result code.
type TargetEligibilityResultCode string
const (
// LocalToTieredVolumesConversionWarning ...
LocalToTieredVolumesConversionWarning TargetEligibilityResultCode = "LocalToTieredVolumesConversionWarning"
// TargetAndSourceCannotBeSameError ...
TargetAndSourceCannotBeSameError TargetEligibilityResultCode = "TargetAndSourceCannotBeSameError"
// TargetInsufficientCapacityError ...
TargetInsufficientCapacityError TargetEligibilityResultCode = "TargetInsufficientCapacityError"
// TargetInsufficientLocalVolumeMemoryError ...
TargetInsufficientLocalVolumeMemoryError TargetEligibilityResultCode = "TargetInsufficientLocalVolumeMemoryError"
// TargetInsufficientTieredVolumeMemoryError ...
TargetInsufficientTieredVolumeMemoryError TargetEligibilityResultCode = "TargetInsufficientTieredVolumeMemoryError"
// TargetIsNotOnlineError ...
TargetIsNotOnlineError TargetEligibilityResultCode = "TargetIsNotOnlineError"
// TargetSourceIncompatibleVersionError ...
TargetSourceIncompatibleVersionError TargetEligibilityResultCode = "TargetSourceIncompatibleVersionError"
)
// TargetEligibilityStatus enumerates the values for target eligibility status.
type TargetEligibilityStatus string
const (
// TargetEligibilityStatusEligible ...
TargetEligibilityStatusEligible TargetEligibilityStatus = "Eligible"
// TargetEligibilityStatusNotEligible ...
TargetEligibilityStatusNotEligible TargetEligibilityStatus = "NotEligible"
)
// VirtualMachineAPIType enumerates the values for virtual machine api type.
type VirtualMachineAPIType string
const (
// Arm ...
Arm VirtualMachineAPIType = "Arm"
// Classic ...
Classic VirtualMachineAPIType = "Classic"
)
// VolumeStatus enumerates the values for volume status.
type VolumeStatus string
const (
// VolumeStatusOffline ...
VolumeStatusOffline VolumeStatus = "Offline"
// VolumeStatusOnline ...
VolumeStatusOnline VolumeStatus = "Online"
)
// VolumeType enumerates the values for volume type.
type VolumeType string
const (
// Archival ...
Archival VolumeType = "Archival"
// LocallyPinned ...
LocallyPinned VolumeType = "LocallyPinned"
// Tiered ...
Tiered VolumeType = "Tiered"
)
// AccessControlRecord the access control record.
type AccessControlRecord struct {
autorest.Response `json:"-"`
// AccessControlRecordProperties - The properties of access control record.
*AccessControlRecordProperties `json:"properties,omitempty"`
// ID - The path ID that uniquely identifies the object.
ID *string `json:"id,omitempty"`
// Name - The name of the object.
Name *string `json:"name,omitempty"`
// Type - The hierarchical type of the object.
Type *string `json:"type,omitempty"`
// Kind - The Kind of the object. Currently only Series8000 is supported. Possible values include: 'Series8000'
Kind Kind `json:"kind,omitempty"`
}
// UnmarshalJSON is the custom unmarshaler for AccessControlRecord struct.
func (acr *AccessControlRecord) 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 accessControlRecordProperties AccessControlRecordProperties
err = json.Unmarshal(*v, &accessControlRecordProperties)
if err != nil {
return err
}
acr.AccessControlRecordProperties = &accessControlRecordProperties
}
case "id":
if v != nil {
var ID string
err = json.Unmarshal(*v, &ID)
if err != nil {
return err
}
acr.ID = &ID
}
case "name":
if v != nil {
var name string
err = json.Unmarshal(*v, &name)
if err != nil {
return err
}
acr.Name = &name
}
case "type":
if v != nil {
var typeVar string
err = json.Unmarshal(*v, &typeVar)
if err != nil {
return err
}
acr.Type = &typeVar
}
case "kind":
if v != nil {
var kind Kind
err = json.Unmarshal(*v, &kind)
if err != nil {
return err
}
acr.Kind = kind
}
}
}
return nil
}
// AccessControlRecordList the collection of access control records.
type AccessControlRecordList struct {
autorest.Response `json:"-"`
// Value - The value.
Value *[]AccessControlRecord `json:"value,omitempty"`
}
// AccessControlRecordProperties the properties of access control record.
type AccessControlRecordProperties struct {
// InitiatorName - The iSCSI initiator name (IQN).
InitiatorName *string `json:"initiatorName,omitempty"`
// VolumeCount - The number of volumes using the access control record.
VolumeCount *int32 `json:"volumeCount,omitempty"`
}
// AccessControlRecordsCreateOrUpdateFuture an abstraction for monitoring and retrieving the results of a
// long-running operation.
type AccessControlRecordsCreateOrUpdateFuture 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 AccessControlRecordsCreateOrUpdateFuture) Result(client AccessControlRecordsClient) (acr AccessControlRecord, err error) {
var done bool
done, err = future.Done(client)
if err != nil {
err = autorest.NewErrorWithError(err, "storsimple.AccessControlRecordsCreateOrUpdateFuture", "Result", future.Response(), "Polling failure")
return
}
if !done {
return acr, azure.NewAsyncOpIncompleteError("storsimple.AccessControlRecordsCreateOrUpdateFuture")
}
if future.PollingMethod() == azure.PollingLocation {
acr, err = client.CreateOrUpdateResponder(future.Response())
if err != nil {
err = autorest.NewErrorWithError(err, "storsimple.AccessControlRecordsCreateOrUpdateFuture", "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, "storsimple.AccessControlRecordsCreateOrUpdateFuture", "Result", resp, "Failure sending request")
return
}
acr, err = client.CreateOrUpdateResponder(resp)
if err != nil {
err = autorest.NewErrorWithError(err, "storsimple.AccessControlRecordsCreateOrUpdateFuture", "Result", resp, "Failure responding to request")
}
return
}
// AccessControlRecordsDeleteFuture an abstraction for monitoring and retrieving the results of a long-running
// operation.
type AccessControlRecordsDeleteFuture 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 AccessControlRecordsDeleteFuture) Result(client AccessControlRecordsClient) (ar autorest.Response, err error) {
var done bool
done, err = future.Done(client)
if err != nil {
err = autorest.NewErrorWithError(err, "storsimple.AccessControlRecordsDeleteFuture", "Result", future.Response(), "Polling failure")
return
}
if !done {
return ar, azure.NewAsyncOpIncompleteError("storsimple.AccessControlRecordsDeleteFuture")
}
if future.PollingMethod() == azure.PollingLocation {
ar, err = client.DeleteResponder(future.Response())
if err != nil {
err = autorest.NewErrorWithError(err, "storsimple.AccessControlRecordsDeleteFuture", "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, "storsimple.AccessControlRecordsDeleteFuture", "Result", resp, "Failure sending request")
return
}
ar, err = client.DeleteResponder(resp)
if err != nil {
err = autorest.NewErrorWithError(err, "storsimple.AccessControlRecordsDeleteFuture", "Result", resp, "Failure responding to request")
}
return
}
// AcsConfiguration the ACS configuration.
type AcsConfiguration struct {
// Namespace - The namespace.
Namespace *string `json:"namespace,omitempty"`
// Realm - The realm.
Realm *string `json:"realm,omitempty"`
// ServiceURL - The service URL.
ServiceURL *string `json:"serviceUrl,omitempty"`
}
// Alert the alert.
type Alert struct {
// AlertProperties - The properties of the alert.
*AlertProperties `json:"properties,omitempty"`
// ID - The path ID that uniquely identifies the object.
ID *string `json:"id,omitempty"`
// Name - The name of the object.
Name *string `json:"name,omitempty"`
// Type - The hierarchical type of the object.
Type *string `json:"type,omitempty"`
// Kind - The Kind of the object. Currently only Series8000 is supported. Possible values include: 'Series8000'
Kind Kind `json:"kind,omitempty"`
}
// UnmarshalJSON is the custom unmarshaler for Alert struct.
func (a *Alert) 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 alertProperties AlertProperties
err = json.Unmarshal(*v, &alertProperties)
if err != nil {
return err
}
a.AlertProperties = &alertProperties
}
case "id":
if v != nil {
var ID string
err = json.Unmarshal(*v, &ID)
if err != nil {
return err
}
a.ID = &ID
}
case "name":
if v != nil {
var name string
err = json.Unmarshal(*v, &name)
if err != nil {
return err
}
a.Name = &name
}
case "type":
if v != nil {
var typeVar string
err = json.Unmarshal(*v, &typeVar)
if err != nil {
return err
}
a.Type = &typeVar
}
case "kind":
if v != nil {
var kind Kind
err = json.Unmarshal(*v, &kind)
if err != nil {
return err
}
a.Kind = kind
}
}
}
return nil
}
// AlertErrorDetails the details of the error for which the alert was raised
type AlertErrorDetails struct {
// ErrorCode - The error code
ErrorCode *string `json:"errorCode,omitempty"`
// ErrorMessage - The error message
ErrorMessage *string `json:"errorMessage,omitempty"`
// Occurences - The number of occurences
Occurences *int32 `json:"occurences,omitempty"`
}
// AlertFilter the OData filters to be used for Alert
type AlertFilter struct {
// Status - Specifies the status of the alerts to be filtered. Only 'Equality' operator is supported for this property. Possible values include: 'Active', 'Cleared'
Status AlertStatus `json:"status,omitempty"`
// Severity - Specifies the severity of the alerts to be filtered. Only 'Equality' operator is supported for this property. Possible values include: 'Informational', 'Warning', 'Critical'
Severity AlertSeverity `json:"severity,omitempty"`
// SourceType - Specifies the source type of the alerts to be filtered. Only 'Equality' operator is supported for this property. Possible values include: 'AlertSourceTypeResource', 'AlertSourceTypeDevice'
SourceType AlertSourceType `json:"sourceType,omitempty"`
// SourceName - Specifies the source name of the alerts to be filtered. Only 'Equality' operator is supported for this property.
SourceName *string `json:"sourceName,omitempty"`
// AppearedOnTime - Specifies the appeared time (in UTC) of the alerts to be filtered. Only 'Greater-Than' and 'Lesser-Than' operators are supported for this property.
AppearedOnTime *date.Time `json:"appearedOnTime,omitempty"`
}
// AlertList the collection of alerts.
type AlertList struct {
autorest.Response `json:"-"`
// Value - The value.
Value *[]Alert `json:"value,omitempty"`
// NextLink - The URI of the next page of alerts.
NextLink *string `json:"nextLink,omitempty"`
}
// AlertListIterator provides access to a complete listing of Alert values.
type AlertListIterator struct {
i int
page AlertListPage
}
// 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 *AlertListIterator) 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 AlertListIterator) 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 AlertListIterator) Response() AlertList {
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 AlertListIterator) Value() Alert {
if !iter.page.NotDone() {
return Alert{}
}
return iter.page.Values()[iter.i]
}
// IsEmpty returns true if the ListResult contains no values.
func (al AlertList) IsEmpty() bool {