UNPKG

@dataroadinc/setup-auth

Version:

CLI tool and programmatic API for automated OAuth setup across cloud platforms

14 lines (13 loc) 608 B
import { GcpAuthenticatedIdentity } from "../../../providers/gcp/creds/identity.js"; import { gcpViewOptions } from "./options.js"; export declare function gcpViewProject(options: gcpViewOptions, identity: GcpAuthenticatedIdentity): Promise<void>; export declare class GcpProjectViewer { private initialized; private readonly identity; private readonly organizationId; private readonly projectId; private readonly projectManager; constructor(identity: GcpAuthenticatedIdentity, organizationId: string, projectId: string); initialize(): Promise<void>; view(): Promise<void>; }