-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathapi_default.go
More file actions
6157 lines (5508 loc) · 239 KB
/
api_default.go
File metadata and controls
6157 lines (5508 loc) · 239 KB
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
/*
STACKIT DNS API
This api provides dns
API version: 1.0
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
package dns
import (
"bytes"
"context"
"fmt"
"io"
"net/http"
"net/url"
"strings"
"github.com/stackitcloud/stackit-sdk-go/core/config"
"github.com/stackitcloud/stackit-sdk-go/core/oapierror"
)
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type DefaultApi interface {
/*
CloneZone Clone an existing zone with all record sets to a new zone with a different name
Clone an existing zone with all record sets to a new zone with a different name
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param zoneId zone id
@return ApiCloneZoneRequest
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
*/
CloneZone(ctx context.Context, projectId string, zoneId string) ApiCloneZoneRequest
/*
CloneZoneExecute executes the request
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param zoneId zone id
@return ZoneResponse
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
*/
CloneZoneExecute(ctx context.Context, projectId string, zoneId string) (*ZoneResponse, error)
/*
CreateLabel Create or update label
Create or update label
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param zoneId zone id
@return ApiCreateLabelRequest
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
*/
CreateLabel(ctx context.Context, projectId string, zoneId string) ApiCreateLabelRequest
/*
CreateLabelExecute executes the request
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param zoneId zone id
@return CreateLabelResponse
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
*/
CreateLabelExecute(ctx context.Context, projectId string, zoneId string) (*CreateLabelResponse, error)
/*
CreateMoveCode request a move code to move zone to another project
move zone from one project to another
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param zoneId zone id
@return ApiCreateMoveCodeRequest
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
*/
CreateMoveCode(ctx context.Context, projectId string, zoneId string) ApiCreateMoveCodeRequest
/*
CreateMoveCodeExecute executes the request
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param zoneId zone id
@return MoveCodeResponse
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
*/
CreateMoveCodeExecute(ctx context.Context, projectId string, zoneId string) (*MoveCodeResponse, error)
/*
CreateRecordSet Post record set
Post record set
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param zoneId zone id
@return ApiCreateRecordSetRequest
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
*/
CreateRecordSet(ctx context.Context, projectId string, zoneId string) ApiCreateRecordSetRequest
/*
CreateRecordSetExecute executes the request
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param zoneId zone id
@return RecordSetResponse
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
*/
CreateRecordSetExecute(ctx context.Context, projectId string, zoneId string) (*RecordSetResponse, error)
/*
CreateZone Post create a new zone
Post zone create a new zone
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@return ApiCreateZoneRequest
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
*/
CreateZone(ctx context.Context, projectId string) ApiCreateZoneRequest
/*
CreateZoneExecute executes the request
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@return ZoneResponse
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
*/
CreateZoneExecute(ctx context.Context, projectId string) (*ZoneResponse, error)
/*
DeleteLabel Delete a label
Delete a label
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param zoneId zone id
@param key key of the label
@return ApiDeleteLabelRequest
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
*/
DeleteLabel(ctx context.Context, projectId string, zoneId string, key string) ApiDeleteLabelRequest
/*
DeleteLabelExecute executes the request
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param zoneId zone id
@param key key of the label
@return DeleteLabelResponse
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
*/
DeleteLabelExecute(ctx context.Context, projectId string, zoneId string, key string) (*DeleteLabelResponse, error)
/*
DeleteMoveCode delete/invalidate a move code
delete/invalidate a move code
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param zoneId zone id
@return ApiDeleteMoveCodeRequest
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
*/
DeleteMoveCode(ctx context.Context, projectId string, zoneId string) ApiDeleteMoveCodeRequest
/*
DeleteMoveCodeExecute executes the request
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param zoneId zone id
@return Message
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
*/
DeleteMoveCodeExecute(ctx context.Context, projectId string, zoneId string) (*Message, error)
/*
DeleteRecordSet Delete a record set
Delete a record set
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param zoneId zone id
@param rrSetId record set id
@return ApiDeleteRecordSetRequest
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
*/
DeleteRecordSet(ctx context.Context, projectId string, zoneId string, rrSetId string) ApiDeleteRecordSetRequest
/*
DeleteRecordSetExecute executes the request
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param zoneId zone id
@param rrSetId record set id
@return Message
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
*/
DeleteRecordSetExecute(ctx context.Context, projectId string, zoneId string, rrSetId string) (*Message, error)
/*
DeleteZone Delete a zone
Delete a zone
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param zoneId zone id
@return ApiDeleteZoneRequest
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
*/
DeleteZone(ctx context.Context, projectId string, zoneId string) ApiDeleteZoneRequest
/*
DeleteZoneExecute executes the request
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param zoneId zone id
@return Message
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
*/
DeleteZoneExecute(ctx context.Context, projectId string, zoneId string) (*Message, error)
/*
ExportRecordSets Export all records in a single zone
Export Zone
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param zoneId zone id
@return ApiExportRecordSetsRequest
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
*/
ExportRecordSets(ctx context.Context, projectId string, zoneId string) ApiExportRecordSetsRequest
/*
ExportRecordSetsExecute executes the request
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param zoneId zone id
@return ZoneDataExchange
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
*/
ExportRecordSetsExecute(ctx context.Context, projectId string, zoneId string) (*ZoneDataExchange, error)
/*
GetRecordSet Get a single rrset
Get rrset
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param zoneId zone id
@param rrSetId record set id
@return ApiGetRecordSetRequest
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
*/
GetRecordSet(ctx context.Context, projectId string, zoneId string, rrSetId string) ApiGetRecordSetRequest
/*
GetRecordSetExecute executes the request
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param zoneId zone id
@param rrSetId record set id
@return RecordSetResponse
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
*/
GetRecordSetExecute(ctx context.Context, projectId string, zoneId string, rrSetId string) (*RecordSetResponse, error)
/*
GetZone Get a single zone
Get zone
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param zoneId zone id
@return ApiGetZoneRequest
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
*/
GetZone(ctx context.Context, projectId string, zoneId string) ApiGetZoneRequest
/*
GetZoneExecute executes the request
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param zoneId zone id
@return ZoneResponse
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
*/
GetZoneExecute(ctx context.Context, projectId string, zoneId string) (*ZoneResponse, error)
/*
ImportRecordSets Imports a zone
Imports a zone and overwrites/deletes/inserts all desired records
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param zoneId zone id
@return ApiImportRecordSetsRequest
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
*/
ImportRecordSets(ctx context.Context, projectId string, zoneId string) ApiImportRecordSetsRequest
/*
ImportRecordSetsExecute executes the request
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param zoneId zone id
@return ImportRecordSetsResponse
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
*/
ImportRecordSetsExecute(ctx context.Context, projectId string, zoneId string) (*ImportRecordSetsResponse, error)
/*
ListLabels Get all labels
All Labels
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param zoneId zone id
@return ApiListLabelsRequest
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
*/
ListLabels(ctx context.Context, projectId string, zoneId string) ApiListLabelsRequest
/*
ListLabelsExecute executes the request
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param zoneId zone id
@return ListLabelsResponse
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
*/
ListLabelsExecute(ctx context.Context, projectId string, zoneId string) (*ListLabelsResponse, error)
/*
ListRecordSets All get selected RRSets
All RRSet
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param zoneId zone id
@return ApiListRecordSetsRequest
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
*/
ListRecordSets(ctx context.Context, projectId string, zoneId string) ApiListRecordSetsRequest
/*
ListRecordSetsExecute executes the request
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param zoneId zone id
@return ListRecordSetsResponse
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
*/
ListRecordSetsExecute(ctx context.Context, projectId string, zoneId string) (*ListRecordSetsResponse, error)
/*
ListZones All get selected zones
All zone
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@return ApiListZonesRequest
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
*/
ListZones(ctx context.Context, projectId string) ApiListZonesRequest
/*
ListZonesExecute executes the request
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@return ListZonesResponse
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
*/
ListZonesExecute(ctx context.Context, projectId string) (*ListZonesResponse, error)
/*
MoveZone move zone from one project to another
move zone from one project to another
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@return ApiMoveZoneRequest
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
*/
MoveZone(ctx context.Context, projectId string) ApiMoveZoneRequest
/*
MoveZoneExecute executes the request
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@return Message
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
*/
MoveZoneExecute(ctx context.Context, projectId string) (*Message, error)
/*
PartialUpdateRecord PatchRecords updates a record in a rrset
PatchRecords rrset updates a record in a rrset
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param zoneId zone id
@param rrSetId record set id
@return ApiPartialUpdateRecordRequest
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
*/
PartialUpdateRecord(ctx context.Context, projectId string, zoneId string, rrSetId string) ApiPartialUpdateRecordRequest
/*
PartialUpdateRecordExecute executes the request
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param zoneId zone id
@param rrSetId record set id
@return Message
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
*/
PartialUpdateRecordExecute(ctx context.Context, projectId string, zoneId string, rrSetId string) (*Message, error)
/*
PartialUpdateRecordSet Patch updates a record set
Patch record set
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param zoneId zone id
@param rrSetId record set id
@return ApiPartialUpdateRecordSetRequest
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
*/
PartialUpdateRecordSet(ctx context.Context, projectId string, zoneId string, rrSetId string) ApiPartialUpdateRecordSetRequest
/*
PartialUpdateRecordSetExecute executes the request
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param zoneId zone id
@param rrSetId record set id
@return Message
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
*/
PartialUpdateRecordSetExecute(ctx context.Context, projectId string, zoneId string, rrSetId string) (*Message, error)
/*
PartialUpdateZone Patch update an existing zone
Patch update an existing zone
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param zoneId zone id
@return ApiPartialUpdateZoneRequest
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
*/
PartialUpdateZone(ctx context.Context, projectId string, zoneId string) ApiPartialUpdateZoneRequest
/*
PartialUpdateZoneExecute executes the request
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param zoneId zone id
@return ZoneResponse
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
*/
PartialUpdateZoneExecute(ctx context.Context, projectId string, zoneId string) (*ZoneResponse, error)
/*
RestoreRecordSet Restore record set
Restore record set
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param zoneId zone id
@param rrSetId record set id
@return ApiRestoreRecordSetRequest
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
*/
RestoreRecordSet(ctx context.Context, projectId string, zoneId string, rrSetId string) ApiRestoreRecordSetRequest
/*
RestoreRecordSetExecute executes the request
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param zoneId zone id
@param rrSetId record set id
@return Message
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
*/
RestoreRecordSetExecute(ctx context.Context, projectId string, zoneId string, rrSetId string) (*Message, error)
/*
RestoreZone Restore an inactive zone
Restore an inactive zone
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param zoneId zone id
@return ApiRestoreZoneRequest
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
*/
RestoreZone(ctx context.Context, projectId string, zoneId string) ApiRestoreZoneRequest
/*
RestoreZoneExecute executes the request
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param zoneId zone id
@return Message
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
*/
RestoreZoneExecute(ctx context.Context, projectId string, zoneId string) (*Message, error)
/*
RetrieveZone Queue secondary zone for a zone transfer request.
The zone transfer will usually be performed within a few seconds, and will be tried only once by randomly choosing one of the configured primary name servers. If that single attempt fails, no further attempt will be performed. The zone will be transferred to our inbound name server regardless of its serial, but the internal zone distribution is only reliable if the zone's serial on the customer's primary name server is higher than on the STACKIT name server. <br>NOTE: As said above, this endpoint is not a reliable way to decrease a zone's serial. To guarantee consistent zones over all STACKIT location, the zone's serial MUST always be increased on zone changes.
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param zoneId zone id
@return ApiRetrieveZoneRequest
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
*/
RetrieveZone(ctx context.Context, projectId string, zoneId string) ApiRetrieveZoneRequest
/*
RetrieveZoneExecute executes the request
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param zoneId zone id
@return Message
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
*/
RetrieveZoneExecute(ctx context.Context, projectId string, zoneId string) (*Message, error)
/*
ValidateMoveCode validate the move code is still valid for the zone
validate the move code is still valid for the zone
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param zoneId zone id
@return ApiValidateMoveCodeRequest
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
*/
ValidateMoveCode(ctx context.Context, projectId string, zoneId string) ApiValidateMoveCodeRequest
/*
ValidateMoveCodeExecute executes the request
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId project id
@param zoneId zone id
@return Message
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
*/
ValidateMoveCodeExecute(ctx context.Context, projectId string, zoneId string) (*Message, error)
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ApiCloneZoneRequest interface {
// zone to clone
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
CloneZonePayload(cloneZonePayload CloneZonePayload) ApiCloneZoneRequest
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
Execute() (*ZoneResponse, error)
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ApiCreateLabelRequest interface {
// record set to create
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
CreateLabelPayload(createLabelPayload CreateLabelPayload) ApiCreateLabelRequest
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
Execute() (*CreateLabelResponse, error)
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ApiCreateMoveCodeRequest interface {
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
Execute() (*MoveCodeResponse, error)
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ApiCreateRecordSetRequest interface {
// record set to create
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
CreateRecordSetPayload(createRecordSetPayload CreateRecordSetPayload) ApiCreateRecordSetRequest
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
Execute() (*RecordSetResponse, error)
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ApiCreateZoneRequest interface {
// zone to create
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
CreateZonePayload(createZonePayload CreateZonePayload) ApiCreateZoneRequest
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
Execute() (*ZoneResponse, error)
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ApiDeleteLabelRequest interface {
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
Execute() (*DeleteLabelResponse, error)
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ApiDeleteMoveCodeRequest interface {
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
Execute() (*Message, error)
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ApiDeleteRecordSetRequest interface {
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
Execute() (*Message, error)
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ApiDeleteZoneRequest interface {
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
Execute() (*Message, error)
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ApiExportRecordSetsRequest interface {
// export configuration
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
ExportRecordSetsPayload(exportRecordSetsPayload ExportRecordSetsPayload) ApiExportRecordSetsRequest
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
Execute() (*ZoneDataExchange, error)
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ApiGetRecordSetRequest interface {
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
Execute() (*RecordSetResponse, error)
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ApiGetZoneRequest interface {
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
Execute() (*ZoneResponse, error)
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ApiImportRecordSetsRequest interface {
// accepts all response bodies for the export endpoint
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
ImportRecordSetsPayload(importRecordSetsPayload ImportRecordSetsPayload) ApiImportRecordSetsRequest
// format of the data to import
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
Format(format string) ApiImportRecordSetsRequest
// type of the zone import
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
ImportType(importType string) ApiImportRecordSetsRequest
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
Execute() (*ImportRecordSetsResponse, error)
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ApiListLabelsRequest interface {
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
Execute() (*ListLabelsResponse, error)
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ApiListRecordSetsRequest interface {
// page
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
Page(page int32) ApiListRecordSetsRequest
// page size
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
PageSize(pageSize int32) ApiListRecordSetsRequest
// filter name equal
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
NameEq(nameEq string) ApiListRecordSetsRequest
// filter name like
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
NameLike(nameLike string) ApiListRecordSetsRequest
// filter type
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
TypeEq(typeEq string) ApiListRecordSetsRequest
// filter state
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
StateEq(stateEq string) ApiListRecordSetsRequest
// filter state
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
StateNeq(stateNeq string) ApiListRecordSetsRequest
// filter active equal
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
ActiveEq(activeEq bool) ApiListRecordSetsRequest
// filter creation started greater with utc timestamp
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
CreationStartedGt(creationStartedGt string) ApiListRecordSetsRequest
// filter creation started lesser with utc timestamp
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
CreationStartedLt(creationStartedLt string) ApiListRecordSetsRequest
// filter creation started greater equal with utc timestamp
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
CreationStartedGte(creationStartedGte string) ApiListRecordSetsRequest
// filter creation started lesser equal with utc timestamp
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
CreationStartedLte(creationStartedLte string) ApiListRecordSetsRequest
// filter creation finished greater with utc timestamp
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
CreationFinishedGt(creationFinishedGt string) ApiListRecordSetsRequest
// filter creation finished lesser with utc timestamp
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
CreationFinishedLt(creationFinishedLt string) ApiListRecordSetsRequest
// filter creation finished greater equal with utc timestamp
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
CreationFinishedGte(creationFinishedGte string) ApiListRecordSetsRequest
// filter creation finished lesser equal with utc timestamp
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
CreationFinishedLte(creationFinishedLte string) ApiListRecordSetsRequest
// filter update started greater with utc timestamp
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
UpdateStartedGt(updateStartedGt string) ApiListRecordSetsRequest
// filter update started lesser with utc timestamp
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
UpdateStartedLt(updateStartedLt string) ApiListRecordSetsRequest
// filter update started greater equal with utc timestamp
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
UpdateStartedGte(updateStartedGte string) ApiListRecordSetsRequest
// filter update started lesser equal with utc timestamp
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
UpdateStartedLte(updateStartedLte string) ApiListRecordSetsRequest
// filter update finished greater with utc timestamp
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
UpdateFinishedGt(updateFinishedGt string) ApiListRecordSetsRequest
// filter update finished lesser with utc timestamp
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
UpdateFinishedLt(updateFinishedLt string) ApiListRecordSetsRequest
// filter update finished greater equal with utc timestamp
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
UpdateFinishedGte(updateFinishedGte string) ApiListRecordSetsRequest
// filter update finished lesser equal with utc timestamp
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
UpdateFinishedLte(updateFinishedLte string) ApiListRecordSetsRequest
// order by name
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
OrderByName(orderByName string) ApiListRecordSetsRequest
// order by creationStarted
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
OrderByCreationStarted(orderByCreationStarted string) ApiListRecordSetsRequest
// order by creationFinished
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
OrderByCreationFinished(orderByCreationFinished string) ApiListRecordSetsRequest
// order by updateStarted
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
OrderByUpdateStarted(orderByUpdateStarted string) ApiListRecordSetsRequest
// order by updateFinished
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
OrderByUpdateFinished(orderByUpdateFinished string) ApiListRecordSetsRequest
// order by type
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
OrderByType(orderByType string) ApiListRecordSetsRequest
// order by state
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
OrderByState(orderByState string) ApiListRecordSetsRequest
// order by record count
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
OrderByRecordCount(orderByRecordCount string) ApiListRecordSetsRequest
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
Execute() (*ListRecordSetsResponse, error)
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ApiListZonesRequest interface {
// page
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
Page(page int32) ApiListZonesRequest
// page size
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
PageSize(pageSize int32) ApiListZonesRequest
// filter dns name equal
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
DnsNameEq(dnsNameEq string) ApiListZonesRequest
// filter dns name like
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
DnsNameLike(dnsNameLike string) ApiListZonesRequest
// filter type
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
TypeEq(typeEq string) ApiListZonesRequest
// filter name equal
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
NameEq(nameEq string) ApiListZonesRequest
// filter name not equal
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
NameNeq(nameNeq string) ApiListZonesRequest
// filter name like
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
NameLike(nameLike string) ApiListZonesRequest
// filter description equal
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
DescriptionEq(descriptionEq string) ApiListZonesRequest
// filter description not equal
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
DescriptionNeq(descriptionNeq string) ApiListZonesRequest
// filter description like
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
DescriptionLike(descriptionLike string) ApiListZonesRequest
// filter state
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
StateEq(stateEq string) ApiListZonesRequest
// filter state
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
StateNeq(stateNeq string) ApiListZonesRequest
// filter primary name server equal
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
PrimaryNameServerEq(primaryNameServerEq string) ApiListZonesRequest
// filter primary name server like
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
PrimaryNameServerLike(primaryNameServerLike string) ApiListZonesRequest
// filter reverse zone equal
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
IsReverseZoneEq(isReverseZoneEq bool) ApiListZonesRequest
// filter active equal
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
ActiveEq(activeEq bool) ApiListZonesRequest
// filter creation started greater with utc timestamp
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
CreationStartedGt(creationStartedGt string) ApiListZonesRequest
// filter creation started lesser with utc timestamp
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
CreationStartedLt(creationStartedLt string) ApiListZonesRequest
// filter creation started greater equal with utc timestamp
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
CreationStartedGte(creationStartedGte string) ApiListZonesRequest
// filter creation started lesser equal with utc timestamp
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
CreationStartedLte(creationStartedLte string) ApiListZonesRequest
// filter creation finished greater with utc timestamp
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
CreationFinishedGt(creationFinishedGt string) ApiListZonesRequest
// filter creation finished lesser with utc timestamp
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
CreationFinishedLt(creationFinishedLt string) ApiListZonesRequest
// filter creation finished greater equal with utc timestamp
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
CreationFinishedGte(creationFinishedGte string) ApiListZonesRequest
// filter creation finished lesser equal with utc timestamp
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
CreationFinishedLte(creationFinishedLte string) ApiListZonesRequest
// filter update started greater with utc timestamp
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
UpdateStartedGt(updateStartedGt string) ApiListZonesRequest
// filter update started lesser with utc timestamp
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
UpdateStartedLt(updateStartedLt string) ApiListZonesRequest
// filter update started greater equal with utc timestamp
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
UpdateStartedGte(updateStartedGte string) ApiListZonesRequest
// filter update started lesser equal with utc timestamp
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
UpdateStartedLte(updateStartedLte string) ApiListZonesRequest
// filter update finished greater with utc timestamp
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
UpdateFinishedGt(updateFinishedGt string) ApiListZonesRequest
// filter update finished lesser with utc timestamp
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
UpdateFinishedLt(updateFinishedLt string) ApiListZonesRequest
// filter update finished greater equal with utc timestamp
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
UpdateFinishedGte(updateFinishedGte string) ApiListZonesRequest
// filter update finished lesser equal with utc timestamp
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
UpdateFinishedLte(updateFinishedLte string) ApiListZonesRequest
// filter zones according to the zone label keys.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
LabelKeyEq(labelKeyEq []string) ApiListZonesRequest
// filter zones according to the zone label values.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
LabelValueEq(labelValueEq []string) ApiListZonesRequest
// order by dns name
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
OrderByDnsName(orderByDnsName string) ApiListZonesRequest
// order by name
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
OrderByName(orderByName string) ApiListZonesRequest
// order by record count
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
OrderByRecordCount(orderByRecordCount string) ApiListZonesRequest
// order by type
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
OrderByType(orderByType string) ApiListZonesRequest
// order by description
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
OrderByDescription(orderByDescription string) ApiListZonesRequest
// order by creationStarted
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
OrderByCreationStarted(orderByCreationStarted string) ApiListZonesRequest
// order by creationFinished
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
OrderByCreationFinished(orderByCreationFinished string) ApiListZonesRequest
// order by updateStarted
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
OrderByUpdateStarted(orderByUpdateStarted string) ApiListZonesRequest
// order by updateFinished
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
OrderByUpdateFinished(orderByUpdateFinished string) ApiListZonesRequest
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
Execute() (*ListZonesResponse, error)
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ApiMoveZoneRequest interface {
// information about the move
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
MoveZonePayload(moveZonePayload MoveZonePayload) ApiMoveZoneRequest
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
Execute() (*Message, error)
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ApiPartialUpdateRecordRequest interface {
// rrset to update
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
PartialUpdateRecordPayload(partialUpdateRecordPayload PartialUpdateRecordPayload) ApiPartialUpdateRecordRequest
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
Execute() (*Message, error)
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ApiPartialUpdateRecordSetRequest interface {
// record set to patch
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
PartialUpdateRecordSetPayload(partialUpdateRecordSetPayload PartialUpdateRecordSetPayload) ApiPartialUpdateRecordSetRequest
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
Execute() (*Message, error)
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ApiPartialUpdateZoneRequest interface {
// zone to update
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
PartialUpdateZonePayload(partialUpdateZonePayload PartialUpdateZonePayload) ApiPartialUpdateZoneRequest
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
Execute() (*ZoneResponse, error)
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ApiRestoreRecordSetRequest interface {
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
Execute() (*Message, error)
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ApiRestoreZoneRequest interface {
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
Execute() (*Message, error)
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ApiRetrieveZoneRequest interface {
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
Execute() (*Message, error)
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ApiValidateMoveCodeRequest interface {
// information about the move
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
ValidateMoveCodePayload(validateMoveCodePayload ValidateMoveCodePayload) ApiValidateMoveCodeRequest
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
Execute() (*Message, error)
}
// DefaultApiService DefaultApi service