davidhcoe commented on code in PR #2655:
URL: https://github.com/apache/arrow-adbc/pull/2655#discussion_r2052897073


##########
csharp/src/Drivers/BigQuery/BigQueryParameters.cs:
##########
@@ -50,10 +54,18 @@ public class BigQueryParameters
     public class BigQueryConstants
     {
         public const string UserAuthenticationType = "user";
+        public const string EntraIdAuthenticationType = "aad";
         public const string ServiceAccountAuthenticationType = "service";
         public const string TokenEndpoint = 
"https://accounts.google.com/o/oauth2/token";;
         public const string TreatLargeDecimalAsString = "true";
 
+        // Entra ID / Azure AD constants
+        public const string GrantType = 
"urn:ietf:params:oauth:grant-type:token-exchange";
+        public const string SubjectTokenType = 
"urn:ietf:params:oauth:token-type:id_token";
+        public const string RequestedTokenType = 
"urn:ietf:params:oauth:token-type:access_token";
+        public const string EntraIdScope = 
"https://www.googleapis.com/auth/cloud-platform";;
+        public const string StsTokenEndpoint = 
"https://sts.googleapis.com/v1/token";;

Review Comment:
   Converted to internal



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to