-
-
Notifications
You must be signed in to change notification settings - Fork 301
/
Copy pathGroupProtectedEnvironments.ts
63 lines (57 loc) · 2.05 KB
/
GroupProtectedEnvironments.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import type { BaseResourceOptions } from '@gitbeaker/requester-utils';
import { ResourceProtectedEnvironments } from '../templates';
import {
ProtectedEnvironmentAccessLevelEntity,
ProtectedEnvironmentSchema,
} from '../templates/ResourceProtectedEnvironments';
import type {
GitlabAPIResponse,
PaginationRequestOptions,
PaginationTypes,
ShowExpanded,
Sudo,
} from '../infrastructure';
export interface GroupProtectedEnvironments<C extends boolean = false> {
all<E extends boolean = false, P extends PaginationTypes = 'offset'>(
groupId: string | number,
options?: { search?: string } & Sudo & ShowExpanded<E> & PaginationRequestOptions<P>,
): Promise<GitlabAPIResponse<ProtectedEnvironmentSchema[], C, E, P>>;
create<E extends boolean = false>(
groupId: string | number,
name: string,
deployAccessLevel: ProtectedEnvironmentAccessLevelEntity[],
options?: {
requiredApprovalCount?: number;
approvalRules?: ProtectedEnvironmentAccessLevelEntity[];
} & Sudo &
ShowExpanded<E>,
): Promise<GitlabAPIResponse<ProtectedEnvironmentSchema, C, E, void>>;
edit<E extends boolean = false>(
groupId: string | number,
name: string,
options?: {
deployAccessLevels?: ProtectedEnvironmentAccessLevelEntity[];
requiredApprovalCount?: number;
approvalRules?: ProtectedEnvironmentAccessLevelEntity[];
} & Sudo &
ShowExpanded<E>,
): Promise<GitlabAPIResponse<ProtectedEnvironmentSchema, C, E, void>>;
show<E extends boolean = false>(
groupId: string | number,
name: string,
options?: Sudo & ShowExpanded<E>,
): Promise<GitlabAPIResponse<ProtectedEnvironmentSchema, C, E, void>>;
remove<E extends boolean = false>(
groupId: string | number,
name: string,
options?: Sudo & ShowExpanded<E>,
): Promise<GitlabAPIResponse<void, C, E, void>>;
}
export class GroupProtectedEnvironments<
C extends boolean = false,
> extends ResourceProtectedEnvironments<C> {
constructor(options: BaseResourceOptions<C>) {
/* istanbul ignore next */
super('groups', options);
}
}