| 12345678910111213141516171819202122232425262728293031 |
- import { WebResource } from "@azure/ms-rest-js";
- import { Environment } from "@azure/ms-rest-azure-env";
- import { TokenClientCredentials } from "./tokenClientCredentials";
- import { TokenResponse, AuthenticationContext, TokenCache } from "adal-node";
- export declare abstract class TokenCredentialsBase implements TokenClientCredentials {
- readonly clientId: string;
- domain: string;
- readonly tokenAudience?: string | undefined;
- readonly environment: Environment;
- tokenCache: TokenCache;
- readonly authContext: AuthenticationContext;
- constructor(clientId: string, domain: string, tokenAudience?: string | undefined, environment?: Environment, tokenCache?: TokenCache);
- protected getActiveDirectoryResourceId(): string;
- protected getTokenFromCache(username?: string): Promise<TokenResponse>;
- /**
- * Tries to get the token from cache initially. If that is unsuccessful then it tries to get the token from ADAL.
- * @returns {Promise<TokenResponse>}
- * {object} [tokenResponse] The tokenResponse (tokenType and accessToken are the two important properties).
- * @memberof TokenCredentialsBase
- */
- abstract getToken(): Promise<TokenResponse>;
- /**
- * Signs a request with the Authentication header.
- *
- * @param {webResource} The WebResource to be signed.
- * @param {function(error)} callback The callback function.
- * @return {undefined}
- */
- signRequest(webResource: WebResource): Promise<WebResource>;
- }
- //# sourceMappingURL=tokenCredentialsBase.d.ts.map
|