From 21f7463cd48e70045039d274f7df553aec9cff1a Mon Sep 17 00:00:00 2001 From: Kusto Build System Date: Tue, 4 Feb 2025 16:15:18 +0000 Subject: [PATCH] Auto-sync from Azure-Kusto-Service --- src/Kusto.Language/Options.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Kusto.Language/Options.cs b/src/Kusto.Language/Options.cs index 7e6b21b1..5aafb342 100644 --- a/src/Kusto.Language/Options.cs +++ b/src/Kusto.Language/Options.cs @@ -139,6 +139,9 @@ The property is an array of materialized views names and the shuffle keys to use public static readonly OptionSymbol RequestCalloutDisabled = new OptionSymbol("request_callout_disabled", @"If specified, indicates that the request can't call-out to a user-provided service.", ScalarTypes.Bool); + public static readonly OptionSymbol RequestCrossClusterToken = + new OptionSymbol("request_cross_cluster_token", @"Cryptographically-strong indication the query is being sent from one cluster to another, as a cross-cluster query", ScalarTypes.String); + public static readonly OptionSymbol RequestDescription = new OptionSymbol("request_description", @"Arbitrary text that the author of the request wants to include as the request description.", ScalarTypes.String); @@ -230,6 +233,7 @@ The property is an array of materialized views names and the shuffle keys to use RequestAppName, RequestBlockRowLevelSecurity, RequestCalloutDisabled, + RequestCrossClusterToken, RequestDescription, RequestExternalDataDisabled, RequestExternalTableDisabled,