UNPKG

@cloud-copilot/iam-data

Version:
28 lines 861 B
/** * Get keys for all services * * @returns an array of all service keys */ export declare function iamServiceKeys(): Promise<string[]>; /** * Get keys for all services with RCP support * * @returns an array of service keys that support RCPs */ export declare function servicesWithRcpSupport(): Promise<string[]>; /** * Check if a service exists * * @param serviceKey the service key to check, is case insensitive * @returns true if the service exists, false otherwise */ export declare function iamServiceExists(serviceKey: string): Promise<boolean>; /** * Get the name of a service * * @param serviceKey the service key to get the name for * @throws error if the service does not exist * @returns the name of the service */ export declare function iamServiceName(serviceKey: string): Promise<string>; //# sourceMappingURL=services.d.ts.map