forked from Azure/azure-sdk-for-go
-
Notifications
You must be signed in to change notification settings - Fork 1
/
models.go
2364 lines (2164 loc) · 81.3 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 redis
// 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/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/redis/mgmt/2020-06-01/redis"
// AccessKeys redis cache access keys.
type AccessKeys struct {
autorest.Response `json:"-"`
// PrimaryKey - READ-ONLY; The current primary key that clients can use to authenticate with Redis cache.
PrimaryKey *string `json:"primaryKey,omitempty"`
// SecondaryKey - READ-ONLY; The current secondary key that clients can use to authenticate with Redis cache.
SecondaryKey *string `json:"secondaryKey,omitempty"`
}
// CheckNameAvailabilityParameters parameters body to pass for resource name availability check.
type CheckNameAvailabilityParameters struct {
// Name - Resource name.
Name *string `json:"name,omitempty"`
// Type - Resource type. The only legal value of this property for checking redis cache name availability is 'Microsoft.Cache/redis'.
Type *string `json:"type,omitempty"`
}
// CommonProperties create/Update/Get common properties of the redis cache.
type CommonProperties struct {
// RedisConfiguration - All Redis Settings. Few possible keys: rdb-backup-enabled,rdb-storage-connection-string,rdb-backup-frequency,maxmemory-delta,maxmemory-policy,notify-keyspace-events,maxmemory-samples,slowlog-log-slower-than,slowlog-max-len,list-max-ziplist-entries,list-max-ziplist-value,hash-max-ziplist-entries,hash-max-ziplist-value,set-max-intset-entries,zset-max-ziplist-entries,zset-max-ziplist-value etc.
RedisConfiguration map[string]*string `json:"redisConfiguration"`
// EnableNonSslPort - Specifies whether the non-ssl Redis server port (6379) is enabled.
EnableNonSslPort *bool `json:"enableNonSslPort,omitempty"`
// ReplicasPerMaster - The number of replicas to be created per master.
ReplicasPerMaster *int32 `json:"replicasPerMaster,omitempty"`
// TenantSettings - A dictionary of tenant settings
TenantSettings map[string]*string `json:"tenantSettings"`
// ShardCount - The number of shards to be created on a Premium Cluster Cache.
ShardCount *int32 `json:"shardCount,omitempty"`
// MinimumTLSVersion - Optional: requires clients to use a specified TLS version (or higher) to connect (e,g, '1.0', '1.1', '1.2'). Possible values include: 'OneFullStopZero', 'OneFullStopOne', 'OneFullStopTwo'
MinimumTLSVersion TLSVersion `json:"minimumTlsVersion,omitempty"`
// PublicNetworkAccess - Whether or not public endpoint access is allowed for this cache. Value is optional but if passed in, must be 'Enabled' or 'Disabled'. If 'Disabled', private endpoints are the exclusive access method. Default value is 'Enabled'. Possible values include: 'Enabled', 'Disabled'
PublicNetworkAccess PublicNetworkAccess `json:"publicNetworkAccess,omitempty"`
}
// MarshalJSON is the custom marshaler for CommonProperties.
func (cp CommonProperties) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if cp.RedisConfiguration != nil {
objectMap["redisConfiguration"] = cp.RedisConfiguration
}
if cp.EnableNonSslPort != nil {
objectMap["enableNonSslPort"] = cp.EnableNonSslPort
}
if cp.ReplicasPerMaster != nil {
objectMap["replicasPerMaster"] = cp.ReplicasPerMaster
}
if cp.TenantSettings != nil {
objectMap["tenantSettings"] = cp.TenantSettings
}
if cp.ShardCount != nil {
objectMap["shardCount"] = cp.ShardCount
}
if cp.MinimumTLSVersion != "" {
objectMap["minimumTlsVersion"] = cp.MinimumTLSVersion
}
if cp.PublicNetworkAccess != "" {
objectMap["publicNetworkAccess"] = cp.PublicNetworkAccess
}
return json.Marshal(objectMap)
}
// CreateFuture an abstraction for monitoring and retrieving the results of a long-running operation.
type CreateFuture struct {
azure.FutureAPI
// Result returns the result of the asynchronous operation.
// If the operation has not completed it will return an error.
Result func(Client) (ResourceType, error)
}
// UnmarshalJSON is the custom unmarshaller for CreateFuture.
func (future *CreateFuture) 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 CreateFuture.Result.
func (future *CreateFuture) result(client Client) (rt ResourceType, err error) {
var done bool
done, err = future.DoneWithContext(context.Background(), client)
if err != nil {
err = autorest.NewErrorWithError(err, "redis.CreateFuture", "Result", future.Response(), "Polling failure")
return
}
if !done {
rt.Response.Response = future.Response()
err = azure.NewAsyncOpIncompleteError("redis.CreateFuture")
return
}
sender := autorest.DecorateSender(client, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...))
if rt.Response.Response, err = future.GetResult(sender); err == nil && rt.Response.Response.StatusCode != http.StatusNoContent {
rt, err = client.CreateResponder(rt.Response.Response)
if err != nil {
err = autorest.NewErrorWithError(err, "redis.CreateFuture", "Result", rt.Response.Response, "Failure responding to request")
}
}
return
}
// CreateParameters parameters supplied to the Create Redis operation.
type CreateParameters struct {
// CreateProperties - Redis cache properties.
*CreateProperties `json:"properties,omitempty"`
// Zones - A list of availability zones denoting where the resource needs to come from.
Zones *[]string `json:"zones,omitempty"`
// Location - The geo-location where the resource lives
Location *string `json:"location,omitempty"`
// Tags - Resource tags.
Tags map[string]*string `json:"tags"`
}
// MarshalJSON is the custom marshaler for CreateParameters.
func (cp CreateParameters) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if cp.CreateProperties != nil {
objectMap["properties"] = cp.CreateProperties
}
if cp.Zones != nil {
objectMap["zones"] = cp.Zones
}
if cp.Location != nil {
objectMap["location"] = cp.Location
}
if cp.Tags != nil {
objectMap["tags"] = cp.Tags
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for CreateParameters struct.
func (cp *CreateParameters) 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 createProperties CreateProperties
err = json.Unmarshal(*v, &createProperties)
if err != nil {
return err
}
cp.CreateProperties = &createProperties
}
case "zones":
if v != nil {
var zones []string
err = json.Unmarshal(*v, &zones)
if err != nil {
return err
}
cp.Zones = &zones
}
case "location":
if v != nil {
var location string
err = json.Unmarshal(*v, &location)
if err != nil {
return err
}
cp.Location = &location
}
case "tags":
if v != nil {
var tags map[string]*string
err = json.Unmarshal(*v, &tags)
if err != nil {
return err
}
cp.Tags = tags
}
}
}
return nil
}
// CreateProperties properties supplied to Create Redis operation.
type CreateProperties struct {
// Sku - The SKU of the Redis cache to deploy.
Sku *Sku `json:"sku,omitempty"`
// SubnetID - The full resource ID of a subnet in a virtual network to deploy the Redis cache in. Example format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/Microsoft.{Network|ClassicNetwork}/VirtualNetworks/vnet1/subnets/subnet1
SubnetID *string `json:"subnetId,omitempty"`
// StaticIP - Static IP address. Required when deploying a Redis cache inside an existing Azure Virtual Network.
StaticIP *string `json:"staticIP,omitempty"`
// RedisConfiguration - All Redis Settings. Few possible keys: rdb-backup-enabled,rdb-storage-connection-string,rdb-backup-frequency,maxmemory-delta,maxmemory-policy,notify-keyspace-events,maxmemory-samples,slowlog-log-slower-than,slowlog-max-len,list-max-ziplist-entries,list-max-ziplist-value,hash-max-ziplist-entries,hash-max-ziplist-value,set-max-intset-entries,zset-max-ziplist-entries,zset-max-ziplist-value etc.
RedisConfiguration map[string]*string `json:"redisConfiguration"`
// EnableNonSslPort - Specifies whether the non-ssl Redis server port (6379) is enabled.
EnableNonSslPort *bool `json:"enableNonSslPort,omitempty"`
// ReplicasPerMaster - The number of replicas to be created per master.
ReplicasPerMaster *int32 `json:"replicasPerMaster,omitempty"`
// TenantSettings - A dictionary of tenant settings
TenantSettings map[string]*string `json:"tenantSettings"`
// ShardCount - The number of shards to be created on a Premium Cluster Cache.
ShardCount *int32 `json:"shardCount,omitempty"`
// MinimumTLSVersion - Optional: requires clients to use a specified TLS version (or higher) to connect (e,g, '1.0', '1.1', '1.2'). Possible values include: 'OneFullStopZero', 'OneFullStopOne', 'OneFullStopTwo'
MinimumTLSVersion TLSVersion `json:"minimumTlsVersion,omitempty"`
// PublicNetworkAccess - Whether or not public endpoint access is allowed for this cache. Value is optional but if passed in, must be 'Enabled' or 'Disabled'. If 'Disabled', private endpoints are the exclusive access method. Default value is 'Enabled'. Possible values include: 'Enabled', 'Disabled'
PublicNetworkAccess PublicNetworkAccess `json:"publicNetworkAccess,omitempty"`
}
// MarshalJSON is the custom marshaler for CreateProperties.
func (cp CreateProperties) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if cp.Sku != nil {
objectMap["sku"] = cp.Sku
}
if cp.SubnetID != nil {
objectMap["subnetId"] = cp.SubnetID
}
if cp.StaticIP != nil {
objectMap["staticIP"] = cp.StaticIP
}
if cp.RedisConfiguration != nil {
objectMap["redisConfiguration"] = cp.RedisConfiguration
}
if cp.EnableNonSslPort != nil {
objectMap["enableNonSslPort"] = cp.EnableNonSslPort
}
if cp.ReplicasPerMaster != nil {
objectMap["replicasPerMaster"] = cp.ReplicasPerMaster
}
if cp.TenantSettings != nil {
objectMap["tenantSettings"] = cp.TenantSettings
}
if cp.ShardCount != nil {
objectMap["shardCount"] = cp.ShardCount
}
if cp.MinimumTLSVersion != "" {
objectMap["minimumTlsVersion"] = cp.MinimumTLSVersion
}
if cp.PublicNetworkAccess != "" {
objectMap["publicNetworkAccess"] = cp.PublicNetworkAccess
}
return json.Marshal(objectMap)
}
// DeleteFuture an abstraction for monitoring and retrieving the results of a long-running operation.
type DeleteFuture struct {
azure.FutureAPI
// Result returns the result of the asynchronous operation.
// If the operation has not completed it will return an error.
Result func(Client) (autorest.Response, error)
}
// UnmarshalJSON is the custom unmarshaller for CreateFuture.
func (future *DeleteFuture) 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 DeleteFuture.Result.
func (future *DeleteFuture) result(client Client) (ar autorest.Response, err error) {
var done bool
done, err = future.DoneWithContext(context.Background(), client)
if err != nil {
err = autorest.NewErrorWithError(err, "redis.DeleteFuture", "Result", future.Response(), "Polling failure")
return
}
if !done {
ar.Response = future.Response()
err = azure.NewAsyncOpIncompleteError("redis.DeleteFuture")
return
}
ar.Response = future.Response()
return
}
// ErrorAdditionalInfo the resource management error additional info.
type ErrorAdditionalInfo struct {
// Type - READ-ONLY; The additional info type.
Type *string `json:"type,omitempty"`
// Info - READ-ONLY; The additional info.
Info interface{} `json:"info,omitempty"`
}
// ErrorDetail the error detail.
type ErrorDetail struct {
// Code - READ-ONLY; The error code.
Code *string `json:"code,omitempty"`
// Message - READ-ONLY; The error message.
Message *string `json:"message,omitempty"`
// Target - READ-ONLY; The error target.
Target *string `json:"target,omitempty"`
// Details - READ-ONLY; The error details.
Details *[]ErrorDetail `json:"details,omitempty"`
// AdditionalInfo - READ-ONLY; The error additional info.
AdditionalInfo *[]ErrorAdditionalInfo `json:"additionalInfo,omitempty"`
}
// ErrorResponse common error response for all Azure Resource Manager APIs to return error details for
// failed operations. (This also follows the OData error response format.).
type ErrorResponse struct {
// Error - The error object.
Error *ErrorDetail `json:"error,omitempty"`
}
// ExportDataFuture an abstraction for monitoring and retrieving the results of a long-running operation.
type ExportDataFuture struct {
azure.FutureAPI
// Result returns the result of the asynchronous operation.
// If the operation has not completed it will return an error.
Result func(Client) (autorest.Response, error)
}
// UnmarshalJSON is the custom unmarshaller for CreateFuture.
func (future *ExportDataFuture) 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 ExportDataFuture.Result.
func (future *ExportDataFuture) result(client Client) (ar autorest.Response, err error) {
var done bool
done, err = future.DoneWithContext(context.Background(), client)
if err != nil {
err = autorest.NewErrorWithError(err, "redis.ExportDataFuture", "Result", future.Response(), "Polling failure")
return
}
if !done {
ar.Response = future.Response()
err = azure.NewAsyncOpIncompleteError("redis.ExportDataFuture")
return
}
ar.Response = future.Response()
return
}
// ExportRDBParameters parameters for Redis export operation.
type ExportRDBParameters struct {
// Format - File format.
Format *string `json:"format,omitempty"`
// Prefix - Prefix to use for exported files.
Prefix *string `json:"prefix,omitempty"`
// Container - Container name to export to.
Container *string `json:"container,omitempty"`
}
// FirewallRule a firewall rule on a redis cache has a name, and describes a contiguous range of IP
// addresses permitted to connect
type FirewallRule struct {
autorest.Response `json:"-"`
// FirewallRuleProperties - redis cache firewall rule properties
*FirewallRuleProperties `json:"properties,omitempty"`
// ID - READ-ONLY; Resource ID.
ID *string `json:"id,omitempty"`
// Name - READ-ONLY; Resource name.
Name *string `json:"name,omitempty"`
// Type - READ-ONLY; Resource type.
Type *string `json:"type,omitempty"`
}
// MarshalJSON is the custom marshaler for FirewallRule.
func (fr FirewallRule) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if fr.FirewallRuleProperties != nil {
objectMap["properties"] = fr.FirewallRuleProperties
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for FirewallRule struct.
func (fr *FirewallRule) 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 firewallRuleProperties FirewallRuleProperties
err = json.Unmarshal(*v, &firewallRuleProperties)
if err != nil {
return err
}
fr.FirewallRuleProperties = &firewallRuleProperties
}
case "id":
if v != nil {
var ID string
err = json.Unmarshal(*v, &ID)
if err != nil {
return err
}
fr.ID = &ID
}
case "name":
if v != nil {
var name string
err = json.Unmarshal(*v, &name)
if err != nil {
return err
}
fr.Name = &name
}
case "type":
if v != nil {
var typeVar string
err = json.Unmarshal(*v, &typeVar)
if err != nil {
return err
}
fr.Type = &typeVar
}
}
}
return nil
}
// FirewallRuleCreateParameters parameters required for creating a firewall rule on redis cache.
type FirewallRuleCreateParameters struct {
// FirewallRuleProperties - Properties required to create a firewall rule .
*FirewallRuleProperties `json:"properties,omitempty"`
}
// MarshalJSON is the custom marshaler for FirewallRuleCreateParameters.
func (frcp FirewallRuleCreateParameters) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if frcp.FirewallRuleProperties != nil {
objectMap["properties"] = frcp.FirewallRuleProperties
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for FirewallRuleCreateParameters struct.
func (frcp *FirewallRuleCreateParameters) 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 firewallRuleProperties FirewallRuleProperties
err = json.Unmarshal(*v, &firewallRuleProperties)
if err != nil {
return err
}
frcp.FirewallRuleProperties = &firewallRuleProperties
}
}
}
return nil
}
// FirewallRuleListResult the response of list firewall rules Redis operation.
type FirewallRuleListResult struct {
autorest.Response `json:"-"`
// Value - Results of the list firewall rules operation.
Value *[]FirewallRule `json:"value,omitempty"`
// NextLink - READ-ONLY; Link for next page of results.
NextLink *string `json:"nextLink,omitempty"`
}
// MarshalJSON is the custom marshaler for FirewallRuleListResult.
func (frlr FirewallRuleListResult) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if frlr.Value != nil {
objectMap["value"] = frlr.Value
}
return json.Marshal(objectMap)
}
// FirewallRuleListResultIterator provides access to a complete listing of FirewallRule values.
type FirewallRuleListResultIterator struct {
i int
page FirewallRuleListResultPage
}
// NextWithContext 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 *FirewallRuleListResultIterator) NextWithContext(ctx context.Context) (err error) {
if tracing.IsEnabled() {
ctx = tracing.StartSpan(ctx, fqdn+"/FirewallRuleListResultIterator.NextWithContext")
defer func() {
sc := -1
if iter.Response().Response.Response != nil {
sc = iter.Response().Response.Response.StatusCode
}
tracing.EndSpan(ctx, sc, err)
}()
}
iter.i++
if iter.i < len(iter.page.Values()) {
return nil
}
err = iter.page.NextWithContext(ctx)
if err != nil {
iter.i--
return err
}
iter.i = 0
return nil
}
// Next advances to the next value. If there was an error making
// the request the iterator does not advance and the error is returned.
// Deprecated: Use NextWithContext() instead.
func (iter *FirewallRuleListResultIterator) Next() error {
return iter.NextWithContext(context.Background())
}
// NotDone returns true if the enumeration should be started or is not yet complete.
func (iter FirewallRuleListResultIterator) 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 FirewallRuleListResultIterator) Response() FirewallRuleListResult {
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 FirewallRuleListResultIterator) Value() FirewallRule {
if !iter.page.NotDone() {
return FirewallRule{}
}
return iter.page.Values()[iter.i]
}
// Creates a new instance of the FirewallRuleListResultIterator type.
func NewFirewallRuleListResultIterator(page FirewallRuleListResultPage) FirewallRuleListResultIterator {
return FirewallRuleListResultIterator{page: page}
}
// IsEmpty returns true if the ListResult contains no values.
func (frlr FirewallRuleListResult) IsEmpty() bool {
return frlr.Value == nil || len(*frlr.Value) == 0
}
// hasNextLink returns true if the NextLink is not empty.
func (frlr FirewallRuleListResult) hasNextLink() bool {
return frlr.NextLink != nil && len(*frlr.NextLink) != 0
}
// firewallRuleListResultPreparer prepares a request to retrieve the next set of results.
// It returns nil if no more results exist.
func (frlr FirewallRuleListResult) firewallRuleListResultPreparer(ctx context.Context) (*http.Request, error) {
if !frlr.hasNextLink() {
return nil, nil
}
return autorest.Prepare((&http.Request{}).WithContext(ctx),
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(frlr.NextLink)))
}
// FirewallRuleListResultPage contains a page of FirewallRule values.
type FirewallRuleListResultPage struct {
fn func(context.Context, FirewallRuleListResult) (FirewallRuleListResult, error)
frlr FirewallRuleListResult
}
// NextWithContext advances to the next page of values. If there was an error making
// the request the page does not advance and the error is returned.
func (page *FirewallRuleListResultPage) NextWithContext(ctx context.Context) (err error) {
if tracing.IsEnabled() {
ctx = tracing.StartSpan(ctx, fqdn+"/FirewallRuleListResultPage.NextWithContext")
defer func() {
sc := -1
if page.Response().Response.Response != nil {
sc = page.Response().Response.Response.StatusCode
}
tracing.EndSpan(ctx, sc, err)
}()
}
for {
next, err := page.fn(ctx, page.frlr)
if err != nil {
return err
}
page.frlr = next
if !next.hasNextLink() || !next.IsEmpty() {
break
}
}
return nil
}
// Next advances to the next page of values. If there was an error making
// the request the page does not advance and the error is returned.
// Deprecated: Use NextWithContext() instead.
func (page *FirewallRuleListResultPage) Next() error {
return page.NextWithContext(context.Background())
}
// NotDone returns true if the page enumeration should be started or is not yet complete.
func (page FirewallRuleListResultPage) NotDone() bool {
return !page.frlr.IsEmpty()
}
// Response returns the raw server response from the last page request.
func (page FirewallRuleListResultPage) Response() FirewallRuleListResult {
return page.frlr
}
// Values returns the slice of values for the current page or nil if there are no values.
func (page FirewallRuleListResultPage) Values() []FirewallRule {
if page.frlr.IsEmpty() {
return nil
}
return *page.frlr.Value
}
// Creates a new instance of the FirewallRuleListResultPage type.
func NewFirewallRuleListResultPage(cur FirewallRuleListResult, getNextPage func(context.Context, FirewallRuleListResult) (FirewallRuleListResult, error)) FirewallRuleListResultPage {
return FirewallRuleListResultPage{
fn: getNextPage,
frlr: cur,
}
}
// FirewallRuleProperties specifies a range of IP addresses permitted to connect to the cache
type FirewallRuleProperties struct {
// StartIP - lowest IP address included in the range
StartIP *string `json:"startIP,omitempty"`
// EndIP - highest IP address included in the range
EndIP *string `json:"endIP,omitempty"`
}
// ForceRebootResponse response to force reboot for Redis cache.
type ForceRebootResponse struct {
autorest.Response `json:"-"`
// Message - READ-ONLY; Status message
Message *string `json:"message,omitempty"`
}
// ImportDataFuture an abstraction for monitoring and retrieving the results of a long-running operation.
type ImportDataFuture struct {
azure.FutureAPI
// Result returns the result of the asynchronous operation.
// If the operation has not completed it will return an error.
Result func(Client) (autorest.Response, error)
}
// UnmarshalJSON is the custom unmarshaller for CreateFuture.
func (future *ImportDataFuture) 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 ImportDataFuture.Result.
func (future *ImportDataFuture) result(client Client) (ar autorest.Response, err error) {
var done bool
done, err = future.DoneWithContext(context.Background(), client)
if err != nil {
err = autorest.NewErrorWithError(err, "redis.ImportDataFuture", "Result", future.Response(), "Polling failure")
return
}
if !done {
ar.Response = future.Response()
err = azure.NewAsyncOpIncompleteError("redis.ImportDataFuture")
return
}
ar.Response = future.Response()
return
}
// ImportRDBParameters parameters for Redis import operation.
type ImportRDBParameters struct {
// Format - File format.
Format *string `json:"format,omitempty"`
// Files - files to import.
Files *[]string `json:"files,omitempty"`
}
// InstanceDetails details of single instance of redis.
type InstanceDetails struct {
// SslPort - READ-ONLY; Redis instance SSL port.
SslPort *int32 `json:"sslPort,omitempty"`
// NonSslPort - READ-ONLY; If enableNonSslPort is true, provides Redis instance Non-SSL port.
NonSslPort *int32 `json:"nonSslPort,omitempty"`
// Zone - READ-ONLY; If the Cache uses availability zones, specifies availability zone where this instance is located.
Zone *string `json:"zone,omitempty"`
// ShardID - READ-ONLY; If clustering is enabled, the Shard ID of Redis Instance
ShardID *int32 `json:"shardId,omitempty"`
// IsMaster - READ-ONLY; Specifies whether the instance is a master node.
IsMaster *bool `json:"isMaster,omitempty"`
}
// LinkedServer linked server Id
type LinkedServer struct {
// ID - READ-ONLY; Linked server Id.
ID *string `json:"id,omitempty"`
}
// LinkedServerCreateFuture an abstraction for monitoring and retrieving the results of a long-running
// operation.
type LinkedServerCreateFuture struct {
azure.FutureAPI
// Result returns the result of the asynchronous operation.
// If the operation has not completed it will return an error.
Result func(LinkedServerClient) (LinkedServerWithProperties, error)
}
// UnmarshalJSON is the custom unmarshaller for CreateFuture.
func (future *LinkedServerCreateFuture) 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 LinkedServerCreateFuture.Result.
func (future *LinkedServerCreateFuture) result(client LinkedServerClient) (lswp LinkedServerWithProperties, err error) {
var done bool
done, err = future.DoneWithContext(context.Background(), client)
if err != nil {
err = autorest.NewErrorWithError(err, "redis.LinkedServerCreateFuture", "Result", future.Response(), "Polling failure")
return
}
if !done {
lswp.Response.Response = future.Response()
err = azure.NewAsyncOpIncompleteError("redis.LinkedServerCreateFuture")
return
}
sender := autorest.DecorateSender(client, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...))
if lswp.Response.Response, err = future.GetResult(sender); err == nil && lswp.Response.Response.StatusCode != http.StatusNoContent {
lswp, err = client.CreateResponder(lswp.Response.Response)
if err != nil {
err = autorest.NewErrorWithError(err, "redis.LinkedServerCreateFuture", "Result", lswp.Response.Response, "Failure responding to request")
}
}
return
}
// LinkedServerCreateParameters parameter required for creating a linked server to redis cache.
type LinkedServerCreateParameters struct {
// LinkedServerCreateProperties - Properties required to create a linked server.
*LinkedServerCreateProperties `json:"properties,omitempty"`
}
// MarshalJSON is the custom marshaler for LinkedServerCreateParameters.
func (lscp LinkedServerCreateParameters) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if lscp.LinkedServerCreateProperties != nil {
objectMap["properties"] = lscp.LinkedServerCreateProperties
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for LinkedServerCreateParameters struct.
func (lscp *LinkedServerCreateParameters) 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 linkedServerCreateProperties LinkedServerCreateProperties
err = json.Unmarshal(*v, &linkedServerCreateProperties)
if err != nil {
return err
}
lscp.LinkedServerCreateProperties = &linkedServerCreateProperties
}
}
}
return nil
}
// LinkedServerCreateProperties create properties for a linked server
type LinkedServerCreateProperties struct {
// LinkedRedisCacheID - Fully qualified resourceId of the linked redis cache.
LinkedRedisCacheID *string `json:"linkedRedisCacheId,omitempty"`
// LinkedRedisCacheLocation - Location of the linked redis cache.
LinkedRedisCacheLocation *string `json:"linkedRedisCacheLocation,omitempty"`
// ServerRole - Role of the linked server. Possible values include: 'ReplicationRolePrimary', 'ReplicationRoleSecondary'
ServerRole ReplicationRole `json:"serverRole,omitempty"`
}
// LinkedServerProperties properties of a linked server to be returned in get/put response
type LinkedServerProperties struct {
// ProvisioningState - READ-ONLY; Terminal state of the link between primary and secondary redis cache.
ProvisioningState *string `json:"provisioningState,omitempty"`
// LinkedRedisCacheID - Fully qualified resourceId of the linked redis cache.
LinkedRedisCacheID *string `json:"linkedRedisCacheId,omitempty"`
// LinkedRedisCacheLocation - Location of the linked redis cache.
LinkedRedisCacheLocation *string `json:"linkedRedisCacheLocation,omitempty"`
// ServerRole - Role of the linked server. Possible values include: 'ReplicationRolePrimary', 'ReplicationRoleSecondary'
ServerRole ReplicationRole `json:"serverRole,omitempty"`
}
// MarshalJSON is the custom marshaler for LinkedServerProperties.
func (lsp LinkedServerProperties) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if lsp.LinkedRedisCacheID != nil {
objectMap["linkedRedisCacheId"] = lsp.LinkedRedisCacheID
}
if lsp.LinkedRedisCacheLocation != nil {
objectMap["linkedRedisCacheLocation"] = lsp.LinkedRedisCacheLocation
}
if lsp.ServerRole != "" {
objectMap["serverRole"] = lsp.ServerRole
}
return json.Marshal(objectMap)
}
// LinkedServerWithProperties response to put/get linked server (with properties) for Redis cache.
type LinkedServerWithProperties struct {
autorest.Response `json:"-"`
// LinkedServerProperties - Properties of the linked server.
*LinkedServerProperties `json:"properties,omitempty"`
// ID - READ-ONLY; Resource ID.
ID *string `json:"id,omitempty"`
// Name - READ-ONLY; Resource name.
Name *string `json:"name,omitempty"`
// Type - READ-ONLY; Resource type.
Type *string `json:"type,omitempty"`
}
// MarshalJSON is the custom marshaler for LinkedServerWithProperties.
func (lswp LinkedServerWithProperties) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if lswp.LinkedServerProperties != nil {
objectMap["properties"] = lswp.LinkedServerProperties
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for LinkedServerWithProperties struct.
func (lswp *LinkedServerWithProperties) 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 linkedServerProperties LinkedServerProperties
err = json.Unmarshal(*v, &linkedServerProperties)
if err != nil {
return err
}
lswp.LinkedServerProperties = &linkedServerProperties
}
case "id":
if v != nil {
var ID string
err = json.Unmarshal(*v, &ID)
if err != nil {
return err
}
lswp.ID = &ID
}
case "name":
if v != nil {
var name string
err = json.Unmarshal(*v, &name)
if err != nil {
return err
}
lswp.Name = &name
}
case "type":
if v != nil {
var typeVar string
err = json.Unmarshal(*v, &typeVar)
if err != nil {
return err
}
lswp.Type = &typeVar
}
}
}
return nil
}
// LinkedServerWithPropertiesList list of linked servers (with properties) of a Redis cache.
type LinkedServerWithPropertiesList struct {
autorest.Response `json:"-"`
// Value - List of linked servers (with properties) of a Redis cache.
Value *[]LinkedServerWithProperties `json:"value,omitempty"`
// NextLink - READ-ONLY; Link for next set.
NextLink *string `json:"nextLink,omitempty"`
}
// MarshalJSON is the custom marshaler for LinkedServerWithPropertiesList.
func (lswpl LinkedServerWithPropertiesList) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if lswpl.Value != nil {
objectMap["value"] = lswpl.Value
}
return json.Marshal(objectMap)
}
// LinkedServerWithPropertiesListIterator provides access to a complete listing of
// LinkedServerWithProperties values.
type LinkedServerWithPropertiesListIterator struct {
i int
page LinkedServerWithPropertiesListPage
}
// NextWithContext 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 *LinkedServerWithPropertiesListIterator) NextWithContext(ctx context.Context) (err error) {
if tracing.IsEnabled() {
ctx = tracing.StartSpan(ctx, fqdn+"/LinkedServerWithPropertiesListIterator.NextWithContext")
defer func() {
sc := -1
if iter.Response().Response.Response != nil {
sc = iter.Response().Response.Response.StatusCode
}
tracing.EndSpan(ctx, sc, err)
}()
}
iter.i++
if iter.i < len(iter.page.Values()) {
return nil
}
err = iter.page.NextWithContext(ctx)
if err != nil {
iter.i--
return err
}
iter.i = 0
return nil
}
// Next advances to the next value. If there was an error making
// the request the iterator does not advance and the error is returned.
// Deprecated: Use NextWithContext() instead.
func (iter *LinkedServerWithPropertiesListIterator) Next() error {
return iter.NextWithContext(context.Background())
}
// NotDone returns true if the enumeration should be started or is not yet complete.
func (iter LinkedServerWithPropertiesListIterator) 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 LinkedServerWithPropertiesListIterator) Response() LinkedServerWithPropertiesList {
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.