@cloud-copilot/iam-data
Version:
22 lines • 680 B
TypeScript
/**
* Get keys for all services
*
* @returns an array of all service keys
*/
export declare function iamServiceKeys(): 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