├── .dockerignore ├── .github └── workflows │ └── publish_image.yml ├── .gitignore ├── .gitmodules ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── KustoSchemaCLI.sln ├── KustoSchemaCLI ├── .gitignore ├── ActionInputs.cs ├── DefaultActionInputHandler.cs ├── KustoSchemaCLI.csproj ├── Plugins │ ├── TableGroup.cs │ └── TableGroupPlugin.cs └── Program.cs ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── schema └── myDeployment │ └── clusters.yml └── workflows ├── action.yaml ├── apply.yml ├── diff.yml └── import.yml /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/KustoSchemaToolsAction/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/publish_image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/KustoSchemaToolsAction/HEAD/.github/workflows/publish_image.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/KustoSchemaToolsAction/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/KustoSchemaToolsAction/HEAD/.gitmodules -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | @github/data-engineering -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/KustoSchemaToolsAction/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/KustoSchemaToolsAction/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/KustoSchemaToolsAction/HEAD/Dockerfile -------------------------------------------------------------------------------- /KustoSchemaCLI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/KustoSchemaToolsAction/HEAD/KustoSchemaCLI.sln -------------------------------------------------------------------------------- /KustoSchemaCLI/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/KustoSchemaToolsAction/HEAD/KustoSchemaCLI/.gitignore -------------------------------------------------------------------------------- /KustoSchemaCLI/ActionInputs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/KustoSchemaToolsAction/HEAD/KustoSchemaCLI/ActionInputs.cs -------------------------------------------------------------------------------- /KustoSchemaCLI/DefaultActionInputHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/KustoSchemaToolsAction/HEAD/KustoSchemaCLI/DefaultActionInputHandler.cs -------------------------------------------------------------------------------- /KustoSchemaCLI/KustoSchemaCLI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/KustoSchemaToolsAction/HEAD/KustoSchemaCLI/KustoSchemaCLI.csproj -------------------------------------------------------------------------------- /KustoSchemaCLI/Plugins/TableGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/KustoSchemaToolsAction/HEAD/KustoSchemaCLI/Plugins/TableGroup.cs -------------------------------------------------------------------------------- /KustoSchemaCLI/Plugins/TableGroupPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/KustoSchemaToolsAction/HEAD/KustoSchemaCLI/Plugins/TableGroupPlugin.cs -------------------------------------------------------------------------------- /KustoSchemaCLI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/KustoSchemaToolsAction/HEAD/KustoSchemaCLI/Program.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/KustoSchemaToolsAction/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/KustoSchemaToolsAction/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/KustoSchemaToolsAction/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/KustoSchemaToolsAction/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /schema/myDeployment/clusters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/KustoSchemaToolsAction/HEAD/schema/myDeployment/clusters.yml -------------------------------------------------------------------------------- /workflows/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/KustoSchemaToolsAction/HEAD/workflows/action.yaml -------------------------------------------------------------------------------- /workflows/apply.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/KustoSchemaToolsAction/HEAD/workflows/apply.yml -------------------------------------------------------------------------------- /workflows/diff.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/KustoSchemaToolsAction/HEAD/workflows/diff.yml -------------------------------------------------------------------------------- /workflows/import.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/KustoSchemaToolsAction/HEAD/workflows/import.yml --------------------------------------------------------------------------------