davlee1972 opened a new issue, #1349:
URL: https://github.com/apache/arrow-adbc/issues/1349
I believe this is Snowflake's authentication option using public/private RSA
generated keys..
// AuthTypeTokenAccessor is to use the provided token accessor and
bypass authentication
AuthTypeTokenAccessor
https://github.com/apache/arrow-adbc/blob/cf3b5c0ec6279d2c3f8d48328cfe6dd92e250116/go/adbc/driver/snowflake/driver.go
OptionValueAuthOkta: gosnowflake.AuthTypeOkta,
OptionValueAuthJwt: gosnowflake.AuthTypeJwt,
OptionValueAuthUserPassMFA:
gosnowflake.AuthTypeUsernamePasswordMFA,
https://github.com/snowflakedb/gosnowflake/blob/master/auth.go
```
const (
// AuthTypeSnowflake is the general username password authentication
AuthTypeSnowflake AuthType = iota
// AuthTypeOAuth is the OAuth authentication
AuthTypeOAuth
// AuthTypeExternalBrowser is to use a browser to access an Fed and
perform SSO authentication
AuthTypeExternalBrowser
// AuthTypeOkta is to use a native okta URL to perform SSO
authentication on Okta
AuthTypeOkta
// AuthTypeJwt is to use Jwt to perform authentication
AuthTypeJwt
// AuthTypeTokenAccessor is to use the provided token accessor and
bypass authentication
AuthTypeTokenAccessor
// AuthTypeUsernamePasswordMFA is to use username and password with mfa
AuthTypeUsernamePasswordMFA
)
```
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]