snowflake-sdk
Version:
Node.js driver for Snowflake
31 lines • 701 B
JavaScript
const Util = require('../util');
/**
* Creates an oauth PAT authenticator.
*
* @param {String} token
* @param {String} password
*
* @returns {Object}
* @constructor
*/
function AuthOauthPAT(token, password) {
/**
* Update JSON body with token.
*
* @param {JSON} body
*
* @returns {null}
*/
this.updateBody = function (body) {
if (Util.exists(token)) {
body['data']['TOKEN'] = token;
}
else if (Util.exists(password)) {
body['data']['TOKEN'] = password;
}
};
this.authenticate = async function () { };
}
module.exports = AuthOauthPAT;
//# sourceMappingURL=auth_oauth_pat.js.map
;