-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathm.json
6512 lines (6512 loc) · 666 KB
/
m.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
{
"AccessControlEntry.ConditionToIdentities": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accesscontrolentry-conditiontoidentities",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/accesscontrolentry-conditiontoidentities",
"description-en-us": "Using the specified identityProvider, converts the condition into the list of identities for which condition would return true in all authorization contexts with identityProvider as the identity provider. An error is raised if it is not possible to convert condition into a list of identities, for example if condition consults attributes other than user or group identities to make a decision.",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "使用指定的 identityProvider,将 condition 转换为一个标识列表;对于该列表,condition 在以 identityProvider 作为标识提供程序的所有授权上下文中都将返回 true。 如果无法将 condition 转换为标识列表,例如,如果 condition 参考用户或组标识以外的属性来做出决定,则会引发错误。"
},
"Access.Database": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/access-database",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/access-database",
"description-en-us": "Returns a structural representation of an Access database, database. An optional record parameter, options, may be specified to control the following options:\nCreateNavigationProperties: A logical (true/false) that sets whether to generate navigation properties on the returned values (default is false).\nNavigationPropertyNameGenerator: A function that is used for the creation of names for navigation properties.\n",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回 Access 数据库 database 的结构表示形式。 可以指定可选记录参数 options 来控制以下选项:\nCreateNavigationProperties:一个逻辑值 (true/false),用于在返回的值上设置是否生成导航属性(默认值为 false)。\nNavigationPropertyNameGenerator:一个函数,用于创建导航属性的名称。\n"
},
"ActiveDirectory.Domains": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/activedirectory-domains",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/activedirectory-domains",
"description-en-us": "Returns a list of Active Directory domains in the same forest as the specified domain or of the current machine's domain if none is specified.",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回与指定域或当前计算机的域(如果未指定任何域)处于同一个林中的 Active Directory 域的列表。"
},
"AdobeAnalytics.Cubes": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/adobeanalytics-cubes",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/adobeanalytics-cubes",
"description-en-us": "Returns a table of multidimensional packages from Adobe Analytics. An optional record parameter, options, may be specified to control the following options:\nHierarchicalNavigation: A logical (true/false) that sets whether to view the tables grouped by their schema names (default is false).\nMaxRetryCount: The number of retries to perform when polling for the result of the query. The default value is 120.\nRetryInterval: The duration of time between retry attempts. The default value is 1 second.\nImplementation: Specifies Adobe Analytics API version. Valid values are: \"2.0\". Default uses API version 1.4.\n",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "从 Adobe Analytics 返回多维包的表。 可以指定可选记录参数 options 来控制以下选项:\nHierarchicalNavigation:一个逻辑值 (true/false),用于设置是否查看按架构名称分组的表(默认值为 false)。\nMaxRetryCount:在轮询查询的结果时要执行的重试次数。 默认值为 120。\nRetryInterval:重试尝试之间的持续时间。 默认值为 1 秒钟。\nImplementation:指定 Adobe Analytics API 版本。 有效值为 2.0。 默认使用 API 版本 1.4。\n"
},
"AdoDotNet.DataSource": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/adodotnet-datasource",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/adodotnet-datasource",
"description-en-us": "Returns the schema collection for the ADO.NET data source with provider name providerName and connection string connectionString. connectionString can be text or a record of property value pairs. Property values can either be text or number. An optional record parameter, options, may be provided to specify additional properties. The record can contain the following fields:\nCommandTimeout: A duration that controls how long the server-side query is allowed to run before it is canceled. The default value is ten minutes.\nSqlCompatibleWindowsAuth: A logical (true/false) that determines whether to produce SQL Server-compatible connection string options for Windows authentication. The default value is true.\nTypeMap\n",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回 ADO.NET 数据源的架构集合,其中包含提供程序名称 providerName 和连接字符串 connectionString。 connectionString 可以是文本,也可以是属性值对的记录。 属性值可以是文本,也可以是数字。 可以提供可选记录参数 options 来指定额外的属性。 记录可以包含以下字段:\nCommandTimeout:一个时间段,用于控制在取消服务器端查询之前允许该查询运行的时间。 默认值为十分钟。\nSqlCompatibleWindowsAuth:一个逻辑值 (true/false),用于确定是否为 Windows 身份验证生成与 SQL Server 兼容的连接字符串选项。 默认值为 true。\nTypeMap\n"
},
"AdoDotNet.Query": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/adodotnet-query",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/adodotnet-query",
"description-en-us": "Returns the result of running query with the connection string connectionString using the ADO.NET provider providerName. connectionString can be text or a record of property value pairs. Property values can either be text or number. An optional record parameter, options, may be provided to specify additional properties. The record can contain the following fields:\nCommandTimeout: A duration that controls how long the server-side query is allowed to run before it is canceled. The default value is ten minutes.\nSqlCompatibleWindowsAuth: A logical (true/false) that determines whether to produce SQL Server-compatible connection string options for Windows authentication. The default value is true.\n",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回使用 ADO.NET 提供程序 providerName 通过连接字符串 connectionString 运行 query 的结果。 connectionString 可以是文本,也可以是属性值对的记录。 属性值可以是文本,也可以是数字。 可以提供可选记录参数 options 来指定额外的属性。 记录可以包含以下字段:\nCommandTimeout:一个时间段,用于控制在取消服务器端查询之前允许该查询运行的时间。 默认值为十分钟。\nSqlCompatibleWindowsAuth:一个逻辑值 (true/false),用于确定是否为 Windows 身份验证生成与 SQL Server 兼容的连接字符串选项。 默认值为 true。\n"
},
"AnalysisServices.Database": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/analysisservices-database",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/analysisservices-database",
"description-en-us": "Returns a table of multidimensional cubes or tabular models from the Analysis Services database database on server server. An optional record parameter, options, may be specified to control the following options:\nQuery: A native MDX query used to retrieve data.\nTypedMeasureColumns: A logical value indicating if the types specified in the multidimensional or tabular model will be used for the types of the added measure columns. When set to false, the type \"number\" will be used for all measure columns. The default value for this option is false.\nCulture: A culture name specifying the culture for the data. This corresponds to the 'Locale Identifier' connection string property.\nCommandTimeout: A duration that controls how long the server-side query is allowed to run before it is canceled. The default value is driver-dependent.\nConnectionTimeout: A duration that controls how long to wait before abandoning an attempt to make a connection to the server. The default value is driver-dependent.\nSubQueries: A number (0, 1 or 2) that sets the value of the \"SubQueries\" property in the connection string. This controls the behavior of calculated members on subselects or subcubes. (The default value is 2).\nImplementation\n",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "从服务器 server 上的 Analysis Services 数据库 database 中返回多维数据集或表格模型的表。 可以指定可选记录参数 options 来控制以下选项:\nQuery:用于检索数据的本机 MDX 查询。\nTypedMeasureColumns:一个逻辑值,指示多维模型或表格模型中指定的类型是否将用于添加的度量值列的类型。 当设置为 false 时,类型“number”将用于所有度量值列。 此选项的默认值为 false。\nCulture:用于指定数据区域性的区域性名称。 这对应于“区域设置标识符”连接字符串属性。\nCommandTimeout:一个时间段,用于控制在取消服务器端查询之前允许该查询运行的时间。 默认值与驱动程序相关。\nConnectionTimeout:一个时间段,用于控制在放弃尝试与服务器建立连接之前等待的时间。 默认值与驱动程序相关。\nSubQueries:一个数字(0、1 或 2),用于设置连接字符串中 SubQueries 属性值。 这将控制子选定对象或子多维数据集上计算成员的行为。 (默认值为 2)。\nImplementation\n"
},
"AnalysisServices.Databases": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/analysisservices-databases",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/analysisservices-databases",
"description-en-us": "Returns databases on an Analysis Services instance, server. An optional record parameter, options, may be provided to specify additional properties. The record can contain the following fields:\nTypedMeasureColumns: A logical value indicating if the types specified in the multidimensional or tabular model will be used for the types of the added measure columns. When set to false, the type \"number\" will be used for all measure columns. The default value for this option is false.\nCulture: A culture name specifying the culture for the data. This corresponds to the 'Locale Identifier' connection string property.\nCommandTimeout: A duration that controls how long the server-side query is allowed to run before it is canceled. The default value is driver-dependent.\nConnectionTimeout: A duration that controls how long to wait before abandoning an attempt to make a connection to the server. The default value is driver-dependent.\nSubQueries: A number (0, 1 or 2) that sets the value of the \"SubQueries\" property in the connection string. This controls the behavior of calculated members on subselects or subcubes. (The default value is 2).\nImplementation\n",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回 Analysis Services 实例 server 上的数据库。 可以提供可选记录参数 options 来指定额外的属性。 记录可以包含以下字段:\nTypedMeasureColumns:一个逻辑值,指示多维模型或表格模型中指定的类型是否将用于添加的度量值列的类型。 当设置为 false 时,类型“number”将用于所有度量值列。 此选项的默认值为 false。\nCulture:用于指定数据区域性的区域性名称。 这对应于“区域设置标识符”连接字符串属性。\nCommandTimeout:一个时间段,用于控制在取消服务器端查询之前允许该查询运行的时间。 默认值与驱动程序相关。\nConnectionTimeout:一个时间段,用于控制在放弃尝试与服务器建立连接之前等待的时间。 默认值与驱动程序相关。\nSubQueries:一个数字(0、1 或 2),用于设置连接字符串中 SubQueries 属性值。 这将控制子选定对象或子多维数据集上计算成员的行为。 (默认值为 2)。\nImplementation\n"
},
"AzureStorage.BlobContents": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/azurestorage-blobcontents",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/azurestorage-blobcontents",
"description-en-us": "Returns the content of the blob at the URL, url, from an Azure storage vault. options may be specified to control the following options:\nBlockSize: The number of bytes to read before waiting on the data consumer. The default value is 4 MB.\nRequestSize: The number of bytes to try to read in a single HTTP request to the server. The default value is 4 MB.\nConcurrentRequests: The ConcurrentRequests option supports faster download of data by specifying the number of requests to be made in parallel, at the cost of memory utilization. The memory required is (ConcurrentRequest * RequestSize). The default value is 16.\n",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "从 Azure 存储库返回 URL 处的 blob 的内容 url。 可以指定 options 来控制以下选项:\nBlockSize:等待数据使用者前要读取的字节数。 默认值为 4 MB。\nRequestSize:要在对服务器的单个 HTTP 请求中尝试读取的字节数。 默认值为 4 MB。\nConcurrentRequests:ConcurrentRequests 选项通过指定要并行执行的请求数来支持更快速的数据下载,这是以内存利用率为代价的。 所需的内存为 (ConcurrentRequest * RequestSize)。 默认值为 16。\n"
},
"AzureStorage.Blobs": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/azurestorage-blobs",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/azurestorage-blobs",
"description-en-us": "Returns a navigational table containing a row for each container found at the account URL, account, from an Azure storage vault. Each row contains a link to the container blobs. options may be specified to control the following options:\nBlockSize: The number of bytes to read before waiting on the data consumer. The default value is 4 MB.\nRequestSize: The number of bytes to try to read in a single HTTP request to the server. The default value is 4 MB.\nConcurrentRequests: The ConcurrentRequests option supports faster download of data by specifying the number of requests to be made in parallel, at the cost of memory utilization. The memory required is (ConcurrentRequest * RequestSize). The default value is 16.\n",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回一个导航表,对于从 Azure 存储库中的帐户 URL account 处找到的每个容器,都作为一行包含在此表中。 每一行都包含一个指向容器 blob 的链接。 可以指定 options 来控制以下选项:\nBlockSize:等待数据使用者前要读取的字节数。 默认值为 4 MB。\nRequestSize:要在对服务器的单个 HTTP 请求中尝试读取的字节数。 默认值为 4 MB。\nConcurrentRequests:ConcurrentRequests 选项通过指定要并行执行的请求数来支持更快速的数据下载,这是以内存利用率为代价的。 所需的内存为 (ConcurrentRequest * RequestSize)。 默认值为 16。\n"
},
"AzureStorage.DataLake": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/azurestorage-datalake",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/azurestorage-datalake",
"description-en-us": "Returns a navigational table containing the documents found in the specified container and its subfolders at the account URL, endpoint, from an Azure Data Lake Storage filesystem. options may be specified to control the following options:\nBlockSize: The number of bytes to read before waiting on the data consumer. The default value is 4 MB.\nRequestSize: The number of bytes to try to read in a single HTTP request to the server. The default value is 4 MB.\nConcurrentRequests: The ConcurrentRequests option supports faster download of data by specifying the number of requests to be made in parallel, at the cost of memory utilization. The memory required is (ConcurrentRequest * RequestSize). The default value is 16.\nHierarchicalNavigation: A logical (true/false) that controls whether the files are returned in a tree-like directory view or in a flat list. The default value is false.\n",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回一个导航表,其中包含在 Azure Data Lake Storage 文件系统的指定容器及其帐户 URL endpoint 处的子文件夹中找到的文档。 可以指定 options 来控制以下选项:\nBlockSize:等待数据使用者前要读取的字节数。 默认值为 4 MB。\nRequestSize:要在对服务器的单个 HTTP 请求中尝试读取的字节数。 默认值为 4 MB。\nConcurrentRequests:ConcurrentRequests 选项通过指定要并行执行的请求数来支持更快速的数据下载,这是以内存利用率为代价的。 所需的内存为 (ConcurrentRequest * RequestSize)。 默认值为 16。\nHierarchicalNavigation:逻辑 (true/false),用于控制是以类似树的目录视图还是以简单列表的形式返回文件。 默认值为 false。\n"
},
"AzureStorage.DataLakeContents": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/azurestorage-datalakecontents",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/azurestorage-datalakecontents",
"description-en-us": "Returns the content of the file at the URL, url, from an Azure Data Lake Storage filesystem. options may be specified to control the following options:\nBlockSize: The number of bytes to read before waiting on the data consumer. The default value is 4 MB.\nRequestSize: The number of bytes to try to read in a single HTTP request to the server. The default value is 4 MB.\nConcurrentRequests: The ConcurrentRequests option supports faster download of data by specifying the number of requests to be made in parallel, at the cost of memory utilization. The memory required is (ConcurrentRequest * RequestSize). The default value is 16.\n",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "从 Azure Data Lake Storage 文件系统返回 URL 处文件的内容 url。 可以指定 options 来控制以下选项:\nBlockSize:等待数据使用者前要读取的字节数。 默认值为 4 MB。\nRequestSize:要在对服务器的单个 HTTP 请求中尝试读取的字节数。 默认值为 4 MB。\nConcurrentRequests:ConcurrentRequests 选项通过指定要并行执行的请求数来支持更快速的数据下载,这是以内存利用率为代价的。 所需的内存为 (ConcurrentRequest * RequestSize)。 默认值为 16。\n"
},
"AzureStorage.Tables": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/azurestorage-tables",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/azurestorage-tables",
"description-en-us": "Returns a navigational table containing a row for each table found at the account URL, account, from an Azure storage vault. Each row contains a link to the azure table. An optional record parameter, options, may be provided to specify additional properties. The record can contain the following fields:\nTimeout: A duration that controls how long to wait before abandoning the request to the server. The default value is source-specific.\n",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回一个导航表,它对于在 Azure 存储库的帐户 URL account 上找到的每个表包含一行。 每一行都包含一个指向 Azure 表的链接。 可以提供可选记录参数 options 来指定额外的属性。 记录可以包含以下字段:\nTimeout:持续时间,用于控制在放弃向服务器发出的请求前等待的时长。 默认值是特定于源的。\n"
},
"Cdm.Contents": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/cdm-contents",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/cdm-contents",
"description-en-us": "This function is unavailable because it requires .NET 4.5.",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "此函数不可用,因为它需要使用 .NET 4.5。"
},
"Csv.Document": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/csv-document",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/csv-document",
"description-en-us": "Returns the contents of the CSV document as a table.\ncolumns can be null, the number of columns, a list of column names, a table type, or an options record.\ndelimiter can be a single character, a list of characters, or the value \"\", which indicates rows should be split by consecutive whitespace characters. Default: \",\".\nRefer to ExtraValues.Type for the supported values of extraValues.\nencoding specifies the text encoding type.\n",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回 CSV 文档的内容作为表。\ncolumns 可以为 null、列数、列名称列表、表类型或选项记录。\ndelimiter 可以是单个字符、字符列表或值 \"\",该值表示行应由连续的空白字符截断。 默认:\",\"。\n请参阅 ExtraValues.Type,了解 extraValues 的支持值。\nencoding 指定文本编码类型。\n"
},
"Cube.AddAndExpandDimensionColumn": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/cube-addandexpanddimensioncolumn",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/cube-addandexpanddimensioncolumn",
"description-en-us": "Merges the specified dimension table, dimensionSelector, into the cube's, cube, filter context and changes the dimensional granularity by expanding the specified set, attributeNames, of dimension attributes. The dimension attributes are added to the tabular view with columns named newColumnNames, or attributeNames if not specified.",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "将指定维度表 dimensionSelector 合并到多维数据集 cube 的筛选上下文中,并通过展开指定维度属性集 attributeNames 来更改维度粒度。 将维度属性添加到包含名为 newColumnNames 的列的表格视图中,如果未指定,则添加 attributeNames。"
},
"Cube.AddMeasureColumn": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/cube-addmeasurecolumn",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/cube-addmeasurecolumn",
"description-en-us": "Adds a column with the name column to the cube that contains the results of the measure measureSelector applied in the row context of each row. Measure application is affected by changes to dimension granularity and slicing. Measure values will be adjusted after certain cube operations are performed.",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "向 cube 添加包含名称 column 的列,其中包含在每行的行上下文中应用的度量值 measureSelector 的结果。 度量值的应用受维度粒度和切片的变化的影响。 执行特定多维数据集操作后,系统会调整度量值。"
},
"Cube.ApplyParameter": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/cube-applyparameter",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/cube-applyparameter",
"description-en-us": "Returns a cube after applying parameter with arguments to cube.",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "通过将 parameter 与 arguments 应用到 cube 后返回多维数据集。"
},
"Cube.AttributeMemberId": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/cube-attributememberid",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/cube-attributememberid",
"description-en-us": "Returns the unique member identifier from a member property value. attribute. Returns null for any other values.",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "从成员属性值返回唯一的成员标识符。 attribute. 对于任何其他值,返回 NULL。"
},
"Cube.AttributeMemberProperty": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/cube-attributememberproperty",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/cube-attributememberproperty",
"description-en-us": "Returns the property propertyName of dimension attribute attribute.",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回维度属性 attribute 的属性 propertyName。"
},
"Cube.CollapseAndRemoveColumns": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/cube-collapseandremovecolumns",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/cube-collapseandremovecolumns",
"description-en-us": "Changes the dimensional granularity of the filter context for the cube by collapsing the attributes mapped to the specified columns columnNames. The columns are also removed from the tabular view of the cube.",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "通过折叠映射至指定列 columnNames 的属性,更改 cube 筛选上下文的维度粒度。 还会从多维数据集的表格视图中删除列。"
},
"Cube.Dimensions": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/cube-dimensions",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/cube-dimensions",
"description-en-us": "Returns a table containing the set of available dimensions within the cube. Each dimension is a table containing a set of dimension attributes and each dimension attribute is represented as a column in the dimension table. Dimensions can be expanded in the cube using Cube.AddAndExpandDimensionColumn.",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回包含 cube 中可用维度集的表。 每个维度都是包含维度属性集的表,每个维度属性的表示形式是维度表中的列。 可以使用 Cube.AddAndExpandDimensionColumn 在多维数据集中展开维度。"
},
"Cube.DisplayFolders": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/cube-displayfolders",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/cube-displayfolders",
"description-en-us": "Returns a nested tree of tables representing the display folder hierarchy of the objects (for example, dimensions and measures) available for use in the cube.",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回一个表嵌套树,它表示可在 cube 中使用的对象(如维度和度量值)的显示文件夹层次结构。"
},
"Cube.MeasureProperties": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/cube-measureproperties",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/cube-measureproperties",
"description-en-us": "Returns a table containing the set of available properties for measures that are expanded in the cube.",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回一个表,此表包含在多维数据集中扩展的度量值的可用属性集。"
},
"Cube.MeasureProperty": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/cube-measureproperty",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/cube-measureproperty",
"description-en-us": "Returns the property propertyName of measure measure.",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回度量值 measure 的属性 propertyName。"
},
"Cube.Measures": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/cube-measures",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/cube-measures",
"description-en-us": "Returns a table containing the set of available measures within the cube. Each measure is represented as a function. Measures can be applied to the cube using Cube.AddMeasureColumn.",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回包含 cube 中可用度量值集的表。 每个度量值都表示为一个函数。 可以使用 Cube.AddMeasureColumn 将度量值应用到多维数据集。"
},
"Cube.Parameters": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/cube-parameters",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/cube-parameters",
"description-en-us": "Returns a table containing the set of parameters that can be applied to cube. Each parameter is a function that can be invoked to get cube with the parameter and its arguments applied.",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回一个表,此表包含可应用到 cube 的参数集。 每个参数都是一个函数,可调用此函数以应用形参及其实参来获取 cube。"
},
"Cube.Properties": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/cube-properties",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/cube-properties",
"description-en-us": "Returns a table containing the set of available properties for dimensions that are expanded in the cube.",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回一个表,此表包含在多维数据集中扩展的维度的可用属性集。"
},
"Cube.PropertyKey": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/cube-propertykey",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/cube-propertykey",
"description-en-us": "Returns the key of property property.",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回属性 property 的键。"
},
"Cube.ReplaceDimensions": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/cube-replacedimensions",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/cube-replacedimensions",
"description-en-us": "Replaces the set of dimensions returned by Cube.Dimensions. For example, this function can be used to add an ID column to a dimension attribute, so that the data source can group on the ID rather than the displayed value.",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "替换 Cube.Dimensions 返回的一组维度。 例如,此函数可用于将 ID 列添加到维度属性,以便数据源可以按 ID 而不是显示的值进行分组。"
},
"Cube.Transform": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/cube-transform",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/cube-transform",
"description-en-us": "Applies the list cube functions, transforms, on the cube.",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "在 cube 上应用多维数据集函数列表 transforms。"
},
"DB2.Database": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/db2-database",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/db2-database",
"description-en-us": "Returns a table of SQL tables and views available in a Db2 database on server server in the database instance named database. The port may be optionally specified with the server, separated by a colon. An optional record parameter, options, may be specified to control the following options:\nCreateNavigationProperties: A logical (true/false) that sets whether to generate navigation properties on the returned values (default is true).\nNavigationPropertyNameGenerator: A function that is used for the creation of names for navigation properties.\nQuery: A native SQL query used to retrieve data. If the query produces multiple result sets, only the first will be returned.\nCommandTimeout: A duration that controls how long the server-side query is allowed to run before it is canceled. The default value is ten minutes.\nConnectionTimeout: A duration that controls how long to wait before abandoning an attempt to make a connection to the server. The default value is driver-dependent.\nHierarchicalNavigation: A logical (true/false) that sets whether to view the tables grouped by their schema names (default is false).\nImplementation: Specifies the internal database provider implementation to use. Valid values are: \"IBM\" and \"Microsoft\".\nBinaryCodePage: A number for the CCSID (Coded Character Set Identifier) to decode Db2 FOR BIT binary data into character strings. Applies to Implementation = \"Microsoft\". Set 0 to disable conversion (default). Set 1 to convert based on database encoding. Set other CCSID number to convert to application encoding.\nPackageCollection: Specifies a string value for package collection (default is \"NULLID\") to enable use of shared packages required to process SQL statements. Applies to Implementation = \"Microsoft\".\nUseDb2ConnectGateway: Specifies whether the connection is being made through a Db2 Connect gateway. Applies to Implementation = \"Microsoft\".\n",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回 SQL 表和视图的表,此表在名为 database 的数据库实例中的服务器 server 上的 Db2 数据库中可用。 可以使用服务器选择性指定端口,并用冒号分隔。 可以指定可选记录参数 options 来控制以下选项:\nCreateNavigationProperties:一个逻辑值 (true/false),用于在返回的值上设置是否生成导航属性(默认值为 true)。\nNavigationPropertyNameGenerator:一个函数,用于创建导航属性的名称。\nQuery:用于检索数据的本机 SQL 查询。 如果该查询产生多个结果集,则仅返回第一个。\nCommandTimeout:一个时间段,用于控制在取消服务器端查询之前允许该查询运行的时间。 默认值为十分钟。\nConnectionTimeout:一个时间段,用于控制在放弃尝试与服务器建立连接之前等待的时间。 默认值与驱动程序相关。\nHierarchicalNavigation:一个逻辑值 (true/false),用于设置是否查看按架构名称分组的表(默认值为 false)。\nImplementation:指定要使用的内部数据库提供程序实现。 有效值为:“IBM”和“Microsoft”。\nBinaryCodePage:CCSID(编码字符集标识符)的一个数字,用于将 Db2 FOR BIT 二进制数据解码为字符串。 适用于 Implementation =“Microsoft”。 设置为 0 将禁用转换(默认值)。 设置为 1 将基于数据库编码进行转换。 设置其他 CCSID 编号可转换为应用程序编码。\nPackageCollection:为包集合指定字符串值(默认值为“NULLID”)以启用处理 SQL 语句所需的共享包。 适用于 Implementation =“Microsoft”。\nUseDb2ConnectGateway:指定是否通过 Db2 连接网关进行连接。 适用于 Implementation =“Microsoft”。\n"
},
"DeltaLake.Table": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/deltalake-table",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/deltalake-table",
"description-en-us": "Returns the contents of the Delta Lake table.",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回 Delta Lake 表的内容。"
},
"Essbase.Cubes": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/essbase-cubes",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/essbase-cubes",
"description-en-us": "Returns a table of cubes grouped by Essbase server from an Essbase instance at APS server url. An optional record parameter, options, may be specified to control the following options:\nCommandTimeout: A duration that controls how long the server-side query is allowed to run before it is canceled. The default value is ten minutes.\n",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回一个多维数据集表,其中的数据集由 Essbase 服务器根据 APS 服务器 url 上的 Essbase 实例进行分组。 可以指定可选记录参数 options 来控制以下选项:\nCommandTimeout:一个时间段,用于控制在取消服务器端查询之前允许该查询运行的时间。 默认值为十分钟。\n"
},
"Excel.CurrentWorkbook": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/excel-currentworkbook",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/excel-currentworkbook",
"description-en-us": "Returns the contents of the current Excel workbook. It returns tables, named ranges, and dynamic arrays. Unlike Excel.Workbook, it does not return sheets.",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回当前 Excel 工作簿的内容。 它返回表、命名范围和动态数组。 与 Excel.Workbook 不同,它不返回工作表。"
},
"Excel.Workbook": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/excel-workbook",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/excel-workbook",
"description-en-us": "Returns the contents of the Excel workbook.\nuseHeaders can be null, a logical (true/false) value indicating whether the first row of each returned table should be treated as a header, or an options record. Default: false.\ndelayTypes can be null or a logical (true/false) value indicating whether the columns of each returned table should be left untyped. Default: false.\n",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回 Excel 工作簿的内容。\nuseHeaders 可以为 null、逻辑值 (true/false) 或选项记录,其中逻辑值指示每个返回的表的第一行是否应被视为标题。 默认值:false。\ndelayTypes 可以为 null 或逻辑值 (true/false),其中逻辑值指示每个返回的表的列是否应保留为非类型化。 默认值:false。\n"
},
"Exchange.Contents": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/exchange-contents",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/exchange-contents",
"description-en-us": "Returns a table of contents from the Microsoft Exchange account mailboxAddress. If mailboxAddress is not specified, the default account for the credential will be used.",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回来自 Microsoft Exchange 帐户 mailboxAddress 的目录。 如果未指定 mailboxAddress,则将使用凭据的默认帐户。"
},
"File.Contents": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/file-contents",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/file-contents",
"description-en-us": "Returns the contents of the file, path, as binary. The options parameter is currently intended for internal use only.",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "以二进制形式返回文件 path 的内容。 options 参数目前仅供内部使用。"
},
"Folder.Contents": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/folder-contents",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/folder-contents",
"description-en-us": "Returns a table containing a row for each folder and file found in the folder path. Each row contains properties of the folder or file and a link to its content. The options parameter is currently intended for internal use only.",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回一个表,其中包含在文件夹 path 中找到的每个文件夹和文件的行。 每一行都包含文件夹或文件的属性以及指向其内容的链接。 options 参数目前仅供内部使用。"
},
"Folder.Files": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/folder-files",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/folder-files",
"description-en-us": "Returns a table containing a row for each file found in the folder path and all its subfolders. Each row contains properties of the file and a link to its content. The options parameter is currently intended for internal use only.",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回一个表,其中包含在文件夹 path 及其所有子文件夹中找到的每个文件的行。 每一行都包含文件的属性以及指向其内容的链接。 options 参数目前仅供内部使用。"
},
"GoogleAnalytics.Accounts": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/googleanalytics-accounts",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/googleanalytics-accounts",
"description-en-us": "Returns Google Analytics accounts that are accessible from the current credential.",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回可通过当前凭据进行访问的 Google Analytics 帐户。"
},
"Hdfs.Contents": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/hdfs-contents",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/hdfs-contents",
"description-en-us": "Returns a table containing a row for each folder and file found at the folder URL, url, from a Hadoop file system. Each row contains properties of the folder or file and a link to its content.",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回一个表,其中包含在 Hadoop 文件系统的文件夹 URL 和 url 中找到的每个文件夹和文件的行。 每一行都包含文件夹或文件的属性以及指向其内容的链接。"
},
"Hdfs.Files": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/hdfs-files",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/hdfs-files",
"description-en-us": "Returns a table containing a row for each file found at the folder URL, url, and subfolders from a Hadoop file system. Each row contains properties of the file and a link to its content.",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回一个表,其中包含在 Hadoop 文件系统的文件夹 URL、url 和子文件夹中找到的每个文件的行。 每一行都包含文件的属性以及指向其内容的链接。"
},
"HdInsight.Containers": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/hdinsight-containers",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/hdinsight-containers",
"description-en-us": "Returns a navigational table containing a row for each container found at the account URL, account, from an Azure storage vault. Each row contains a link to the container blobs.",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回一个导航表,对于从 Azure 存储库中的帐户 URL account 处找到的每个容器,都作为一行包含在此表中。 每一行都包含一个指向容器 blob 的链接。"
},
"HdInsight.Contents": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/hdinsight-contents",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/hdinsight-contents",
"description-en-us": "Returns a navigational table containing a row for each container found at the account URL, account, from an Azure storage vault. Each row contains a link to the container blobs.",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回一个导航表,对于从 Azure 存储库中的帐户 URL account 处找到的每个容器,都作为一行包含在此表中。 每一行都包含一个指向容器 blob 的链接。"
},
"HdInsight.Files": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/hdinsight-files",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/hdinsight-files",
"description-en-us": "Returns a table containing a row for each blob file found at the container URL, account, from an Azure storage vault. Each row contains properties of the file and a link to its content.",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回一个表,对于从 Azure 存储库中的容器 URL account 处找到的每个 blob 文件,都作为一行包含在此表中。 每一行都包含文件的属性以及指向其内容的链接。"
},
"Html.Table": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/html-table",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/html-table",
"description-en-us": "Returns a table containing the results of running the specified CSS selectors against the provided html. An optional record parameter, options, may be provided to specify additional properties. The record can contain the following fields:\nRowSelector\n",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回一个表,其中包含针对所提供的 html 运行指定 CSS 选择器的结果。 可以提供可选记录参数 options 来指定额外的属性。 记录可以包含以下字段:\nRowSelector\n"
},
"Identity.From": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/identity-from",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/identity-from",
"description-en-us": "Creates an identity.",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "创建标识。"
},
"Identity.IsMemberOf": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/identity-ismemberof",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/identity-ismemberof",
"description-en-us": "Determines whether an identity is a member of an identity collection.",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "确定某标识是否为某一标识集合的成员。"
},
"IdentityProvider.Default": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/identityprovider-default",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/identityprovider-default",
"description-en-us": "The default identity provider for the current host.",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "当前主机的默认标识提供程序。"
},
"Informix.Database": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/informix-database",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/informix-database",
"description-en-us": "Returns a table of SQL tables and views available in an Informix database on server server in the database instance named database. The port may be optionally specified with the server, separated by a colon. An optional record parameter, options, may be specified to control the following options:\nCreateNavigationProperties: A logical (true/false) that sets whether to generate navigation properties on the returned values (default is true).\nNavigationPropertyNameGenerator: A function that is used for the creation of names for navigation properties.\nQuery: A native SQL query used to retrieve data. If the query produces multiple result sets, only the first will be returned.\nCommandTimeout: A duration that controls how long the server-side query is allowed to run before it is canceled. The default value is ten minutes.\nConnectionTimeout: A duration that controls how long to wait before abandoning an attempt to make a connection to the server. The default value is driver-dependent.\nHierarchicalNavigation: A logical (true/false) that sets whether to view the tables grouped by their schema names (default is false).\n",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回 SQL 表和视图的一个表,这些表和视图在名为 database 数据库实例中服务器 server 上的 Informix 数据库中可用。 可以使用服务器选择性指定端口,并用冒号分隔。 可以指定可选记录参数 options 来控制以下选项:\nCreateNavigationProperties:一个逻辑值 (true/false),用于在返回的值上设置是否生成导航属性(默认值为 true)。\nNavigationPropertyNameGenerator:一个函数,用于创建导航属性的名称。\nQuery:用于检索数据的本机 SQL 查询。 如果该查询产生多个结果集,则仅返回第一个。\nCommandTimeout:一个时间段,用于控制在取消服务器端查询之前允许该查询运行的时间。 默认值为十分钟。\nConnectionTimeout:一个时间段,用于控制在放弃尝试与服务器建立连接之前等待的时间。 默认值与驱动程序相关。\nHierarchicalNavigation:一个逻辑值 (true/false),用于设置是否查看按架构名称分组的表(默认值为 false)。\n"
},
"Json.Document": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/json-document",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/json-document",
"description-en-us": "Returns the content of the JSON document.",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回 JSON 文档的内容。"
},
"Json.FromValue": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/json-fromvalue",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/json-fromvalue",
"description-en-us": "Produces a JSON representation of a given value value with a text encoding specified by encoding. If encoding is omitted, UTF8 is used. Values are represented as follows:\nNull, text and logical values are represented as the corresponding JSON types\nNumbers are represented as numbers in JSON, except that #infinity, -#infinity and #nan are converted to null\nLists are represented as JSON arrays\nRecords are represnted as JSON objects\nTables are represented as an array of objects\nDates, times, datetimes, datetimezones and durations are represented as ISO-8601 text\nBinary values are represented as base-64 encoded text\nTypes and functions produce an error\n",
"category-en-us": "Text functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/text-functions",
"category-zh-cn": "文本函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/text-functions",
"description-zh-cn": "生成给定值 value 的 JSON 表示形式,其文本编码由 encoding 指定。 如果省略 encoding,则使用 UTF8。 值按如下方式表示:\nNull、文本和逻辑值表示为相应的 JSON 类型\n编号表示为 JSON 中的数字,但 #infinity、-#infinity 和 #nan 都转换为 null\n列表表示为 JSON 数组\n记录表示为 JSON 对象\n表格表示为对象数组\n日期、时间、日期/时间、日期时间时区和持续时间表示为 ISO-8601 文本\n二进制值表示为 base-64 编码文本\n类型和函数产生错误\n"
},
"MySQL.Database": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/mysql-database",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/mysql-database",
"description-en-us": "Returns a table of SQL tables, views, and stored scalar functions available in a MySQL database on server server in the database instance named database. The port may be optionally specified with the server, separated by a colon. An optional record parameter, options, may be specified to control the following options:\nEncoding: A TextEncoding value that specifies the character set used to encode all queries sent to the server (default is null).\nCreateNavigationProperties: A logical (true/false) that sets whether to generate navigation properties on the returned values (default is true).\nNavigationPropertyNameGenerator: A function that is used for the creation of names for navigation properties.\nQuery: A native SQL query used to retrieve data. If the query produces multiple result sets, only the first will be returned.\nCommandTimeout: A duration that controls how long the server-side query is allowed to run before it is canceled. The default value is ten minutes.\nConnectionTimeout: A duration that controls how long to wait before abandoning an attempt to make a connection to the server. The default value is driver-dependent.\nTreatTinyAsBoolean: A logical (true/false) that determines whether to force tinyint columns on the server as logical values. The default value is true.\nOldGuids: A logical (true/false) that sets whether char(36) columns (if false) or binary(16) columns (if true) will be treated as GUIDs. The default value is false.\nReturnSingleDatabase: A logical (true/false) that sets whether to return all tables of all databases (if false) or to return tables and views of the specified database (if true). The default value is false.\nHierarchicalNavigation: A logical (true/false) that sets whether to view the tables grouped by their schema names (default is false).\n",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "在名为 database 的数据库实例中,返回服务器 server 上 MySQL 数据库中可用的 SQL 表、视图和存储标量函数的表。 可以使用服务器选择性指定端口,并用冒号分隔。 可以指定可选记录参数 options 来控制以下选项:\nEncoding:一个 TextEncoding 值,指定用于对发送到服务器的所有查询进行编码的字符集(默认值为 NULL)。\nCreateNavigationProperties:一个逻辑值 (true/false),用于在返回的值上设置是否生成导航属性(默认值为 true)。\nNavigationPropertyNameGenerator:一个函数,用于创建导航属性的名称。\nQuery:用于检索数据的本机 SQL 查询。 如果该查询产生多个结果集,则仅返回第一个。\nCommandTimeout:一个时间段,用于控制在取消服务器端查询之前允许该查询运行的时间。 默认值为十分钟。\nConnectionTimeout:一个时间段,用于控制在放弃尝试与服务器建立连接之前等待的时间。 默认值与驱动程序相关。\nTreatTinyAsBoolean:一个逻辑值 (true/false),用于确定是否将服务器上的 tinyint 列强制设置为逻辑值。 默认值为 true。\nOldGuids:一个逻辑值 (true/false),用于设置将 char(36) 列(如果为 false)还是 binary(16) 列(如果为 true)视为 GUID。 默认值为 false。\nReturnSingleDatabase:一个逻辑值 (true/false),用于设置是返回所有数据库的所有表(如果为 false),还是返回指定数据库的表和视图(如果为 true)。 默认值为 false。\nHierarchicalNavigation:一个逻辑值 (true/false),用于设置是否查看按架构名称分组的表(默认值为 false)。\n"
},
"OData.Feed": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/odata-feed",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/odata-feed",
"description-en-us": "Returns a table of OData feeds offered by an OData service from a uri serviceUri, headers headers. A boolean value specifying whether to use concurrent connections or an optional record parameter, options, may be specified to control the following options:\nQuery: Programmatically add query parameters to the URL without having to worry about escaping.\nHeaders: Specifying this value as a record will supply additional headers to an HTTP request.\nExcludedFromCacheKey: Specifying this value as a list will exclude these HTTP header keys from being part of the calculation for caching data.\nApiKeyName: If the target site has a notion of an API key, this parameter can be used to specify the name (not the value) of the key parameter that must be used in the URL. The actual key value is provided in the credential.\nTimeout: Specifying this value as a duration will change the timeout for an HTTP request. The default value is 600 seconds.\nEnableBatch: A logical (true/false) that sets whether to allow generation of an OData $batch request if the MaxUriLength is exceeded (default is false).\n`MaxUriLength: A number that indicates the max length of an allowed uri sent to an OData service. If exceeded and EnableBatch is true then the request will be made to an OData $batch endpoint, otherwise it will fail (default is 2048).\nConcurrent: A logical (true/false) when set to true, requests to the service will be made concurrently. When set to false, requests will be made sequentially. When not specified, the value will be determined by the service’s AsynchronousRequestsSupported annotation. If the service does not specify whether AsynchronousRequestsSupported is supported, requests will be made sequentially.\nODataVersion: A number (3 or 4) that specifies the OData protocol version to use for this OData service. When not specified, all supported versions will be requested. The service version will be determined by the OData-Version header returned by the service.\nFunctionOverloads: A logical (true/false) when set to true, function import overloads will be listed in the navigator as separate entries, when set to false, function import overloads will be listed as one union function in the navigator. Default value for V3: false. Default value for V4: true.\nMoreColumns: A logical (true/false) when set to true, adds a \"More Columns\" column to each entity feed containing open types and polymorphic types. This will contain the fields not declared in the base type. When false, this field is not present. Defaults to false.\nIncludeAnnotations: A comma separated list of namespace qualified term names or patterns to include with \"*\" as a wildcard. By default, none of the annotations are included.\nIncludeMetadataAnnotations: A comma separated list of namespace qualified term names or patterns to include on metadata document requests, with \"*\" as a wildcard. By default, includes the same annotations as IncludeAnnotations.\nOmitValues: Allows the OData service to avoid writing out certain values in responses. If acknowledged by the service, we will infer those values from the omitted fields. Options include:\n\nODataOmitValues.Nulls: Allows the OData service to omit null values.\n\n\nImplementation: Specifies the implementation of the OData connector to use. Valid values are \"2.0\" or null.\n",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "从 URI serviceUri、标头 headers 返回 OData 服务提供的 OData 源表。 可以指定一个布尔值来指定使用并发连接还是可选的记录参数 options 控制以下选项:\nQuery:以编程方式将查询参数添加到 URL,无需担心转义。\nHeaders:将此值指定为记录将为 HTTP 请求提供额外的标头。\nExcludedFromCacheKey:将此值指定为列表会将这些 HTTP 标头键排除在对缓存数据的计算之外。\nApiKeyName:如果目标站点具有 API 密钥的概念,则可以使用此参数来指定必须在 URL 中使用的密钥参数的名称(而不是值)。 凭据中提供了实际的密钥值。\nTimeout:将此值指定为持续时间将更改 HTTP 请求的超时值。 默认值为 600 秒。\nEnableBatch:用于设置在超过 MaxUriLength 时是否允许生成 OData $batch 请求的逻辑值 (true/false),默认为 false。\n`MaxUriLength:指示发送到 OData 服务的允许的 URI 的最大长度的数字。 如果超过且 EnableBatch 为 true,则将向 OData $batch 端点发出请求,否则将失败(默认为 2048)。\nConcurrent:逻辑值 (true/false),设置为 true 时,将同时发出对服务的请求。 如果设置为 false,则按顺序发出请求。 如果未指定,将由服务的 AsynchronousRequestsSupported 注释确定值。 如果服务未指定是否支持 AsynchronousRequestsSupported,则将按顺序发出请求。\nODataVersion:指定要用于此 OData 服务的 OData 协议版本的数字(3 或 4)。 如果未指定,则将请求所有支持版本。 服务版本将由服务返回的 OData-版本标头确定。\nFunctionOverloads:逻辑值 (true/false),如果设置为 true,函数导入过载将作为单独条目列在导航器中,如果设置为 false,则函数导入过载将作为一个 union 函数列在导航器中。 V3 的默认值: false。 V4 的默认值: true。\nMoreColumns:逻辑值 (true/false),如果设置为 true,则会向每个包含开放类型和多态类型的实体源添加“更多列”列。 这将包含基类型中未声明的字段。 如果设置为 false,则此字段不存在。 默认为 false。\nIncludeAnnotations:要包括的命名空间限定术语名或模式的逗号分隔列表,其中“*”作为通配符。 默认情况下,不包括任何注释。\nIncludeMetadataAnnotations元数据文档请求中要包括的命名空间限定术语名或模式的逗号分隔列表,其中“*”作为通配符。 默认情况下,包括与 IncludeAnnotations 相同的注释。\nOmitValues:允许 OData 服务避免在响应中写出某些值。 如果服务已确认,我们将从省略的字段中推断出这些值。 选项包括:\nODataOmitValues.Nulls:允许 OData 服务省略 NULL 值。\n\n\nImplementation:指定要使用的 OData 连接器实现。 有效值为“2.0”或 NULL。\n"
},
"Odbc.DataSource": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/odbc-datasource",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/odbc-datasource",
"description-en-us": "Returns a table of SQL tables and views from the ODBC data source specified by the connection string connectionString. connectionString can be text or a record of property value pairs. Property values can either be text or number. An optional record parameter, options, may be provided to specify additional properties. The record can contain the following fields:\nCreateNavigationProperties: A logical (true/false) that sets whether to generate navigation properties on the returned values (default is true).\nHierarchicalNavigation: A logical (true/false) that sets whether to view the tables grouped by their schema names (default is false).\nConnectionTimeout: A duration that controls how long to wait before abandoning an attempt to make a connection to the server. The default value is 15 seconds.\nCommandTimeout: A duration that controls how long the server-side query is allowed to run before it is canceled. The default value is ten minutes.\nSqlCompatibleWindowsAuth: A logical (true/false) that determines whether to produce SQL Server-compatible connection string options for Windows authentication. The default value is true.\n",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "从连接字符串 connectionString 指定的 ODBC 数据源中返回 SQL 表和视图的表。 connectionString 可以是文本,也可以是属性值对的记录。 属性值可以是文本,也可以是数字。 可以提供可选记录参数 options 来指定额外的属性。 记录可以包含以下字段:\nCreateNavigationProperties:一个逻辑值 (true/false),用于在返回的值上设置是否生成导航属性(默认值为 true)。\nHierarchicalNavigation:一个逻辑值 (true/false),用于设置是否查看按架构名称分组的表(默认值为 false)。\nConnectionTimeout:一个时间段,用于控制在放弃尝试与服务器建立连接之前等待的时间。 默认值为 15 秒。\nCommandTimeout:一个时间段,用于控制在取消服务器端查询之前允许该查询运行的时间。 默认值为十分钟。\nSqlCompatibleWindowsAuth:一个逻辑值 (true/false),用于确定是否为 Windows 身份验证生成与 SQL Server 兼容的连接字符串选项。 默认值为 true。\n"
},
"Odbc.InferOptions": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/odbc-inferoptions",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/odbc-inferoptions",
"description-en-us": "Returns the result of trying to infer SQL capbabilities with the connection string connectionString using ODBC. connectionString can be text or a record of property value pairs. Property values can either be text or number.",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回后列推断的结果:尝试通过使用 ODBC 的连接字符串 connectionString 来推断 SQL 功能。 connectionString 可以是文本,也可以是属性值对的记录。 属性值可以是文本,也可以是数字。"
},
"Odbc.Query": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/odbc-query",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/odbc-query",
"description-en-us": "Returns the result of running query with the connection string connectionString using ODBC. connectionString can be text or a record of property value pairs. Property values can either be text or number. An optional record parameter, options, may be provided to specify additional properties. The record can contain the following fields:\nConnectionTimeout: A duration that controls how long to wait before abandoning an attempt to make a connection to the server. The default value is 15 seconds.\nCommandTimeout: A duration that controls how long the server-side query is allowed to run before it is canceled. The default value is ten minutes.\nSqlCompatibleWindowsAuth: A logical (true/false) that determines whether to produce SQL Server-compatible connection string options for Windows authentication. The default value is true.\n",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回在 ODBC 中使用连接字符串 connectionString 运行 query 的结果。 connectionString 可以是文本,也可以是属性值对的记录。 属性值可以是文本,也可以是数字。 可以提供可选记录参数 options 来指定额外的属性。 记录可以包含以下字段:\nConnectionTimeout:一个时间段,用于控制在放弃尝试与服务器建立连接之前等待的时间。 默认值为 15 秒。\nCommandTimeout:一个时间段,用于控制在取消服务器端查询之前允许该查询运行的时间。 默认值为十分钟。\nSqlCompatibleWindowsAuth:一个逻辑值 (true/false),用于确定是否为 Windows 身份验证生成与 SQL Server 兼容的连接字符串选项。 默认值为 true。\n"
},
"OleDb.DataSource": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/oledb-datasource",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/oledb-datasource",
"description-en-us": "Returns a table of SQL tables and views from the OLE DB data source specified by the connection string connectionString. connectionString can be text or a record of property value pairs. Property values can either be text or number. An optional record parameter, options, may be provided to specify additional properties. The record can contain the following fields:\nCreateNavigationProperties: A logical (true/false) that sets whether to generate navigation properties on the returned values (default is true).\nNavigationPropertyNameGenerator: A function that is used for the creation of names for navigation properties.\nQuery: A native SQL query used to retrieve data. If the query produces multiple result sets, only the first will be returned.\nHierarchicalNavigation: A logical (true/false) that sets whether to view the tables grouped by their schema names (default is true).\nConnectionTimeout: A duration that controls how long to wait before abandoning an attempt to make a connection to the server. The default value is driver-dependent.\nCommandTimeout: A duration that controls how long the server-side query is allowed to run before it is canceled. The default value is ten minutes.\nSqlCompatibleWindowsAuth: A logical (true/false) that determines whether to produce SQL Server-compatible connection string options for Windows authentication. The default value is true.\n",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回 SQL 表的表并从由连接字符串 connectionString 指定的 OLE DB 数据源进行查看。 connectionString 可以是文本,也可以是属性值对的记录。 属性值可以是文本,也可以是数字。 可以提供可选记录参数 options 来指定额外的属性。 记录可以包含以下字段:\nCreateNavigationProperties:一个逻辑值 (true/false),用于在返回的值上设置是否生成导航属性(默认值为 true)。\nNavigationPropertyNameGenerator:一个函数,用于创建导航属性的名称。\nQuery:用于检索数据的本机 SQL 查询。 如果该查询产生多个结果集,则仅返回第一个。\nHierarchicalNavigation:一个逻辑值(true/false),用于设置是否查看按架构名称分组的表(默认值为 true)。\nConnectionTimeout:一个时间段,用于控制在放弃尝试与服务器建立连接之前等待的时间。 默认值与驱动程序相关。\nCommandTimeout:一个时间段,用于控制在取消服务器端查询之前允许该查询运行的时间。 默认值为十分钟。\nSqlCompatibleWindowsAuth:一个逻辑值 (true/false),用于确定是否为 Windows 身份验证生成与 SQL Server 兼容的连接字符串选项。 默认值为 true。\n"
},
"OleDb.Query": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/oledb-query",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/oledb-query",
"description-en-us": "Returns the result of running query with the connection string connectionString using OLE DB. connectionString can be text or a record of property value pairs. Property values can either be text or number. An optional record parameter, options, may be provided to specify additional properties. The record can contain the following fields:\nConnectionTimeout: A duration that controls how long to wait before abandoning an attempt to make a connection to the server. The default value is driver-dependent.\nCommandTimeout: A duration that controls how long the server-side query is allowed to run before it is canceled. The default value is ten minutes.\nSqlCompatibleWindowsAuth: A logical (true/false) that determines whether to produce SQL Server-compatible connection string options for Windows authentication. The default value is true.\n",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回在 OLE DB 中使用连接字符串 connectionString 运行 query 的结果。 connectionString 可以是文本,也可以是属性值对的记录。 属性值可以是文本,也可以是数字。 可以提供可选记录参数 options 来指定额外的属性。 记录可以包含以下字段:\nConnectionTimeout:一个时间段,用于控制在放弃尝试与服务器建立连接之前等待的时间。 默认值与驱动程序相关。\nCommandTimeout:一个时间段,用于控制在取消服务器端查询之前允许该查询运行的时间。 默认值为十分钟。\nSqlCompatibleWindowsAuth:一个逻辑值 (true/false),用于确定是否为 Windows 身份验证生成与 SQL Server 兼容的连接字符串选项。 默认值为 true。\n"
},
"Oracle.Database": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/oracle-database",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/oracle-database",
"description-en-us": "Returns a table of SQL tables and views from the Oracle database on server server. The port may be optionally specified with the server, separated by a colon. An optional record parameter, options, may be specified to control the following options:\nCreateNavigationProperties: A logical (true/false) that sets whether to generate navigation properties on the returned values (default is true).\nNavigationPropertyNameGenerator: A function that is used for the creation of names for navigation properties.\nQuery: A native SQL query used to retrieve data. If the query produces multiple result sets, only the first will be returned.\nCommandTimeout: A duration that controls how long the server-side query is allowed to run before it is canceled. The default value is ten minutes.\nConnectionTimeout: A duration that controls how long to wait before abandoning an attempt to make a connection to the server. The default value is driver-dependent.\nHierarchicalNavigation: A logical (true/false) that sets whether to view the tables grouped by their schema names (default is false).\n",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "从服务器 server 上的 Oracle Database 中返回 SQL 表和视图的表。 可以使用服务器选择性指定端口,并用冒号分隔。 可以指定可选记录参数 options 来控制以下选项:\nCreateNavigationProperties:一个逻辑值 (true/false),用于在返回的值上设置是否生成导航属性(默认值为 true)。\nNavigationPropertyNameGenerator:一个函数,用于创建导航属性的名称。\nQuery:用于检索数据的本机 SQL 查询。 如果该查询产生多个结果集,则仅返回第一个。\nCommandTimeout:一个时间段,用于控制在取消服务器端查询之前允许该查询运行的时间。 默认值为十分钟。\nConnectionTimeout:一个时间段,用于控制在放弃尝试与服务器建立连接之前等待的时间。 默认值与驱动程序相关。\nHierarchicalNavigation:一个逻辑值 (true/false),用于设置是否查看按架构名称分组的表(默认值为 false)。\n"
},
"Pdf.Tables": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/pdf-tables",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/pdf-tables",
"description-en-us": "Returns any tables found in pdf. An optional record parameter, options, may be provided to specify additional properties. The record can contain the following fields:\nImplementation: The version of the algorithm to use when identifying tables. Old versions are available only for backwards compatibility, to prevent old queries from being broken by algorithm updates. The newest version should always give the best results. Valid values are \"1.3\", \"1.2\", \"1.1\", or null.\nStartPage: Specifies the first page in the range of pages to examine. Default: 1.\nEndPage: Specifies the last page in the range of pages to examine. Default: the last page of the document.\nMultiPageTables: Controls whether similar tables on consecutive pages will be automatically combined into a single table. Default: true.\nEnforceBorderLines: Controls whether border lines are always enforced as cell boundaries (when true), or simply used as one hint among many for determining cell boundaries (when false). Default: false.\n",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回 pdf 中找到的任何表。 可以提供可选记录参数 options 来指定额外的属性。 记录可以包含以下字段:\nImplementation:标识表时要使用的算法的版本。 旧版本仅用于向后兼容,防止旧查询被算法更新中断。 最新版本应始终提供最佳结果。 有效值为“1.3”、“1.2”、“1.1”或 NULL。\nStartPage:指定页范围中要检查的第一页。 默认值:1。\nEndPage:指定页范围中要检查的最后一页。 默认值:文档的最后一页。\nMultiPageTables:控制是否将连续页面上的相似表自动合并为一个表。 默认值:true。\nEnforceBorderLines:控制是否始终将边界线强制用作单元格边界(若为 true),或仅用作确定单元格边界的许多提示之一(若为 false)。 默认值:false。\n"
},
"PostgreSQL.Database": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/postgresql-database",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/postgresql-database",
"description-en-us": "Returns a table of SQL tables and views available in a PostgreSQL database on server server in the database instance named database. The port may be optionally specified with the server, separated by a colon. An optional record parameter, options, may be specified to control the following options:\nCreateNavigationProperties: A logical (true/false) that sets whether to generate navigation properties on the returned values (default is true).\nNavigationPropertyNameGenerator: A function that is used for the creation of names for navigation properties.\nQuery: A native SQL query used to retrieve data. If the query produces multiple result sets, only the first will be returned.\nCommandTimeout: A duration that controls how long the server-side query is allowed to run before it is canceled. The default value is ten minutes.\nConnectionTimeout: A duration that controls how long to wait before abandoning an attempt to make a connection to the server. The default value is driver-dependent.\nHierarchicalNavigation: A logical (true/false) that sets whether to view the tables grouped by their schema names (default is false).\n",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回包含 SQL 表和视图的表,这些表和视图在名为 database 数据库实例中服务器 server 上的 PostgreSQL 数据库中可用。 可以使用服务器选择性指定端口,并用冒号分隔。 可以指定可选记录参数 options 来控制以下选项:\nCreateNavigationProperties:一个逻辑值 (true/false),用于在返回的值上设置是否生成导航属性(默认值为 true)。\nNavigationPropertyNameGenerator:一个函数,用于创建导航属性的名称。\nQuery:用于检索数据的本机 SQL 查询。 如果该查询产生多个结果集,则仅返回第一个。\nCommandTimeout:一个时间段,用于控制在取消服务器端查询之前允许该查询运行的时间。 默认值为十分钟。\nConnectionTimeout:一个时间段,用于控制在放弃尝试与服务器建立连接之前等待的时间。 默认值与驱动程序相关。\nHierarchicalNavigation:一个逻辑值 (true/false),用于设置是否查看按架构名称分组的表(默认值为 false)。\n"
},
"RData.FromBinary": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/rdata-frombinary",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/rdata-frombinary",
"description-en-us": "Returns a record of data frames from the RData file.",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "从 RData 文件返回数据帧记录。"
},
"Salesforce.Data": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/salesforce-data",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/salesforce-data",
"description-en-us": "Returns the objects on the Salesforce account provided in the credentials. The account will be connected through the provided environment loginUrl. If no environment is provided then the account will connect to production (https://login.salesforce.com). An optional record parameter, options, may be provided to specify additional properties. The record can contain the following fields:\nCreateNavigationProperties: A logical (true/false) that sets whether to generate navigation properties on the returned values (default is false).\nApiVersion: The Salesforce API version to use for this query. When not specified, API version 29.0 is used.\nTimeout: A duration that controls how long to wait before abandoning the request to the server. The default value is source-specific.\n",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回凭据中提供的 Salesforce 帐户的对象。 将通过提供的环境 loginUrl 连接帐户。 如果没有提供环境,则帐户连接到生产环境 (https://login.salesforce.com)。 可以提供可选记录参数 options 来指定额外的属性。 记录可以包含以下字段:\nCreateNavigationProperties:一个逻辑值 (true/false),用于在返回的值上设置是否生成导航属性(默认值为 false)。\nApiVersion:用于此查询的 Salesforce API 版本。 如果未指定,则使用 API 版本 29.0。\nTimeout:持续时间,用于控制在放弃向服务器发出的请求前等待的时长。 默认值是特定于源的。\n"
},
"Salesforce.Reports": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/salesforce-reports",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/salesforce-reports",
"description-en-us": "Returns the reports on the Salesforce account provided in the credentials. The account will be connected through the provided environment loginUrl. If no environment is provided then the account will connect to production (https://login.salesforce.com). An optional record parameter, options, may be provided to specify additional properties. The record can contain the following fields:\nApiVersion: The Salesforce API version to use for this query. When not specified, API version 29.0 is used.\nTimeout: A duration that controls how long to wait before abandoning the request to the server. The default value is source-specific.\n",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回凭据中提供的 Salesforce 帐户的报表。 将通过提供的环境 loginUrl 连接帐户。 如果没有提供环境,则帐户连接到生产环境 (https://login.salesforce.com)。 可以提供可选记录参数 options 来指定额外的属性。 记录可以包含以下字段:\nApiVersion:用于此查询的 Salesforce API 版本。 如果未指定,则使用 API 版本 29.0。\nTimeout:持续时间,用于控制在放弃向服务器发出的请求前等待的时长。 默认值是特定于源的。\n"
},
"SapBusinessWarehouse.Cubes": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/sapbusinesswarehouse-cubes",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/sapbusinesswarehouse-cubes",
"description-en-us": "Returns a table of InfoCubes and queries grouped by InfoArea from an SAP Business Warehouse instance at server server with system number systemNumberOrSystemId and Client ID clientId. An optional record parameter, optionsOrLogonGroup, may be specified to control options.",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回一个表,此表包含在服务器 server 处的一个 SAP Business Warehouse 实例中按 InfoArea 分组的 InfoCubes 和查询,系统编号为 systemNumberOrSystemId,客户端 ID 为 clientId。 可以指定可选记录参数 optionsOrLogonGroup 来控制选项。"
},
"SapHana.Database": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/saphana-database",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/saphana-database",
"description-en-us": "Returns a table of multidimensional packages from the SAP HANA database server. An optional record parameter, options, may be specified to control the following options:\nQuery: A native SQL query used to retrieve data. If the query produces multiple result sets, only the first will be returned.\nDistribution: A SapHanaDistribution that sets the value of the \"Distribution\" property in the connection string. Statement routing is the method of evaluating the correct server node of a distributed system before statement execution. The default value is SapHanaDistribution.All.\nImplementation: Specifies the implementation of the SAP HANA connector to use.\nEnableColumnBinding: Binds variables to the columns of a SAP HANA result set when fetching data. May potentially improve performance at the cost of slightly higher memory utilization. The default value is false.\nConnectionTimeout: A duration that controls how long to wait before abandoning an attempt to make a connection to the server. The default value is 15 seconds.\nCommandTimeout: A duration that controls how long the server-side query is allowed to run before it is canceled. The default value is ten minutes.\n",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "从 SAP HANA 数据库 server 返回多维包的表。 可以指定可选记录参数 options 来控制以下选项:\nQuery:用于检索数据的本机 SQL 查询。 如果该查询产生多个结果集,则仅返回第一个。\nDistribution:SapHanaDistribution,用于设置连接字符串中 Distribution 属性的值。 语句路由是在语句执行之前计算正确的分布式系统服务器节点的方法。 默认值为 SapHanaDistribution.All。\nImplementation:指定要使用的 SAP HANA 连接器实现。\nEnableColumnBinding:在获取数据时将变量绑定到 SAP HANA 结果集的列。 可能会提高性能,但代价是内存利用率略高。 默认值为 false。\nConnectionTimeout:一个时间段,用于控制在放弃尝试与服务器建立连接之前等待的时间。 默认值为 15 秒。\nCommandTimeout:一个时间段,用于控制在取消服务器端查询之前允许该查询运行的时间。 默认值为十分钟。\n"
},
"SharePoint.Contents": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/sharepoint-contents",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/sharepoint-contents",
"description-en-us": "Returns a table containing a row for each folder and document found at the specified SharePoint site, url. Each row contains properties of the folder or file and a link to its content. options may be specified to control the following options:\nApiVersion: A number (14 or 15) or the text \"Auto\" that specifies the SharePoint API version to use for this site. When not specified, API version 14 is used. When Auto is specified, the server version will be automatically discovered if possible, otherwise version defaults to 14. Non-English SharePoint sites require at least version 15.\n",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回一个表,该表包含在指定 SharePoint 站点 url 中找到的每个文件夹和文档的行。 每一行都包含文件夹或文件的属性以及指向其内容的链接。 可以指定 options 来控制以下选项:\nApiVersion:一个数字(14 或 15)或文本“Auto”,用于指定此站点要使用的 SharePoint API 版本。 如果未指定,则使用 API 版本 14。 如果指定 Auto,则将自动发现服务器版本(如果可能),否则版本默认为 14。 非英语的 SharePoint 站点至少需要版本 15。\n"
},
"SharePoint.Files": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/sharepoint-files",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/sharepoint-files",
"description-en-us": "Returns a table containing a row for each document found at the specified SharePoint site, url, and subfolders. Each row contains properties of the folder or file and a link to its content. options may be specified to control the following options:\nApiVersion: A number (14 or 15) or the text \"Auto\" that specifies the SharePoint API version to use for this site. When not specified, API version 14 is used. When Auto is specified, the server version will be automatically discovered if possible, otherwise version defaults to 14. Non-English SharePoint sites require at least version 15.\n",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回一个表,其中包含在指定 SharePoint 站点 url 和子文件夹中找到的每个文档的行。 每一行都包含文件夹或文件的属性以及指向其内容的链接。 可以指定 options 来控制以下选项:\nApiVersion:一个数字(14 或 15)或文本“Auto”,用于指定此站点要使用的 SharePoint API 版本。 如果未指定,则使用 API 版本 14。 如果指定 Auto,则将自动发现服务器版本(如果可能),否则版本默认为 14。 非英语的 SharePoint 站点至少需要版本 15。\n"
},
"SharePoint.Tables": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/sharepoint-tables",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/sharepoint-tables",
"description-en-us": "Returns a table containing a row for each List item found at the specified SharePoint list, url. Each row contains properties of the List. options may be specified to control the following options:\nApiVersion: A number (14 or 15) or the text \"Auto\" that specifies the SharePoint API version to use for this site. When not specified, API version 14 is used. When Auto is specified, the server version will be automatically discovered if possible, otherwise version defaults to 14. Non-English SharePoint sites require at least version 15.\nImplementation: Optional. Specifies which version of the SharePoint connector to use. Accepted values are \"2.0\" or null. If the value is \"2.0\", the 2.0 implementation of the SharePoint connector is used. If the value is null, the original implementation of the SharePoint connector is used.\nViewMode: Optional. This option is only valid for implementation 2.0. Accepted values are \"All\" and \"Default\". If no value is specified, the value is set to \"All\". When \"All\"; is specified, the view includes all user-created and system-defined columns. When \"Default\" is specified, the view will match what the user sees when looking at the list online in whichever view that user set as Default in their settings. If the user edits their default view to add or remove either user-created or system-defined columns, or by creating a new view and setting it as default, these changes will propagate through the connector.\n",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回一个表,该表包含在指定 SharePoint 列表 url 处找到的每个列表项的行。 每一行都包含该列表的属性。 可以指定 options 来控制以下选项:\nApiVersion:一个数字(14 或 15)或文本“Auto”,用于指定此站点要使用的 SharePoint API 版本。 如果未指定,则使用 API 版本 14。 如果指定 Auto,则将自动发现服务器版本(如果可能),否则版本默认为 14。 非英语的 SharePoint 站点至少需要版本 15。\nImplementation:可选。 指定要使用的 SharePoint 连接器版本。 接受的值为“2.0”或 null。 如果值为“2.0”,则使用 SharePoint 连接器的 2.0 实现。 如果值为“null”,则使用 SharePoint 连接器的原始实现。\nViewMode:可选。 此选项仅适用于实现 2.0。 接受的值为“All”和“Default”。 如果未指定任何值,则该值设置为“All”。 如果指定为“All”,则视图包括所有用户创建的列和系统定义的列。 如果指定为“Default”,视图将与用户在设置中设置为“Default”的视图中联机查看列表时看到的内容匹配。 如果用户编辑其默认视图以添加或删除用户创建或系统定义的列,或者通过创建新视图并将其设置为默认值,则这些更改将通过连接器传播。\n"
},
"Soda.Feed": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/soda-feed",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/soda-feed",
"description-en-us": "Returns a table from the contents at the specified URL url formatted according to the SODA 2.0 API. The URL must point to a valid SODA-compliant source that ends in a .csv extension.",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "从位于指定 URL url(根据 SODA 2.0 API 进行格式化)的内容中返回一个表。 URL 必须指向与 SODA 兼容的且以 .csv 扩展名结尾的有效的源。"
},
"Sql.Database": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/sql-database",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/sql-database",
"description-en-us": "Returns a table of SQL tables, views, and stored functions from the SQL Server database database on server server. The port may be optionally specified with the server, separated by a colon or a comma. An optional record parameter, options, may be specified to control the following options:\nQuery: A native SQL query used to retrieve data. If the query produces multiple result sets, only the first will be returned.\nCreateNavigationProperties: A logical (true/false) that sets whether to generate navigation properties on the returned values (default is true).\nNavigationPropertyNameGenerator: A function that is used for the creation of names for navigation properties.\nMaxDegreeOfParallelism: A number that sets the value of the \"maxdop\" query clause in the generated SQL query.\nCommandTimeout: A duration that controls how long the server-side query is allowed to run before it is canceled. The default value is ten minutes.\nConnectionTimeout: A duration that controls how long to wait before abandoning an attempt to make a connection to the server. The default value is driver-dependent.\nHierarchicalNavigation: A logical (true/false) that sets whether to view the tables grouped by their schema names (default is false).\nMultiSubnetFailover: A logical (true/false) that sets the value of the \"MultiSubnetFailover\" property in the connection string (default is false).\nUnsafeTypeConversions: A logical (true/false) that, if true, attempts to fold type conversions which could fail and cause the entire query to fail. Not recommended for general use.\nContextInfo: A binary value that is used to set the CONTEXT_INFO before running each command.\nOmitSRID: A logical (true/false) that, if true, omits the SRID when producing Well-Known Text from geometry and geography types.\nEnableCrossDatabaseFolding: A logical (true/false) value that, if true, allows query folding across databases on the same server. The default value is false.\n",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "从服务器 server 上的 SQL Server 数据库 database 中返回 SQL 表、视图和存储函数的表。 使用服务器可以选择性指定端口,并用冒号或逗号分隔。 可以指定可选记录参数 options 来控制以下选项:\nQuery:用于检索数据的本机 SQL 查询。 如果该查询产生多个结果集,则仅返回第一个。\nCreateNavigationProperties:一个逻辑值 (true/false),用于在返回的值上设置是否生成导航属性(默认值为 true)。\nNavigationPropertyNameGenerator:一个函数,用于创建导航属性的名称。\nMaxDegreeOfParallelism:一个数字,用于设置生成的 SQL 查询中“maxdop”查询子句的值。\nCommandTimeout:一个时间段,用于控制在取消服务器端查询之前允许该查询运行的时间。 默认值为十分钟。\nConnectionTimeout:一个时间段,用于控制在放弃尝试与服务器建立连接之前等待的时间。 默认值与驱动程序相关。\nHierarchicalNavigation:一个逻辑值 (true/false),用于设置是否查看按架构名称分组的表(默认值为 false)。\nMultiSubnetFailover:一个逻辑值 (true/false),用于设置连接字符串中“MultiSubnetFailover”属性的值(默认值为 false)。\nUnsafeTypeConversions:一个逻辑值 (true/false);如果为 true,则尝试折叠类型转换的操作可能会失败并导致整个查询失败。 建议不要用于常规用途。\nContextInfo:一个二进制值,用于在运行每个命令之前设置 CONTEXT_INFO。\nOmitSRID:一个逻辑值 (true/false);如果为 true,则在通过几何和地域类型生成熟知文本时会发出 SRID。\nEnableCrossDatabaseFolding:一个逻辑值 (true/false),如果为 true,则允许在同一服务器上跨数据库进行查询折叠。 默认值为 false。\n"
},
"Sql.Databases": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/sql-databases",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/sql-databases",
"description-en-us": "Returns a table of databases on the specified SQL server, server. An optional record parameter, options, may be specified to control the following options:\nCreateNavigationProperties: A logical (true/false) that sets whether to generate navigation properties on the returned values (default is true).\nNavigationPropertyNameGenerator: A function that is used for the creation of names for navigation properties.\nMaxDegreeOfParallelism: A number that sets the value of the \"maxdop\" query clause in the generated SQL query.\nCommandTimeout: A duration that controls how long the server-side query is allowed to run before it is canceled. The default value is ten minutes.\nConnectionTimeout: A duration that controls how long to wait before abandoning an attempt to make a connection to the server. The default value is driver-dependent.\nHierarchicalNavigation: A logical (true/false) that sets whether to view the tables grouped by their schema names (default is false).\nMultiSubnetFailover: A logical (true/false) that sets the value of the \"MultiSubnetFailover\" property in the connection string (default is false).\nUnsafeTypeConversions: A logical (true/false) that, if true, attempts to fold type conversions which could fail and cause the entire query to fail. Not recommended for general use.\nContextInfo: A binary value that is used to set the CONTEXT_INFO before running each command.\nOmitSRID: A logical (true/false) that, if true, omits the SRID when producing Well-Known Text from geometry and geography types.\nEnableCrossDatabaseFolding: A logical (true/false) value that, if true, allows query folding across databases on the same server. The default value is false.\n",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回指定的 SQL Server server 上的数据库表。 可以指定可选记录参数 options 来控制以下选项:\nCreateNavigationProperties:一个逻辑值 (true/false),用于在返回的值上设置是否生成导航属性(默认值为 true)。\nNavigationPropertyNameGenerator:一个函数,用于创建导航属性的名称。\nMaxDegreeOfParallelism:一个数字,用于设置生成的 SQL 查询中“maxdop”查询子句的值。\nCommandTimeout:一个时间段,用于控制在取消服务器端查询之前允许该查询运行的时间。 默认值为十分钟。\nConnectionTimeout:一个时间段,用于控制在放弃尝试与服务器建立连接之前等待的时间。 默认值与驱动程序相关。\nHierarchicalNavigation:一个逻辑值 (true/false),用于设置是否查看按架构名称分组的表(默认值为 false)。\nMultiSubnetFailover:一个逻辑值 (true/false),用于设置连接字符串中“MultiSubnetFailover”属性的值(默认值为 false)。\nUnsafeTypeConversions:一个逻辑值 (true/false);如果为 true,则尝试折叠类型转换的操作可能会失败并导致整个查询失败。 建议不要用于常规用途。\nContextInfo:一个二进制值,用于在运行每个命令之前设置 CONTEXT_INFO。\nOmitSRID:一个逻辑值 (true/false);如果为 true,则在通过几何和地域类型生成熟知文本时会发出 SRID。\nEnableCrossDatabaseFolding:一个逻辑值 (true/false),如果为 true,则允许在同一服务器上跨数据库进行查询折叠。 默认值为 false。\n"
},
"Sybase.Database": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/sybase-database",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/sybase-database",
"description-en-us": "Returns a table of SQL tables and views available in a Sybase database on server server in the database instance named database. The port may be optionally specified with the server, separated by a colon. An optional record parameter, options, may be specified to control the following options:\nCreateNavigationProperties: A logical (true/false) that sets whether to generate navigation properties on the returned values (default is true).\nNavigationPropertyNameGenerator: A function that is used for the creation of names for navigation properties.\nQuery: A native SQL query used to retrieve data. If the query produces multiple result sets, only the first will be returned.\nCommandTimeout: A duration that controls how long the server-side query is allowed to run before it is canceled. The default value is ten minutes.\nConnectionTimeout: A duration that controls how long to wait before abandoning an attempt to make a connection to the server. The default value is driver-dependent.\nHierarchicalNavigation: A logical (true/false) that sets whether to view the tables grouped by their schema names (default is false).\n",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回 SQL 表和视图的表,该表在名为 database 的数据库实例中的服务器 server 上的 Sybase 数据库中可用。 可以使用服务器选择性指定端口,并用冒号分隔。 可以指定可选记录参数 options 来控制以下选项:\nCreateNavigationProperties:一个逻辑值 (true/false),用于在返回的值上设置是否生成导航属性(默认值为 true)。\nNavigationPropertyNameGenerator:一个函数,用于创建导航属性的名称。\nQuery:用于检索数据的本机 SQL 查询。 如果该查询产生多个结果集,则仅返回第一个。\nCommandTimeout:一个时间段,用于控制在取消服务器端查询之前允许该查询运行的时间。 默认值为十分钟。\nConnectionTimeout:一个时间段,用于控制在放弃尝试与服务器建立连接之前等待的时间。 默认值与驱动程序相关。\nHierarchicalNavigation:一个逻辑值 (true/false),用于设置是否查看按架构名称分组的表(默认值为 false)。\n"
},
"Teradata.Database": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/teradata-database",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/teradata-database",
"description-en-us": "Returns a table of SQL tables and views from the Teradata database on server server. The port may be optionally specified with the server, separated by a colon. An optional record parameter, options, may be specified to control the following options:\nCreateNavigationProperties: A logical (true/false) that sets whether to generate navigation properties on the returned values (default is true).\n\nNavigationPropertyNameGenerator: A function that is used for the creation of names for navigation properties.\n\nQuery: A native SQL query used to retrieve data. If the query produces multiple result sets, only the first will be returned.\n\nCommandTimeout: A duration that controls how long the server-side query is allowed to run before it is canceled. The default value is ten minutes.\n\nConnectionTimeout: A duration that controls how long to wait before abandoning an attempt to make a connection to the server. The default value is driver-dependent.\n\nHierarchicalNavigation: A logical (true/false) that sets whether to view the tables grouped by their schema names (default is false).\n\n",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "从服务器 server 上的 Teradata 数据库中返回 SQL 表和视图的表。 可以使用服务器选择性指定端口,并用冒号分隔。 可以指定可选记录参数 options 来控制以下选项:\nCreateNavigationProperties:一个逻辑值 (true/false),用于在返回的值上设置是否生成导航属性(默认值为 true)。\n\nNavigationPropertyNameGenerator:一个函数,用于创建导航属性的名称。\n\nQuery:用于检索数据的本机 SQL 查询。 如果该查询产生多个结果集,则仅返回第一个。\n\nCommandTimeout:一个时间段,用于控制在取消服务器端查询之前允许该查询运行的时间。 默认值为十分钟。\n\nConnectionTimeout:一个时间段,用于控制在放弃尝试与服务器建立连接之前等待的时间。 默认值与驱动程序相关。\n\nHierarchicalNavigation:一个逻辑值 (true/false),用于设置是否查看按架构名称分组的表(默认值为 false)。\n\n"
},
"WebAction.Request": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/webaction-request",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/webaction-request",
"description-en-us": "Creates an action that, when executed, will return the results of performing a method request against url using HTTP as a binary value. An optional record parameter, options, may be provided to specify additional properties. The record can contain the following fields:\nQuery: Programmatically add query parameters to the URL without having to worry about escaping.\nApiKeyName: If the target site has a notion of an API key, this parameter can be used to specify the name (not the value) of the key parameter that must be used in the URL. The actual key value is provided in the credential.\nHeaders: Specifying this value as a record will supply additional headers to an HTTP request.\nTimeout: Specifying this value as a duration will change the timeout for an HTTP request. The default value is 100 seconds.\nExcludedFromCacheKey: Specifying this value as a list will exclude these HTTP header keys from being part of the calculation for caching data.\nIsRetry: Specifying this logical value as true will ignore any existing response in the cache when fetching data.\nManualStatusHandling: Specifying this value as a list will prevent any builtin handling for HTTP requests whose response has one of these status codes.\nRelativePath: Specifying this value as text appends it to the base URL before making the request.\nContent: Specifying this value will cause its contents to become the body of the HTTP request.\n",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "创建以下操作:执行后,将使用 HTTP 针对 url 执行 method 请求的结果作为二进制值返回。 可以提供可选记录参数 options 来指定额外的属性。 记录可以包含以下字段:\nQuery:以编程方式将查询参数添加到 URL,无需担心转义。\nApiKeyName:如果目标站点具有 API 密钥的概念,则可以使用此参数来指定必须在 URL 中使用的密钥参数的名称(而不是值)。 凭据中提供了实际的密钥值。\nHeaders:将此值指定为记录将为 HTTP 请求提供额外的标头。\nTimeout:将此值指定为持续时间将更改 HTTP 请求的超时值。 默认值为 100 秒。\nExcludedFromCacheKey:将此值指定为列表会将这些 HTTP 标头键排除在对缓存数据的计算之外。\nIsRetry:如果将此逻辑值指定为 true,在提取数据时则将忽略缓存中的任何现有响应。\nManualStatusHandling:将此值指定为列表将防止对响应具有以下状态代码之一的 HTTP 请求进行任何内置处理。\nRelativePath:如果将此值指定为文本,那么在发出请求前会将此值追加到基 URL。\nContent:指定此值将导致其内容成为 HTTP 请求的正文。\n"
},
"Web.BrowserContents": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/web-browsercontents",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/web-browsercontents",
"description-en-us": "Returns the HTML for the specified url, as viewed by a web browser. An optional record parameter, options, may be provided to specify additional properties. The record can contain the following fields:\nApiKeyName: If the target site has a notion of an API key, this parameter can be used to specify the name (not the value) of the key parameter that must be used in the URL. The actual key value is provided in the credential.\nWaitFor: Specifies a condition to wait for before downloading the HTML, in addition to waiting for the page to load (which is always done). Can be a record containing Timeout and/or Selector fields. If only a Timeout is specified, the function will wait the amount of time specified before downloading the HTML. If both a Selector and Timeout are specified, and the Timeout elapses before the Selector exists on the page, an error will be thrown. If a Selector is specified with no Timeout, a default Timeout of 30 seconds is applied.\n",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回 Web 浏览器查看的指定的 url 的 HTML。 可以提供可选记录参数 options 来指定额外的属性。 记录可以包含以下字段:\nApiKeyName:如果目标站点具有 API 密钥的概念,则可以使用此参数来指定必须在 URL 中使用的密钥参数的名称(而不是值)。 凭据中提供了实际的密钥值。\nWaitFor:指定除了要等待页面加载(始终有这一步)外,在下载 HTML 之前要等待的条件。 可以是包含超时和/或选择器字段的记录。 如果仅指定了超时,则函数会在下载 HTML 前等待指定的时间。 如果同时指定了选择器和超时,且在超时之后选择器才出现在页面上,将引发错误。 如果指定了选择器而没有指定超时,则默认应用 30 秒的超时值。\n"
},
"Web.Contents": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/web-contents",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/web-contents",
"description-en-us": "Returns the contents downloaded from url as binary. An optional record parameter, options, may be provided to specify additional properties. The record can contain the following fields:\nQuery: Programmatically add query parameters to the URL without having to worry about escaping.\nApiKeyName: If the target site has a notion of an API key, this parameter can be used to specify the name (not the value) of the key parameter that must be used in the URL. The actual key value is provided in the credential.\nHeaders: Specifying this value as a record will supply additional headers to an HTTP request.\nTimeout: Specifying this value as a duration will change the timeout for an HTTP request. The default value is 100 seconds.\nExcludedFromCacheKey: Specifying this value as a list will exclude these HTTP header keys from being part of the calculation for caching data.\nIsRetry: Specifying this logical value as true will ignore any existing response in the cache when fetching data.\nManualStatusHandling: Specifying this value as a list will prevent any builtin handling for HTTP requests whose response has one of these status codes.\nRelativePath: Specifying this value as text appends it to the base URL before making the request.\nContent: Specifying this value changes the web request from a GET to a POST, using the value of the option as the content of the POST.\n",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "以二进制形式返回从 url 下载的内容。 可以提供可选记录参数 options 来指定额外的属性。 记录可以包含以下字段:\nQuery:以编程方式将查询参数添加到 URL,无需担心转义。\nApiKeyName:如果目标站点具有 API 密钥的概念,则可以使用此参数来指定必须在 URL 中使用的密钥参数的名称(而不是值)。 凭据中提供了实际的密钥值。\nHeaders:将此值指定为记录将为 HTTP 请求提供额外的标头。\nTimeout:将此值指定为持续时间将更改 HTTP 请求的超时值。 默认值为 100 秒。\nExcludedFromCacheKey:将此值指定为列表会将这些 HTTP 标头键排除在对缓存数据的计算之外。\nIsRetry:如果将此逻辑值指定为 true,在提取数据时则将忽略缓存中的任何现有响应。\nManualStatusHandling:将此值指定为列表将防止对响应具有以下状态代码之一的 HTTP 请求进行任何内置处理。\nRelativePath:如果将此值指定为文本,那么在发出请求前会将此值追加到基 URL。\nContent:指定此值会将 Web 请求从 GET 更改为 POST,并使用此选项的值作为 POST 的内容。\n"
},
"Web.Headers": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/web-headers",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/web-headers",
"description-en-us": "Returns the headers downloaded from url as a record. An optional record parameter, options, may be provided to specify additional properties. The record can contain the following fields:\nQuery: Programmatically add query parameters to the URL without having to worry about escaping.\nApiKeyName: If the target site has a notion of an API key, this parameter can be used to specify the name (not the value) of the key parameter that must be used in the URL. The actual key value is provided in the credential.\nHeaders: Specifying this value as a record will supply additional headers to an HTTP request.\nTimeout: Specifying this value as a duration will change the timeout for an HTTP request. The default value is 100 seconds.\nExcludedFromCacheKey: Specifying this value as a list will exclude these HTTP header keys from being part of the calculation for caching data.\nIsRetry: Specifying this logical value as true will ignore any existing response in the cache when fetching data.\nManualStatusHandling: Specifying this value as a list will prevent any builtin handling for HTTP requests whose response has one of these status codes.\nRelativePath: Specifying this value as text appends it to the base URL before making the request.\n",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回从 url 下载的标头作为记录。 可以提供可选记录参数 options 来指定额外的属性。 记录可以包含以下字段:\nQuery:以编程方式将查询参数添加到 URL,无需担心转义。\nApiKeyName:如果目标站点具有 API 密钥的概念,则可以使用此参数来指定必须在 URL 中使用的密钥参数的名称(而不是值)。 凭据中提供了实际的密钥值。\nHeaders:将此值指定为记录将为 HTTP 请求提供额外的标头。\nTimeout:将此值指定为持续时间将更改 HTTP 请求的超时值。 默认值为 100 秒。\nExcludedFromCacheKey:将此值指定为列表会将这些 HTTP 标头键排除在对缓存数据的计算之外。\nIsRetry:如果将此逻辑值指定为 true,在提取数据时则将忽略缓存中的任何现有响应。\nManualStatusHandling:将此值指定为列表将防止对响应具有以下状态代码之一的 HTTP 请求进行任何内置处理。\nRelativePath:如果将此值指定为文本,那么在发出请求前会将此值追加到基 URL。\n"
},
"Web.Page": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/web-page",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/web-page",
"description-en-us": "Returns the contents of the HTML document broken into its constituent structures, as well as a representation of the full document and its text after removing tags.",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回 HTML 文档的内容(分解为其组成结构),以及删除标记后的完整文档及其文本的表示形式。"
},
"Xml.Document": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/xml-document",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/xml-document",
"description-en-us": "Returns the contents of the XML document as a hierarchical table.",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回 XML 文档的内容作为层次结构表。"
},
"Xml.Tables": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/xml-tables",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/xml-tables",
"description-en-us": "Returns the contents of the XML document as a nested collection of flattened tables.",
"category-en-us": "Accessing data functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"category-zh-cn": "数据访问函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/accessing-data-functions",
"description-zh-cn": "返回 XML 文档的内容作为平展表的嵌套集合。"
},
"Binary.ApproximateLength": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/binary-approximatelength",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/binary-approximatelength",
"description-en-us": "Returns the approximate length of binary, or an error if the data source doesn't support an approximate length.",
"category-en-us": "Binary functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/binary-functions",
"category-zh-cn": "二进制函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/binary-functions",
"description-zh-cn": "返回 binary 的近似长度,或者如果数据源不支持近似长度,则返回错误。"
},
"Binary.Buffer": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/binary-buffer",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/binary-buffer",
"description-en-us": "Buffers the binary value in memory. The result of this call is a stable binary value, which means it will have a deterministic length and order of bytes.",
"category-en-us": "Binary functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/binary-functions",
"category-zh-cn": "二进制函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/binary-functions",
"description-zh-cn": "缓冲内存中的二进制值。 此调用的结果是一个稳定的二进制值,这意味着它将具有确定性的字节长度和顺序。"
},
"Binary.Combine": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/binary-combine",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/binary-combine",
"description-en-us": "Combines a list of binaries into a single binary.",
"category-en-us": "Binary functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/binary-functions",
"category-zh-cn": "二进制函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/binary-functions",
"description-zh-cn": "将一系列二进制值合并成单个二进制值。"
},
"Binary.Compress": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/binary-compress",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/binary-compress",
"description-en-us": "Compresses a binary value using the given compression type. The result of this call is a compressed copy of the input. Compression types include:\nCompression.GZip\nCompression.Deflate\n",
"category-en-us": "Binary functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/binary-functions",
"category-zh-cn": "二进制函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/binary-functions",
"description-zh-cn": "使用给定的压缩类型压缩二进制值。 此调用的结果是输入的压缩副本。 压缩类型包括:\nCompression.GZip\nCompression.Deflate\n"
},
"Binary.Decompress": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/binary-decompress",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/binary-decompress",
"description-en-us": "Decompresses a binary value using the given compression type. The result of this call is a decompressed copy of the input. Compression types include:\nCompression.GZip\nCompression.Deflate\n",
"category-en-us": "Binary functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/binary-functions",
"category-zh-cn": "二进制函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/binary-functions",
"description-zh-cn": "使用给定压缩类型解压缩二进制值。 此调用的结果是输入内容的解压缩副本。 压缩类型包括:\nCompression.GZip\nCompression.Deflate\n"
},
"Binary.From": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/binary-from",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/binary-from",
"description-en-us": "Returns a binary value from the given value. If the given value is null, Binary.From returns null. If the given value is binary, value is returned. Values of the following types can be converted to a binary value:\ntext: A binary value from the text representation. Refer to Binary.FromText for details.\n",
"category-en-us": "Binary functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/binary-functions",
"category-zh-cn": "二进制函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/binary-functions",
"description-zh-cn": "从给定的 value 返回 binary 值。 如果给定的 value 为 null,则 Binary.From 返回 null。 如果给定的 value 为 binary,则返回 value。 可以将以下类型的值转换为 binary 值:\ntext:文本表示形式的 binary 值。 有关详细信息,请参阅 Binary.FromText。\n"
},
"Binary.FromList": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/binary-fromlist",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/binary-fromlist",
"description-en-us": "Converts a list of numbers into a binary value.",
"category-en-us": "Binary functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/binary-functions",
"category-zh-cn": "二进制函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/binary-functions",
"description-zh-cn": "将一组数值转换为一个二进制值。"
},
"Binary.FromText": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/binary-fromtext",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/binary-fromtext",
"description-en-us": "Returns the result of converting text value text to a binary (list of number). encoding may be specified to indicate the encoding used in the text value. The following BinaryEncoding values may be used for encoding.\nBinaryEncoding.Base64: Base 64 encoding\nBinaryEncoding.Hex: Hex encoding\n",
"category-en-us": "Binary functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/binary-functions",
"category-zh-cn": "二进制函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/binary-functions",
"description-zh-cn": "返回将文本值 text 转换为二进制的结果(number 列表)。 可以将 encoding 指定为表示文本值中使用的编码。 以下 BinaryEncoding 值可以用于 encoding。\nBinaryEncoding.Base64:Base 64 编码\nBinaryEncoding.Hex:十六进制编码\n"
},
"Binary.InferContentType": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/binary-infercontenttype",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/binary-infercontenttype",
"description-en-us": "Returns a record with field Content.Type that contains the inferred MIME-type. If the inferred content type is text/*, and an encoding code page is detected, then additionally returns field Content.Encoding that contains the encoding of the stream. If the inferred content type is text/csv, and the format is delimited, additionally returns field Csv.PotentialDelimiter containing a table for analysis of potential delimiters. If the inferred content type is text/csv, and the format is fixed-width, additionally returns field Csv.PotentialPositions containing a list for analysis of potential fixed width column positions.",
"category-en-us": "Binary functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/binary-functions",
"category-zh-cn": "二进制函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/binary-functions",
"description-zh-cn": "返回一条记录,其中的 Content.Type 字段包含推理出的 MIME 类型。 如果推理出的内容类型为 text/*,且检测到编码代码页,则还会返回包含数据流编码的 Content.Encoding 字段。 如果推理出的内容类型为 text/csv,且格式是分隔的,则还会返回 Csv.PotentialDelimiter 字段,其中包含用于分析潜在分隔符的表。 如果推理出的内容类型为 text/csv,且格式是固定宽度的,则还会返回 Csv.PotentialPositions 字段,其中包含用于分析潜在固定宽度列位置的列表。"
},
"Binary.Length": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/binary-length",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/binary-length",
"description-en-us": "Returns the number of characters.",
"category-en-us": "Binary functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/binary-functions",
"category-zh-cn": "二进制函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/binary-functions",
"description-zh-cn": "返回字符数。"
},
"Binary.Range": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/binary-range",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/binary-range",
"description-en-us": "Returns a subset of the binary value beginning at the offset binary. An optional parameter, offset, sets the maximum length of the subset.",
"category-en-us": "Binary functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/binary-functions",
"category-zh-cn": "二进制函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/binary-functions",
"description-zh-cn": "返回以偏移量 binary 开头的二进制值的子集。 可选参数 offset 设置子集中的最大长度。"
},
"Binary.ToList": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/binary-tolist",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/binary-tolist",
"description-en-us": "Converts a binary value into a list of numbers.",
"category-en-us": "Binary functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/binary-functions",
"category-zh-cn": "二进制函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/binary-functions",
"description-zh-cn": "将一个二进制值转换为一组数值。"
},
"Binary.ToText": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/binary-totext",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/binary-totext",
"description-en-us": "Returns the result of converting a binary list of numbers binary into a text value. Optionally, encoding may be specified to indicate the encoding to be used in the text value produced The following BinaryEncoding values may be used for encoding.\nBinaryEncoding.Base64: Base 64 encoding\nBinaryEncoding.Hex: Hex encoding\n",
"category-en-us": "Binary functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/binary-functions",
"category-zh-cn": "二进制函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/binary-functions",
"description-zh-cn": "返回将数字的二进制列表 binary 转换为文本值的结果。 根据选择,可以指定 encoding,以指示要在生成的文本值中使用的编码,以下 BinaryEncoding 值可以用于 encoding。 BinaryEncoding.Base64:Base64 编码 BinaryEncoding.Hex:十六进制编码 "
},
"Binary.View": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/binary-view",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/binary-view",
"description-en-us": "Returns a view of binary where the functions specified in handlers are used in lieu of the default behavior of an operation when the operation is applied to the view.",
"category-en-us": "Binary functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/binary-functions",
"category-zh-cn": "二进制函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/binary-functions",
"description-zh-cn": "返回 binary 的视图,向视图应用运算时,会使用 handlers 中指定的函数代替运算的默认行为。"
},
"Binary.ViewError": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/binary-viewerror",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/binary-viewerror",
"description-en-us": "Creates a modified error record from errorRecord which won't trigger a fallback when thrown by a handler defined on a view (via Binary.View).",
"category-en-us": "Binary functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/binary-functions",
"category-zh-cn": "二进制函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/binary-functions",
"description-zh-cn": "根据 errorRecord 创建修改后的错误记录,该记录在视图上定义的处理程序引发时(通过 Binary.View)将不会触发回退。"
},
"Binary.ViewFunction": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/binary-viewfunction",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/binary-viewfunction",
"description-en-us": "Creates a view function based on function that can be handled in a view created by Binary.View.",
"category-en-us": "Binary functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/binary-functions",
"category-zh-cn": "二进制函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/binary-functions",
"description-zh-cn": "基于 function 创建视图函数,此函数可以在 Binary.View 创建的视图中进行处理。"
},
"BinaryFormat.7BitEncodedSignedInteger": {
"url-en-us": "https://learn.microsoft.com/en-us/powerquery-m/binaryformat-7bitencodedsignedinteger",
"url-zh-cn": "https://learn.microsoft.com/zh-cn/powerquery-m/binaryformat-7bitencodedsignedinteger",
"description-en-us": "A binary format that reads a 64-bit signed integer that was encoded using a 7-bit variable-length encoding.",
"category-en-us": "Binary functions",
"url-category-en-us": "https://learn.microsoft.com/en-us/powerquery-m/binary-functions",
"category-zh-cn": "二进制函数",
"url-category-zh-cn": "https://learn.microsoft.com/en-us/powerquery-m/binary-functions",
"description-zh-cn": "一种二进制格式,读取使用 7 位可变长度编码进行编码的 64 位带符号整数。"