Skip to content

Commit 5cf975f

Browse files
committed
updating readme
1 parent 7d67d70 commit 5cf975f

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,15 @@ PowerShell Module for Azure Data Explorer management, query and ingestion
1414

1515
</div>
1616

17-
PowerShellKusto is an abstraction over [`Microsoft.Azure.Kusto.Data`][kustodata] and [`Microsoft.Azure.Kusto.Ingest`][kustoingest], to simplify the process of Azure Data Explorer management, query and ingestion. The cmdlet currently has the following cmdlets and more will be added in the future. If you'd like to see a cmdlet for a specific task, please sumbit a [new Issue][newissue]!
17+
PowerShellKusto is an abstraction over [`Microsoft.Azure.Kusto.Data`][kustodata] and [`Microsoft.Azure.Kusto.Ingest`][kustoingest], to simplify the process of Azure Data Explorer management, query and ingestion.
1818

1919
## Commands
2020

21-
### `Connect-Kusto`
21+
The Module currently has the following cmdlets and more will be added in the future.
22+
23+
If you'd like to see a cmdlet for a specific task, please sumbit an [Issue][newissue]!
24+
25+
### [`Connect-Kusto`](./docs/en-US/Connect-Kusto.md)
2226

2327
Main entry point for the cmdlets in this module and it's used to establish a connection with your Azure Data Explorer Cluster.
2428

@@ -30,52 +34,48 @@ The available authentication methods are:
3034
- Secret
3135
- User and Application Access Token
3236

33-
### `Invoke-KustoControlCommand`
37+
### [`Invoke-KustoControlCommand`](./docs/en-US/Invoke-KustoControlCommand.md)
3438

3539
Allows you to invoke management commands also known as control commands over an Azure Data Explorer Cluster. For detailed information on this topic check out [__Management commands overview__](https://learn.microsoft.com/en-us/kusto/management/?view=microsoft-fabric).
3640

37-
### `Invoke-KustoIngestFromStorage`
41+
### [`Invoke-KustoIngestFromStorage`](./docs/en-US/Invoke-KustoIngestFromStorage.md)
3842

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

41-
### `Invoke-KustoIngestFromStream`
45+
### [`Invoke-KustoIngestFromStream`](./docs/en-US/Invoke-KustoIngestFromStream.md)
4246

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

46-
### `Invoke-KustoQuery`
50+
### [`Invoke-KustoQuery`](./docs/en-US/Invoke-KustoQuery.md)
4751

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

53-
### `New-KustoClientRequestProperties`
57+
### [`New-KustoClientRequestProperties`](./docs/en-US/New-KustoClientRequestProperties.md)
5458

5559
Creates a new `ClientRequestProperties` object
5660
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),
5761
[`Set-KustoBatchingPolicy`](./docs/en-US/Set-KustoBatchingPolicy.md) and [`Set-KustoIngestionMapping`](./docs/en-US/Set-KustoIngestionMapping.md).
5862

59-
### `New-KustoColumnMapping`
63+
### [`New-KustoColumnMapping`](./docs/en-US/New-KustoColumnMapping.md)
6064

6165
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.
6266

63-
### `New-KustoIngestionMapping`
67+
### [`New-KustoIngestionMapping`](./docs/en-US/New-KustoIngestionMapping.md)
6468

6569
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.
6670

67-
### `Set-KustoBatchingPolicy`
71+
### [`Set-KustoBatchingPolicy`](./docs/en-US/Set-KustoBatchingPolicy.md)
6872

6973
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.
7074

71-
### `Set-KustoIngestionMapping`
75+
### [`Set-KustoIngestionMapping`](./docs/en-US/Set-KustoIngestionMapping.md)
7276

7377
[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.
7478

75-
## Documentation
76-
77-
Check out [__the docs__](./docs/en-US/) for information about how to use this Module.
78-
7979
## Installation
8080

8181
### Gallery

0 commit comments

Comments
 (0)