forked from hashicorp/terraform-provider-azurerm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodules.txt
More file actions
1831 lines (1831 loc) · 127 KB
/
modules.txt
File metadata and controls
1831 lines (1831 loc) · 127 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
# dario.cat/mergo v1.0.2
## explicit; go 1.13
dario.cat/mergo
# github.com/Azure/azure-sdk-for-go v66.0.0+incompatible
## explicit
github.com/Azure/azure-sdk-for-go/services/cdn/mgmt/2020-09-01/cdn
github.com/Azure/azure-sdk-for-go/services/cdn/mgmt/2021-06-01/cdn
github.com/Azure/azure-sdk-for-go/services/cosmos-db/mgmt/2021-10-15/documentdb
github.com/Azure/azure-sdk-for-go/services/preview/resources/mgmt/2021-06-01-preview/policy
github.com/Azure/azure-sdk-for-go/services/preview/security/mgmt/v3.0/security
github.com/Azure/azure-sdk-for-go/services/preview/securityinsight/mgmt/2021-09-01-preview/securityinsight
github.com/Azure/azure-sdk-for-go/services/preview/sql/mgmt/v5.0/sql
github.com/Azure/azure-sdk-for-go/services/preview/synapse/mgmt/v2.0/synapse
github.com/Azure/azure-sdk-for-go/services/recoveryservices/mgmt/2018-07-10/siterecovery
github.com/Azure/azure-sdk-for-go/services/recoveryservices/mgmt/2021-12-01/backup
github.com/Azure/azure-sdk-for-go/services/resources/mgmt/2020-06-01/resources
github.com/Azure/azure-sdk-for-go/services/web/mgmt/2021-02-01/web
github.com/Azure/azure-sdk-for-go/version
# github.com/Azure/go-autorest v14.2.0+incompatible
## explicit
github.com/Azure/go-autorest
# github.com/Azure/go-autorest/autorest v0.11.30
## explicit; go 1.15
github.com/Azure/go-autorest/autorest
github.com/Azure/go-autorest/autorest/azure
# github.com/Azure/go-autorest/autorest/adal v0.9.24
## explicit; go 1.15
github.com/Azure/go-autorest/autorest/adal
# github.com/Azure/go-autorest/autorest/date v0.3.1
## explicit; go 1.15
github.com/Azure/go-autorest/autorest/date
# github.com/Azure/go-autorest/autorest/to v0.4.0
## explicit; go 1.12
github.com/Azure/go-autorest/autorest/to
# github.com/Azure/go-autorest/autorest/validation v0.3.1
## explicit; go 1.12
github.com/Azure/go-autorest/autorest/validation
# github.com/Azure/go-autorest/logger v0.2.2
## explicit; go 1.15
github.com/Azure/go-autorest/logger
# github.com/Azure/go-autorest/tracing v0.6.1
## explicit; go 1.15
github.com/Azure/go-autorest/tracing
# github.com/Masterminds/goutils v1.1.1
## explicit
github.com/Masterminds/goutils
# github.com/Masterminds/semver/v3 v3.4.0
## explicit; go 1.21
github.com/Masterminds/semver/v3
# github.com/Masterminds/sprig/v3 v3.3.0
## explicit; go 1.21
github.com/Masterminds/sprig/v3
# github.com/ProtonMail/go-crypto v1.1.6
## explicit; go 1.17
github.com/ProtonMail/go-crypto/bitcurves
github.com/ProtonMail/go-crypto/brainpool
github.com/ProtonMail/go-crypto/eax
github.com/ProtonMail/go-crypto/internal/byteutil
github.com/ProtonMail/go-crypto/ocb
github.com/ProtonMail/go-crypto/openpgp
github.com/ProtonMail/go-crypto/openpgp/aes/keywrap
github.com/ProtonMail/go-crypto/openpgp/armor
github.com/ProtonMail/go-crypto/openpgp/ecdh
github.com/ProtonMail/go-crypto/openpgp/ecdsa
github.com/ProtonMail/go-crypto/openpgp/ed25519
github.com/ProtonMail/go-crypto/openpgp/ed448
github.com/ProtonMail/go-crypto/openpgp/eddsa
github.com/ProtonMail/go-crypto/openpgp/elgamal
github.com/ProtonMail/go-crypto/openpgp/errors
github.com/ProtonMail/go-crypto/openpgp/internal/algorithm
github.com/ProtonMail/go-crypto/openpgp/internal/ecc
github.com/ProtonMail/go-crypto/openpgp/internal/encoding
github.com/ProtonMail/go-crypto/openpgp/packet
github.com/ProtonMail/go-crypto/openpgp/s2k
github.com/ProtonMail/go-crypto/openpgp/x25519
github.com/ProtonMail/go-crypto/openpgp/x448
# github.com/agext/levenshtein v1.2.3
## explicit
github.com/agext/levenshtein
# github.com/agiledragon/gomonkey/v2 v2.13.0
## explicit; go 1.14
github.com/agiledragon/gomonkey/v2
github.com/agiledragon/gomonkey/v2/creflect
# github.com/apparentlymart/go-textseg/v15 v15.0.0
## explicit; go 1.16
github.com/apparentlymart/go-textseg/v15/textseg
# github.com/armon/go-radix v1.0.0
## explicit
github.com/armon/go-radix
# github.com/bgentry/speakeasy v0.2.0
## explicit
github.com/bgentry/speakeasy
# github.com/btubbs/datetime v0.1.1
## explicit
github.com/btubbs/datetime
# github.com/cloudflare/circl v1.6.3
## explicit; go 1.22.0
github.com/cloudflare/circl/dh/x25519
github.com/cloudflare/circl/dh/x448
github.com/cloudflare/circl/ecc/goldilocks
github.com/cloudflare/circl/internal/conv
github.com/cloudflare/circl/internal/sha3
github.com/cloudflare/circl/math
github.com/cloudflare/circl/math/fp25519
github.com/cloudflare/circl/math/fp448
github.com/cloudflare/circl/math/mlsbset
github.com/cloudflare/circl/sign
github.com/cloudflare/circl/sign/ed25519
github.com/cloudflare/circl/sign/ed448
# github.com/dave/jennifer v1.7.1
## explicit; go 1.20
github.com/dave/jennifer/jen
# github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc
## explicit
github.com/davecgh/go-spew/spew
# github.com/fatih/color v1.18.0
## explicit; go 1.17
github.com/fatih/color
# github.com/gofrs/uuid v4.4.0+incompatible
## explicit
github.com/gofrs/uuid
# github.com/golang-jwt/jwt/v4 v4.5.2
## explicit; go 1.16
github.com/golang-jwt/jwt/v4
# github.com/golang/protobuf v1.5.4
## explicit; go 1.17
github.com/golang/protobuf/proto
github.com/golang/protobuf/ptypes/empty
# github.com/google/go-cmp v0.7.0
## explicit; go 1.21
github.com/google/go-cmp/cmp
github.com/google/go-cmp/cmp/cmpopts
github.com/google/go-cmp/cmp/internal/diff
github.com/google/go-cmp/cmp/internal/flags
github.com/google/go-cmp/cmp/internal/function
github.com/google/go-cmp/cmp/internal/value
# github.com/google/uuid v1.6.0
## explicit
github.com/google/uuid
# github.com/hashicorp/errwrap v1.1.0
## explicit
github.com/hashicorp/errwrap
# github.com/hashicorp/go-azure-helpers v0.76.2
## explicit; go 1.25.5
github.com/hashicorp/go-azure-helpers/eventhub
github.com/hashicorp/go-azure-helpers/framework/commonschema
github.com/hashicorp/go-azure-helpers/framework/convert
github.com/hashicorp/go-azure-helpers/framework/fwdiag
github.com/hashicorp/go-azure-helpers/framework/typehelpers
github.com/hashicorp/go-azure-helpers/lang/dates
github.com/hashicorp/go-azure-helpers/lang/pointer
github.com/hashicorp/go-azure-helpers/lang/response
github.com/hashicorp/go-azure-helpers/polling
github.com/hashicorp/go-azure-helpers/resourcemanager/commonids
github.com/hashicorp/go-azure-helpers/resourcemanager/commonschema
github.com/hashicorp/go-azure-helpers/resourcemanager/edgezones
github.com/hashicorp/go-azure-helpers/resourcemanager/features
github.com/hashicorp/go-azure-helpers/resourcemanager/identity
github.com/hashicorp/go-azure-helpers/resourcemanager/keyvault
github.com/hashicorp/go-azure-helpers/resourcemanager/location
github.com/hashicorp/go-azure-helpers/resourcemanager/recaser
github.com/hashicorp/go-azure-helpers/resourcemanager/resourcegroups
github.com/hashicorp/go-azure-helpers/resourcemanager/resourceids
github.com/hashicorp/go-azure-helpers/resourcemanager/systemdata
github.com/hashicorp/go-azure-helpers/resourcemanager/tags
github.com/hashicorp/go-azure-helpers/resourcemanager/zones
github.com/hashicorp/go-azure-helpers/sender
github.com/hashicorp/go-azure-helpers/storage
# github.com/hashicorp/go-azure-sdk/resource-manager v0.20260312.1165223
## explicit; go 1.25.5
github.com/hashicorp/go-azure-sdk/resource-manager/aad/2021-05-01/domainservices
github.com/hashicorp/go-azure-sdk/resource-manager/aadb2c/2021-04-01-preview
github.com/hashicorp/go-azure-sdk/resource-manager/aadb2c/2021-04-01-preview/tenants
github.com/hashicorp/go-azure-sdk/resource-manager/advisor/2023-01-01/getrecommendations
github.com/hashicorp/go-azure-sdk/resource-manager/advisor/2023-01-01/suppressions
github.com/hashicorp/go-azure-sdk/resource-manager/alertsmanagement/2019-06-01/smartdetectoralertrules
github.com/hashicorp/go-azure-sdk/resource-manager/alertsmanagement/2021-08-08/alertprocessingrules
github.com/hashicorp/go-azure-sdk/resource-manager/alertsmanagement/2023-03-01/prometheusrulegroupresources
github.com/hashicorp/go-azure-sdk/resource-manager/analysisservices/2017-08-01
github.com/hashicorp/go-azure-sdk/resource-manager/analysisservices/2017-08-01/analysisservices
github.com/hashicorp/go-azure-sdk/resource-manager/analysisservices/2017-08-01/servers
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2022-08-01/api
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2022-08-01/apidiagnostic
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2022-08-01/apioperation
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2022-08-01/apioperationpolicy
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2022-08-01/apioperationtag
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2022-08-01/apipolicy
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2022-08-01/apirelease
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2022-08-01/apischema
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2022-08-01/apitag
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2022-08-01/apitagdescription
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2022-08-01/apiversionset
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2022-08-01/apiversionsets
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2022-08-01/authorizationserver
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2022-08-01/cache
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2022-08-01/certificate
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2022-08-01/delegationsettings
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2022-08-01/deletedservice
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2022-08-01/diagnostic
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2022-08-01/emailtemplates
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2022-08-01/gateway
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2022-08-01/gatewayapi
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2022-08-01/gatewaycertificateauthority
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2022-08-01/gatewayhostnameconfiguration
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2022-08-01/group
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2022-08-01/groupuser
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2022-08-01/identityprovider
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2022-08-01/logger
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2022-08-01/namedvalue
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2022-08-01/notificationrecipientemail
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2022-08-01/notificationrecipientuser
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2022-08-01/openidconnectprovider
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2022-08-01/policy
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2022-08-01/policyfragment
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2022-08-01/product
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2022-08-01/productapi
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2022-08-01/productgroup
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2022-08-01/productpolicy
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2022-08-01/producttag
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2022-08-01/schema
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2022-08-01/signinsettings
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2022-08-01/signupsettings
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2022-08-01/subscription
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2022-08-01/tag
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2022-08-01/tenantaccess
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2022-08-01/user
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2024-05-01/apigateway
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2024-05-01/apimanagementservice
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2024-05-01/apiversionset
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2024-05-01/apiversionsets
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2024-05-01/backend
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2024-05-01/certificate
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2024-05-01/namedvalue
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2024-05-01/policyfragment
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2024-05-01/workspace
github.com/hashicorp/go-azure-sdk/resource-manager/apimanagement/2024-05-01/workspacepolicy
github.com/hashicorp/go-azure-sdk/resource-manager/appconfiguration/2024-05-01/configurationstores
github.com/hashicorp/go-azure-sdk/resource-manager/appconfiguration/2024-05-01/deletedconfigurationstores
github.com/hashicorp/go-azure-sdk/resource-manager/appconfiguration/2024-05-01/operations
github.com/hashicorp/go-azure-sdk/resource-manager/appconfiguration/2024-05-01/replicas
github.com/hashicorp/go-azure-sdk/resource-manager/applicationinsights/2015-05-01/analyticsitemsapis
github.com/hashicorp/go-azure-sdk/resource-manager/applicationinsights/2015-05-01/componentapikeysapis
github.com/hashicorp/go-azure-sdk/resource-manager/applicationinsights/2015-05-01/componentfeaturesandpricingapis
github.com/hashicorp/go-azure-sdk/resource-manager/applicationinsights/2015-05-01/componentproactivedetectionapis
github.com/hashicorp/go-azure-sdk/resource-manager/applicationinsights/2020-02-02/componentsapis
github.com/hashicorp/go-azure-sdk/resource-manager/applicationinsights/2020-11-20/workbooktemplatesapis
github.com/hashicorp/go-azure-sdk/resource-manager/applicationinsights/2022-04-01/workbooksapis
github.com/hashicorp/go-azure-sdk/resource-manager/applicationinsights/2022-06-15/webtestsapis
github.com/hashicorp/go-azure-sdk/resource-manager/appplatform/2024-01-01-preview/appplatform
github.com/hashicorp/go-azure-sdk/resource-manager/attestation/2020-10-01/attestationproviders
github.com/hashicorp/go-azure-sdk/resource-manager/authorization/2020-10-01/roleassignmentscheduleinstances
github.com/hashicorp/go-azure-sdk/resource-manager/authorization/2020-10-01/roleassignmentschedulerequests
github.com/hashicorp/go-azure-sdk/resource-manager/authorization/2020-10-01/roleassignmentschedules
github.com/hashicorp/go-azure-sdk/resource-manager/authorization/2020-10-01/roleeligibilityscheduleinstances
github.com/hashicorp/go-azure-sdk/resource-manager/authorization/2020-10-01/roleeligibilityschedulerequests
github.com/hashicorp/go-azure-sdk/resource-manager/authorization/2020-10-01/roleeligibilityschedules
github.com/hashicorp/go-azure-sdk/resource-manager/authorization/2020-10-01/rolemanagementpolicies
github.com/hashicorp/go-azure-sdk/resource-manager/authorization/2020-10-01/rolemanagementpolicyassignments
github.com/hashicorp/go-azure-sdk/resource-manager/authorization/2022-04-01/roleassignments
github.com/hashicorp/go-azure-sdk/resource-manager/authorization/2022-04-01/roledefinitions
github.com/hashicorp/go-azure-sdk/resource-manager/authorization/2022-05-01-preview/roledefinitions
github.com/hashicorp/go-azure-sdk/resource-manager/automanage/2022-05-04/configurationprofileassignments
github.com/hashicorp/go-azure-sdk/resource-manager/automanage/2022-05-04/configurationprofilehciassignments
github.com/hashicorp/go-azure-sdk/resource-manager/automanage/2022-05-04/configurationprofilehcrpassignments
github.com/hashicorp/go-azure-sdk/resource-manager/automanage/2022-05-04/configurationprofiles
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2015-10-31/webhook
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2019-06-01/agentregistrationinformation
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2019-06-01/softwareupdateconfiguration
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2020-01-13-preview/watcher
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2022-08-08/automationaccount
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2023-11-01/module
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2024-10-23
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2024-10-23/activity
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2024-10-23/agentregistrationinformation
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2024-10-23/automationaccount
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2024-10-23/certificate
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2024-10-23/connection
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2024-10-23/connectiontype
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2024-10-23/credential
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2024-10-23/deletedautomationaccounts
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2024-10-23/dscconfiguration
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2024-10-23/dscnode
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2024-10-23/dscnodeconfiguration
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2024-10-23/hybridrunbookworker
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2024-10-23/hybridrunbookworkergroup
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2024-10-23/job
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2024-10-23/jobschedule
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2024-10-23/jobstream
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2024-10-23/linkedworkspace
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2024-10-23/listallhybridrunbookworkergroupinautomationaccount
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2024-10-23/listdeletedrunbooks
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2024-10-23/listkeys
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2024-10-23/module
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2024-10-23/nodecountinformation
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2024-10-23/nodereports
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2024-10-23/objectdatatypes
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2024-10-23/operations
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2024-10-23/packageresource
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2024-10-23/privateendpointconnections
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2024-10-23/privatelinkresources
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2024-10-23/python2package
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2024-10-23/python3package
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2024-10-23/runbook
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2024-10-23/runbookdraft
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2024-10-23/runtimeenvironment
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2024-10-23/schedule
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2024-10-23/softwareupdateconfiguration
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2024-10-23/softwareupdateconfigurationmachinerun
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2024-10-23/softwareupdateconfigurationrun
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2024-10-23/sourcecontrol
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2024-10-23/sourcecontrolsyncjob
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2024-10-23/sourcecontrolsyncjobstreams
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2024-10-23/statistics
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2024-10-23/testjob
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2024-10-23/testjobstream
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2024-10-23/typefields
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2024-10-23/usages
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2024-10-23/variable
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2024-10-23/watcher
github.com/hashicorp/go-azure-sdk/resource-manager/automation/2024-10-23/webhook
github.com/hashicorp/go-azure-sdk/resource-manager/azureactivedirectory/2017-04-01/diagnosticsettings
github.com/hashicorp/go-azure-sdk/resource-manager/azurestackhci/2024-01-01
github.com/hashicorp/go-azure-sdk/resource-manager/azurestackhci/2024-01-01/arcsettings
github.com/hashicorp/go-azure-sdk/resource-manager/azurestackhci/2024-01-01/cluster
github.com/hashicorp/go-azure-sdk/resource-manager/azurestackhci/2024-01-01/clusters
github.com/hashicorp/go-azure-sdk/resource-manager/azurestackhci/2024-01-01/deploymentsettings
github.com/hashicorp/go-azure-sdk/resource-manager/azurestackhci/2024-01-01/edgedevices
github.com/hashicorp/go-azure-sdk/resource-manager/azurestackhci/2024-01-01/extensions
github.com/hashicorp/go-azure-sdk/resource-manager/azurestackhci/2024-01-01/galleryimages
github.com/hashicorp/go-azure-sdk/resource-manager/azurestackhci/2024-01-01/guestagents
github.com/hashicorp/go-azure-sdk/resource-manager/azurestackhci/2024-01-01/hybrididentitymetadata
github.com/hashicorp/go-azure-sdk/resource-manager/azurestackhci/2024-01-01/logicalnetworks
github.com/hashicorp/go-azure-sdk/resource-manager/azurestackhci/2024-01-01/marketplacegalleryimages
github.com/hashicorp/go-azure-sdk/resource-manager/azurestackhci/2024-01-01/networkinterfaces
github.com/hashicorp/go-azure-sdk/resource-manager/azurestackhci/2024-01-01/offers
github.com/hashicorp/go-azure-sdk/resource-manager/azurestackhci/2024-01-01/publishers
github.com/hashicorp/go-azure-sdk/resource-manager/azurestackhci/2024-01-01/securitysettings
github.com/hashicorp/go-azure-sdk/resource-manager/azurestackhci/2024-01-01/skus
github.com/hashicorp/go-azure-sdk/resource-manager/azurestackhci/2024-01-01/storagecontainers
github.com/hashicorp/go-azure-sdk/resource-manager/azurestackhci/2024-01-01/updateruns
github.com/hashicorp/go-azure-sdk/resource-manager/azurestackhci/2024-01-01/updates
github.com/hashicorp/go-azure-sdk/resource-manager/azurestackhci/2024-01-01/updatesummaries
github.com/hashicorp/go-azure-sdk/resource-manager/azurestackhci/2024-01-01/virtualharddisks
github.com/hashicorp/go-azure-sdk/resource-manager/azurestackhci/2024-01-01/virtualmachineinstances
github.com/hashicorp/go-azure-sdk/resource-manager/batch/2024-07-01/application
github.com/hashicorp/go-azure-sdk/resource-manager/batch/2024-07-01/batchaccount
github.com/hashicorp/go-azure-sdk/resource-manager/batch/2024-07-01/certificate
github.com/hashicorp/go-azure-sdk/resource-manager/batch/2024-07-01/pool
github.com/hashicorp/go-azure-sdk/resource-manager/blueprints/2018-11-01-preview/assignment
github.com/hashicorp/go-azure-sdk/resource-manager/blueprints/2018-11-01-preview/blueprint
github.com/hashicorp/go-azure-sdk/resource-manager/blueprints/2018-11-01-preview/publishedblueprint
github.com/hashicorp/go-azure-sdk/resource-manager/botservice/2022-09-15/channel
github.com/hashicorp/go-azure-sdk/resource-manager/cdn/2024-02-01/endpoints
github.com/hashicorp/go-azure-sdk/resource-manager/cdn/2024-02-01/profiles
github.com/hashicorp/go-azure-sdk/resource-manager/cdn/2024-02-01/rulesets
github.com/hashicorp/go-azure-sdk/resource-manager/cdn/2024-02-01/securitypolicies
github.com/hashicorp/go-azure-sdk/resource-manager/cdn/2024-09-01/rules
github.com/hashicorp/go-azure-sdk/resource-manager/cdn/2025-04-15/afdcustomdomains
github.com/hashicorp/go-azure-sdk/resource-manager/cdn/2025-06-01/afdendpoints
github.com/hashicorp/go-azure-sdk/resource-manager/chaosstudio/2023-11-01
github.com/hashicorp/go-azure-sdk/resource-manager/chaosstudio/2023-11-01/capabilities
github.com/hashicorp/go-azure-sdk/resource-manager/chaosstudio/2023-11-01/capabilitytypes
github.com/hashicorp/go-azure-sdk/resource-manager/chaosstudio/2023-11-01/experiments
github.com/hashicorp/go-azure-sdk/resource-manager/chaosstudio/2023-11-01/targets
github.com/hashicorp/go-azure-sdk/resource-manager/chaosstudio/2023-11-01/targettypes
github.com/hashicorp/go-azure-sdk/resource-manager/codesigning/2024-09-30-preview
github.com/hashicorp/go-azure-sdk/resource-manager/codesigning/2024-09-30-preview/certificateprofiles
github.com/hashicorp/go-azure-sdk/resource-manager/codesigning/2024-09-30-preview/codesigningaccounts
github.com/hashicorp/go-azure-sdk/resource-manager/cognitive/2025-06-01/cognitiveservicesaccounts
github.com/hashicorp/go-azure-sdk/resource-manager/cognitive/2025-06-01/cognitiveservicesprojects
github.com/hashicorp/go-azure-sdk/resource-manager/cognitive/2025-06-01/deployments
github.com/hashicorp/go-azure-sdk/resource-manager/cognitive/2025-06-01/raiblocklists
github.com/hashicorp/go-azure-sdk/resource-manager/cognitive/2025-06-01/raipolicies
github.com/hashicorp/go-azure-sdk/resource-manager/communication/2023-03-31/communicationservices
github.com/hashicorp/go-azure-sdk/resource-manager/communication/2023-03-31/domains
github.com/hashicorp/go-azure-sdk/resource-manager/communication/2023-03-31/emailservices
github.com/hashicorp/go-azure-sdk/resource-manager/communication/2023-03-31/senderusernames
github.com/hashicorp/go-azure-sdk/resource-manager/compute/2021-07-01/skus
github.com/hashicorp/go-azure-sdk/resource-manager/compute/2022-03-01/capacityreservationgroups
github.com/hashicorp/go-azure-sdk/resource-manager/compute/2022-03-01/capacityreservations
github.com/hashicorp/go-azure-sdk/resource-manager/compute/2022-03-01/images
github.com/hashicorp/go-azure-sdk/resource-manager/compute/2022-03-01/proximityplacementgroups
github.com/hashicorp/go-azure-sdk/resource-manager/compute/2022-03-02/diskaccesses
github.com/hashicorp/go-azure-sdk/resource-manager/compute/2022-03-02/diskencryptionsets
github.com/hashicorp/go-azure-sdk/resource-manager/compute/2022-03-02/snapshots
github.com/hashicorp/go-azure-sdk/resource-manager/compute/2022-03-03/galleries
github.com/hashicorp/go-azure-sdk/resource-manager/compute/2022-03-03/galleryapplications
github.com/hashicorp/go-azure-sdk/resource-manager/compute/2022-03-03/galleryapplicationversions
github.com/hashicorp/go-azure-sdk/resource-manager/compute/2022-03-03/galleryimages
github.com/hashicorp/go-azure-sdk/resource-manager/compute/2022-03-03/gallerysharingupdate
github.com/hashicorp/go-azure-sdk/resource-manager/compute/2023-03-01/restorepoints
github.com/hashicorp/go-azure-sdk/resource-manager/compute/2023-03-01/virtualmachineruncommands
github.com/hashicorp/go-azure-sdk/resource-manager/compute/2023-04-02/disks
github.com/hashicorp/go-azure-sdk/resource-manager/compute/2023-07-03/galleryimageversions
github.com/hashicorp/go-azure-sdk/resource-manager/compute/2024-03-01/availabilitysets
github.com/hashicorp/go-azure-sdk/resource-manager/compute/2024-03-01/dedicatedhostgroups
github.com/hashicorp/go-azure-sdk/resource-manager/compute/2024-03-01/dedicatedhosts
github.com/hashicorp/go-azure-sdk/resource-manager/compute/2024-03-01/restorepointcollections
github.com/hashicorp/go-azure-sdk/resource-manager/compute/2024-03-01/restorepoints
github.com/hashicorp/go-azure-sdk/resource-manager/compute/2024-03-01/sshpublickeys
github.com/hashicorp/go-azure-sdk/resource-manager/compute/2024-03-01/virtualmachineextensions
github.com/hashicorp/go-azure-sdk/resource-manager/compute/2024-03-01/virtualmachineimages
github.com/hashicorp/go-azure-sdk/resource-manager/compute/2024-03-01/virtualmachines
github.com/hashicorp/go-azure-sdk/resource-manager/compute/2024-03-01/virtualmachinescalesetextensions
github.com/hashicorp/go-azure-sdk/resource-manager/compute/2024-03-01/virtualmachinescalesetrollingupgrades
github.com/hashicorp/go-azure-sdk/resource-manager/compute/2024-03-01/virtualmachinescalesetvms
github.com/hashicorp/go-azure-sdk/resource-manager/compute/2024-11-01/virtualmachinescalesets
github.com/hashicorp/go-azure-sdk/resource-manager/confidentialledger/2022-05-13/confidentialledger
github.com/hashicorp/go-azure-sdk/resource-manager/consumption/2019-10-01/budgets
github.com/hashicorp/go-azure-sdk/resource-manager/containerapps/2025-07-01/certificates
github.com/hashicorp/go-azure-sdk/resource-manager/containerapps/2025-07-01/containerapps
github.com/hashicorp/go-azure-sdk/resource-manager/containerapps/2025-07-01/containerappsrevisions
github.com/hashicorp/go-azure-sdk/resource-manager/containerapps/2025-07-01/daprcomponents
github.com/hashicorp/go-azure-sdk/resource-manager/containerapps/2025-07-01/jobs
github.com/hashicorp/go-azure-sdk/resource-manager/containerapps/2025-07-01/managedenvironments
github.com/hashicorp/go-azure-sdk/resource-manager/containerapps/2025-07-01/managedenvironmentsstorages
github.com/hashicorp/go-azure-sdk/resource-manager/containerinstance/2025-09-01/containerinstance
github.com/hashicorp/go-azure-sdk/resource-manager/containerregistry/2019-06-01-preview
github.com/hashicorp/go-azure-sdk/resource-manager/containerregistry/2019-06-01-preview/agentpools
github.com/hashicorp/go-azure-sdk/resource-manager/containerregistry/2019-06-01-preview/registries
github.com/hashicorp/go-azure-sdk/resource-manager/containerregistry/2019-06-01-preview/runs
github.com/hashicorp/go-azure-sdk/resource-manager/containerregistry/2019-06-01-preview/taskruns
github.com/hashicorp/go-azure-sdk/resource-manager/containerregistry/2019-06-01-preview/tasks
github.com/hashicorp/go-azure-sdk/resource-manager/containerregistry/2023-07-01/cacherules
github.com/hashicorp/go-azure-sdk/resource-manager/containerregistry/2023-07-01/credentialsets
github.com/hashicorp/go-azure-sdk/resource-manager/containerregistry/2025-11-01
github.com/hashicorp/go-azure-sdk/resource-manager/containerregistry/2025-11-01/cacherules
github.com/hashicorp/go-azure-sdk/resource-manager/containerregistry/2025-11-01/connectedregistries
github.com/hashicorp/go-azure-sdk/resource-manager/containerregistry/2025-11-01/credentialsets
github.com/hashicorp/go-azure-sdk/resource-manager/containerregistry/2025-11-01/privateendpointconnections
github.com/hashicorp/go-azure-sdk/resource-manager/containerregistry/2025-11-01/privatelinkresources
github.com/hashicorp/go-azure-sdk/resource-manager/containerregistry/2025-11-01/registries
github.com/hashicorp/go-azure-sdk/resource-manager/containerregistry/2025-11-01/replications
github.com/hashicorp/go-azure-sdk/resource-manager/containerregistry/2025-11-01/scopemaps
github.com/hashicorp/go-azure-sdk/resource-manager/containerregistry/2025-11-01/tokens
github.com/hashicorp/go-azure-sdk/resource-manager/containerregistry/2025-11-01/webhooks
github.com/hashicorp/go-azure-sdk/resource-manager/containerservice/2019-08-01/containerservices
github.com/hashicorp/go-azure-sdk/resource-manager/containerservice/2024-04-01
github.com/hashicorp/go-azure-sdk/resource-manager/containerservice/2024-04-01/fleetmembers
github.com/hashicorp/go-azure-sdk/resource-manager/containerservice/2024-04-01/fleets
github.com/hashicorp/go-azure-sdk/resource-manager/containerservice/2024-04-01/fleetupdatestrategies
github.com/hashicorp/go-azure-sdk/resource-manager/containerservice/2024-04-01/updateruns
github.com/hashicorp/go-azure-sdk/resource-manager/containerservice/2025-03-01/fleetupdatestrategies
github.com/hashicorp/go-azure-sdk/resource-manager/containerservice/2025-03-01/updateruns
github.com/hashicorp/go-azure-sdk/resource-manager/containerservice/2025-10-01/agentpools
github.com/hashicorp/go-azure-sdk/resource-manager/containerservice/2025-10-01/maintenanceconfigurations
github.com/hashicorp/go-azure-sdk/resource-manager/containerservice/2025-10-01/managedclusters
github.com/hashicorp/go-azure-sdk/resource-manager/containerservice/2025-10-01/snapshots
github.com/hashicorp/go-azure-sdk/resource-manager/containerservice/2025-10-01/trustedaccess
github.com/hashicorp/go-azure-sdk/resource-manager/cosmosdb/2022-05-15/cosmosdb
github.com/hashicorp/go-azure-sdk/resource-manager/cosmosdb/2022-05-15/sqldedicatedgateway
github.com/hashicorp/go-azure-sdk/resource-manager/cosmosdb/2022-11-15/mongorbacs
github.com/hashicorp/go-azure-sdk/resource-manager/cosmosdb/2023-04-15/managedcassandras
github.com/hashicorp/go-azure-sdk/resource-manager/cosmosdb/2024-08-15/cosmosdb
github.com/hashicorp/go-azure-sdk/resource-manager/costmanagement/2023-08-01/exports
github.com/hashicorp/go-azure-sdk/resource-manager/costmanagement/2023-08-01/scheduledactions
github.com/hashicorp/go-azure-sdk/resource-manager/costmanagement/2023-08-01/views
github.com/hashicorp/go-azure-sdk/resource-manager/customproviders/2018-09-01-preview/customresourceprovider
github.com/hashicorp/go-azure-sdk/resource-manager/dashboard/2025-08-01/managedgrafanas
github.com/hashicorp/go-azure-sdk/resource-manager/dashboard/2025-08-01/managedprivateendpointmodels
github.com/hashicorp/go-azure-sdk/resource-manager/databoxedge/2022-03-01/devices
github.com/hashicorp/go-azure-sdk/resource-manager/databoxedge/2022-03-01/orders
github.com/hashicorp/go-azure-sdk/resource-manager/databricks/2026-01-01/accessconnector
github.com/hashicorp/go-azure-sdk/resource-manager/databricks/2026-01-01/vnetpeering
github.com/hashicorp/go-azure-sdk/resource-manager/databricks/2026-01-01/workspaces
github.com/hashicorp/go-azure-sdk/resource-manager/datadog/2021-03-01
github.com/hashicorp/go-azure-sdk/resource-manager/datadog/2021-03-01/agreements
github.com/hashicorp/go-azure-sdk/resource-manager/datadog/2021-03-01/apikey
github.com/hashicorp/go-azure-sdk/resource-manager/datadog/2021-03-01/hosts
github.com/hashicorp/go-azure-sdk/resource-manager/datadog/2021-03-01/linkedresources
github.com/hashicorp/go-azure-sdk/resource-manager/datadog/2021-03-01/monitoredresources
github.com/hashicorp/go-azure-sdk/resource-manager/datadog/2021-03-01/monitorsresource
github.com/hashicorp/go-azure-sdk/resource-manager/datadog/2021-03-01/refreshsetpasswordlink
github.com/hashicorp/go-azure-sdk/resource-manager/datadog/2021-03-01/rules
github.com/hashicorp/go-azure-sdk/resource-manager/datadog/2021-03-01/singlesignon
github.com/hashicorp/go-azure-sdk/resource-manager/datafactory/2018-06-01/credentials
github.com/hashicorp/go-azure-sdk/resource-manager/datafactory/2018-06-01/dataflows
github.com/hashicorp/go-azure-sdk/resource-manager/datafactory/2018-06-01/factories
github.com/hashicorp/go-azure-sdk/resource-manager/datafactory/2018-06-01/integrationruntimes
github.com/hashicorp/go-azure-sdk/resource-manager/datafactory/2018-06-01/linkedservices
github.com/hashicorp/go-azure-sdk/resource-manager/datafactory/2018-06-01/managedprivateendpoints
github.com/hashicorp/go-azure-sdk/resource-manager/datafactory/2018-06-01/managedvirtualnetworks
github.com/hashicorp/go-azure-sdk/resource-manager/datafactory/2018-06-01/pipelines
github.com/hashicorp/go-azure-sdk/resource-manager/datamigration/2021-06-30/projectresource
github.com/hashicorp/go-azure-sdk/resource-manager/datamigration/2021-06-30/serviceresource
github.com/hashicorp/go-azure-sdk/resource-manager/dataprotection/2025-07-01/backupinstanceresources
github.com/hashicorp/go-azure-sdk/resource-manager/dataprotection/2025-07-01/backupvaultresources
github.com/hashicorp/go-azure-sdk/resource-manager/dataprotection/2025-07-01/basebackuppolicyresources
github.com/hashicorp/go-azure-sdk/resource-manager/dataprotection/2025-07-01/resourceguardresources
github.com/hashicorp/go-azure-sdk/resource-manager/dataprotection/2025-07-01/resourceguards
github.com/hashicorp/go-azure-sdk/resource-manager/datashare/2019-11-01/account
github.com/hashicorp/go-azure-sdk/resource-manager/datashare/2019-11-01/dataset
github.com/hashicorp/go-azure-sdk/resource-manager/datashare/2019-11-01/share
github.com/hashicorp/go-azure-sdk/resource-manager/datashare/2019-11-01/synchronizationsetting
github.com/hashicorp/go-azure-sdk/resource-manager/desktopvirtualization/2024-04-03/application
github.com/hashicorp/go-azure-sdk/resource-manager/desktopvirtualization/2024-04-03/applicationgroup
github.com/hashicorp/go-azure-sdk/resource-manager/desktopvirtualization/2024-04-03/desktop
github.com/hashicorp/go-azure-sdk/resource-manager/desktopvirtualization/2024-04-03/hostpool
github.com/hashicorp/go-azure-sdk/resource-manager/desktopvirtualization/2024-04-03/scalingplan
github.com/hashicorp/go-azure-sdk/resource-manager/desktopvirtualization/2024-04-03/sessionhost
github.com/hashicorp/go-azure-sdk/resource-manager/desktopvirtualization/2024-04-03/workspace
github.com/hashicorp/go-azure-sdk/resource-manager/devcenter/2025-02-01
github.com/hashicorp/go-azure-sdk/resource-manager/devcenter/2025-02-01/attachednetworkconnections
github.com/hashicorp/go-azure-sdk/resource-manager/devcenter/2025-02-01/catalogs
github.com/hashicorp/go-azure-sdk/resource-manager/devcenter/2025-02-01/checknameavailability
github.com/hashicorp/go-azure-sdk/resource-manager/devcenter/2025-02-01/checkscopednameavailability
github.com/hashicorp/go-azure-sdk/resource-manager/devcenter/2025-02-01/customizationtasks
github.com/hashicorp/go-azure-sdk/resource-manager/devcenter/2025-02-01/devboxdefinitions
github.com/hashicorp/go-azure-sdk/resource-manager/devcenter/2025-02-01/devcenters
github.com/hashicorp/go-azure-sdk/resource-manager/devcenter/2025-02-01/environmentdefinitions
github.com/hashicorp/go-azure-sdk/resource-manager/devcenter/2025-02-01/environmenttypes
github.com/hashicorp/go-azure-sdk/resource-manager/devcenter/2025-02-01/galleries
github.com/hashicorp/go-azure-sdk/resource-manager/devcenter/2025-02-01/imagedefinitions
github.com/hashicorp/go-azure-sdk/resource-manager/devcenter/2025-02-01/images
github.com/hashicorp/go-azure-sdk/resource-manager/devcenter/2025-02-01/imageversions
github.com/hashicorp/go-azure-sdk/resource-manager/devcenter/2025-02-01/networkconnection
github.com/hashicorp/go-azure-sdk/resource-manager/devcenter/2025-02-01/networkconnections
github.com/hashicorp/go-azure-sdk/resource-manager/devcenter/2025-02-01/pools
github.com/hashicorp/go-azure-sdk/resource-manager/devcenter/2025-02-01/projectcatalogs
github.com/hashicorp/go-azure-sdk/resource-manager/devcenter/2025-02-01/projectpolicies
github.com/hashicorp/go-azure-sdk/resource-manager/devcenter/2025-02-01/projects
github.com/hashicorp/go-azure-sdk/resource-manager/devcenter/2025-02-01/projectskus
github.com/hashicorp/go-azure-sdk/resource-manager/devcenter/2025-02-01/schedules
github.com/hashicorp/go-azure-sdk/resource-manager/devcenter/2025-02-01/skus
github.com/hashicorp/go-azure-sdk/resource-manager/devcenter/2025-02-01/usages
github.com/hashicorp/go-azure-sdk/resource-manager/deviceprovisioningservices/2022-02-05/dpscertificate
github.com/hashicorp/go-azure-sdk/resource-manager/deviceprovisioningservices/2022-02-05/iotdpsresource
github.com/hashicorp/go-azure-sdk/resource-manager/deviceupdate/2022-10-01/deviceupdates
github.com/hashicorp/go-azure-sdk/resource-manager/devtestlab/2018-09-15/globalschedules
github.com/hashicorp/go-azure-sdk/resource-manager/devtestlab/2018-09-15/labs
github.com/hashicorp/go-azure-sdk/resource-manager/devtestlab/2018-09-15/policies
github.com/hashicorp/go-azure-sdk/resource-manager/devtestlab/2018-09-15/schedules
github.com/hashicorp/go-azure-sdk/resource-manager/devtestlab/2018-09-15/virtualmachines
github.com/hashicorp/go-azure-sdk/resource-manager/devtestlab/2018-09-15/virtualnetworks
github.com/hashicorp/go-azure-sdk/resource-manager/digitaltwins/2023-01-31/digitaltwinsinstance
github.com/hashicorp/go-azure-sdk/resource-manager/digitaltwins/2023-01-31/endpoints
github.com/hashicorp/go-azure-sdk/resource-manager/digitaltwins/2023-01-31/timeseriesdatabaseconnections
github.com/hashicorp/go-azure-sdk/resource-manager/dns/2018-05-01
github.com/hashicorp/go-azure-sdk/resource-manager/dns/2018-05-01/dns
github.com/hashicorp/go-azure-sdk/resource-manager/dns/2018-05-01/recordsets
github.com/hashicorp/go-azure-sdk/resource-manager/dns/2018-05-01/zones
github.com/hashicorp/go-azure-sdk/resource-manager/dnsresolver/2022-07-01/dnsforwardingrulesets
github.com/hashicorp/go-azure-sdk/resource-manager/dnsresolver/2022-07-01/dnsresolvers
github.com/hashicorp/go-azure-sdk/resource-manager/dnsresolver/2022-07-01/forwardingrules
github.com/hashicorp/go-azure-sdk/resource-manager/dnsresolver/2022-07-01/inboundendpoints
github.com/hashicorp/go-azure-sdk/resource-manager/dnsresolver/2022-07-01/outboundendpoints
github.com/hashicorp/go-azure-sdk/resource-manager/dnsresolver/2022-07-01/virtualnetworklinks
github.com/hashicorp/go-azure-sdk/resource-manager/dynatrace/2023-04-27/monitors
github.com/hashicorp/go-azure-sdk/resource-manager/dynatrace/2023-04-27/tagrules
github.com/hashicorp/go-azure-sdk/resource-manager/elastic/2023-06-01/monitorsresource
github.com/hashicorp/go-azure-sdk/resource-manager/elastic/2023-06-01/rules
github.com/hashicorp/go-azure-sdk/resource-manager/elasticsan/2023-01-01
github.com/hashicorp/go-azure-sdk/resource-manager/elasticsan/2023-01-01/elasticsan
github.com/hashicorp/go-azure-sdk/resource-manager/elasticsan/2023-01-01/elasticsans
github.com/hashicorp/go-azure-sdk/resource-manager/elasticsan/2023-01-01/elasticsanskus
github.com/hashicorp/go-azure-sdk/resource-manager/elasticsan/2023-01-01/privateendpointconnections
github.com/hashicorp/go-azure-sdk/resource-manager/elasticsan/2023-01-01/privatelinkresources
github.com/hashicorp/go-azure-sdk/resource-manager/elasticsan/2023-01-01/snapshots
github.com/hashicorp/go-azure-sdk/resource-manager/elasticsan/2023-01-01/volumegroups
github.com/hashicorp/go-azure-sdk/resource-manager/elasticsan/2023-01-01/volumes
github.com/hashicorp/go-azure-sdk/resource-manager/eventgrid/2023-12-15-preview/namespaces
github.com/hashicorp/go-azure-sdk/resource-manager/eventgrid/2025-02-15
github.com/hashicorp/go-azure-sdk/resource-manager/eventgrid/2025-02-15/cacertificates
github.com/hashicorp/go-azure-sdk/resource-manager/eventgrid/2025-02-15/channels
github.com/hashicorp/go-azure-sdk/resource-manager/eventgrid/2025-02-15/clientgroups
github.com/hashicorp/go-azure-sdk/resource-manager/eventgrid/2025-02-15/clients
github.com/hashicorp/go-azure-sdk/resource-manager/eventgrid/2025-02-15/domains
github.com/hashicorp/go-azure-sdk/resource-manager/eventgrid/2025-02-15/domaintopics
github.com/hashicorp/go-azure-sdk/resource-manager/eventgrid/2025-02-15/eventsubscriptions
github.com/hashicorp/go-azure-sdk/resource-manager/eventgrid/2025-02-15/namespaces
github.com/hashicorp/go-azure-sdk/resource-manager/eventgrid/2025-02-15/namespacetopics
github.com/hashicorp/go-azure-sdk/resource-manager/eventgrid/2025-02-15/partnerconfigurations
github.com/hashicorp/go-azure-sdk/resource-manager/eventgrid/2025-02-15/partnernamespaces
github.com/hashicorp/go-azure-sdk/resource-manager/eventgrid/2025-02-15/partnerregistrations
github.com/hashicorp/go-azure-sdk/resource-manager/eventgrid/2025-02-15/partnertopics
github.com/hashicorp/go-azure-sdk/resource-manager/eventgrid/2025-02-15/permissionbindings
github.com/hashicorp/go-azure-sdk/resource-manager/eventgrid/2025-02-15/privateendpointconnections
github.com/hashicorp/go-azure-sdk/resource-manager/eventgrid/2025-02-15/privatelinkresources
github.com/hashicorp/go-azure-sdk/resource-manager/eventgrid/2025-02-15/systemtopics
github.com/hashicorp/go-azure-sdk/resource-manager/eventgrid/2025-02-15/topics
github.com/hashicorp/go-azure-sdk/resource-manager/eventgrid/2025-02-15/topicspaces
github.com/hashicorp/go-azure-sdk/resource-manager/eventgrid/2025-02-15/topictypes
github.com/hashicorp/go-azure-sdk/resource-manager/eventgrid/2025-02-15/verifiedpartners
github.com/hashicorp/go-azure-sdk/resource-manager/eventhub/2021-11-01/authorizationrulesnamespaces
github.com/hashicorp/go-azure-sdk/resource-manager/eventhub/2021-11-01/eventhubs
github.com/hashicorp/go-azure-sdk/resource-manager/eventhub/2022-01-01-preview/namespaces
github.com/hashicorp/go-azure-sdk/resource-manager/eventhub/2024-01-01/authorizationruleseventhubs
github.com/hashicorp/go-azure-sdk/resource-manager/eventhub/2024-01-01/authorizationrulesnamespaces
github.com/hashicorp/go-azure-sdk/resource-manager/eventhub/2024-01-01/checknameavailabilitydisasterrecoveryconfigs
github.com/hashicorp/go-azure-sdk/resource-manager/eventhub/2024-01-01/consumergroups
github.com/hashicorp/go-azure-sdk/resource-manager/eventhub/2024-01-01/disasterrecoveryconfigs
github.com/hashicorp/go-azure-sdk/resource-manager/eventhub/2024-01-01/eventhubs
github.com/hashicorp/go-azure-sdk/resource-manager/eventhub/2024-01-01/eventhubsclusters
github.com/hashicorp/go-azure-sdk/resource-manager/eventhub/2024-01-01/namespaces
github.com/hashicorp/go-azure-sdk/resource-manager/eventhub/2024-01-01/networkrulesets
github.com/hashicorp/go-azure-sdk/resource-manager/eventhub/2024-01-01/schemaregistry
github.com/hashicorp/go-azure-sdk/resource-manager/extendedlocation/2021-08-15/customlocations
github.com/hashicorp/go-azure-sdk/resource-manager/fabric/2023-11-01/fabriccapacities
github.com/hashicorp/go-azure-sdk/resource-manager/fluidrelay/2022-05-26
github.com/hashicorp/go-azure-sdk/resource-manager/fluidrelay/2022-05-26/fluidrelaycontainers
github.com/hashicorp/go-azure-sdk/resource-manager/fluidrelay/2022-05-26/fluidrelayservers
github.com/hashicorp/go-azure-sdk/resource-manager/frontdoor/2020-04-01/webapplicationfirewallpolicies
github.com/hashicorp/go-azure-sdk/resource-manager/frontdoor/2020-05-01/frontdoors
github.com/hashicorp/go-azure-sdk/resource-manager/frontdoor/2024-02-01/webapplicationfirewallpolicies
github.com/hashicorp/go-azure-sdk/resource-manager/frontdoor/2025-03-01/webapplicationfirewallpolicies
github.com/hashicorp/go-azure-sdk/resource-manager/graphservices/2023-04-13
github.com/hashicorp/go-azure-sdk/resource-manager/graphservices/2023-04-13/graphservicesprods
github.com/hashicorp/go-azure-sdk/resource-manager/guestconfiguration/2024-04-05/guestconfigurationassignments
github.com/hashicorp/go-azure-sdk/resource-manager/hardwaresecuritymodules/2021-11-30/dedicatedhsms
github.com/hashicorp/go-azure-sdk/resource-manager/hdinsight/2021-06-01
github.com/hashicorp/go-azure-sdk/resource-manager/hdinsight/2021-06-01/applications
github.com/hashicorp/go-azure-sdk/resource-manager/hdinsight/2021-06-01/clusters
github.com/hashicorp/go-azure-sdk/resource-manager/hdinsight/2021-06-01/configurations
github.com/hashicorp/go-azure-sdk/resource-manager/hdinsight/2021-06-01/extensions
github.com/hashicorp/go-azure-sdk/resource-manager/hdinsight/2021-06-01/privateendpointconnections
github.com/hashicorp/go-azure-sdk/resource-manager/hdinsight/2021-06-01/privatelinkresources
github.com/hashicorp/go-azure-sdk/resource-manager/hdinsight/2021-06-01/promote
github.com/hashicorp/go-azure-sdk/resource-manager/hdinsight/2021-06-01/regions
github.com/hashicorp/go-azure-sdk/resource-manager/hdinsight/2021-06-01/scriptactions
github.com/hashicorp/go-azure-sdk/resource-manager/hdinsight/2021-06-01/scriptexecutionhistory
github.com/hashicorp/go-azure-sdk/resource-manager/hdinsight/2021-06-01/virtualmachines
github.com/hashicorp/go-azure-sdk/resource-manager/healthbot/2025-05-25
github.com/hashicorp/go-azure-sdk/resource-manager/healthbot/2025-05-25/healthbots
github.com/hashicorp/go-azure-sdk/resource-manager/healthcareapis/2022-12-01/fhirservices
github.com/hashicorp/go-azure-sdk/resource-manager/healthcareapis/2022-12-01/iotconnectors
github.com/hashicorp/go-azure-sdk/resource-manager/healthcareapis/2022-12-01/resource
github.com/hashicorp/go-azure-sdk/resource-manager/healthcareapis/2024-03-31/dicomservices
github.com/hashicorp/go-azure-sdk/resource-manager/healthcareapis/2024-03-31/workspaces
github.com/hashicorp/go-azure-sdk/resource-manager/hybridcompute/2022-11-10/machineextensions
github.com/hashicorp/go-azure-sdk/resource-manager/hybridcompute/2022-11-10/machines
github.com/hashicorp/go-azure-sdk/resource-manager/hybridcompute/2022-11-10/privateendpointconnections
github.com/hashicorp/go-azure-sdk/resource-manager/hybridcompute/2022-11-10/privatelinkscopes
github.com/hashicorp/go-azure-sdk/resource-manager/hybridcompute/2024-07-10
github.com/hashicorp/go-azure-sdk/resource-manager/hybridcompute/2024-07-10/extensions
github.com/hashicorp/go-azure-sdk/resource-manager/hybridcompute/2024-07-10/licenseprofiles
github.com/hashicorp/go-azure-sdk/resource-manager/hybridcompute/2024-07-10/licenses
github.com/hashicorp/go-azure-sdk/resource-manager/hybridcompute/2024-07-10/machineextensions
github.com/hashicorp/go-azure-sdk/resource-manager/hybridcompute/2024-07-10/machineextensionsupgrade
github.com/hashicorp/go-azure-sdk/resource-manager/hybridcompute/2024-07-10/machinenetworkprofile
github.com/hashicorp/go-azure-sdk/resource-manager/hybridcompute/2024-07-10/machines
github.com/hashicorp/go-azure-sdk/resource-manager/hybridcompute/2024-07-10/networksecurityperimeterconfiguration
github.com/hashicorp/go-azure-sdk/resource-manager/hybridcompute/2024-07-10/privateendpointconnections
github.com/hashicorp/go-azure-sdk/resource-manager/hybridcompute/2024-07-10/privatelinkresources
github.com/hashicorp/go-azure-sdk/resource-manager/hybridcompute/2024-07-10/privatelinkscopes
github.com/hashicorp/go-azure-sdk/resource-manager/hybridkubernetes/2021-10-01/connectedclusters
github.com/hashicorp/go-azure-sdk/resource-manager/hybridkubernetes/2024-01-01/connectedclusters
github.com/hashicorp/go-azure-sdk/resource-manager/insights/2015-04-01/activitylogs
github.com/hashicorp/go-azure-sdk/resource-manager/insights/2018-03-01/metricalerts
github.com/hashicorp/go-azure-sdk/resource-manager/insights/2018-04-16/scheduledqueryrules
github.com/hashicorp/go-azure-sdk/resource-manager/insights/2019-10-17-preview/privatelinkscopedresources
github.com/hashicorp/go-azure-sdk/resource-manager/insights/2020-10-01/activitylogalertsapis
github.com/hashicorp/go-azure-sdk/resource-manager/insights/2021-05-01-preview/diagnosticsettings
github.com/hashicorp/go-azure-sdk/resource-manager/insights/2021-05-01-preview/diagnosticsettingscategories
github.com/hashicorp/go-azure-sdk/resource-manager/insights/2021-07-01-preview/privatelinkscopesapis
github.com/hashicorp/go-azure-sdk/resource-manager/insights/2022-10-01/autoscalesettings
github.com/hashicorp/go-azure-sdk/resource-manager/insights/2023-01-01/actiongroupsapis
github.com/hashicorp/go-azure-sdk/resource-manager/insights/2023-03-11/datacollectionendpoints
github.com/hashicorp/go-azure-sdk/resource-manager/insights/2023-03-11/datacollectionruleassociations
github.com/hashicorp/go-azure-sdk/resource-manager/insights/2023-03-11/datacollectionrules
github.com/hashicorp/go-azure-sdk/resource-manager/insights/2023-03-15-preview/scheduledqueryrules
github.com/hashicorp/go-azure-sdk/resource-manager/insights/2023-04-03/azuremonitorworkspaces
github.com/hashicorp/go-azure-sdk/resource-manager/iotcentral/2021-11-01-preview/apps
github.com/hashicorp/go-azure-sdk/resource-manager/keyvault/2023-02-01/vaults
github.com/hashicorp/go-azure-sdk/resource-manager/keyvault/2023-07-01/managedhsms
github.com/hashicorp/go-azure-sdk/resource-manager/keyvault/2023-07-01/vaults
github.com/hashicorp/go-azure-sdk/resource-manager/kubernetesconfiguration/2024-11-01/extensions
github.com/hashicorp/go-azure-sdk/resource-manager/kubernetesconfiguration/2024-11-01/fluxconfiguration
github.com/hashicorp/go-azure-sdk/resource-manager/kusto/2024-04-13/attacheddatabaseconfigurations
github.com/hashicorp/go-azure-sdk/resource-manager/kusto/2024-04-13/clusterprincipalassignments
github.com/hashicorp/go-azure-sdk/resource-manager/kusto/2024-04-13/clusters
github.com/hashicorp/go-azure-sdk/resource-manager/kusto/2024-04-13/databaseprincipalassignments
github.com/hashicorp/go-azure-sdk/resource-manager/kusto/2024-04-13/databases
github.com/hashicorp/go-azure-sdk/resource-manager/kusto/2024-04-13/dataconnections
github.com/hashicorp/go-azure-sdk/resource-manager/kusto/2024-04-13/managedprivateendpoints
github.com/hashicorp/go-azure-sdk/resource-manager/kusto/2024-04-13/scripts
github.com/hashicorp/go-azure-sdk/resource-manager/loadtestservice/2022-12-01
github.com/hashicorp/go-azure-sdk/resource-manager/loadtestservice/2022-12-01/loadtests
github.com/hashicorp/go-azure-sdk/resource-manager/loadtestservice/2022-12-01/quotas
github.com/hashicorp/go-azure-sdk/resource-manager/logic/2019-05-01/integrationaccountagreements
github.com/hashicorp/go-azure-sdk/resource-manager/logic/2019-05-01/integrationaccountassemblies
github.com/hashicorp/go-azure-sdk/resource-manager/logic/2019-05-01/integrationaccountbatchconfigurations
github.com/hashicorp/go-azure-sdk/resource-manager/logic/2019-05-01/integrationaccountcertificates
github.com/hashicorp/go-azure-sdk/resource-manager/logic/2019-05-01/integrationaccountmaps
github.com/hashicorp/go-azure-sdk/resource-manager/logic/2019-05-01/integrationaccountpartners
github.com/hashicorp/go-azure-sdk/resource-manager/logic/2019-05-01/integrationaccounts
github.com/hashicorp/go-azure-sdk/resource-manager/logic/2019-05-01/integrationaccountschemas
github.com/hashicorp/go-azure-sdk/resource-manager/logic/2019-05-01/integrationaccountsessions
github.com/hashicorp/go-azure-sdk/resource-manager/logic/2019-05-01/integrationserviceenvironments
github.com/hashicorp/go-azure-sdk/resource-manager/logic/2019-05-01/workflowrunactions
github.com/hashicorp/go-azure-sdk/resource-manager/logic/2019-05-01/workflows
github.com/hashicorp/go-azure-sdk/resource-manager/logic/2019-05-01/workflowtriggers
github.com/hashicorp/go-azure-sdk/resource-manager/machinelearningservices/2025-06-01/datastore
github.com/hashicorp/go-azure-sdk/resource-manager/machinelearningservices/2025-06-01/machinelearningcomputes
github.com/hashicorp/go-azure-sdk/resource-manager/machinelearningservices/2025-06-01/managednetwork
github.com/hashicorp/go-azure-sdk/resource-manager/machinelearningservices/2025-06-01/workspaces
github.com/hashicorp/go-azure-sdk/resource-manager/maintenance/2023-04-01/configurationassignments
github.com/hashicorp/go-azure-sdk/resource-manager/maintenance/2023-04-01/maintenanceconfigurations
github.com/hashicorp/go-azure-sdk/resource-manager/maintenance/2023-04-01/publicmaintenanceconfigurations
github.com/hashicorp/go-azure-sdk/resource-manager/managedapplications/2021-07-01/applicationdefinitions
github.com/hashicorp/go-azure-sdk/resource-manager/managedapplications/2021-07-01/applications
github.com/hashicorp/go-azure-sdk/resource-manager/managedidentity/2024-11-30
github.com/hashicorp/go-azure-sdk/resource-manager/managedidentity/2024-11-30/federatedidentitycredentials
github.com/hashicorp/go-azure-sdk/resource-manager/managedidentity/2024-11-30/identities
github.com/hashicorp/go-azure-sdk/resource-manager/managedidentity/2024-11-30/systemassignedidentities
github.com/hashicorp/go-azure-sdk/resource-manager/managedservices/2022-10-01/registrationassignments
github.com/hashicorp/go-azure-sdk/resource-manager/managedservices/2022-10-01/registrationdefinitions
github.com/hashicorp/go-azure-sdk/resource-manager/management/2020-05-01/managementgroups
github.com/hashicorp/go-azure-sdk/resource-manager/maps/2023-06-01/accounts
github.com/hashicorp/go-azure-sdk/resource-manager/maps/2023-06-01/creators
github.com/hashicorp/go-azure-sdk/resource-manager/mariadb/2018-06-01/servers
github.com/hashicorp/go-azure-sdk/resource-manager/marketplaceordering/2015-06-01/agreements
github.com/hashicorp/go-azure-sdk/resource-manager/migrate/2020-01-01/machines
github.com/hashicorp/go-azure-sdk/resource-manager/migrate/2020-01-01/runasaccounts
github.com/hashicorp/go-azure-sdk/resource-manager/mongocluster/2025-09-01/firewallrules
github.com/hashicorp/go-azure-sdk/resource-manager/mongocluster/2025-09-01/mongoclusters
github.com/hashicorp/go-azure-sdk/resource-manager/mongocluster/2025-09-01/users
github.com/hashicorp/go-azure-sdk/resource-manager/mysql/2017-12-01/servers
github.com/hashicorp/go-azure-sdk/resource-manager/mysql/2023-12-30
github.com/hashicorp/go-azure-sdk/resource-manager/mysql/2023-12-30/advancedthreatprotectionsettings
github.com/hashicorp/go-azure-sdk/resource-manager/mysql/2023-12-30/azureadadministrators
github.com/hashicorp/go-azure-sdk/resource-manager/mysql/2023-12-30/backupandexport
github.com/hashicorp/go-azure-sdk/resource-manager/mysql/2023-12-30/backups
github.com/hashicorp/go-azure-sdk/resource-manager/mysql/2023-12-30/backupsv2
github.com/hashicorp/go-azure-sdk/resource-manager/mysql/2023-12-30/checknameavailability
github.com/hashicorp/go-azure-sdk/resource-manager/mysql/2023-12-30/configurations
github.com/hashicorp/go-azure-sdk/resource-manager/mysql/2023-12-30/databases
github.com/hashicorp/go-azure-sdk/resource-manager/mysql/2023-12-30/firewallrules
github.com/hashicorp/go-azure-sdk/resource-manager/mysql/2023-12-30/getprivatednszonesuffix
github.com/hashicorp/go-azure-sdk/resource-manager/mysql/2023-12-30/locationbasedcapabilities
github.com/hashicorp/go-azure-sdk/resource-manager/mysql/2023-12-30/locationbasedcapability
github.com/hashicorp/go-azure-sdk/resource-manager/mysql/2023-12-30/logfiles
github.com/hashicorp/go-azure-sdk/resource-manager/mysql/2023-12-30/maintenances
github.com/hashicorp/go-azure-sdk/resource-manager/mysql/2023-12-30/operationprogress
github.com/hashicorp/go-azure-sdk/resource-manager/mysql/2023-12-30/serverfailover
github.com/hashicorp/go-azure-sdk/resource-manager/mysql/2023-12-30/servermigration
github.com/hashicorp/go-azure-sdk/resource-manager/mysql/2023-12-30/serverresetgtid
github.com/hashicorp/go-azure-sdk/resource-manager/mysql/2023-12-30/serverrestart
github.com/hashicorp/go-azure-sdk/resource-manager/mysql/2023-12-30/servers
github.com/hashicorp/go-azure-sdk/resource-manager/mysql/2023-12-30/serverstart
github.com/hashicorp/go-azure-sdk/resource-manager/mysql/2023-12-30/serverstop
github.com/hashicorp/go-azure-sdk/resource-manager/mysql/2023-12-30/servervalidateestimatehighavailability
github.com/hashicorp/go-azure-sdk/resource-manager/netapp/2025-06-01/backuppolicies
github.com/hashicorp/go-azure-sdk/resource-manager/netapp/2025-06-01/backups
github.com/hashicorp/go-azure-sdk/resource-manager/netapp/2025-06-01/backupvaults
github.com/hashicorp/go-azure-sdk/resource-manager/netapp/2025-06-01/capacitypools
github.com/hashicorp/go-azure-sdk/resource-manager/netapp/2025-06-01/netappaccounts
github.com/hashicorp/go-azure-sdk/resource-manager/netapp/2025-06-01/snapshotpolicies
github.com/hashicorp/go-azure-sdk/resource-manager/netapp/2025-06-01/snapshots
github.com/hashicorp/go-azure-sdk/resource-manager/netapp/2025-06-01/volumegroups
github.com/hashicorp/go-azure-sdk/resource-manager/netapp/2025-06-01/volumequotarules
github.com/hashicorp/go-azure-sdk/resource-manager/netapp/2025-06-01/volumes
github.com/hashicorp/go-azure-sdk/resource-manager/network/2023-09-01/applicationsecuritygroups
github.com/hashicorp/go-azure-sdk/resource-manager/network/2023-09-01/azurefirewalls
github.com/hashicorp/go-azure-sdk/resource-manager/network/2023-09-01/ddosprotectionplans
github.com/hashicorp/go-azure-sdk/resource-manager/network/2023-09-01/firewallpolicies
github.com/hashicorp/go-azure-sdk/resource-manager/network/2023-09-01/flowlogs
github.com/hashicorp/go-azure-sdk/resource-manager/network/2023-09-01/loadbalancers
github.com/hashicorp/go-azure-sdk/resource-manager/network/2023-09-01/natgateways
github.com/hashicorp/go-azure-sdk/resource-manager/network/2023-09-01/networkgroups
github.com/hashicorp/go-azure-sdk/resource-manager/network/2023-09-01/networkinterfaces
github.com/hashicorp/go-azure-sdk/resource-manager/network/2023-09-01/networkmanagers
github.com/hashicorp/go-azure-sdk/resource-manager/network/2023-09-01/networksecuritygroups
github.com/hashicorp/go-azure-sdk/resource-manager/network/2023-09-01/networkvirtualappliances
github.com/hashicorp/go-azure-sdk/resource-manager/network/2023-09-01/networkwatchers
github.com/hashicorp/go-azure-sdk/resource-manager/network/2023-09-01/privateendpoints
github.com/hashicorp/go-azure-sdk/resource-manager/network/2023-09-01/publicipprefixes
github.com/hashicorp/go-azure-sdk/resource-manager/network/2023-09-01/routefilters
github.com/hashicorp/go-azure-sdk/resource-manager/network/2023-09-01/routetables
github.com/hashicorp/go-azure-sdk/resource-manager/network/2023-09-01/virtualwans
github.com/hashicorp/go-azure-sdk/resource-manager/network/2023-09-01/vmsspublicipaddresses
github.com/hashicorp/go-azure-sdk/resource-manager/network/2023-09-01/webapplicationfirewallpolicies
github.com/hashicorp/go-azure-sdk/resource-manager/network/2023-11-01/applicationgateways
github.com/hashicorp/go-azure-sdk/resource-manager/network/2023-11-01/expressroutecircuits
github.com/hashicorp/go-azure-sdk/resource-manager/network/2023-11-01/expressroutegateways
github.com/hashicorp/go-azure-sdk/resource-manager/network/2023-11-01/expressrouteports
github.com/hashicorp/go-azure-sdk/resource-manager/network/2023-11-01/firewallpolicies
github.com/hashicorp/go-azure-sdk/resource-manager/network/2023-11-01/localnetworkgateways
github.com/hashicorp/go-azure-sdk/resource-manager/network/2023-11-01/networksecuritygroups
github.com/hashicorp/go-azure-sdk/resource-manager/network/2023-11-01/privatelinkservices
github.com/hashicorp/go-azure-sdk/resource-manager/network/2023-11-01/publicipprefixes
github.com/hashicorp/go-azure-sdk/resource-manager/network/2023-11-01/routetables
github.com/hashicorp/go-azure-sdk/resource-manager/network/2023-11-01/serviceendpointpolicies
github.com/hashicorp/go-azure-sdk/resource-manager/network/2023-11-01/subnets
github.com/hashicorp/go-azure-sdk/resource-manager/network/2023-11-01/virtualnetworkgatewayconnections
github.com/hashicorp/go-azure-sdk/resource-manager/network/2023-11-01/virtualwans
github.com/hashicorp/go-azure-sdk/resource-manager/network/2023-11-01/webapplicationfirewallpolicies
github.com/hashicorp/go-azure-sdk/resource-manager/network/2024-01-01/bastionhosts
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/adminrulecollections
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/adminrules
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/applicationgatewayprivateendpointconnections
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/applicationgatewayprivatelinkresources
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/applicationgateways
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/applicationgatewaywafdynamicmanifests
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/applicationsecuritygroups
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/availabledelegations
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/availableservicealiases
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/azurefirewalls
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/bastionhosts
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/bastionshareablelink
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/bgpservicecommunities
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/checkdnsavailabilities
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/cloudservicepublicipaddresses
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/connectionmonitors
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/connectivityconfigurations
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/customipprefixes
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/ddoscustompolicies
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/ddosprotectionplans
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/dscpconfiguration
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/dscpconfigurations
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/endpointservices
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/expressroutecircuitarptable
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/expressroutecircuitauthorizations
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/expressroutecircuitconnections
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/expressroutecircuitpeerings
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/expressroutecircuitroutestable
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/expressroutecircuitroutestablesummary
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/expressroutecircuits
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/expressroutecircuitstats
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/expressrouteconnections
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/expressroutecrossconnectionarptable
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/expressroutecrossconnectionpeerings
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/expressroutecrossconnectionroutetable
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/expressroutecrossconnectionroutetablesummary
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/expressroutecrossconnections
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/expressroutegateways
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/expressroutelinks
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/expressrouteportauthorizations
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/expressrouteports
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/expressrouteportslocations
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/expressrouteproviderports
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/expressrouteserviceproviders
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/firewallpolicies
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/firewallpolicyrulecollectiongroups
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/flowlogs
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/ipallocations
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/ipampools
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/ipgroups
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/loadbalancers
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/localnetworkgateways
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/natgateways
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/networkgroups
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/networkinterfaces
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/networkmanageractiveconfigurations
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/networkmanageractiveconnectivityconfigurations
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/networkmanagerconnections
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/networkmanagereffectiveconnectivityconfiguration
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/networkmanagereffectivesecurityadminrules
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/networkmanagerroutingconfigurations
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/networkmanagers
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/networkprofiles
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/networksecuritygroups
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/networksecurityperimeteraccessrules
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/networksecurityperimeterassociableresourcetypes
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/networksecurityperimeterassociations
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/networksecurityperimeterlinkreferences
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/networksecurityperimeterlinks
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/networksecurityperimeterloggingconfigurations
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/networksecurityperimeterprofiles
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/networksecurityperimeters
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/networksecurityperimeterservicetags
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/networkvirtualappliances
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/networkwatchers
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/p2svpngateways
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/packetcaptures
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/peerexpressroutecircuitconnections
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/privatednszonegroups
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/privateendpoints
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/privatelinkservices
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/publicipaddresses
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/publicipprefixes
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/reachabilityanalysisintent
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/reachabilityanalysisintents
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/reachabilityanalysisruns
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/routefilterrules
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/routefilters
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/routes
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/routetables
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/routingrulecollections
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/routingrules
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/scopeconnections
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/securityadminconfigurations
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/securitypartnerproviders
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/securityrules
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/securityuserconfigurations
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/securityuserrulecollections
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/securityuserrules
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/serviceendpointpolicies
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/serviceendpointpolicydefinitions
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/servicetags
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/staticcidrs
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/staticmembers
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/subnets
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/trafficanalytics
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/usages
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/verifierworkspaces
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/vipswap
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/virtualappliancesites
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/virtualapplianceskus
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/virtualnetworkgatewayconnections
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/virtualnetworkgateways
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/virtualnetworkpeerings
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/virtualnetworks
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/virtualnetworktap
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/virtualnetworktaps
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/virtualrouterpeerings
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/virtualrouters
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/virtualwans
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/vmsspublicipaddresses
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/vpngateways
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/vpnlinkconnections
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/vpnserverconfigurations
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/vpnsites
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/webapplicationfirewallpolicies
github.com/hashicorp/go-azure-sdk/resource-manager/network/2025-01-01/webcategories
github.com/hashicorp/go-azure-sdk/resource-manager/networkfunction/2022-11-01/azuretrafficcollectors
github.com/hashicorp/go-azure-sdk/resource-manager/networkfunction/2022-11-01/collectorpolicies
github.com/hashicorp/go-azure-sdk/resource-manager/newrelic/2024-03-01/monitors
github.com/hashicorp/go-azure-sdk/resource-manager/newrelic/2024-03-01/tagrules
github.com/hashicorp/go-azure-sdk/resource-manager/nginx/2024-11-01-preview
github.com/hashicorp/go-azure-sdk/resource-manager/nginx/2024-11-01-preview/nginxapikey
github.com/hashicorp/go-azure-sdk/resource-manager/nginx/2024-11-01-preview/nginxcertificate
github.com/hashicorp/go-azure-sdk/resource-manager/nginx/2024-11-01-preview/nginxconfiguration
github.com/hashicorp/go-azure-sdk/resource-manager/nginx/2024-11-01-preview/nginxconfigurationanalysis
github.com/hashicorp/go-azure-sdk/resource-manager/nginx/2024-11-01-preview/nginxdeployment
github.com/hashicorp/go-azure-sdk/resource-manager/notificationhubs/2023-09-01/hubs
github.com/hashicorp/go-azure-sdk/resource-manager/notificationhubs/2023-09-01/namespaces
github.com/hashicorp/go-azure-sdk/resource-manager/operationalinsights/2019-09-01/querypackqueries
github.com/hashicorp/go-azure-sdk/resource-manager/operationalinsights/2019-09-01/querypacks
github.com/hashicorp/go-azure-sdk/resource-manager/operationalinsights/2020-08-01/dataexport
github.com/hashicorp/go-azure-sdk/resource-manager/operationalinsights/2020-08-01/datasources
github.com/hashicorp/go-azure-sdk/resource-manager/operationalinsights/2020-08-01/linkedservices
github.com/hashicorp/go-azure-sdk/resource-manager/operationalinsights/2020-08-01/linkedstorageaccounts
github.com/hashicorp/go-azure-sdk/resource-manager/operationalinsights/2020-08-01/savedsearches
github.com/hashicorp/go-azure-sdk/resource-manager/operationalinsights/2020-08-01/storageinsights
github.com/hashicorp/go-azure-sdk/resource-manager/operationalinsights/2020-08-01/workspaces
github.com/hashicorp/go-azure-sdk/resource-manager/operationalinsights/2022-10-01/clusters
github.com/hashicorp/go-azure-sdk/resource-manager/operationalinsights/2022-10-01/tables
github.com/hashicorp/go-azure-sdk/resource-manager/operationalinsights/2022-10-01/workspaces
github.com/hashicorp/go-azure-sdk/resource-manager/operationalinsights/2023-09-01/deletedworkspaces
github.com/hashicorp/go-azure-sdk/resource-manager/operationsmanagement/2015-11-01-preview/solution
github.com/hashicorp/go-azure-sdk/resource-manager/oracledatabase/2025-09-01
github.com/hashicorp/go-azure-sdk/resource-manager/oracledatabase/2025-09-01/autonomousdatabasebackups
github.com/hashicorp/go-azure-sdk/resource-manager/oracledatabase/2025-09-01/autonomousdatabasecharactersets
github.com/hashicorp/go-azure-sdk/resource-manager/oracledatabase/2025-09-01/autonomousdatabasenationalcharactersets
github.com/hashicorp/go-azure-sdk/resource-manager/oracledatabase/2025-09-01/autonomousdatabases
github.com/hashicorp/go-azure-sdk/resource-manager/oracledatabase/2025-09-01/autonomousdatabaseversions
github.com/hashicorp/go-azure-sdk/resource-manager/oracledatabase/2025-09-01/cloudexadatainfrastructures
github.com/hashicorp/go-azure-sdk/resource-manager/oracledatabase/2025-09-01/cloudvmclusters
github.com/hashicorp/go-azure-sdk/resource-manager/oracledatabase/2025-09-01/dbnodes
github.com/hashicorp/go-azure-sdk/resource-manager/oracledatabase/2025-09-01/dbservers
github.com/hashicorp/go-azure-sdk/resource-manager/oracledatabase/2025-09-01/dbsystems
github.com/hashicorp/go-azure-sdk/resource-manager/oracledatabase/2025-09-01/dbsystemshapes
github.com/hashicorp/go-azure-sdk/resource-manager/oracledatabase/2025-09-01/dbversions
github.com/hashicorp/go-azure-sdk/resource-manager/oracledatabase/2025-09-01/dnsprivateviews
github.com/hashicorp/go-azure-sdk/resource-manager/oracledatabase/2025-09-01/dnsprivatezones
github.com/hashicorp/go-azure-sdk/resource-manager/oracledatabase/2025-09-01/exadbvmclusters
github.com/hashicorp/go-azure-sdk/resource-manager/oracledatabase/2025-09-01/exascaledbnodes
github.com/hashicorp/go-azure-sdk/resource-manager/oracledatabase/2025-09-01/exascaledbstoragevaults
github.com/hashicorp/go-azure-sdk/resource-manager/oracledatabase/2025-09-01/flexcomponents
github.com/hashicorp/go-azure-sdk/resource-manager/oracledatabase/2025-09-01/giminorversions
github.com/hashicorp/go-azure-sdk/resource-manager/oracledatabase/2025-09-01/giversions
github.com/hashicorp/go-azure-sdk/resource-manager/oracledatabase/2025-09-01/networkanchors
github.com/hashicorp/go-azure-sdk/resource-manager/oracledatabase/2025-09-01/oraclesubscriptions
github.com/hashicorp/go-azure-sdk/resource-manager/oracledatabase/2025-09-01/resourceanchors
github.com/hashicorp/go-azure-sdk/resource-manager/oracledatabase/2025-09-01/systemversions
github.com/hashicorp/go-azure-sdk/resource-manager/oracledatabase/2025-09-01/virtualnetworkaddresses
github.com/hashicorp/go-azure-sdk/resource-manager/orbital/2022-11-01/contact
github.com/hashicorp/go-azure-sdk/resource-manager/orbital/2022-11-01/contactprofile
github.com/hashicorp/go-azure-sdk/resource-manager/orbital/2022-11-01/groundstation
github.com/hashicorp/go-azure-sdk/resource-manager/orbital/2022-11-01/spacecraft
github.com/hashicorp/go-azure-sdk/resource-manager/paloaltonetworks/2025-10-08
github.com/hashicorp/go-azure-sdk/resource-manager/paloaltonetworks/2025-10-08/certificateobjectglobalrulestackresources
github.com/hashicorp/go-azure-sdk/resource-manager/paloaltonetworks/2025-10-08/certificateobjectlocalrulestackresources
github.com/hashicorp/go-azure-sdk/resource-manager/paloaltonetworks/2025-10-08/firewallresources
github.com/hashicorp/go-azure-sdk/resource-manager/paloaltonetworks/2025-10-08/firewallstatusresources
github.com/hashicorp/go-azure-sdk/resource-manager/paloaltonetworks/2025-10-08/fqdnlistglobalrulestackresources
github.com/hashicorp/go-azure-sdk/resource-manager/paloaltonetworks/2025-10-08/fqdnlistlocalrulestackresources
github.com/hashicorp/go-azure-sdk/resource-manager/paloaltonetworks/2025-10-08/globalrulestackresources
github.com/hashicorp/go-azure-sdk/resource-manager/paloaltonetworks/2025-10-08/localrulesresources
github.com/hashicorp/go-azure-sdk/resource-manager/paloaltonetworks/2025-10-08/localrulestackresources
github.com/hashicorp/go-azure-sdk/resource-manager/paloaltonetworks/2025-10-08/metricsobjectfirewallresources
github.com/hashicorp/go-azure-sdk/resource-manager/paloaltonetworks/2025-10-08/paloaltonetworkscloudngfws
github.com/hashicorp/go-azure-sdk/resource-manager/paloaltonetworks/2025-10-08/postrulesresources
github.com/hashicorp/go-azure-sdk/resource-manager/paloaltonetworks/2025-10-08/prefixlistglobalrulestackresources
github.com/hashicorp/go-azure-sdk/resource-manager/paloaltonetworks/2025-10-08/prefixlistresources
github.com/hashicorp/go-azure-sdk/resource-manager/paloaltonetworks/2025-10-08/prerulesresources
github.com/hashicorp/go-azure-sdk/resource-manager/policyinsights/2021-10-01/remediations
github.com/hashicorp/go-azure-sdk/resource-manager/portal/2019-01-01-preview/dashboard
github.com/hashicorp/go-azure-sdk/resource-manager/portal/2019-01-01-preview/tenantconfiguration
github.com/hashicorp/go-azure-sdk/resource-manager/postgresql/2017-12-01/configurations
github.com/hashicorp/go-azure-sdk/resource-manager/postgresql/2017-12-01/databases
github.com/hashicorp/go-azure-sdk/resource-manager/postgresql/2017-12-01/firewallrules
github.com/hashicorp/go-azure-sdk/resource-manager/postgresql/2017-12-01/replicas
github.com/hashicorp/go-azure-sdk/resource-manager/postgresql/2017-12-01/serveradministrators
github.com/hashicorp/go-azure-sdk/resource-manager/postgresql/2017-12-01/servers
github.com/hashicorp/go-azure-sdk/resource-manager/postgresql/2017-12-01/serversecurityalertpolicies
github.com/hashicorp/go-azure-sdk/resource-manager/postgresql/2017-12-01/virtualnetworkrules
github.com/hashicorp/go-azure-sdk/resource-manager/postgresql/2020-01-01/serverkeys
github.com/hashicorp/go-azure-sdk/resource-manager/postgresql/2025-08-01/administratormicrosoftentras