-
-
Notifications
You must be signed in to change notification settings - Fork 297
/
GroupVariables.ts
67 lines (61 loc) · 1.99 KB
/
GroupVariables.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
64
65
66
67
import type { BaseResourceOptions } from '@gitbeaker/requester-utils';
import { ResourceVariables } from '../templates';
import type { VariableFilter, VariableSchema, VariableType } from '../templates/ResourceVariables';
import type {
GitlabAPIResponse,
PaginationRequestOptions,
PaginationTypes,
ShowExpanded,
Sudo,
} from '../infrastructure';
export interface GroupVariables<C extends boolean = false> extends ResourceVariables<C> {
all<E extends boolean = false, P extends PaginationTypes = 'offset'>(
groupId: string | number,
options?: Sudo & ShowExpanded<E> & PaginationRequestOptions<P>,
): Promise<GitlabAPIResponse<VariableSchema[], C, E, P>>;
create<E extends boolean = false>(
groupId: string | number,
key: string,
value: string,
options?: {
variableType?: VariableType;
protected?: boolean;
masked?: boolean;
environmentScope?: string;
description?: string;
raw?: boolean;
} & Sudo &
ShowExpanded<E>,
): Promise<GitlabAPIResponse<VariableSchema, C, E, void>>;
edit<E extends boolean = false>(
groupId: string | number,
key: string,
value: string,
options?: {
variableType?: VariableType;
protected?: boolean;
masked?: boolean;
environmentScope?: string;
description?: string;
raw?: boolean;
filter: VariableFilter;
} & Sudo &
ShowExpanded<E>,
): Promise<GitlabAPIResponse<VariableSchema, C, E, void>>;
show<E extends boolean = false>(
groupId: string | number,
key: string,
options?: Sudo & ShowExpanded<E>,
): Promise<GitlabAPIResponse<VariableSchema, C, E, void>>;
remove<E extends boolean = false>(
groupId: string | number,
key: string,
options?: Sudo & ShowExpanded<E>,
): Promise<GitlabAPIResponse<void, C, E, void>>;
}
export class GroupVariables<C extends boolean = false> extends ResourceVariables<C> {
constructor(options: BaseResourceOptions<C>) {
/* istanbul ignore next */
super('groups', options);
}
}