Skip to content

Commit 80a23c3

Browse files
authored
Update README.md
1 parent 840fc33 commit 80a23c3

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

README.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ The Module currently has the following cmdlets and more will be added in the fut
2222

2323
If you'd like to see a cmdlet for a specific task, please sumbit an [Issue][newissue]!
2424

25+
---
26+
2527
### [`Connect-Kusto`](./docs/en-US/Connect-Kusto.md)
2628

2729
Main entry point for the cmdlets in this module and it's used to establish a connection with your Azure Data Explorer Cluster.
@@ -34,44 +36,62 @@ The available authentication methods are:
3436
- Secret
3537
- User and Application Access Token
3638

39+
---
40+
3741
### [`Invoke-KustoControlCommand`](./docs/en-US/Invoke-KustoControlCommand.md)
3842

3943
Allows you to invoke [__management commands__](https://learn.microsoft.com/en-us/kusto/management/?view=microsoft-fabric) also known as control commands over an Azure Data Explorer Cluster.
4044

45+
---
46+
4147
### [`Invoke-KustoIngestFromStorage`](./docs/en-US/Invoke-KustoIngestFromStorage.md)
4248

4349
Can be used to ingest local or blob storage files into a table on your Azure Data Explorer Cluster.
4450

51+
---
52+
4553
### [`Invoke-KustoIngestFromStream`](./docs/en-US/Invoke-KustoIngestFromStream.md)
4654

4755
Similar to [`Invoke-KustoIngestFromStorage`](./docs/en-US/Invoke-KustoIngestFromStorage.md), but the source is
4856
[__Stream__](https://learn.microsoft.com/en-us/dotnet/api/system.io.stream) instead of a Path or URI.
4957

58+
---
59+
5060
### [`Invoke-KustoQuery`](./docs/en-US/Invoke-KustoQuery.md)
5161

5262
Allows you to run
5363
[Kusto Query Language (KQL)](https://learn.microsoft.com/en-us/kusto/query/?view=microsoft-fabric) queries or
5464
[T-SQL](https://learn.microsoft.com/en-us/kusto/query/t-sql?view=microsoft-fabric) queries on a
5565
specified Database of your Azure Data Explorer Cluster.
5666

67+
---
68+
5769
### [`New-KustoClientRequestProperties`](./docs/en-US/New-KustoClientRequestProperties.md)
5870

5971
Creates a new `ClientRequestProperties` object
6072
to manage the interaction between client and service. This object can be later on passed as argument to the request cmdlets: [`Invoke-KustoControlCommand`](./docs/en-US/Invoke-KustoControlCommand.md), [`Invoke-KustoQuery`](./docs/en-US/Invoke-KustoQuery.md),
6173
[`Set-KustoBatchingPolicy`](./docs/en-US/Set-KustoBatchingPolicy.md) and [`Set-KustoIngestionMapping`](./docs/en-US/Set-KustoIngestionMapping.md).
6274

75+
---
76+
6377
### [`New-KustoColumnMapping`](./docs/en-US/New-KustoColumnMapping.md)
6478

6579
Creates a new object of type `ColumnMapping`, this object can be later on passed as argument to the [`New-KustoIngestionMapping`](./docs/en-US/New-KustoIngestionMapping.md) cmdlet.
6680

81+
---
82+
6783
### [`New-KustoIngestionMapping`](./docs/en-US/New-KustoIngestionMapping.md)
6884

6985
Creates a new object of type `IngestionMapping` that can be later on passed as argument to the [`Invoke-KustoIngestFromStorage`](./docs/en-US/Invoke-KustoIngestFromStorage.md), [`Invoke-KustoIngestFromStream`](./docs/en-US/Invoke-KustoIngestFromStream.md) and [`Set-KustoIngestionMapping`](./docs/en-US/Set-KustoIngestionMapping.md) commands.
7086

87+
---
88+
7189
### [`Set-KustoBatchingPolicy`](./docs/en-US/Set-KustoBatchingPolicy.md)
7290

7391
Alters the [__Ingestion batching policy__](https://learn.microsoft.com/en-us/kusto/management/batching-policy?view=microsoft-fabric) of a Database or specific Table on an Azure Data Explorer Cluster.
7492

93+
---
94+
7595
### [`Set-KustoIngestionMapping`](./docs/en-US/Set-KustoIngestionMapping.md)
7696

7797
[Creates](https://learn.microsoft.com/en-us/kusto/management/create-ingestion-mapping-command?view=microsoft-fabric) or [updates](https://learn.microsoft.com/en-us/kusto/management/create-or-alter-ingestion-mapping-command?view=microsoft-fabric) an ingestion mapping that can be associated with a specific format and a specific table or database.

0 commit comments

Comments
 (0)