123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- import { App } from '../app/index';
- export declare function getSdkVersion(): string;
- export declare function renameProperties(obj: {
- [key: string]: any;
- }, keyMap: {
- [key: string]: string;
- }): void;
- export declare function addReadonlyGetter(obj: object, prop: string, value: any): void;
- export declare function getExplicitProjectId(app: App): string | null;
- export declare function findProjectId(app: App): Promise<string | null>;
- export declare function getExplicitServiceAccountEmail(app: App): string | null;
- export declare function findServiceAccountEmail(app: App): Promise<string | null>;
- export declare function toWebSafeBase64(data: Buffer): string;
- export declare function formatString(str: string, params?: object): string;
- export declare function generateUpdateMask(obj: any, terminalPaths?: string[], root?: string): string[];
- export declare function transformMillisecondsToSecondsString(milliseconds: number): string;
- export type ParsedResource = {
- projectId?: string;
- locationId?: string;
- resourceId: string;
- };
- export declare function parseResourceName(resourceName: string, resourceIdKey: string): ParsedResource;
|