forked from Azure/bicep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCoreResources.Designer.cs
891 lines (791 loc) · 39.1 KB
/
CoreResources.Designer.cs
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
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Bicep.Core {
using System;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class CoreResources {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal CoreResources() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Bicep.Core.CoreResources", typeof(CoreResources).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to Property 'adminUserName' should not use a literal value. Use a param instead..
/// </summary>
internal static string AdminUsernameShouldNotBeLiteralRuleDescription {
get {
return ResourceManager.GetString("AdminUsernameShouldNotBeLiteralRuleDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to If an '{0}' parameter is provided, an '{1}' parameter must also be provided..
/// </summary>
internal static string ArtifactsLocationRule_Error_ParamMissing {
get {
return ResourceManager.GetString("ArtifactsLocationRule_Error_ParamMissing", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Artifacts parameter '{0}' must use the @secure() attribute.
/// </summary>
internal static string ArtifactsLocationRule_Error_ParamMustBeSecure {
get {
return ResourceManager.GetString("ArtifactsLocationRule_Error_ParamMustBeSecure", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Artifacts parameter '{0}' must be of type '{1}'.
/// </summary>
internal static string ArtifactsLocationRule_Error_ParamMustBeType {
get {
return ResourceManager.GetString("ArtifactsLocationRule_Error_ParamMustBeType", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Change parameter type to '{0}'.
/// </summary>
internal static string ArtifactsLocationRule_FixTitle_ChangeType {
get {
return ResourceManager.GetString("ArtifactsLocationRule_FixTitle_ChangeType", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Custom bicepconfig.json file found ({0})..
/// </summary>
internal static string BicepConfigCustomSettingsFoundFormatMessage {
get {
return ResourceManager.GetString("BicepConfigCustomSettingsFoundFormatMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No bicepconfig.json found for configuration override..
/// </summary>
internal static string BicepConfigNoCustomSettingsMessage {
get {
return ResourceManager.GetString("BicepConfigNoCustomSettingsMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Some decompiler imperfections may need to be cleaned up manually.
/// </summary>
internal static string DecompilerImperfectionsRule_Description {
get {
return ResourceManager.GetString("DecompilerImperfectionsRule_Description", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Consider renaming it and removing the suffix (using the editor's rename functionality)..
/// </summary>
internal static string DecompilerImperfectionsRule_MayWantToRename {
get {
return ResourceManager.GetString("DecompilerImperfectionsRule_MayWantToRename", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The symbolic name of resource '{0}' appears to have originated from a naming conflict during a decompilation from JSON..
/// </summary>
internal static string DecompilerImperfectionsRule_Resource {
get {
return ResourceManager.GetString("DecompilerImperfectionsRule_Resource", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The name of variable '{0}' appears to have originated from a naming conflict during a decompilation from JSON..
/// </summary>
internal static string DecompilerImperfectionsRule_Variable {
get {
return ResourceManager.GetString("DecompilerImperfectionsRule_Variable", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Environment URLs should not be hardcoded. Use the environment() function to ensure compatibility across clouds..
/// </summary>
internal static string EnvironmentUrlHardcodedRuleDescription {
get {
return ResourceManager.GetString("EnvironmentUrlHardcodedRuleDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Use string interpolation: {0}.
/// </summary>
internal static string InterpolateNotConcatFixTitle {
get {
return ResourceManager.GetString("InterpolateNotConcatFixTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Use string interpolation instead of the concat function..
/// </summary>
internal static string InterpolateNotConcatRuleDescription {
get {
return ResourceManager.GetString("InterpolateNotConcatRuleDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Linter is disabled in settings file located at {0} .
/// </summary>
internal static string LinterDisabledFormatMessage {
get {
return ResourceManager.GetString("LinterDisabledFormatMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Analyzer '{0}' encountered an unexpected exception. {1}.
/// </summary>
internal static string LinterRuleExceptionMessageFormat {
get {
return ResourceManager.GetString("LinterRuleExceptionMessageFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Resource location should be specified by a parameter without a default value or one that defaults to 'global' or resourceGroup().location..
/// </summary>
internal static string LocationSetByParameterRuleDescription {
get {
return ResourceManager.GetString("LocationSetByParameterRuleDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Maximum number of outputs used..
/// </summary>
internal static string MaxNumberOutputsRuleDescription {
get {
return ResourceManager.GetString("MaxNumberOutputsRuleDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Too many outputs. Number of outputs is limited to {0}..
/// </summary>
internal static string MaxNumberOutputsRuleMessageFormat {
get {
return ResourceManager.GetString("MaxNumberOutputsRuleMessageFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Maximum number of parameters used..
/// </summary>
internal static string MaxNumberParametersRuleDescription {
get {
return ResourceManager.GetString("MaxNumberParametersRuleDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Too many parameters. Number of parameters is limited to {0}..
/// </summary>
internal static string MaxNumberParametersRuleMessageFormat {
get {
return ResourceManager.GetString("MaxNumberParametersRuleMessageFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Maximum number of resources used..
/// </summary>
internal static string MaxNumberResourcesRuleDescription {
get {
return ResourceManager.GetString("MaxNumberResourcesRuleDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Too many resources. Number of resources is limited to {0}..
/// </summary>
internal static string MaxNumberResourcesRuleMessageFormat {
get {
return ResourceManager.GetString("MaxNumberResourcesRuleMessageFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Maximum number of variables used..
/// </summary>
internal static string MaxNumberVariablesRuleDescription {
get {
return ResourceManager.GetString("MaxNumberVariablesRuleDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Too many variables. Number of variables is limited to {0}..
/// </summary>
internal static string MaxNumberVariablesRuleMessageFormat {
get {
return ResourceManager.GetString("MaxNumberVariablesRuleMessageFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A resource location should not use a hard-coded string or variable value. Change variable '{0}' into a parameter instead..
/// </summary>
internal static string NoHardcodedLocation_ErrorChangeVarToParam {
get {
return ResourceManager.GetString("NoHardcodedLocation_ErrorChangeVarToParam", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Parameter '{0}' may be used as a resource location in the module and should not be assigned a hard-coded string or variable value..
/// </summary>
internal static string NoHardcodedLocation_ErrorForModuleParam {
get {
return ResourceManager.GetString("NoHardcodedLocation_ErrorForModuleParam", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A resource location should not use a hard-coded string or variable value..
/// </summary>
internal static string NoHardcodedLocation_ErrorForResourceLocation {
get {
return ResourceManager.GetString("NoHardcodedLocation_ErrorForResourceLocation", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Please use a parameter value, an expression, or the string '{0}'. Found: '{1}'.
/// </summary>
internal static string NoHardcodedLocation_ErrorSolution {
get {
return ResourceManager.GetString("NoHardcodedLocation_ErrorSolution", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Change variable '{0}' into a parameter instead.
/// </summary>
internal static string NoHardcodedLocation_FixChangeVarToParam {
get {
return ResourceManager.GetString("NoHardcodedLocation_FixChangeVarToParam", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Create new parameter '{0}' with default value {1}.
/// </summary>
internal static string NoHardcodedLocation_FixNewParam {
get {
return ResourceManager.GetString("NoHardcodedLocation_FixNewParam", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Parameter '{0}' of module '{1}' isn't assigned an explicit value, and its default value may not give the intended behavior for a location-related parameter. You should assign an explicit value to the parameter..
/// </summary>
internal static string NoHardcodedLocation_ModuleLocationNeedsExplicitValue {
get {
return ResourceManager.GetString("NoHardcodedLocation_ModuleLocationNeedsExplicitValue", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A resource location should be either an expression or the string '{0}'. Found '{1}'.
/// </summary>
internal static string NoHardcodedLocation_ResourceLocationShouldBeExpressionOrGlobal {
get {
return ResourceManager.GetString("NoHardcodedLocation_ResourceLocationShouldBeExpressionOrGlobal", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A resource's location should not use a hard-coded string or variable value. It should use a parameter, an expression, or the string 'global'..
/// </summary>
internal static string NoHardcodedLocationRuleDescription {
get {
return ResourceManager.GetString("NoHardcodedLocationRuleDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Functions resourceGroup().location and deployment().location should only be used as the default value of a parameter..
/// </summary>
internal static string NoLocExprOutsideParamsRuleDescription {
get {
return ResourceManager.GetString("NoLocExprOutsideParamsRuleDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Use a parameter here instead of '{0}'. 'resourceGroup().location' and 'deployment().location' should only be used as a default value for parameters..
/// </summary>
internal static string NoLocExprOutsideParamsRuleError {
get {
return ResourceManager.GetString("NoLocExprOutsideParamsRuleError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Remove unneccessary dependsOn.
/// </summary>
internal static string NoUnnecessaryDependsOnRuleCodeFix {
get {
return ResourceManager.GetString("NoUnnecessaryDependsOnRuleCodeFix", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No unnecessary dependsOn..
/// </summary>
internal static string NoUnnecessaryDependsOnRuleDescription {
get {
return ResourceManager.GetString("NoUnnecessaryDependsOnRuleDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Remove unnecessary dependsOn entry '{0}'..
/// </summary>
internal static string NoUnnecessaryDependsOnRuleMessage {
get {
return ResourceManager.GetString("NoUnnecessaryDependsOnRuleMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to function '{0}'.
/// </summary>
internal static string OutputsShouldNotContainSecretsFunction {
get {
return ResourceManager.GetString("OutputsShouldNotContainSecretsFunction", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0} Found possible secret: {1}.
/// </summary>
internal static string OutputsShouldNotContainSecretsMessageFormat {
get {
return ResourceManager.GetString("OutputsShouldNotContainSecretsMessageFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to output name '{0}' suggests a secret.
/// </summary>
internal static string OutputsShouldNotContainSecretsOutputName {
get {
return ResourceManager.GetString("OutputsShouldNotContainSecretsOutputName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Outputs should not contain secrets..
/// </summary>
internal static string OutputsShouldNotContainSecretsRuleDescription {
get {
return ResourceManager.GetString("OutputsShouldNotContainSecretsRuleDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to secure value '{0}'.
/// </summary>
internal static string OutputsShouldNotContainSecretsSecureParam {
get {
return ResourceManager.GetString("OutputsShouldNotContainSecretsSecureParam", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to All parameters must be used..
/// </summary>
internal static string ParameterMustBeUsedRuleDescription {
get {
return ResourceManager.GetString("ParameterMustBeUsedRuleDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Parameter "{0}" is declared but never used..
/// </summary>
internal static string ParameterMustBeUsedRuleMessageFormat {
get {
return ResourceManager.GetString("ParameterMustBeUsedRuleMessageFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to function '{0}'.
/// </summary>
internal static string PossibleSecretMessageFunction {
get {
return ResourceManager.GetString("PossibleSecretMessageFunction", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to secure value '{0}'.
/// </summary>
internal static string PossibleSecretMessageSecureParam {
get {
return ResourceManager.GetString("PossibleSecretMessageSecureParam", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Remove quotes from property name '{0}'.
/// </summary>
internal static string PreferUnquotedPropertyNames_DeclarationFixTitle {
get {
return ResourceManager.GetString("PreferUnquotedPropertyNames_DeclarationFixTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Replace array syntax with '{0}'.
/// </summary>
internal static string PreferUnquotedPropertyNames_DereferenceFixTitle {
get {
return ResourceManager.GetString("PreferUnquotedPropertyNames_DereferenceFixTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Property names that are valid identifiers should be declared without quotation marks and accessed using dot notation..
/// </summary>
internal static string PreferUnquotedPropertyNamesRule_Description {
get {
return ResourceManager.GetString("PreferUnquotedPropertyNamesRule_Description", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Use protectedSettings for commandToExecute secrets.
/// </summary>
internal static string ProtectCommandToExecuteSecretsRuleDescription {
get {
return ResourceManager.GetString("ProtectCommandToExecuteSecretsRuleDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Use protectedSettings for commandToExecute secrets. Found possible secret: {0}.
/// </summary>
internal static string ProtectCommandToExecuteSecretsRuleMessage {
get {
return ResourceManager.GetString("ProtectCommandToExecuteSecretsRuleMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Parameters that represent secrets must be secure..
/// </summary>
internal static string SecretsInParamsRule_Description {
get {
return ResourceManager.GetString("SecretsInParamsRule_Description", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Parameter '{0}' may represent a secret (according to its name) and must be declared with the '@secure()' attribute..
/// </summary>
internal static string SecretsInParamsRule_MessageFormat {
get {
return ResourceManager.GetString("SecretsInParamsRule_MessageFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Remove insecure default value.
/// </summary>
internal static string SecureParameterDefaultFixTitle {
get {
return ResourceManager.GetString("SecureParameterDefaultFixTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Secure parameters should not have hardcoded defaults (except for empty or newGuid())..
/// </summary>
internal static string SecureParameterDefaultRuleDescription {
get {
return ResourceManager.GetString("SecureParameterDefaultRuleDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Outer-scoped nested deployment resources should not be used for secure parameters or list* functions..
/// </summary>
internal static string SecureParamsInNestedDeployRule_Description {
get {
return ResourceManager.GetString("SecureParamsInNestedDeployRule_Description", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to '{0}' is an outer scoped nested deployment that calls a list* function ("{1}"), which could expose sensitive values in deployment history..
/// </summary>
internal static string SecureParamsInNestedDeployRule_Message_ListFunction {
get {
return ResourceManager.GetString("SecureParamsInNestedDeployRule_Message_ListFunction", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to '{0}' is an outer scoped nested deployment that accesses secure string parameters ({1}), which could expose their values in deployment history..
/// </summary>
internal static string SecureParamsInNestedDeployRule_Message_SecureParams {
get {
return ResourceManager.GetString("SecureParamsInNestedDeployRule_Message_SecureParams", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Either set the deployment's properties.expressionEvaluationOptions.scope to 'inner' or use a Bicep module instead..
/// </summary>
internal static string SecureParamsInNestedDeployRule_Solution {
get {
return ResourceManager.GetString("SecureParamsInNestedDeployRule_Solution", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Remove unnecessary string interpolation.
/// </summary>
internal static string SimplifyInterpolationFixTitle {
get {
return ResourceManager.GetString("SimplifyInterpolationFixTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Remove unnecessary string interpolation..
/// </summary>
internal static string SimplifyInterpolationRuleDescription {
get {
return ResourceManager.GetString("SimplifyInterpolationRuleDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Simplify json('null') to null.
/// </summary>
internal static string SimplifyJsonNullFixTitle {
get {
return ResourceManager.GetString("SimplifyJsonNullFixTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Simplify json('null') to null.
/// </summary>
internal static string SimplifyJsonNullRuleDescription {
get {
return ResourceManager.GetString("SimplifyJsonNullRuleDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to All existing resources must be used..
/// </summary>
internal static string UnusedExistingResourceRuleDescription {
get {
return ResourceManager.GetString("UnusedExistingResourceRuleDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Existing resource "{0}" is declared but never used..
/// </summary>
internal static string UnusedExistingResourceRuleMessageFormat {
get {
return ResourceManager.GetString("UnusedExistingResourceRuleMessageFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to All variables must be used..
/// </summary>
internal static string UnusedVariableRuleDescription {
get {
return ResourceManager.GetString("UnusedVariableRuleDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Variable "{0}" is declared but never used..
/// </summary>
internal static string UnusedVariableRuleMessageFormat {
get {
return ResourceManager.GetString("UnusedVariableRuleMessageFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Use parent property.
/// </summary>
internal static string UseParentPropertyRule_CodeFix {
get {
return ResourceManager.GetString("UseParentPropertyRule_CodeFix", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Use the parent property instead of formatting child resource names with '/' characters..
/// </summary>
internal static string UseParentPropertyRule_Description {
get {
return ResourceManager.GetString("UseParentPropertyRule_Description", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Resource "{0}" has its name formatted as a child of resource "{1}". The syntax can be simplified by using the parent property..
/// </summary>
internal static string UseParentPropertyRule_MessageFormat {
get {
return ResourceManager.GetString("UseParentPropertyRule_MessageFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Acceptable versions: {0}.
/// </summary>
internal static string UseRecentApiVersionRule_AcceptableVersions {
get {
return ResourceManager.GetString("UseRecentApiVersionRule_AcceptableVersions", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Use recent API versions.
/// </summary>
internal static string UseRecentApiVersionRule_Description {
get {
return ResourceManager.GetString("UseRecentApiVersionRule_Description", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Use more recent API version for '{0}'. {1}.
/// </summary>
internal static string UseRecentApiVersionRule_ErrorMessageFormat {
get {
return ResourceManager.GetString("UseRecentApiVersionRule_ErrorMessageFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Replace with {0}.
/// </summary>
internal static string UseRecentApiVersionRule_Fix_ReplaceApiVersion {
get {
return ResourceManager.GetString("UseRecentApiVersionRule_Fix_ReplaceApiVersion", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to '{0}' is a preview version and there is a more recent non-preview version available..
/// </summary>
internal static string UseRecentApiVersionRule_MoreRecentStable {
get {
return ResourceManager.GetString("UseRecentApiVersionRule_MoreRecentStable", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to '{0}' is a preview version and there is a non-preview version available with the same date..
/// </summary>
internal static string UseRecentApiVersionRule_StableWithSameDate {
get {
return ResourceManager.GetString("UseRecentApiVersionRule_StableWithSameDate", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to '{0}' is {1} days old, should be no more than {2} days old, or the most recent..
/// </summary>
internal static string UseRecentApiVersionRule_TooOld {
get {
return ResourceManager.GetString("UseRecentApiVersionRule_TooOld", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Could not find resource type "{0}"..
/// </summary>
internal static string UseRecentApiVersionRule_UnknownType {
get {
return ResourceManager.GetString("UseRecentApiVersionRule_UnknownType", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Did you mean "{0}"?.
/// </summary>
internal static string UseRecentApiVersionRule_UnknownTypeSuggestion {
get {
return ResourceManager.GetString("UseRecentApiVersionRule_UnknownTypeSuggestion", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Could not find apiVersion {0} for {1}..
/// </summary>
internal static string UseRecentApiVersionRule_UnknownVersion {
get {
return ResourceManager.GetString("UseRecentApiVersionRule_UnknownVersion", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Properties representing a resource ID must be generated appropriately..
/// </summary>
internal static string UseResourceIdFunctionsRule_Description {
get {
return ResourceManager.GetString("UseResourceIdFunctionsRule_Description", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to If property "{0}" represents a resource ID, it must use a symbolic resource reference, be a parameter or start with one of these functions: {1}..
/// </summary>
internal static string UseResourceIdFunctionsRule_MessageFormat {
get {
return ResourceManager.GetString("UseResourceIdFunctionsRule_MessageFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Found nonconforming expression at {0}.
/// </summary>
internal static string UseResourceIdFunctionsRule_NonConformingExprPath {
get {
return ResourceManager.GetString("UseResourceIdFunctionsRule_NonConformingExprPath", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Use direct resource reference.
/// </summary>
internal static string UseResourceSymbolReferenceRule_CodeFix {
get {
return ResourceManager.GetString("UseResourceSymbolReferenceRule_CodeFix", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Use a direct resource symbol reference instead of 'reference' or 'list*' functions..
/// </summary>
internal static string UseResourceSymbolReferenceRule_Description {
get {
return ResourceManager.GetString("UseResourceSymbolReferenceRule_Description", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Use a resource reference instead of invoking function "{0}". This simplifies the syntax and allows Bicep to better understand your deployment dependency graph..
/// </summary>
internal static string UseResourceSymbolReferenceRule_MessageFormat {
get {
return ResourceManager.GetString("UseResourceSymbolReferenceRule_MessageFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Resource identifiers should be reproducible outside of their initial deployment context. .
/// </summary>
internal static string UseStableResourceIdentifiersMessage {
get {
return ResourceManager.GetString("UseStableResourceIdentifiersMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Resource identifiers should be reproducible outside of their initial deployment context. Resource {0}'s '{1}' identifier is potentially nondeterministic due to its use of the '{2}' function ({3})..
/// </summary>
internal static string UseStableResourceIdentifiersMessageFormat {
get {
return ResourceManager.GetString("UseStableResourceIdentifiersMessageFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Virtual machines shouldn't use preview images..
/// </summary>
internal static string UseStableVMImage {
get {
return ResourceManager.GetString("UseStableVMImage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Virtual machines shouldn't use preview images. Use stable version in imageReference property "{0}"..
/// </summary>
internal static string UseStableVMImageRuleFixMessageFormat {
get {
return ResourceManager.GetString("UseStableVMImageRuleFixMessageFormat", resourceCulture);
}
}
}
}