Skip to content

Commit 652c37d

Browse files
author
Kusto Build System
committed
Auto-sync from Azure-Kusto-Service
1 parent 7767f27 commit 652c37d

3 files changed

Lines changed: 17 additions & 0 deletions

File tree

src/Kusto.Language.Generators/EngineCommandInfos.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3677,6 +3677,11 @@ [partition by
36773677
"clear cluster cache credstore",
36783678
UnknownResult);
36793679

3680+
public static readonly CommandInfo ClearClusterOutboundAccessPolicyCache =
3681+
new CommandInfo(nameof(ClearClusterOutboundAccessPolicyCache),
3682+
"clear cluster cache outboundaccesspolicy",
3683+
UnknownResult);
3684+
36803685
public static readonly CommandInfo ClearClusterGroupMembershipCache =
36813686
new CommandInfo(nameof(ClearClusterGroupMembershipCache),
36823687
"clear cluster cache groupmembership [with '(' { PropertyName=<name> '=' Value=<value>, ',' } ')']",

src/Kusto.Language/Parser/CodeGen/EngineCommandGrammar.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7820,6 +7820,13 @@ internal override CommandParserInfo[] CreateCommandParsers(PredefinedRuleParsers
78207820
Token("cache"),
78217821
Token("credstore")));
78227822

7823+
var ClearClusterOutboundAccessPolicyCache = Command("ClearClusterOutboundAccessPolicyCache",
7824+
Custom(
7825+
Token("clear", CompletionKind.CommandPrefix),
7826+
Token("cluster"),
7827+
Token("cache"),
7828+
Token("outboundaccesspolicy")));
7829+
78237830
var ClearClusterGroupMembershipCache = Command("ClearClusterGroupMembershipCache",
78247831
Custom(
78257832
Token("clear", CompletionKind.CommandPrefix),
@@ -8486,6 +8493,7 @@ internal override CommandParserInfo[] CreateCommandParsers(PredefinedRuleParsers
84868493
new CommandParserInfo("ShowExtentCorruptedDatetime", ShowExtentCorruptedDatetime),
84878494
new CommandParserInfo("PatchExtentCorruptedDatetime", PatchExtentCorruptedDatetime),
84888495
new CommandParserInfo("ClearClusterCredStoreCache", ClearClusterCredStoreCache),
8496+
new CommandParserInfo("ClearClusterOutboundAccessPolicyCache", ClearClusterOutboundAccessPolicyCache),
84898497
new CommandParserInfo("ClearClusterGroupMembershipCache", ClearClusterGroupMembershipCache),
84908498
new CommandParserInfo("ClearExternalArtifactsCache", ClearExternalArtifactsCache),
84918499
new CommandParserInfo("ShowDatabasesEntities", ShowDatabasesEntities),

src/Kusto.Language/Parser/CodeGen/EngineCommands.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1974,6 +1974,9 @@ public static class EngineCommands
19741974
public static readonly CommandSymbol ClearClusterCredStoreCache =
19751975
new CommandSymbol("ClearClusterCredStoreCache", _schema19);
19761976

1977+
public static readonly CommandSymbol ClearClusterOutboundAccessPolicyCache =
1978+
new CommandSymbol("ClearClusterOutboundAccessPolicyCache", _schema19);
1979+
19771980
public static readonly CommandSymbol ClearClusterGroupMembershipCache =
19781981
new CommandSymbol("ClearClusterGroupMembershipCache", _schema19);
19791982

@@ -2602,6 +2605,7 @@ public static class EngineCommands
26022605
ShowExtentCorruptedDatetime,
26032606
PatchExtentCorruptedDatetime,
26042607
ClearClusterCredStoreCache,
2608+
ClearClusterOutboundAccessPolicyCache,
26052609
ClearClusterGroupMembershipCache,
26062610
ClearExternalArtifactsCache,
26072611
ShowDatabasesEntities,

0 commit comments

Comments
 (0)