-
Notifications
You must be signed in to change notification settings - Fork 2k
/
Copy pathadditional-spring-configuration-metadata.json
1052 lines (1052 loc) · 43.9 KB
/
additional-spring-configuration-metadata.json
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
{
"properties": [
{
"name": "azure.activedirectory.active-directory-groups",
"type": "java.util.List<java.lang.String>",
"description": "Expected UserGroups that an authority will be granted to if found in the response from the MemeberOf Graph API Call.",
"deprecation": {
"level": "error",
"reason": "Use uniform property format(spring.cloud.azure.*) in all Spring Cloud Azure libraries.",
"replacement": "spring.cloud.azure.active-directory.user-group.allowed-group-names"
}
},
{
"name": "azure.activedirectory.allow-telemetry",
"type": "java.lang.Boolean",
"description": "If Telemetry events should be published to Azure AD.",
"defaultValue": true,
"deprecation": {
"level": "error",
"reason": "Deprecate the telemetry endpoint and use HTTP header User Agent instead."
}
},
{
"name": "azure.activedirectory.app-id-uri",
"type": "java.lang.String",
"description": "App ID URI which might be used in the 'aud' claim of an id_token.",
"deprecation": {
"level": "error",
"reason": "Use uniform property format(spring.cloud.azure.*) in all Spring Cloud Azure libraries.",
"replacement": "spring.cloud.azure.active-directory.app-id-uri"
}
},
{
"name": "azure.activedirectory.application-type",
"type": "java.lang.String",
"description": "Type of the AAD application.",
"deprecation": {
"level": "error",
"reason": "Use uniform property format(spring.cloud.azure.*) in all Spring Cloud Azure libraries.",
"replacement": "spring.cloud.azure.active-directory.application-type"
}
},
{
"name": "azure.activedirectory.authenticate-additional-parameters",
"type": "java.util.Map<java.lang.String,java.lang.Object>",
"description": "Add additional parameters to the Authorization URL.",
"deprecation": {
"level": "error",
"reason": "Use uniform property format(spring.cloud.azure.*) in all Spring Cloud Azure libraries.",
"replacement": "spring.cloud.azure.active-directory.authenticate-additional-parameters"
}
},
{
"name": "azure.activedirectory.authorization-clients",
"deprecation": {
"level": "error",
"reason": "Use uniform property format(spring.cloud.azure.*) in all Spring Cloud Azure libraries.",
"replacement": "spring.cloud.azure.active-directory.authorization-clients"
}
},
{
"name": "azure.activedirectory.b2c.allow-telemetry",
"type": "java.lang.Boolean",
"description": "Telemetry data will be collected if true, or disable data collection.",
"defaultValue": true,
"deprecation": {
"level": "error",
"reason": "Deprecate the telemetry endpoint and use HTTP header User Agent instead."
}
},
{
"name": "azure.activedirectory.b2c.app-id-uri",
"type": "java.lang.String",
"description": "App ID URI which might be used in the 'aud' claim of an token.",
"deprecation": {
"level": "error",
"reason": "Use uniform property format(spring.cloud.azure.*) in all Spring Cloud Azure libraries.",
"replacement": "spring.cloud.azure.active-directory.b2c.app-id-uri"
}
},
{
"name": "azure.activedirectory.b2c.authenticate-additional-parameters",
"type": "java.util.Map<java.lang.String,java.lang.Object>",
"deprecation": {
"level": "error",
"reason": "Use uniform property format(spring.cloud.azure.*) in all Spring Cloud Azure libraries.",
"replacement": "spring.cloud.azure.active-directory.b2c.authenticate-additional-parameters"
}
},
{
"name": "azure.activedirectory.b2c.authorization-clients",
"description": "Specify client configuration.",
"deprecation": {
"level": "error",
"reason": "Use uniform property format(spring.cloud.azure.*) in all Spring Cloud Azure libraries.",
"replacement": "spring.cloud.azure.active-directory.b2c.authorization-clients"
}
},
{
"name": "azure.activedirectory.b2c.base-uri",
"type": "java.lang.String",
"description": "AAD B2C endpoint base uri.",
"deprecation": {
"level": "error",
"reason": "Use uniform property format(spring.cloud.azure.*) in all Spring Cloud Azure libraries.",
"replacement": "spring.cloud.azure.active-directory.b2c.base-uri"
}
},
{
"name": "azure.activedirectory.b2c.client-id",
"type": "java.lang.String",
"description": "The application ID that registered under b2c tenant.",
"deprecation": {
"level": "error",
"reason": "Use uniform property format(spring.cloud.azure.*) in all Spring Cloud Azure libraries.",
"replacement": "spring.cloud.azure.active-directory.b2c.credential.client-id"
}
},
{
"name": "azure.activedirectory.b2c.client-secret",
"type": "java.lang.String",
"description": "The application secret that registered under b2c tenant.",
"deprecation": {
"level": "error",
"reason": "Use uniform property format(spring.cloud.azure.*) in all Spring Cloud Azure libraries.",
"replacement": "spring.cloud.azure.active-directory.b2c.credential.client-secret"
}
},
{
"name": "azure.activedirectory.b2c.jwt-connect-timeout",
"type": "java.lang.Integer",
"description": "Connection Timeout for the JWKSet Remote URL call.",
"deprecation": {
"level": "error",
"reason": "Use uniform property format(spring.cloud.azure.*) in all Spring Cloud Azure libraries.",
"replacement": "spring.cloud.azure.active-directory.b2c.jwt-connect-timeout"
}
},
{
"name": "azure.activedirectory.b2c.jwt-read-timeout",
"type": "java.lang.Integer",
"description": "Read Timeout for the JWKSet Remote URL call.",
"deprecation": {
"level": "error",
"reason": "Use uniform property format(spring.cloud.azure.*) in all Spring Cloud Azure libraries.",
"replacement": "spring.cloud.azure.active-directory.b2c.jwt-read-timeout"
}
},
{
"name": "azure.activedirectory.b2c.jwt-size-limit",
"type": "java.lang.Integer",
"description": "Size limit in Bytes of the JWKSet Remote URL call.",
"deprecation": {
"level": "error",
"reason": "Use uniform property format(spring.cloud.azure.*) in all Spring Cloud Azure libraries.",
"replacement": "spring.cloud.azure.active-directory.b2c.jwt-size-limit"
}
},
{
"name": "azure.activedirectory.b2c.login-flow",
"type": "java.lang.String",
"description": "Specify the primary sign in flow key.",
"defaultValue": "sign-up-or-sign-in",
"deprecation": {
"level": "error",
"reason": "Use uniform property format(spring.cloud.azure.*) in all Spring Cloud Azure libraries.",
"replacement": "spring.cloud.azure.active-directory.b2c.login-flow"
}
},
{
"name": "azure.activedirectory.b2c.logout-success-url",
"type": "java.lang.String",
"defaultValue": "http:\/\/localhost:8080\/login",
"deprecation": {
"level": "error",
"reason": "Use uniform property format(spring.cloud.azure.*) in all Spring Cloud Azure libraries.",
"replacement": "spring.cloud.azure.active-directory.b2c.logout-success-url"
}
},
{
"name": "azure.activedirectory.b2c.reply-url",
"type": "java.lang.String",
"defaultValue": "{baseUrl}\/login\/oauth2\/code\/",
"deprecation": {
"level": "error",
"reason": "Use uniform property format(spring.cloud.azure.*) in all Spring Cloud Azure libraries.",
"replacement": "spring.cloud.azure.active-directory.b2c.reply-url"
}
},
{
"name": "azure.activedirectory.b2c.tenant",
"type": "java.lang.String",
"description": "The name of the b2c tenant.",
"deprecation": {
"level": "error",
"reason": "Configuration updated to baseUri.",
"replacement": "spring.cloud.azure.active-directory.b2c.base-uri"
}
},
{
"name": "azure.activedirectory.b2c.tenant-id",
"type": "java.lang.String",
"description": "The name of the b2c tenant id.",
"deprecation": {
"level": "error",
"reason": "Use uniform property format(spring.cloud.azure.*) in all Spring Cloud Azure libraries.",
"replacement": "spring.cloud.azure.active-directory.b2c.profile.tenant-id"
}
},
{
"name": "azure.activedirectory.b2c.user-flows",
"type": "java.util.Map<java.lang.String,java.lang.String>",
"deprecation": {
"level": "error",
"reason": "Use uniform property format(spring.cloud.azure.*) in all Spring Cloud Azure libraries.",
"replacement": "spring.cloud.azure.active-directory.b2c.user-flows"
}
},
{
"name": "azure.activedirectory.b2c.user-name-attribute-name",
"type": "java.lang.String",
"description": "User name attribute name.",
"deprecation": {
"level": "error",
"reason": "Use uniform property format(spring.cloud.azure.*) in all Spring Cloud Azure libraries.",
"replacement": "spring.cloud.azure.active-directory.b2c.user-name-attribute-name"
}
},
{
"name": "azure.activedirectory.base-uri",
"type": "java.lang.String",
"deprecation": {
"level": "error",
"reason": "Use uniform property format(spring.cloud.azure.*) in all Spring Cloud Azure libraries.",
"replacement": "spring.cloud.azure.active-directory.profile.environment.active-directory-endpoint"
}
},
{
"name": "azure.activedirectory.client-id",
"type": "java.lang.String",
"description": "Registered application ID in Azure AD. Must be configured when OAuth2 authentication is done in front end.",
"deprecation": {
"level": "error",
"reason": "Use uniform property format(spring.cloud.azure.*) in all Spring Cloud Azure libraries.",
"replacement": "spring.cloud.azure.active-directory.credential.client-id"
}
},
{
"name": "azure.activedirectory.client-secret",
"type": "java.lang.String",
"description": "API Access Key of the registered application. Must be configured when OAuth2 authentication is done in front end.",
"deprecation": {
"level": "error",
"reason": "Use uniform property format(spring.cloud.azure.*) in all Spring Cloud Azure libraries.",
"replacement": "spring.cloud.azure.active-directory.credential.client-secret"
}
},
{
"name": "azure.activedirectory.graph-base-uri",
"type": "java.lang.String",
"deprecation": {
"level": "error",
"reason": "Use uniform property format(spring.cloud.azure.*) in all Spring Cloud Azure libraries.",
"replacement": "spring.cloud.azure.active-directory.profile.environment.microsoft-graph-endpoint"
}
},
{
"name": "azure.activedirectory.graph-membership-uri",
"type": "java.lang.String",
"deprecation": {
"level": "error",
"reason": "Use uniform property format(spring.cloud.azure.*) in all Spring Cloud Azure libraries.",
"replacement": "spring.cloud.azure.active-directory.profile.environment.microsoft-graph-endpoint"
}
},
{
"name": "azure.activedirectory.jwk-set-cache-lifespan",
"type": "java.lang.Long",
"description": "The lifespan of the cached JWK set before it expires, default is 5 minutes.",
"defaultValue": 5,
"deprecation": {
"level": "error",
"reason": "Use uniform property format(spring.cloud.azure.*) in all Spring Cloud Azure libraries.",
"replacement": "spring.cloud.azure.active-directory.jwk-set-cache-lifespan"
}
},
{
"name": "azure.activedirectory.jwk-set-cache-refresh-time",
"type": "java.lang.Long",
"description": "The refresh time of the cached JWK set before it expires, default is 5 minutes.",
"defaultValue": 5,
"deprecation": {
"level": "error",
"reason": "Use uniform property format(spring.cloud.azure.*) in all Spring Cloud Azure libraries.",
"replacement": "spring.cloud.azure.active-directory.jwk-set-cache-refresh-time"
}
},
{
"name": "azure.activedirectory.jwt-connect-timeout",
"type": "java.lang.Integer",
"description": "Connection Timeout for the JWKSet Remote URL call.",
"deprecation": {
"level": "error",
"reason": "Use uniform property format(spring.cloud.azure.*) in all Spring Cloud Azure libraries.",
"replacement": "spring.cloud.azure.active-directory.jwt-connect-timeout"
}
},
{
"name": "azure.activedirectory.jwt-read-timeout",
"type": "java.lang.Integer",
"description": "Read Timeout for the JWKSet Remote URL call.",
"deprecation": {
"level": "error",
"reason": "Use uniform property format(spring.cloud.azure.*) in all Spring Cloud Azure libraries.",
"replacement": "spring.cloud.azure.active-directory.jwt-read-timeout"
}
},
{
"name": "azure.activedirectory.jwt-size-limit",
"type": "java.lang.Integer",
"description": "Size limit in Bytes of the JWKSet Remote URL call.",
"deprecation": {
"level": "error",
"reason": "Use uniform property format(spring.cloud.azure.*) in all Spring Cloud Azure libraries.",
"replacement": "spring.cloud.azure.active-directory.jwt-size-limit"
}
},
{
"name": "azure.activedirectory.post-logout-redirect-uri",
"type": "java.lang.String",
"deprecation": {
"level": "error",
"reason": "Use uniform property format(spring.cloud.azure.*) in all Spring Cloud Azure libraries.",
"replacement": "spring.cloud.azure.active-directory.post-logout-redirect-uri"
}
},
{
"name": "azure.activedirectory.redirect-uri-template",
"type": "java.lang.String",
"description": "Redirection Endpoint: Used by the authorization server to return responses containing authorization credentials to the client via the resource owner user-agent.",
"deprecation": {
"level": "error",
"reason": "Use uniform property format(spring.cloud.azure.*) in all Spring Cloud Azure libraries.",
"replacement": "spring.cloud.azure.active-directory.redirect-uri-template"
}
},
{
"name": "azure.activedirectory.resource-server.claim-to-authority-prefix-map",
"type": "java.util.Map<java.lang.String,java.lang.String>",
"description": "Configure which claim will be used to build GrantedAuthority, and prefix of the GrantedAuthority's string value. Default value is: \"scp\" -> \"SCOPE_\", \"roles\" -> \"APPROLE_\". Example: If use the default value, and the access_token's \"scp\" scope value is \"testValue\", then GrantedAuthority with \"SCOPE_testValue\" will be created.",
"deprecation": {
"level": "error",
"reason": "Use uniform property format(spring.cloud.azure.*) in all Spring Cloud Azure libraries.",
"replacement": "spring.cloud.azure.active-directory.resource-server.claim-to-authority-prefix-map"
}
},
{
"name": "azure.activedirectory.resource-server.principal-claim-name",
"type": "java.lang.String",
"description": "Configure which claim in access token be returned in AuthenticatedPrincipal#getName. Default value is \"sub\". Example: If use the default value, and the access_token's \"sub\" scope value is \"testValue\", then AuthenticatedPrincipal#getName will return \"testValue\".",
"deprecation": {
"level": "error",
"reason": "Use uniform property format(spring.cloud.azure.*) in all Spring Cloud Azure libraries.",
"replacement": "spring.cloud.azure.active-directory.resource-server.principal-claim-name"
}
},
{
"name": "azure.activedirectory.session-stateless",
"type": "java.lang.Boolean",
"description": "If true activates the stateless auth filter AADAppRoleStatelessAuthenticationFilter. The default is false which activates AADAuthenticationFilter.",
"defaultValue": false,
"deprecation": {
"level": "error",
"reason": "Use uniform property format(spring.cloud.azure.*) in all Spring Cloud Azure libraries.",
"replacement": "spring.cloud.azure.active-directory.session-stateless"
}
},
{
"name": "azure.activedirectory.tenant-id",
"type": "java.lang.String",
"description": "Azure Tenant ID.",
"deprecation": {
"level": "error",
"reason": "Use uniform property format(spring.cloud.azure.*) in all Spring Cloud Azure libraries.",
"replacement": "spring.cloud.azure.active-directory.profile.tenant-id"
}
},
{
"name": "azure.activedirectory.user-group.allowed-group-ids",
"type": "java.util.Set<java.lang.String>",
"deprecation": {
"level": "error",
"reason": "Use uniform property format(spring.cloud.azure.*) in all Spring Cloud Azure libraries.",
"replacement": "spring.cloud.azure.active-directory.user-group.allowed-group-ids"
}
},
{
"name": "azure.activedirectory.user-group.allowed-group-names",
"type": "java.util.List<java.lang.String>",
"description": "Expected UserGroups that an authority will be granted to if found in the response from the MemeberOf Graph API Call.",
"deprecation": {
"level": "error",
"reason": "Use uniform property format(spring.cloud.azure.*) in all Spring Cloud Azure libraries.",
"replacement": "spring.cloud.azure.active-directory.user-group.allowed-group-names"
}
},
{
"name": "azure.activedirectory.user-group.allowed-groups",
"type": "java.util.List<java.lang.String>",
"deprecation": {
"level": "error",
"reason": "In order to distinguish between allowed-group-ids and allowed-group-names, set allowed-groups deprecated.",
"replacement": "spring.cloud.azure.active-directory.user-group.allowed-group-names"
}
},
{
"name": "azure.activedirectory.user-group.enable-full-list",
"type": "java.lang.Boolean",
"description": "The enableFullList is used to control whether to list all group id, default is false.",
"defaultValue": false,
"deprecation": {
"level": "error",
"reason": "enable-full-list is not easy to understand."
}
},
{
"name": "azure.activedirectory.user-name-attribute",
"type": "java.lang.String",
"description": "Decide which claim to be principal's name.",
"deprecation": {
"level": "error",
"reason": "Use uniform property format(spring.cloud.azure.*) in all Spring Cloud Azure libraries.",
"replacement": "spring.cloud.azure.active-directory.user-name-attribute"
}
},
{
"name": "azure.cosmos.allow-telemetry",
"type": "java.lang.Boolean",
"description": "Whether allow Microsoft to collect telemetry data.",
"defaultValue": true,
"deprecation": {
"level": "error",
"reason": "Deprecate the telemetry endpoint and use HTTP header User Agent instead."
}
},
{
"name": "azure.cosmos.connection-mode",
"type": "com.azure.cosmos.ConnectionMode",
"description": "Represents the connection mode to be used by the client in the Azure Cosmos DB database service.",
"deprecation": {
"level": "error",
"reason": "Deprecate to move all Cosmos DB related under 'spring.cloud.azure.cosmos' prefix.",
"replacement": "spring.cloud.azure.cosmos.connection-mode"
}
},
{
"name": "azure.cosmos.consistency-level",
"type": "com.azure.cosmos.ConsistencyLevel",
"description": "Cosmos DB consistency level.",
"deprecation": {
"level": "error",
"reason": "Deprecate to move all Cosmos DB related under 'spring.cloud.azure.cosmos' prefix.",
"replacement": "spring.cloud.azure.cosmos.consistency-level"
}
},
{
"name": "azure.cosmos.database",
"type": "java.lang.String",
"description": "Cosmos DB database name.",
"deprecation": {
"level": "error",
"reason": "Deprecate to move all Cosmos DB related under 'spring.cloud.azure.cosmos' prefix.",
"replacement": "spring.cloud.azure.cosmos.database"
}
},
{
"name": "azure.cosmos.key",
"type": "java.lang.String",
"description": "Document DB key.",
"deprecation": {
"level": "error",
"reason": "Deprecate to move all Cosmos DB related under 'spring.cloud.azure.cosmos' prefix.",
"replacement": "spring.cloud.azure.cosmos.key"
}
},
{
"name": "azure.cosmos.populate-query-metrics",
"type": "java.lang.Boolean",
"description": "Populate Diagnostics Strings and Query metrics.",
"defaultValue": false,
"deprecation": {
"level": "error",
"reason": "Deprecate to move all Cosmos DB related under 'spring.cloud.azure.cosmos' prefix.",
"replacement": "spring.cloud.azure.cosmos.populate-query-metrics"
}
},
{
"name": "azure.cosmos.response-diagnostics-processor",
"type": "com.azure.spring.data.cosmos.core.ResponseDiagnosticsProcessor",
"description": "Response Diagnostics processor Default implementation is to log the response diagnostics string.",
"deprecation": {
"level": "error",
"reason": "Deprecate for it's not a property."
}
},
{
"name": "azure.cosmos.uri",
"type": "java.lang.String",
"description": "Document DB URI.",
"deprecation": {
"level": "error",
"reason": "Deprecate to move all Cosmos DB related under 'spring.cloud.azure.cosmos' prefix.",
"replacement": "spring.cloud.azure.cosmos.endpoint"
}
},
{
"name": "azure.cosmos.validate-uri",
"type": "java.lang.Boolean",
"description": "Whether to validate the uri, default is true.",
"defaultValue": true,
"deprecation": {
"level": "error",
"reason": "Remove validation on the uri."
}
},
{
"name": "azure.keyvault.allow-telemetry",
"type": "java.lang.String",
"deprecation": {
"level": "error",
"reason": "Deprecate the telemetry endpoint and use HTTP header User Agent instead."
}
},
{
"name": "azure.keyvault.case-sensitive-keys",
"type": "java.lang.String",
"description": "Defines the constant for the property that enables\/disables case sensitive keys.",
"deprecation": {
"level": "error",
"reason": "Deprecate to move all Key Vault Property Source related under 'spring.cloud.azure.cosmos' prefix. Use spring.cloud.azure.keyvault.secret.property-sources' instead."
}
},
{
"name": "azure.keyvault.certificate-password",
"type": "java.lang.String",
"deprecation": {
"level": "error",
"reason": "Deprecate to move all Key Vault Secret credential related under 'spring.cloud.azure.keyvault.secret.credential' prefix.",
"replacement": "spring.cloud.azure.keyvault.secret.credential.client-certificate-password"
}
},
{
"name": "azure.keyvault.certificate-path",
"type": "java.lang.String",
"deprecation": {
"level": "error",
"reason": "Deprecate to move all Key Vault Secret credential related under 'spring.cloud.azure.keyvault.secret.credential' prefix.",
"replacement": "spring.cloud.azure.keyvault.secret.credential.client-certificate-path"
}
},
{
"name": "azure.keyvault.client-id",
"type": "java.lang.String",
"deprecation": {
"level": "error",
"reason": "Deprecate to move all Key Vault Secret credential related under 'spring.cloud.azure.keyvault.secret.credential' prefix.",
"replacement": "spring.cloud.azure.keyvault.secret.credential.client-id"
}
},
{
"name": "azure.keyvault.client-key",
"type": "java.lang.String",
"deprecation": {
"level": "error",
"reason": "Deprecate to move all Key Vault Secret credential related under 'spring.cloud.azure.keyvault.secret.credential' prefix.",
"replacement": "spring.cloud.azure.keyvault.secret.credential.client-secret"
}
},
{
"name": "azure.keyvault.enabled",
"type": "java.lang.Boolean",
"deprecation": {
"level": "error",
"reason": "Deprecate to move all Key Vault Secret related under 'spring.cloud.azure.keyvault.secret' prefix.",
"replacement": "spring.cloud.azure.keyvault.secret.enabled"
}
},
{
"name": "azure.keyvault.order",
"type": "java.lang.String",
"description": "The constant used to define the order of the key vaults you are delivering (comma delimited, e.g 'my-vault, my-vault-2').",
"deprecation": {
"level": "error",
"reason": "Deprecate to move all Key Vault Property Source related under 'spring.cloud.azure.keyvault.secret' prefix. Use spring.cloud.azure.keyvault.secret.property-sources' instead."
}
},
{
"name": "azure.keyvault.refresh-interval",
"type": "java.lang.Long",
"deprecation": {
"level": "error",
"reason": "Deprecate to move all Key Vault Property Source related under 'spring.cloud.azure.keyvault.secret' prefix. Use spring.cloud.azure.keyvault.secret.property-sources' instead."
}
},
{
"name": "azure.keyvault.secret-keys",
"type": "java.util.List<java.lang.String>",
"deprecation": {
"level": "error",
"reason": "Deprecate to move all Key Vault Property Source related under 'spring.cloud.azure.keyvault.secret' prefix. Use spring.cloud.azure.keyvault.secret.property-sources' instead."
}
},
{
"name": "azure.keyvault.tenant-id",
"type": "java.lang.String",
"description": "Tenant id for the key vault.",
"deprecation": {
"level": "error",
"reason": "Deprecate to move all Key Vault Secret Azure environment related under 'spring.cloud.azure.keyvault.secret.profile' prefix.",
"replacement": "spring.cloud.azure.keyvault.secret.profile.tenant-id"
}
},
{
"name": "azure.keyvault.uri",
"type": "java.lang.String",
"description": "Azure Key Vault endpoint.",
"deprecation": {
"level": "error",
"reason": "Deprecate to move all Key Vault Secret related under 'spring.cloud.azure.keyvault.secret' prefix.",
"replacement": "spring.cloud.azure.keyvault.secret.endpoint"
}
},
{
"name": "azure.storage.account-key",
"type": "java.lang.String",
"description": "Storage account access key.",
"deprecation": {
"level": "error",
"reason": "Deprecate to move all Storage Blob related under 'spring.cloud.azure.storage.blob' prefix.",
"replacement": "spring.cloud.azure.storage.blob.account-key"
}
},
{
"name": "azure.storage.account-name",
"type": "java.lang.String",
"description": "Name for the storage account.",
"deprecation": {
"level": "error",
"reason": "Deprecate to move all Storage Blob related under 'spring.cloud.azure.storage.blob' prefix.",
"replacement": "spring.cloud.azure.storage.blob.account-name"
}
},
{
"name": "azure.storage.blob-endpoint",
"type": "java.lang.String",
"description": "Endpoint for the storage blob.",
"deprecation": {
"level": "error",
"reason": "Deprecate to move all Storage Blob related under 'spring.cloud.azure.storage.blob' prefix.",
"replacement": "spring.cloud.azure.storage.blob.endpoint"
}
},
{
"name": "azure.storage.file-endpoint",
"type": "java.lang.String",
"description": "Endpoint for the storage file share.",
"deprecation": {
"level": "error",
"reason": "Deprecate to move all Storage File Share related under 'spring.cloud.azure.storage.fileshare' prefix.",
"replacement": "spring.cloud.azure.storage.fileshare.endpoint"
}
},
{
"name": "spring.cloud.azure.auto-create-resources",
"type": "java.lang.Boolean",
"defaultValue": false,
"description": "Whether to create Azure resources automatically. This is a legacy property.",
"deprecation": {
"level": "error",
"reason": "Deprecate the ability to auto create resources."
}
},
{
"name": "spring.cloud.azure.client-id",
"type": "java.lang.String",
"description": "Client id to use when performing service principal authentication with Azure. This is a legacy property.",
"deprecation": {
"level": "error",
"reason": "Deprecate to move all credential under 'spring.cloud.azure.credential' prefix.",
"replacement": "spring.cloud.azure.credential.client-id"
}
},
{
"name": "spring.cloud.azure.client-secret",
"type": "java.lang.String",
"description": "Client secret to use when performing service principal authentication with Azure. This is a legacy property.",
"deprecation": {
"level": "error",
"reason": "Deprecate to move all credential under 'spring.cloud.azure.credential' prefix.",
"replacement": "spring.cloud.azure.credential.client-secret"
}
},
{
"name": "spring.cloud.azure.environment",
"type": "java.lang.String",
"description": "The Azure environment, such as global Azure or Azure China. This is a legacy property.",
"deprecation": {
"level": "error",
"reason": "Deprecate to move all Azure environment related under 'spring.cloud.azure.profile' prefix.",
"replacement": "spring.cloud.azure.profile.cloud-type"
}
},
{
"name": "spring.cloud.azure.eventhub.checkpoint-access-key",
"type": "java.lang.String",
"description": "Storage account access key. This is a legacy property.",
"deprecation": {
"level": "error",
"reason": "To keep in accordance with Azure Event Hubs service name and use the new prefix of 'spring.cloud.azure.eventhubs.processor'.",
"replacement": "spring.cloud.azure.eventhubs.processor.checkpoint-store.account-key"
}
},
{
"name": "spring.cloud.azure.eventhub.checkpoint-container",
"type": "java.lang.String",
"description": "Name of the container. This is a legacy property.",
"deprecation": {
"level": "error",
"reason": "To keep in accordance with Azure Event Hubs service name and use the new prefix of 'spring.cloud.azure.eventhubs.processor'.",
"replacement": "spring.cloud.azure.eventhubs.processor.checkpoint-store.container-name"
}
},
{
"name": "spring.cloud.azure.eventhub.checkpoint-storage-account",
"type": "java.lang.String",
"description": "Name for the storage account. This is a legacy property.",
"deprecation": {
"level": "error",
"reason": "To keep in accordance with Azure Event Hubs service name and use the new prefix of 'spring.cloud.azure.eventhubs.processor'.",
"replacement": "spring.cloud.azure.eventhubs.processor.checkpoint-store.account-name"
}
},
{
"name": "spring.cloud.azure.eventhub.connection-string",
"type": "java.lang.String",
"description": "Connection string to connect to an event hub. This is a legacy property.",
"deprecation": {
"level": "error",
"reason": "To keep in accordance with Azure Event Hubs service name.",
"replacement": "spring.cloud.azure.eventhubs.connection-string"
}
},
{
"name": "spring.cloud.azure.eventhub.namespace",
"type": "java.lang.String",
"description": "The namespace of an event hub. This is a legacy property.",
"deprecation": {
"level": "error",
"reason": "To keep in accordance with Azure Event Hubs service name.",
"replacement": "spring.cloud.azure.eventhubs.namespace"
}
},
{
"name": "spring.cloud.azure.msi-enabled",
"type": "java.lang.Boolean",
"defaultValue": false,
"description": "Whether managed identity is enabled. This is a legacy property.",
"deprecation": {
"level": "error",
"reason": "Deprecate to move all credential under 'spring.cloud.azure.credential' prefix.",
"replacement": "spring.cloud.azure.credential.managed-identity-enabled"
}
},
{
"name": "spring.cloud.azure.region",
"type": "java.lang.String",
"description": "The region of an Azure resource. This is a legacy property.",
"deprecation": {
"level": "error",
"reason": "Deprecate to move all resource related under 'spring.cloud.azure.<azure-service>.resource' prefix."
}
},
{
"name": "spring.cloud.azure.resource-group",
"type": "java.lang.String",
"description": "The resource group holds an Azure resource. This is a legacy property.",
"deprecation": {
"level": "error",
"reason": "Deprecate to move all resource related under 'spring.cloud.azure.<azure-service>.resource' prefix."
}
},
{
"name": "spring.cloud.azure.servicebus.retry-options.maxRetries",
"type": "java.lang.Integer",
"description": "The maximum number of attempts. This is a legacy property.",
"deprecation": {
"level": "error",
"reason": "Deprecate to keep consistent with the unified configuration options.",
"replacement": "spring.cloud.azure.servicebus.retry.exponential.max-retries"
}
},
{
"name": "spring.cloud.azure.servicebus.retry-options.delay",
"type": "java.time.Duration",
"description": "Amount of time to wait between retry attempts. This is a legacy property.",
"deprecation": {
"level": "error",
"reason": "Deprecate to keep consistent with the unified configuration options.",
"replacement": "spring.cloud.azure.servicebus.retry.exponential.base-delay"
}
},
{
"name": "spring.cloud.azure.servicebus.retry-options.maxDelay",
"type": "java.time.Duration",
"description": "Maximum permissible amount of time between retry attempts. This is a legacy property.",
"deprecation": {
"level": "error",
"reason": "Deprecate to keep consistent with the unified configuration options.",
"replacement": "spring.cloud.azure.servicebus.retry.exponential.max-delay"
}
},
{
"name": "spring.cloud.azure.servicebus.retry-options.tryTimeout",
"type": "java.time.Duration",
"description": "Amount of time to wait until a timeout. This is a legacy property.",
"deprecation": {
"level": "error",
"reason": "Deprecate to keep consistent with the unified configuration options.",
"replacement": "spring.cloud.azure.servicebus.retry.try-timeout"
}
},
{
"name": "spring.cloud.azure.servicebus.retry-options.retryMode",
"type": "com.azure.core.amqp.AmqpRetryMode",
"description": "The type of approach to apply when calculating the delay between retry attempts. This is a legacy property.",
"deprecation": {
"level": "error",
"reason": "Deprecate to keep consistent with the unified configuration options.",
"replacement": "spring.cloud.azure.servicebus.retry.mode"
}
},
{
"name": "spring.cloud.azure.servicebus.transport-type",
"type": "com.azure.core.amqp.AmqpTransportType",
"description": "Transport type for AMQP-based client. This is a legacy property.",
"deprecation": {
"level": "error",
"reason": "Deprecate to keep consistent with the unified configuration options.",
"replacement": "spring.cloud.azure.servicebus.client.transport-type"
}
},
{
"name": "spring.cloud.azure.storage.access-key",
"type": "java.lang.String",
"description": "Storage account access key. This is a legacy property.",
"deprecation": {
"level": "error",
"reason": "Deprecate to move all Storage Blob related under 'spring.cloud.azure.storage.blob' prefix.",
"replacement": "spring.cloud.azure.storage.blob.account-key"
}
},
{
"name": "spring.cloud.azure.storage.account",
"type": "java.lang.String",
"description": "Name for the storage account. This is a legacy property.",
"deprecation": {
"level": "error",
"reason": "Deprecate to move all Storage Blob related under 'spring.cloud.azure.storage.blob' prefix.",
"replacement": "spring.cloud.azure.storage.blob.account-name"
}
},
{
"name": "spring.cloud.azure.storage.resource-group",
"type": "java.lang.String",
"description": "Resource group the storage account belongs to. This is a legacy property.",
"deprecation": {
"level": "error",
"reason": "Deprecate to move all resource related under 'spring.cloud.azure.<azure-service>.resource' prefix.",
"replacement": "spring.cloud.azure.storage.blob.resource.resource-group"
}
},
{
"name": "spring.cloud.azure.subscription-id",
"type": "java.lang.String",
"description": "Subscription id to use when connecting to Azure resources. This is a legacy property.",
"deprecation": {
"level": "error",
"reason": "Deprecate to move all Azure environment related under 'spring.cloud.azure.profile' prefix.",
"replacement": "spring.cloud.azure.profile.subscription-id"
}
},
{
"name": "spring.cloud.azure.tenant-id",
"type": "java.lang.String",
"description": "Tenant id for Azure resources. This is a legacy property.",
"deprecation": {
"level": "error",
"reason": "Deprecate to move all Azure environment related under 'spring.cloud.azure.profile' prefix.",
"replacement": "spring.cloud.azure.profile.tenant-id"
}
},
{
"name": "spring.cloud.stream.eventhub.bindings",
"deprecation": {
"level": "error",
"reason": "To keep in accordance with Azure Event Hubs service name, legacy is deprecated.",
"replacement": "spring.cloud.stream.eventhubs.bindings"
}
},
{
"name": "spring.cloud.stream.eventhub.checkpoint-storage-account",
"type": "java.lang.String",
"deprecation": {
"level": "error",
"reason": "Deprecate to use the unified style with the prefix of 'spring.cloud.azure.eventhubs.processor'.",
"replacement": "spring.cloud.azure.eventhubs.processor.checkpoint-store.account-name"
}
},
{
"name": "spring.cloud.stream.servicebus.queue.bindings",
"deprecation": {
"level": "error",
"reason": "The 'servicebus-queue' binder is dropped and 'servicebus' binder is provided instead with the ability of interacting with both queue and topic.",
"replacement": "spring.cloud.stream.servicebus.bindings"
}
},
{
"name": "spring.cloud.stream.servicebus.topic.bindings",
"deprecation": {
"level": "error",
"reason": "The 'servicebus-queue' binder is dropped and 'servicebus' binder is provided instead with the ability of interacting with both queue and topic.",
"replacement": "spring.cloud.stream.servicebus.bindings"
}
},
{
"name": "spring.cloud.azure.active-directory.enabled",
"type": "java.lang.Boolean",
"description": "Whether to enable Azure Active Directory related auto-configuration.",
"defaultValue": false
},
{
"name": "spring.cloud.azure.active-directory.b2c.enabled",
"type": "java.lang.Boolean",
"description": "Whether to enable Azure Active Directory B2C related auto-configuration.",
"defaultValue": false
},
{
"name": "spring.cloud.azure.cosmos.throttling-retry-options.max-retry-attempts-on-throttled-requests",
"description": "Maximum number of retries in the case where the request fails because the service has applied rate limiting on the client."
},
{
"name": "spring.cloud.azure.cosmos.throttling-retry-options.max-retry-wait-time",
"description": "Maximum retry time in seconds. When a request fails due to a throttle error, the service sends back a response that contains a value indicating the client should not retry before the time period has elapsed (Retry-After). The MaxRetryWaitTime flag allows the application to set a maximum wait time for all retry attempts. If the cumulative wait time exceeds the MaxRetryWaitTime, the SDK will stop retrying and return the error to the application."
},
{
"name": "spring.jms.servicebus.pool.block-if-full",
"description": "Whether to block when a connection is requested and the pool is full. Set it to false to throw a 'JMSException' instead."
},
{
"name": "spring.jms.servicebus.pool.block-if-full-timeout",
"description": "Blocking period before throwing an exception if the pool is still full."
},
{
"name": "spring.jms.servicebus.pool.enabled",
"description": "Whether a JmsPoolConnectionFactory should be created, instead of a regular ConnectionFactory."
},
{
"name": "spring.jms.servicebus.pool.idle-timeout",
"description": "Connection idle timeout."
},
{
"name": "spring.jms.servicebus.pool.max-connections",
"description": "Maximum number of pooled connections."
},
{
"name": "spring.jms.servicebus.pool.max-sessions-per-connection",
"description": "Maximum number of pooled sessions per connection in the pool."
},
{
"name": "spring.jms.servicebus.pool.time-between-expiration-check",
"description": "Time to sleep between runs of the idle connection eviction thread. When negative, no idle connection eviction thread runs."
},
{
"name": "spring.jms.servicebus.pool.use-anonymous-producers",
"description": "Whether to use only one anonymous 'MessageProducer' instance. Set it to false to create one 'MessageProducer' every time one is required."
}
],
"hints": [
{
"name": "spring.cloud.azure.active-directory.resource-server.claim-to-authority-prefix-map.keys",
"values": [
{
"value": "scp",
"description": "The prefix for the authority started with 'SCOPE_'."
},
{
"value": "roles",
"description": "The prefix for the authority started with 'APPROLE_'."
}
],