@rockcarver/frodo-lib
Version:
A library to manage ForgeRock Identity Cloud tenants, ForgeOps deployments, and classic deployments.
17 lines • 540 B
TypeScript
import { State } from '../../shared/State';
/**
* Service Account Scopes object
*/
export type ServiceAccountScope = {
scope: string;
description?: string;
childScopes?: ServiceAccountScope[];
};
/**
* Get available service account scopes
* @returns {Promise<ServiceAccountScope>} a promise that resolves to an array of ServiceAccountScope objects
*/
export declare function getServiceAccountScopes({ state, }: {
state: State;
}): Promise<ServiceAccountScope[]>;
//# sourceMappingURL=EnvServiceAccountScopesApi.d.ts.map