1 | import { GoogleAuth } from './auth/googleauth';
|
2 | export * as gcpMetadata from 'gcp-metadata';
|
3 | export * as gaxios from 'gaxios';
|
4 | import { AuthClient } from './auth/authclient';
|
5 | export { AuthClient, DEFAULT_UNIVERSE } from './auth/authclient';
|
6 | export { Compute, ComputeOptions } from './auth/computeclient';
|
7 | export { CredentialBody, CredentialRequest, Credentials, JWTInput, } from './auth/credentials';
|
8 | export { GCPEnv } from './auth/envDetect';
|
9 | export { GoogleAuthOptions, ProjectIdCallback } from './auth/googleauth';
|
10 | export { IAMAuth, RequestMetadata } from './auth/iam';
|
11 | export { IdTokenClient, IdTokenProvider } from './auth/idtokenclient';
|
12 | export { Claims, JWTAccess } from './auth/jwtaccess';
|
13 | export { JWT, JWTOptions } from './auth/jwtclient';
|
14 | export { Impersonated, ImpersonatedOptions } from './auth/impersonated';
|
15 | export { Certificates, CodeChallengeMethod, CodeVerifierResults, GenerateAuthUrlOpts, GetTokenOptions, OAuth2Client, OAuth2ClientOptions, RefreshOptions, TokenInfo, VerifyIdTokenOptions, ClientAuthentication, } from './auth/oauth2client';
|
16 | export { LoginTicket, TokenPayload } from './auth/loginticket';
|
17 | export { UserRefreshClient, UserRefreshClientOptions, } from './auth/refreshclient';
|
18 | export { AwsClient, AwsClientOptions, AwsSecurityCredentialsSupplier, } from './auth/awsclient';
|
19 | export { AwsSecurityCredentials, AwsRequestSigner, } from './auth/awsrequestsigner';
|
20 | export { IdentityPoolClient, IdentityPoolClientOptions, SubjectTokenSupplier, } from './auth/identitypoolclient';
|
21 | export { ExternalAccountClient, ExternalAccountClientOptions, } from './auth/externalclient';
|
22 | export { BaseExternalAccountClient, BaseExternalAccountClientOptions, SharedExternalAccountClientOptions, ExternalAccountSupplierContext, IamGenerateAccessTokenResponse, } from './auth/baseexternalclient';
|
23 | export { CredentialAccessBoundary, DownscopedClient, } from './auth/downscopedclient';
|
24 | export { PluggableAuthClient, PluggableAuthClientOptions, ExecutableError, } from './auth/pluggable-auth-client';
|
25 | export { PassThroughClient } from './auth/passthrough';
|
26 | export { DefaultTransporter } from './transporters';
|
27 | type ALL_EXPORTS = (typeof import('./'))[keyof typeof import('./')];
|
28 |
|
29 |
|
30 |
|
31 | export type AnyAuthClient = InstanceType<Extract<ALL_EXPORTS, typeof AuthClient>>;
|
32 | declare const auth: GoogleAuth<import("./auth/googleauth").JSONClient>;
|
33 | export { auth, GoogleAuth };
|