forked from Azure/azure-powershell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathResources.Designer.cs
940 lines (837 loc) · 39.6 KB
/
Resources.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
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
//------------------------------------------------------------------------------
// <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 Microsoft.Azure.Commands.DataFactoryV2.Properties {
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", "16.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Resources {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Resources() {
}
/// <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("Microsoft.Azure.Commands.DataFactoryV2.Properties.Resources", typeof(Resources).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 SubnetId must be set for express Azure-SSIS integration runtime..
/// </summary>
internal static string AzureExpressSSISIRSubnetIdMustBePresent {
get {
return ResourceManager.GetString("AzureExpressSSISIRSubnetIdMustBePresent", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to When subnetId as VNet property of Azure - SSIS integration runtime is provided, the other subnet and vnetId properties must be empty..
/// </summary>
internal static string AzureSSISIRSubnetAndVnetIdMustBeEmpty {
get {
return ResourceManager.GetString("AzureSSISIRSubnetAndVnetIdMustBeEmpty", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Continuing execution will renegerate the authentication key '{0}' of integration runtime {1}. This operation will invalidate the existing authentication key.
///Are you sure you want to continue?.
/// </summary>
internal static string ContinueRegenerateAuthKey {
get {
return ResourceManager.GetString("ContinueRegenerateAuthKey", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The data factory object provided is invalid. Use Get-AzDataFactory to retrieve a specific data factory object, or use New-AzDataFactory to create a new data factory object..
/// </summary>
internal static string DataFactoryArgumentInvalid {
get {
return ResourceManager.GetString("DataFactoryArgumentInvalid", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Are you sure you want to remove data factory '{0}' in resource group '{1}'?.
/// </summary>
internal static string DataFactoryConfirmationMessage {
get {
return ResourceManager.GetString("DataFactoryConfirmationMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Creating data factory '{0}' in resource group '{1}'..
/// </summary>
internal static string DataFactoryCreating {
get {
return ResourceManager.GetString("DataFactoryCreating", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A data factory with the name {0} in the resource group {1} exists.
///Continuing execution may overwrite the existing one.
///Are you sure you want to continue?.
/// </summary>
internal static string DataFactoryExists {
get {
return ResourceManager.GetString("DataFactoryExists", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Data factory '{0}' does not exist in the resource group '{1}'..
/// </summary>
internal static string DataFactoryNotFound {
get {
return ResourceManager.GetString("DataFactoryNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Creation of data factory '{0}' failed..
/// </summary>
internal static string DataFactoryProvisioningError {
get {
return ResourceManager.GetString("DataFactoryProvisioningError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Removing data factory '{0}' in resource group '{1}'..
/// </summary>
internal static string DataFactoryRemoving {
get {
return ResourceManager.GetString("DataFactoryRemoving", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Are you sure you want to remove data flow '{0}' in data factory '{1}'?.
/// </summary>
internal static string DataFlowConfirmationMessage {
get {
return ResourceManager.GetString("DataFlowConfirmationMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Creating data flow '{0}' in data factory '{1}'..
/// </summary>
internal static string DataFlowCreating {
get {
return ResourceManager.GetString("DataFlowCreating", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Are you sure you want to stop data flow debug session '{0}' in data factory '{1}'?.
/// </summary>
internal static string DataFlowDebugSessionConfirmationMessage {
get {
return ResourceManager.GetString("DataFlowDebugSessionConfirmationMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Stopping data flow debug session '{0}' in data factory '{1}'..
/// </summary>
internal static string DataFlowDebugSessionRemoving {
get {
return ResourceManager.GetString("DataFlowDebugSessionRemoving", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A data flow with the name {0} in the data factory {1} already exists.
///Continuing execution will overwrite the existing one.
///Are you sure you want to continue?.
/// </summary>
internal static string DataFlowExists {
get {
return ResourceManager.GetString("DataFlowExists", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Data flow '{0}' does not exist in data factory '{1}'..
/// </summary>
internal static string DataFlowNotFound {
get {
return ResourceManager.GetString("DataFlowNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Removing data flow '{0}' in data factory '{1}'..
/// </summary>
internal static string DataFlowRemoving {
get {
return ResourceManager.GetString("DataFlowRemoving", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Are you sure you want to remove dataset '{0}' in data factory '{1}'?.
/// </summary>
internal static string DatasetConfirmationMessage {
get {
return ResourceManager.GetString("DatasetConfirmationMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Creating dataset '{0}' in data factory '{1}'..
/// </summary>
internal static string DatasetCreating {
get {
return ResourceManager.GetString("DatasetCreating", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A dataset with the name {0} in the data factory {1} already exists.
///Continuing execution will overwrite the existing one.
///Are you sure you want to continue?.
/// </summary>
internal static string DatasetExists {
get {
return ResourceManager.GetString("DatasetExists", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Dataset '{0}' does not exist in data factory '{1}'..
/// </summary>
internal static string DatasetNotFound {
get {
return ResourceManager.GetString("DatasetNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Removing dataset '{0}' in data factory '{1}'..
/// </summary>
internal static string DatasetRemoving {
get {
return ResourceManager.GetString("DatasetRemoving", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The argument set for download method is incomplete..
/// </summary>
internal static string DownloadCredentialsNull {
get {
return ResourceManager.GetString("DownloadCredentialsNull", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Download failed. Please check if you have write permission to the path {0} or the sas url is valid. .
/// </summary>
internal static string DownloadFailed {
get {
return ResourceManager.GetString("DownloadFailed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Download of the log is completed. Please find it in the directory {0}..
/// </summary>
internal static string DownloadLogCompleted {
get {
return ResourceManager.GetString("DownloadLogCompleted", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Are you sure you want to encrypt the connection string of the linked service?.
/// </summary>
internal static string EncryptConfirm {
get {
return ResourceManager.GetString("EncryptConfirm", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Encrypting the connection string..
/// </summary>
internal static string Encrypting {
get {
return ResourceManager.GetString("Encrypting", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to EndDateTime is not specified and is set to 48 hours from StartDateTime (by default). Please use -EndDateTime parameter in Get-AzDataFactorySlice command if you want to specify EndDateTime..
/// </summary>
internal static string EndDateTimeNotSpecifiedForGetSlice {
get {
return ResourceManager.GetString("EndDateTimeNotSpecifiedForGetSlice", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to EndDateTime is not specified and is set to 48 hours from StartDateTime (by default). Please use -EndDateTime parameter in Set-AzDataFactorySliceStatus command if you want to specify EndDateTime..
/// </summary>
internal static string EndDateTimeNotSpecifiedForSetSliceStatus {
get {
return ResourceManager.GetString("EndDateTimeNotSpecifiedForSetSliceStatus", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0} name provided using -Name switch: '{1}' in cmdlet doesn't match with {0} name: '{2}' in JSON file. {0} will be created with name: '{1}'.
/// </summary>
internal static string ExtractedNameFromJsonMismatchWarning {
get {
return ResourceManager.GetString("ExtractedNameFromJsonMismatchWarning", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0}
///For data factory naming restrictions, please see http://msdn.microsoft.com/en-us/library/dn835027.aspx.
/// </summary>
internal static string FormattedArgumentOutOfRangeExceptionMessageTemplate {
get {
return ResourceManager.GetString("FormattedArgumentOutOfRangeExceptionMessageTemplate", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to HTTP Status Code: {0}
///Error Code: {1}
///Error Message: {2}
///Request Id: {3}
///Timestamp (Utc):{4}.
/// </summary>
internal static string FormattedCloudExceptionMessageTemplate {
get {
return ResourceManager.GetString("FormattedCloudExceptionMessageTemplate", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Are you sure you want to remove hub '{0}' in data factory '{1}'?.
/// </summary>
internal static string HubConfirmationMessage {
get {
return ResourceManager.GetString("HubConfirmationMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Creating hub '{0}' in data factory '{1}'..
/// </summary>
internal static string HubCreating {
get {
return ResourceManager.GetString("HubCreating", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A hub with the name {0} in the data factory {1} exists.
///Continuing execution may overwrite the existing one.
///Are you sure you want to continue?.
/// </summary>
internal static string HubExists {
get {
return ResourceManager.GetString("HubExists", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Hub '{0}' does not exist in the data factory '{1}'..
/// </summary>
internal static string HubNotFound {
get {
return ResourceManager.GetString("HubNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Failed to provision the hub. Please check if there is any error in the hub properties before re-create it again..
/// </summary>
internal static string HubProvisioningFailed {
get {
return ResourceManager.GetString("HubProvisioningFailed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Removing hub '{0}' in data factory '{1}'..
/// </summary>
internal static string HubRemoving {
get {
return ResourceManager.GetString("HubRemoving", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The integration runtime object provided is invalid. .
/// </summary>
internal static string IntegrationRuntimeArgumentInvalid {
get {
return ResourceManager.GetString("IntegrationRuntimeArgumentInvalid", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Are you sure you want to remove integration runtime '{0}' in data factory '{1}'?.
/// </summary>
internal static string IntegrationRuntimeConfirmationMessage {
get {
return ResourceManager.GetString("IntegrationRuntimeConfirmationMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to An integration runtime with the name {0} in the data factory {1} exists..
/// </summary>
internal static string IntegrationRuntimeExisting {
get {
return ResourceManager.GetString("IntegrationRuntimeExisting", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to An integration runtime with the name {0} in the data factory {1} exists.
///Continuing execution may overwrite the existing one.
///Are you sure you want to continue?.
/// </summary>
internal static string IntegrationRuntimeExists {
get {
return ResourceManager.GetString("IntegrationRuntimeExists", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Both VNetId and Subnet must be set..
/// </summary>
internal static string IntegrationRuntimeInvalidVnet {
get {
return ResourceManager.GetString("IntegrationRuntimeInvalidVnet", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Are you sure you want to remove node {0} in integration runtime '{1}''?.
/// </summary>
internal static string IntegrationRuntimeNodeConfirmationMessage {
get {
return ResourceManager.GetString("IntegrationRuntimeNodeConfirmationMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The node '{0}' does not exist in integration runtime '{1}'..
/// </summary>
internal static string IntegrationRuntimeNodeNotFound {
get {
return ResourceManager.GetString("IntegrationRuntimeNodeNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Removing the node {0} in integration runtime '{1}'..
/// </summary>
internal static string IntegrationRuntimeNodeRemoving {
get {
return ResourceManager.GetString("IntegrationRuntimeNodeRemoving", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Are you sure you want to update node '{0}' in integration runtime '{1}'?.
/// </summary>
internal static string IntegrationRuntimeNodeUpdateMessage {
get {
return ResourceManager.GetString("IntegrationRuntimeNodeUpdateMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Updating integration runtime node {0}..
/// </summary>
internal static string IntegrationRuntimeNodeUpdating {
get {
return ResourceManager.GetString("IntegrationRuntimeNodeUpdating", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Integration runtime '{0}' does not exist in the data factory '{1}'..
/// </summary>
internal static string IntegrationRuntimeNotFound {
get {
return ResourceManager.GetString("IntegrationRuntimeNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Removing the integration runtime '{0}' in the data factory '{1}'..
/// </summary>
internal static string IntegrationRuntimeRemoving {
get {
return ResourceManager.GetString("IntegrationRuntimeRemoving", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Starting integration runtime '{0}' in data factory '{1}'..
/// </summary>
internal static string IntegrationRuntimeStarting {
get {
return ResourceManager.GetString("IntegrationRuntimeStarting", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Stopping integration runtime '{0}' in data factory '{1}'..
/// </summary>
internal static string IntegrationRuntimeStopping {
get {
return ResourceManager.GetString("IntegrationRuntimeStopping", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Please provide a subnet resource ID to bring static public IP addresses for your Azure-SSIS Integration Runtime..
/// </summary>
internal static string IntegrationRuntimeSubnetNotProvided {
get {
return ResourceManager.GetString("IntegrationRuntimeSubnetNotProvided", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Syncing node credentials in integration runtime '{0}'..
/// </summary>
internal static string IntegrationRuntimeSyncingNodeCredential {
get {
return ResourceManager.GetString("IntegrationRuntimeSyncingNodeCredential", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Are you sure you want to sync node credentials in integration runtime '{0}'..
/// </summary>
internal static string IntegrationRuntimeSyncNodeCredential {
get {
return ResourceManager.GetString("IntegrationRuntimeSyncNodeCredential", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Are you sure you want to update integration runtime '{0}'?.
/// </summary>
internal static string IntegrationRuntimeUpdateMessage {
get {
return ResourceManager.GetString("IntegrationRuntimeUpdateMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Updating integration runtime '{0}' in data factory '{1}'..
/// </summary>
internal static string IntegrationRuntimeUpdating {
get {
return ResourceManager.GetString("IntegrationRuntimeUpdating", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Are you sure you want to upgrade integration runtime '{0}'..
/// </summary>
internal static string IntegrationRuntimeUpgrade {
get {
return ResourceManager.GetString("IntegrationRuntimeUpgrade", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Upgrading integration runtime '{0}'..
/// </summary>
internal static string IntegrationRuntimeUpgrading {
get {
return ResourceManager.GetString("IntegrationRuntimeUpgrading", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Please provide a VNet resource ID and subnet name to bring static public IP addresses for your Azure-SSIS Integration Runtime..
/// </summary>
internal static string IntegrationRuntimeVNetNotProvided {
get {
return ResourceManager.GetString("IntegrationRuntimeVNetNotProvided", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The value for pramater 'Type' is different with existing integration runtime with name {0}..
/// </summary>
internal static string IntegrationRuntimeWrongType {
get {
return ResourceManager.GetString("IntegrationRuntimeWrongType", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to All keys in the parameters hashtable must be of type string since they represent pipeline parameter names..
/// </summary>
internal static string InvalidCastParameterKeyExceptionMessage {
get {
return ResourceManager.GetString("InvalidCastParameterKeyExceptionMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Only self-hosted integration runtime can be shared..
/// </summary>
internal static string InvalidIntegrationRuntimeSharing {
get {
return ResourceManager.GetString("InvalidIntegrationRuntimeSharing", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 'AuthKey' can not be used together with 'SharedIntegrationRuntimeResourceId'..
/// </summary>
internal static string InvalidIntegrationRuntimeSharingParameters {
get {
return ResourceManager.GetString("InvalidIntegrationRuntimeSharingParameters", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Failed to parse input JSON file. {0}. Please correct the error in the JSON file and re-deploy {1} again..
/// </summary>
internal static string InvalidJson {
get {
return ResourceManager.GetString("InvalidJson", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The linked data factory name is invlaid..
/// </summary>
internal static string InvalidLinkedDataFactoryName {
get {
return ResourceManager.GetString("InvalidLinkedDataFactoryName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Please provide two static public IP addresses for your Azure-SSIS Integration Runtime..
/// </summary>
internal static string InvalidPublicIPCount {
get {
return ResourceManager.GetString("InvalidPublicIPCount", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Json is not valid. Details: '{0}'.
/// </summary>
internal static string JsonIsInvalidTemplate {
get {
return ResourceManager.GetString("JsonIsInvalidTemplate", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Are you sure you want to remove linked service '{0}' in data factory '{1}'?.
/// </summary>
internal static string LinkedServiceConfirmationMessage {
get {
return ResourceManager.GetString("LinkedServiceConfirmationMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Creating linked service '{0}' in data factory '{1}'..
/// </summary>
internal static string LinkedServiceCreating {
get {
return ResourceManager.GetString("LinkedServiceCreating", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A linked service with the name {0} in the data factory {1} exists.
///Continuing execution may overwrite the existing one.
///Are you sure you want to continue?.
/// </summary>
internal static string LinkedServiceExists {
get {
return ResourceManager.GetString("LinkedServiceExists", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Linked service '{0}' does not exist in the data factory '{1}'..
/// </summary>
internal static string LinkedServiceNotFound {
get {
return ResourceManager.GetString("LinkedServiceNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Removing linked service '{0}' in data factory '{1}'..
/// </summary>
internal static string LinkedServiceRemoving {
get {
return ResourceManager.GetString("LinkedServiceRemoving", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to LinkedDataFactoryName parameter is working together with '-Links' switch parameter..
/// </summary>
internal static string LinksSwitchMissing {
get {
return ResourceManager.GetString("LinksSwitchMissing", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to An error occurred while requesting the status of Integration Runtime, but you can manually execute the following command: Get-AzDataFactoryV2IntegrationRuntime -DataFactoryName MyDataFactory -ResourceGroupName MyResourceGroup -Name MyIR -Status.
/// </summary>
internal static string LongRunningStatusError {
get {
return ResourceManager.GetString("LongRunningStatusError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Pramater 'Type' must be provided when creating new integration runtime..
/// </summary>
internal static string NeedIntegrationRuntimeType {
get {
return ResourceManager.GetString("NeedIntegrationRuntimeType", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No Slices were found in the time range specified. .
/// </summary>
internal static string NoDataSliceFound {
get {
return ResourceManager.GetString("NoDataSliceFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No access to write for the specified directory {0} or the directory does not exist..
/// </summary>
internal static string NoWriteAccessToDirectory {
get {
return ResourceManager.GetString("NoWriteAccessToDirectory", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Are you sure you want to remove pipeline '{0}' in data factory '{1}'?.
/// </summary>
internal static string PipelineConfirmationMessage {
get {
return ResourceManager.GetString("PipelineConfirmationMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Creating pipeline '{0}' in data factory '{1}'..
/// </summary>
internal static string PipelineCreating {
get {
return ResourceManager.GetString("PipelineCreating", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A pipeline with the name {0} in the data factory {1} exists.
///Continuing execution may overwrite the existing one.
///Are you sure you want to continue?.
/// </summary>
internal static string PipelineExists {
get {
return ResourceManager.GetString("PipelineExists", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Pipeline '{0}' does not exist in the data factory '{1}'..
/// </summary>
internal static string PipelineNotFound {
get {
return ResourceManager.GetString("PipelineNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Removing pipeline '{0}' in data factory '{1}'..
/// </summary>
internal static string PipelineRemoving {
get {
return ResourceManager.GetString("PipelineRemoving", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Renegerate the authentication key '{0}' of integration runtime {1}..
/// </summary>
internal static string RegenerateAuthKey {
get {
return ResourceManager.GetString("RegenerateAuthKey", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Resource group name cannot be null..
/// </summary>
internal static string ResourceGroupNameCannotBeEmpty {
get {
return ResourceManager.GetString("ResourceGroupNameCannotBeEmpty", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Are you sure you want to remove trigger '{0}' in data factory '{1}'?.
/// </summary>
internal static string TriggerConfirmationMessage {
get {
return ResourceManager.GetString("TriggerConfirmationMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Creating trigger '{0}' in data factory '{1}'..
/// </summary>
internal static string TriggerCreating {
get {
return ResourceManager.GetString("TriggerCreating", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A trigger with the name {0} in the data factory {1} exists.
///Continuing execution may overwrite the existing one.
///Are you sure you want to continue?.
/// </summary>
internal static string TriggerExists {
get {
return ResourceManager.GetString("TriggerExists", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Trigger '{0}' does not exist in the data factory '{1}'..
/// </summary>
internal static string TriggerNotFound {
get {
return ResourceManager.GetString("TriggerNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Removing trigger '{0}' in data factory '{1}'..
/// </summary>
internal static string TriggerRemoving {
get {
return ResourceManager.GetString("TriggerRemoving", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Are you sure you want to start trigger '{0}' in data factory '{1}'?.
/// </summary>
internal static string TriggerStartConfirmation {
get {
return ResourceManager.GetString("TriggerStartConfirmation", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Starting trigger '{0}' in data factory '{1}'..
/// </summary>
internal static string TriggerStarting {
get {
return ResourceManager.GetString("TriggerStarting", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Are you sure you want to stop trigger '{0}' in data factory '{1}'?.
/// </summary>
internal static string TriggerStopConfirmation {
get {
return ResourceManager.GetString("TriggerStopConfirmation", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Stopping trigger '{0}' in data factory '{1}'..
/// </summary>
internal static string TriggerStopping {
get {
return ResourceManager.GetString("TriggerStopping", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Updating the authentication key of linked integration runtime '{0}' is not allowed..
/// </summary>
internal static string UpdateAuthKeyNotAllowed {
get {
return ResourceManager.GetString("UpdateAuthKeyNotAllowed", resourceCulture);
}
}
}
}