gitbeaker/packages/core/src/resources/ServiceAccounts.ts

22 lines
732 B
TypeScript

import { BaseResource } from '@gitbeaker/requester-utils';
import { RequestHelper, endpoint } from '../infrastructure';
import type { GitlabAPIResponse, ShowExpanded, Sudo } from '../infrastructure';
export interface ServiceAccountSchema extends Record<string, unknown> {
id: number;
name: string;
username: string;
state: string;
locked: boolean;
avatar_url: string;
web_url: string;
}
export class ServiceAccounts<C extends boolean = false> extends BaseResource<C> {
create<E extends boolean = false>(
options?: Sudo & ShowExpanded<E>,
): Promise<GitlabAPIResponse<ServiceAccountSchema, C, E, void>> {
return RequestHelper.post<ServiceAccountSchema>()(this, endpoint`service_accounts`, options);
}
}