Skip to content

Commit 9727ffe

Browse files
author
Thomas Mahlberg
committed
update docs
1 parent 14448ec commit 9727ffe

3 files changed

Lines changed: 27 additions & 11 deletions

File tree

KustoSchemaTools/Model/Database.cs

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,4 @@ public class Database
3333

3434
}
3535

36-
public class Deletions
37-
{
38-
public List<string> Tables { get; set; } = new List<string>();
39-
public List<string> Columns { get; set; } = new List<string>();
40-
public List<string> MaterializedViews { get; set; } = new List<string>();
41-
public List<string> Functions { get; set; } = new List<string>();
42-
public List<string> ContinuousExports { get; set; } = new List<string>();
43-
public List<string> ExternalTables { get; set; } = new List<string>();
44-
}
45-
4636
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
namespace KustoSchemaTools.Model
2+
{
3+
public class Deletions
4+
{
5+
public List<string> Tables { get; set; } = new List<string>();
6+
public List<string> Columns { get; set; } = new List<string>();
7+
public List<string> MaterializedViews { get; set; } = new List<string>();
8+
public List<string> Functions { get; set; } = new List<string>();
9+
public List<string> ContinuousExports { get; set; } = new List<string>();
10+
public List<string> ExternalTables { get; set; } = new List<string>();
11+
}
12+
13+
}

README.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,5 +59,18 @@ Currently following features are supported:
5959
* HotCache
6060
* Docstring
6161
* Folder
62+
* External Tables (managed identity/impersonation only)
63+
* Storage / Delta / SQL
64+
* Folder
65+
* Docstring
66+
* Continous Exports
67+
* Entity Groups
68+
* Deleting existing items using deletions in the database definition
69+
* Tables
70+
* Columns
71+
* Functions
72+
* Materialized Views
73+
* Extenal Tables
74+
* Continous Exports
6275

63-
The `DatabaseCleanup` will remove redundant retention and hotcache definitions. It will also pretty print KQL queries in functions, update policies and materialized views.
76+
The `DatabaseCleanup` will remove redundant retention and hotcache definitions. It will also pretty print KQL queries in functions, update policies,materialized views and continous exports.

0 commit comments

Comments
 (0)