@pulumi/gitlab 8.11.0-alpha.1744696458 → 8.11.0-alpha.1744947222
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/branch.d.ts +2 -2
- package/getBranch.d.ts +1 -1
- package/getGroup.d.ts +2 -2
- package/getGroup.js +2 -2
- package/getGroupHook.d.ts +2 -2
- package/getGroupHook.js +2 -2
- package/getGroupHooks.d.ts +2 -2
- package/getGroupHooks.js +2 -2
- package/getGroupSubgroups.d.ts +2 -2
- package/getGroupSubgroups.js +2 -2
- package/getProject.d.ts +18 -2
- package/getProject.js +4 -2
- package/getProject.js.map +1 -1
- package/getProjectHook.d.ts +2 -2
- package/getProjectHook.js +2 -2
- package/getProjectHooks.d.ts +2 -2
- package/getProjectHooks.js +2 -2
- package/getUser.d.ts +2 -2
- package/getUser.js +2 -2
- package/getUserSshkeys.d.ts +2 -2
- package/getUserSshkeys.js +2 -2
- package/getUsers.d.ts +2 -2
- package/getUsers.js +2 -2
- package/group.d.ts +1 -1
- package/groupAccessToken.d.ts +15 -3
- package/groupAccessToken.js +2 -0
- package/groupAccessToken.js.map +1 -1
- package/groupDependencyProxy.d.ts +131 -0
- package/groupDependencyProxy.js +107 -0
- package/groupDependencyProxy.js.map +1 -0
- package/groupLdapLink.d.ts +18 -6
- package/groupLdapLink.js +2 -0
- package/groupLdapLink.js.map +1 -1
- package/groupMembership.d.ts +5 -5
- package/groupShareGroup.d.ts +3 -3
- package/index.d.ts +3 -0
- package/index.js +8 -3
- package/index.js.map +1 -1
- package/integrationCustomIssueTracker.d.ts +1 -1
- package/integrationCustomIssueTracker.js +1 -1
- package/integrationEmailsOnPush.d.ts +1 -1
- package/integrationEmailsOnPush.js +1 -1
- package/integrationExternalWiki.d.ts +1 -1
- package/integrationExternalWiki.js +1 -1
- package/integrationGithub.d.ts +1 -1
- package/integrationGithub.js +1 -1
- package/integrationJenkins.d.ts +1 -1
- package/integrationJenkins.js +1 -1
- package/integrationJira.d.ts +10 -4
- package/integrationJira.js +1 -1
- package/integrationJira.js.map +1 -1
- package/integrationMattermost.d.ts +1 -1
- package/integrationMattermost.js +1 -1
- package/integrationMicrosoftTeams.d.ts +1 -1
- package/integrationMicrosoftTeams.js +1 -1
- package/integrationPipelinesEmail.d.ts +1 -1
- package/integrationPipelinesEmail.js +1 -1
- package/integrationSlack.d.ts +1 -1
- package/integrationSlack.js +1 -1
- package/integrationTelegram.d.ts +1 -1
- package/integrationTelegram.js +1 -1
- package/package.json +2 -2
- package/personalAccessToken.d.ts +12 -0
- package/personalAccessToken.js +2 -0
- package/personalAccessToken.js.map +1 -1
- package/project.d.ts +27 -3
- package/project.js +4 -0
- package/project.js.map +1 -1
- package/projectAccessToken.d.ts +15 -3
- package/projectAccessToken.js +2 -0
- package/projectAccessToken.js.map +1 -1
- package/projectJobTokenScopes.d.ts +35 -1
- package/projectJobTokenScopes.js +25 -1
- package/projectJobTokenScopes.js.map +1 -1
- package/projectMembership.d.ts +3 -3
- package/projectShareGroup.d.ts +6 -6
- package/serviceCustomIssueTracker.d.ts +1 -1
- package/serviceCustomIssueTracker.js +1 -1
- package/serviceEmailsOnPush.d.ts +1 -1
- package/serviceEmailsOnPush.js +1 -1
- package/serviceExternalWiki.d.ts +1 -1
- package/serviceExternalWiki.js +1 -1
- package/serviceGithub.d.ts +1 -1
- package/serviceGithub.js +1 -1
- package/serviceJira.d.ts +10 -4
- package/serviceJira.js +1 -1
- package/serviceJira.js.map +1 -1
- package/serviceMicrosoftTeams.d.ts +1 -1
- package/serviceMicrosoftTeams.js +1 -1
- package/servicePipelinesEmail.d.ts +1 -1
- package/servicePipelinesEmail.js +1 -1
- package/serviceSlack.d.ts +1 -1
- package/serviceSlack.js +1 -1
- package/types/output.d.ts +9 -1
package/branch.d.ts
CHANGED
|
@@ -88,7 +88,7 @@ export declare class Branch extends pulumi.CustomResource {
|
|
|
88
88
|
*/
|
|
89
89
|
readonly keepOnDestroy: pulumi.Output<boolean | undefined>;
|
|
90
90
|
/**
|
|
91
|
-
* Bool, true if the branch has been merged into
|
|
91
|
+
* Bool, true if the branch has been merged into its parent.
|
|
92
92
|
*/
|
|
93
93
|
readonly merged: pulumi.Output<boolean>;
|
|
94
94
|
/**
|
|
@@ -149,7 +149,7 @@ export interface BranchState {
|
|
|
149
149
|
*/
|
|
150
150
|
keepOnDestroy?: pulumi.Input<boolean>;
|
|
151
151
|
/**
|
|
152
|
-
* Bool, true if the branch has been merged into
|
|
152
|
+
* Bool, true if the branch has been merged into its parent.
|
|
153
153
|
*/
|
|
154
154
|
merged?: pulumi.Input<boolean>;
|
|
155
155
|
/**
|
package/getBranch.d.ts
CHANGED
package/getGroup.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import * as outputs from "./types/output";
|
|
|
3
3
|
/**
|
|
4
4
|
* The `gitlab.Group` data source allows details of a group to be retrieved by its id or full path.
|
|
5
5
|
*
|
|
6
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/groups/#
|
|
6
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/groups/#get-a-single-group)
|
|
7
7
|
*/
|
|
8
8
|
export declare function getGroup(args?: GetGroupArgs, opts?: pulumi.InvokeOptions): Promise<GetGroupResult>;
|
|
9
9
|
/**
|
|
@@ -115,7 +115,7 @@ export interface GetGroupResult {
|
|
|
115
115
|
/**
|
|
116
116
|
* The `gitlab.Group` data source allows details of a group to be retrieved by its id or full path.
|
|
117
117
|
*
|
|
118
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/groups/#
|
|
118
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/groups/#get-a-single-group)
|
|
119
119
|
*/
|
|
120
120
|
export declare function getGroupOutput(args?: GetGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetGroupResult>;
|
|
121
121
|
/**
|
package/getGroup.js
CHANGED
|
@@ -8,7 +8,7 @@ const utilities = require("./utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* The `gitlab.Group` data source allows details of a group to be retrieved by its id or full path.
|
|
10
10
|
*
|
|
11
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/groups/#
|
|
11
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/groups/#get-a-single-group)
|
|
12
12
|
*/
|
|
13
13
|
function getGroup(args, opts) {
|
|
14
14
|
args = args || {};
|
|
@@ -22,7 +22,7 @@ exports.getGroup = getGroup;
|
|
|
22
22
|
/**
|
|
23
23
|
* The `gitlab.Group` data source allows details of a group to be retrieved by its id or full path.
|
|
24
24
|
*
|
|
25
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/groups/#
|
|
25
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/groups/#get-a-single-group)
|
|
26
26
|
*/
|
|
27
27
|
function getGroupOutput(args, opts) {
|
|
28
28
|
args = args || {};
|
package/getGroupHook.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
/**
|
|
3
3
|
* The `gitlab.GroupHook` data source allows to retrieve details about a hook in a group.
|
|
4
4
|
*
|
|
5
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/
|
|
5
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/group_webhooks/#get-a-group-hook)
|
|
6
6
|
*/
|
|
7
7
|
export declare function getGroupHook(args: GetGroupHookArgs, opts?: pulumi.InvokeOptions): Promise<GetGroupHookResult>;
|
|
8
8
|
/**
|
|
@@ -114,7 +114,7 @@ export interface GetGroupHookResult {
|
|
|
114
114
|
/**
|
|
115
115
|
* The `gitlab.GroupHook` data source allows to retrieve details about a hook in a group.
|
|
116
116
|
*
|
|
117
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/
|
|
117
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/group_webhooks/#get-a-group-hook)
|
|
118
118
|
*/
|
|
119
119
|
export declare function getGroupHookOutput(args: GetGroupHookOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetGroupHookResult>;
|
|
120
120
|
/**
|
package/getGroupHook.js
CHANGED
|
@@ -8,7 +8,7 @@ const utilities = require("./utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* The `gitlab.GroupHook` data source allows to retrieve details about a hook in a group.
|
|
10
10
|
*
|
|
11
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/
|
|
11
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/group_webhooks/#get-a-group-hook)
|
|
12
12
|
*/
|
|
13
13
|
function getGroupHook(args, opts) {
|
|
14
14
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
@@ -21,7 +21,7 @@ exports.getGroupHook = getGroupHook;
|
|
|
21
21
|
/**
|
|
22
22
|
* The `gitlab.GroupHook` data source allows to retrieve details about a hook in a group.
|
|
23
23
|
*
|
|
24
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/
|
|
24
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/group_webhooks/#get-a-group-hook)
|
|
25
25
|
*/
|
|
26
26
|
function getGroupHookOutput(args, opts) {
|
|
27
27
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
package/getGroupHooks.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import * as outputs from "./types/output";
|
|
|
3
3
|
/**
|
|
4
4
|
* The `gitlab.getGroupHooks` data source allows to retrieve details about hooks in a group.
|
|
5
5
|
*
|
|
6
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/
|
|
6
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/group_webhooks/#list-group-hooks)
|
|
7
7
|
*/
|
|
8
8
|
export declare function getGroupHooks(args: GetGroupHooksArgs, opts?: pulumi.InvokeOptions): Promise<GetGroupHooksResult>;
|
|
9
9
|
/**
|
|
@@ -35,7 +35,7 @@ export interface GetGroupHooksResult {
|
|
|
35
35
|
/**
|
|
36
36
|
* The `gitlab.getGroupHooks` data source allows to retrieve details about hooks in a group.
|
|
37
37
|
*
|
|
38
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/
|
|
38
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/group_webhooks/#list-group-hooks)
|
|
39
39
|
*/
|
|
40
40
|
export declare function getGroupHooksOutput(args: GetGroupHooksOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetGroupHooksResult>;
|
|
41
41
|
/**
|
package/getGroupHooks.js
CHANGED
|
@@ -8,7 +8,7 @@ const utilities = require("./utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* The `gitlab.getGroupHooks` data source allows to retrieve details about hooks in a group.
|
|
10
10
|
*
|
|
11
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/
|
|
11
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/group_webhooks/#list-group-hooks)
|
|
12
12
|
*/
|
|
13
13
|
function getGroupHooks(args, opts) {
|
|
14
14
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
@@ -20,7 +20,7 @@ exports.getGroupHooks = getGroupHooks;
|
|
|
20
20
|
/**
|
|
21
21
|
* The `gitlab.getGroupHooks` data source allows to retrieve details about hooks in a group.
|
|
22
22
|
*
|
|
23
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/
|
|
23
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/group_webhooks/#list-group-hooks)
|
|
24
24
|
*/
|
|
25
25
|
function getGroupHooksOutput(args, opts) {
|
|
26
26
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
package/getGroupSubgroups.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import * as outputs from "./types/output";
|
|
|
3
3
|
/**
|
|
4
4
|
* The `gitlab.getGroupSubgroups` data source allows to get subgroups of a group.
|
|
5
5
|
*
|
|
6
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/groups/#list-
|
|
6
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/groups/#list-subgroups)
|
|
7
7
|
*
|
|
8
8
|
* ## Example Usage
|
|
9
9
|
*
|
|
@@ -123,7 +123,7 @@ export interface GetGroupSubgroupsResult {
|
|
|
123
123
|
/**
|
|
124
124
|
* The `gitlab.getGroupSubgroups` data source allows to get subgroups of a group.
|
|
125
125
|
*
|
|
126
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/groups/#list-
|
|
126
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/groups/#list-subgroups)
|
|
127
127
|
*
|
|
128
128
|
* ## Example Usage
|
|
129
129
|
*
|
package/getGroupSubgroups.js
CHANGED
|
@@ -8,7 +8,7 @@ const utilities = require("./utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* The `gitlab.getGroupSubgroups` data source allows to get subgroups of a group.
|
|
10
10
|
*
|
|
11
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/groups/#list-
|
|
11
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/groups/#list-subgroups)
|
|
12
12
|
*
|
|
13
13
|
* ## Example Usage
|
|
14
14
|
*
|
|
@@ -45,7 +45,7 @@ exports.getGroupSubgroups = getGroupSubgroups;
|
|
|
45
45
|
/**
|
|
46
46
|
* The `gitlab.getGroupSubgroups` data source allows to get subgroups of a group.
|
|
47
47
|
*
|
|
48
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/groups/#list-
|
|
48
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/groups/#list-subgroups)
|
|
49
49
|
*
|
|
50
50
|
* ## Example Usage
|
|
51
51
|
*
|
package/getProject.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import * as outputs from "./types/output";
|
|
|
3
3
|
/**
|
|
4
4
|
* The `gitlab.Project` data source allows details of a project to be retrieved by either its ID or its path with namespace.
|
|
5
5
|
*
|
|
6
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/projects/#get-single-project)
|
|
6
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/projects/#get-a-single-project)
|
|
7
7
|
*/
|
|
8
8
|
export declare function getProject(args?: GetProjectArgs, opts?: pulumi.InvokeOptions): Promise<GetProjectResult>;
|
|
9
9
|
/**
|
|
@@ -14,6 +14,10 @@ export interface GetProjectArgs {
|
|
|
14
14
|
* Default number of revisions for shallow cloning.
|
|
15
15
|
*/
|
|
16
16
|
ciDefaultGitDepth?: number;
|
|
17
|
+
/**
|
|
18
|
+
* Fields included in the sub claim of the ID Token. Accepts an array starting with project*path. The array might also include ref*type and ref. Defaults to ["project*path", "ref*type", "ref"]. Introduced in GitLab 17.10.
|
|
19
|
+
*/
|
|
20
|
+
ciIdTokenSubClaimComponents?: string[];
|
|
17
21
|
/**
|
|
18
22
|
* The integer that uniquely identifies the project within the gitlab install.
|
|
19
23
|
*/
|
|
@@ -79,6 +83,14 @@ export interface GetProjectResult {
|
|
|
79
83
|
* Default number of revisions for shallow cloning.
|
|
80
84
|
*/
|
|
81
85
|
readonly ciDefaultGitDepth: number;
|
|
86
|
+
/**
|
|
87
|
+
* Pipelines older than the configured time are deleted.
|
|
88
|
+
*/
|
|
89
|
+
readonly ciDeletePipelinesInSeconds: number;
|
|
90
|
+
/**
|
|
91
|
+
* Fields included in the sub claim of the ID Token. Accepts an array starting with project*path. The array might also include ref*type and ref. Defaults to ["project*path", "ref*type", "ref"]. Introduced in GitLab 17.10.
|
|
92
|
+
*/
|
|
93
|
+
readonly ciIdTokenSubClaimComponents: string[];
|
|
82
94
|
/**
|
|
83
95
|
* The minimum role required to set variables when running pipelines and jobs. Introduced in GitLab 17.1. Valid values are `developer`, `maintainer`, `owner`, `noOneAllowed`
|
|
84
96
|
*/
|
|
@@ -319,7 +331,7 @@ export interface GetProjectResult {
|
|
|
319
331
|
/**
|
|
320
332
|
* The `gitlab.Project` data source allows details of a project to be retrieved by either its ID or its path with namespace.
|
|
321
333
|
*
|
|
322
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/projects/#get-single-project)
|
|
334
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/projects/#get-a-single-project)
|
|
323
335
|
*/
|
|
324
336
|
export declare function getProjectOutput(args?: GetProjectOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetProjectResult>;
|
|
325
337
|
/**
|
|
@@ -330,6 +342,10 @@ export interface GetProjectOutputArgs {
|
|
|
330
342
|
* Default number of revisions for shallow cloning.
|
|
331
343
|
*/
|
|
332
344
|
ciDefaultGitDepth?: pulumi.Input<number>;
|
|
345
|
+
/**
|
|
346
|
+
* Fields included in the sub claim of the ID Token. Accepts an array starting with project*path. The array might also include ref*type and ref. Defaults to ["project*path", "ref*type", "ref"]. Introduced in GitLab 17.10.
|
|
347
|
+
*/
|
|
348
|
+
ciIdTokenSubClaimComponents?: pulumi.Input<pulumi.Input<string>[]>;
|
|
333
349
|
/**
|
|
334
350
|
* The integer that uniquely identifies the project within the gitlab install.
|
|
335
351
|
*/
|
package/getProject.js
CHANGED
|
@@ -8,13 +8,14 @@ const utilities = require("./utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* The `gitlab.Project` data source allows details of a project to be retrieved by either its ID or its path with namespace.
|
|
10
10
|
*
|
|
11
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/projects/#get-single-project)
|
|
11
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/projects/#get-a-single-project)
|
|
12
12
|
*/
|
|
13
13
|
function getProject(args, opts) {
|
|
14
14
|
args = args || {};
|
|
15
15
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
16
16
|
return pulumi.runtime.invoke("gitlab:index/getProject:getProject", {
|
|
17
17
|
"ciDefaultGitDepth": args.ciDefaultGitDepth,
|
|
18
|
+
"ciIdTokenSubClaimComponents": args.ciIdTokenSubClaimComponents,
|
|
18
19
|
"id": args.id,
|
|
19
20
|
"pathWithNamespace": args.pathWithNamespace,
|
|
20
21
|
"publicBuilds": args.publicBuilds,
|
|
@@ -24,13 +25,14 @@ exports.getProject = getProject;
|
|
|
24
25
|
/**
|
|
25
26
|
* The `gitlab.Project` data source allows details of a project to be retrieved by either its ID or its path with namespace.
|
|
26
27
|
*
|
|
27
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/projects/#get-single-project)
|
|
28
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/projects/#get-a-single-project)
|
|
28
29
|
*/
|
|
29
30
|
function getProjectOutput(args, opts) {
|
|
30
31
|
args = args || {};
|
|
31
32
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
32
33
|
return pulumi.runtime.invokeOutput("gitlab:index/getProject:getProject", {
|
|
33
34
|
"ciDefaultGitDepth": args.ciDefaultGitDepth,
|
|
35
|
+
"ciIdTokenSubClaimComponents": args.ciIdTokenSubClaimComponents,
|
|
34
36
|
"id": args.id,
|
|
35
37
|
"pathWithNamespace": args.pathWithNamespace,
|
|
36
38
|
"publicBuilds": args.publicBuilds,
|
package/getProject.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getProject.js","sourceRoot":"","sources":["../getProject.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;GAIG;AACH,SAAgB,UAAU,CAAC,IAAqB,EAAE,IAA2B;IACzE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oCAAoC,EAAE;QAC/D,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;QAC3C,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;QAC3C,cAAc,EAAE,IAAI,CAAC,YAAY;KACpC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;
|
|
1
|
+
{"version":3,"file":"getProject.js","sourceRoot":"","sources":["../getProject.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;GAIG;AACH,SAAgB,UAAU,CAAC,IAAqB,EAAE,IAA2B;IACzE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oCAAoC,EAAE;QAC/D,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;QAC3C,6BAA6B,EAAE,IAAI,CAAC,2BAA2B;QAC/D,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;QAC3C,cAAc,EAAE,IAAI,CAAC,YAAY;KACpC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,gCAUC;AAqUD;;;;GAIG;AACH,SAAgB,gBAAgB,CAAC,IAA2B,EAAE,IAAiC;IAC3F,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,oCAAoC,EAAE;QACrE,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;QAC3C,6BAA6B,EAAE,IAAI,CAAC,2BAA2B;QAC/D,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;QAC3C,cAAc,EAAE,IAAI,CAAC,YAAY;KACpC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,4CAUC"}
|
package/getProjectHook.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
/**
|
|
3
3
|
* The `gitlab.ProjectHook` data source allows to retrieve details about a hook in a project.
|
|
4
4
|
*
|
|
5
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/
|
|
5
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/project_webhooks/#get-a-project-webhook)
|
|
6
6
|
*
|
|
7
7
|
* ## Example Usage
|
|
8
8
|
*
|
|
@@ -125,7 +125,7 @@ export interface GetProjectHookResult {
|
|
|
125
125
|
/**
|
|
126
126
|
* The `gitlab.ProjectHook` data source allows to retrieve details about a hook in a project.
|
|
127
127
|
*
|
|
128
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/
|
|
128
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/project_webhooks/#get-a-project-webhook)
|
|
129
129
|
*
|
|
130
130
|
* ## Example Usage
|
|
131
131
|
*
|
package/getProjectHook.js
CHANGED
|
@@ -8,7 +8,7 @@ const utilities = require("./utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* The `gitlab.ProjectHook` data source allows to retrieve details about a hook in a project.
|
|
10
10
|
*
|
|
11
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/
|
|
11
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/project_webhooks/#get-a-project-webhook)
|
|
12
12
|
*
|
|
13
13
|
* ## Example Usage
|
|
14
14
|
*
|
|
@@ -36,7 +36,7 @@ exports.getProjectHook = getProjectHook;
|
|
|
36
36
|
/**
|
|
37
37
|
* The `gitlab.ProjectHook` data source allows to retrieve details about a hook in a project.
|
|
38
38
|
*
|
|
39
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/
|
|
39
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/project_webhooks/#get-a-project-webhook)
|
|
40
40
|
*
|
|
41
41
|
* ## Example Usage
|
|
42
42
|
*
|
package/getProjectHooks.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import * as outputs from "./types/output";
|
|
|
3
3
|
/**
|
|
4
4
|
* The `gitlab.getProjectHooks` data source allows to retrieve details about hooks in a project.
|
|
5
5
|
*
|
|
6
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/
|
|
6
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/project_webhooks/#list-webhooks-for-a-project)
|
|
7
7
|
*
|
|
8
8
|
* ## Example Usage
|
|
9
9
|
*
|
|
@@ -49,7 +49,7 @@ export interface GetProjectHooksResult {
|
|
|
49
49
|
/**
|
|
50
50
|
* The `gitlab.getProjectHooks` data source allows to retrieve details about hooks in a project.
|
|
51
51
|
*
|
|
52
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/
|
|
52
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/project_webhooks/#list-webhooks-for-a-project)
|
|
53
53
|
*
|
|
54
54
|
* ## Example Usage
|
|
55
55
|
*
|
package/getProjectHooks.js
CHANGED
|
@@ -8,7 +8,7 @@ const utilities = require("./utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* The `gitlab.getProjectHooks` data source allows to retrieve details about hooks in a project.
|
|
10
10
|
*
|
|
11
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/
|
|
11
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/project_webhooks/#list-webhooks-for-a-project)
|
|
12
12
|
*
|
|
13
13
|
* ## Example Usage
|
|
14
14
|
*
|
|
@@ -34,7 +34,7 @@ exports.getProjectHooks = getProjectHooks;
|
|
|
34
34
|
/**
|
|
35
35
|
* The `gitlab.getProjectHooks` data source allows to retrieve details about hooks in a project.
|
|
36
36
|
*
|
|
37
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/
|
|
37
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/project_webhooks/#list-webhooks-for-a-project)
|
|
38
38
|
*
|
|
39
39
|
* ## Example Usage
|
|
40
40
|
*
|
package/getUser.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
6
6
|
*
|
|
7
7
|
* > When using the `email` attribute, an exact match is not guaranteed. The most related match will be returned. The most related match will prioritize an exact match if one is available.
|
|
8
8
|
*
|
|
9
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/users/#single-user)
|
|
9
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/users/#get-a-single-user)
|
|
10
10
|
*/
|
|
11
11
|
export declare function getUser(args?: GetUserArgs, opts?: pulumi.InvokeOptions): Promise<GetUserResult>;
|
|
12
12
|
/**
|
|
@@ -162,7 +162,7 @@ export interface GetUserResult {
|
|
|
162
162
|
*
|
|
163
163
|
* > When using the `email` attribute, an exact match is not guaranteed. The most related match will be returned. The most related match will prioritize an exact match if one is available.
|
|
164
164
|
*
|
|
165
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/users/#single-user)
|
|
165
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/users/#get-a-single-user)
|
|
166
166
|
*/
|
|
167
167
|
export declare function getUserOutput(args?: GetUserOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetUserResult>;
|
|
168
168
|
/**
|
package/getUser.js
CHANGED
|
@@ -12,7 +12,7 @@ const utilities = require("./utilities");
|
|
|
12
12
|
*
|
|
13
13
|
* > When using the `email` attribute, an exact match is not guaranteed. The most related match will be returned. The most related match will prioritize an exact match if one is available.
|
|
14
14
|
*
|
|
15
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/users/#single-user)
|
|
15
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/users/#get-a-single-user)
|
|
16
16
|
*/
|
|
17
17
|
function getUser(args, opts) {
|
|
18
18
|
args = args || {};
|
|
@@ -32,7 +32,7 @@ exports.getUser = getUser;
|
|
|
32
32
|
*
|
|
33
33
|
* > When using the `email` attribute, an exact match is not guaranteed. The most related match will be returned. The most related match will prioritize an exact match if one is available.
|
|
34
34
|
*
|
|
35
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/users/#single-user)
|
|
35
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/users/#get-a-single-user)
|
|
36
36
|
*/
|
|
37
37
|
function getUserOutput(args, opts) {
|
|
38
38
|
args = args || {};
|
package/getUserSshkeys.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import * as outputs from "./types/output";
|
|
|
3
3
|
/**
|
|
4
4
|
* The `gitlab.getUserSshkeys` data source allows a list of SSH keys to be retrieved by either the user ID or username.
|
|
5
5
|
*
|
|
6
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/
|
|
6
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/user_keys/#list-all-ssh-keys-for-a-user)
|
|
7
7
|
*/
|
|
8
8
|
export declare function getUserSshkeys(args?: GetUserSshkeysArgs, opts?: pulumi.InvokeOptions): Promise<GetUserSshkeysResult>;
|
|
9
9
|
/**
|
|
@@ -43,7 +43,7 @@ export interface GetUserSshkeysResult {
|
|
|
43
43
|
/**
|
|
44
44
|
* The `gitlab.getUserSshkeys` data source allows a list of SSH keys to be retrieved by either the user ID or username.
|
|
45
45
|
*
|
|
46
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/
|
|
46
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/user_keys/#list-all-ssh-keys-for-a-user)
|
|
47
47
|
*/
|
|
48
48
|
export declare function getUserSshkeysOutput(args?: GetUserSshkeysOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetUserSshkeysResult>;
|
|
49
49
|
/**
|
package/getUserSshkeys.js
CHANGED
|
@@ -8,7 +8,7 @@ const utilities = require("./utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* The `gitlab.getUserSshkeys` data source allows a list of SSH keys to be retrieved by either the user ID or username.
|
|
10
10
|
*
|
|
11
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/
|
|
11
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/user_keys/#list-all-ssh-keys-for-a-user)
|
|
12
12
|
*/
|
|
13
13
|
function getUserSshkeys(args, opts) {
|
|
14
14
|
args = args || {};
|
|
@@ -22,7 +22,7 @@ exports.getUserSshkeys = getUserSshkeys;
|
|
|
22
22
|
/**
|
|
23
23
|
* The `gitlab.getUserSshkeys` data source allows a list of SSH keys to be retrieved by either the user ID or username.
|
|
24
24
|
*
|
|
25
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/
|
|
25
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/user_keys/#list-all-ssh-keys-for-a-user)
|
|
26
26
|
*/
|
|
27
27
|
function getUserSshkeysOutput(args, opts) {
|
|
28
28
|
args = args || {};
|
package/getUsers.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ import * as outputs from "./types/output";
|
|
|
7
7
|
*
|
|
8
8
|
* > Some available options require administrator privileges.
|
|
9
9
|
*
|
|
10
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/
|
|
10
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/users/#list-users)
|
|
11
11
|
*
|
|
12
12
|
* ## Example Usage
|
|
13
13
|
*
|
|
@@ -163,7 +163,7 @@ export interface GetUsersResult {
|
|
|
163
163
|
*
|
|
164
164
|
* > Some available options require administrator privileges.
|
|
165
165
|
*
|
|
166
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/
|
|
166
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/users/#list-users)
|
|
167
167
|
*
|
|
168
168
|
* ## Example Usage
|
|
169
169
|
*
|
package/getUsers.js
CHANGED
|
@@ -12,7 +12,7 @@ const utilities = require("./utilities");
|
|
|
12
12
|
*
|
|
13
13
|
* > Some available options require administrator privileges.
|
|
14
14
|
*
|
|
15
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/
|
|
15
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/users/#list-users)
|
|
16
16
|
*
|
|
17
17
|
* ## Example Usage
|
|
18
18
|
*
|
|
@@ -58,7 +58,7 @@ exports.getUsers = getUsers;
|
|
|
58
58
|
*
|
|
59
59
|
* > Some available options require administrator privileges.
|
|
60
60
|
*
|
|
61
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/
|
|
61
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/users/#list-users)
|
|
62
62
|
*
|
|
63
63
|
* ## Example Usage
|
|
64
64
|
*
|
package/group.d.ts
CHANGED
|
@@ -182,7 +182,7 @@ export declare class Group extends pulumi.CustomResource {
|
|
|
182
182
|
/**
|
|
183
183
|
* Users cannot be added to projects in this group.
|
|
184
184
|
*/
|
|
185
|
-
readonly membershipLock: pulumi.Output<boolean
|
|
185
|
+
readonly membershipLock: pulumi.Output<boolean>;
|
|
186
186
|
/**
|
|
187
187
|
* Disable the capability of a group from getting mentioned.
|
|
188
188
|
*/
|
package/groupAccessToken.d.ts
CHANGED
|
@@ -73,7 +73,7 @@ export declare class GroupAccessToken extends pulumi.CustomResource {
|
|
|
73
73
|
*/
|
|
74
74
|
static isInstance(obj: any): obj is GroupAccessToken;
|
|
75
75
|
/**
|
|
76
|
-
* The access level for the group access token. Valid values are: `no one`, `minimal`, `guest`, `reporter`, `developer`, `maintainer`, `owner`. Default is `maintainer`.
|
|
76
|
+
* The access level for the group access token. Valid values are: `no one`, `minimal`, `guest`, `planner`, `reporter`, `developer`, `maintainer`, `owner`. Default is `maintainer`.
|
|
77
77
|
*/
|
|
78
78
|
readonly accessLevel: pulumi.Output<string>;
|
|
79
79
|
/**
|
|
@@ -84,6 +84,10 @@ export declare class GroupAccessToken extends pulumi.CustomResource {
|
|
|
84
84
|
* Time the token has been created, RFC3339 format.
|
|
85
85
|
*/
|
|
86
86
|
readonly createdAt: pulumi.Output<string>;
|
|
87
|
+
/**
|
|
88
|
+
* The description of the group access token.
|
|
89
|
+
*/
|
|
90
|
+
readonly description: pulumi.Output<string>;
|
|
87
91
|
/**
|
|
88
92
|
* When the token will expire, YYYY-MM-DD format.
|
|
89
93
|
*/
|
|
@@ -130,7 +134,7 @@ export declare class GroupAccessToken extends pulumi.CustomResource {
|
|
|
130
134
|
*/
|
|
131
135
|
export interface GroupAccessTokenState {
|
|
132
136
|
/**
|
|
133
|
-
* The access level for the group access token. Valid values are: `no one`, `minimal`, `guest`, `reporter`, `developer`, `maintainer`, `owner`. Default is `maintainer`.
|
|
137
|
+
* The access level for the group access token. Valid values are: `no one`, `minimal`, `guest`, `planner`, `reporter`, `developer`, `maintainer`, `owner`. Default is `maintainer`.
|
|
134
138
|
*/
|
|
135
139
|
accessLevel?: pulumi.Input<string>;
|
|
136
140
|
/**
|
|
@@ -141,6 +145,10 @@ export interface GroupAccessTokenState {
|
|
|
141
145
|
* Time the token has been created, RFC3339 format.
|
|
142
146
|
*/
|
|
143
147
|
createdAt?: pulumi.Input<string>;
|
|
148
|
+
/**
|
|
149
|
+
* The description of the group access token.
|
|
150
|
+
*/
|
|
151
|
+
description?: pulumi.Input<string>;
|
|
144
152
|
/**
|
|
145
153
|
* When the token will expire, YYYY-MM-DD format.
|
|
146
154
|
*/
|
|
@@ -179,9 +187,13 @@ export interface GroupAccessTokenState {
|
|
|
179
187
|
*/
|
|
180
188
|
export interface GroupAccessTokenArgs {
|
|
181
189
|
/**
|
|
182
|
-
* The access level for the group access token. Valid values are: `no one`, `minimal`, `guest`, `reporter`, `developer`, `maintainer`, `owner`. Default is `maintainer`.
|
|
190
|
+
* The access level for the group access token. Valid values are: `no one`, `minimal`, `guest`, `planner`, `reporter`, `developer`, `maintainer`, `owner`. Default is `maintainer`.
|
|
183
191
|
*/
|
|
184
192
|
accessLevel?: pulumi.Input<string>;
|
|
193
|
+
/**
|
|
194
|
+
* The description of the group access token.
|
|
195
|
+
*/
|
|
196
|
+
description?: pulumi.Input<string>;
|
|
185
197
|
/**
|
|
186
198
|
* When the token will expire, YYYY-MM-DD format.
|
|
187
199
|
*/
|
package/groupAccessToken.js
CHANGED
|
@@ -91,6 +91,7 @@ class GroupAccessToken extends pulumi.CustomResource {
|
|
|
91
91
|
resourceInputs["accessLevel"] = state ? state.accessLevel : undefined;
|
|
92
92
|
resourceInputs["active"] = state ? state.active : undefined;
|
|
93
93
|
resourceInputs["createdAt"] = state ? state.createdAt : undefined;
|
|
94
|
+
resourceInputs["description"] = state ? state.description : undefined;
|
|
94
95
|
resourceInputs["expiresAt"] = state ? state.expiresAt : undefined;
|
|
95
96
|
resourceInputs["group"] = state ? state.group : undefined;
|
|
96
97
|
resourceInputs["name"] = state ? state.name : undefined;
|
|
@@ -109,6 +110,7 @@ class GroupAccessToken extends pulumi.CustomResource {
|
|
|
109
110
|
throw new Error("Missing required property 'scopes'");
|
|
110
111
|
}
|
|
111
112
|
resourceInputs["accessLevel"] = args ? args.accessLevel : undefined;
|
|
113
|
+
resourceInputs["description"] = args ? args.description : undefined;
|
|
112
114
|
resourceInputs["expiresAt"] = args ? args.expiresAt : undefined;
|
|
113
115
|
resourceInputs["group"] = args ? args.group : undefined;
|
|
114
116
|
resourceInputs["name"] = args ? args.name : undefined;
|
package/groupAccessToken.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"groupAccessToken.js","sourceRoot":"","sources":["../groupAccessToken.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAsDG;AACH,MAAa,gBAAiB,SAAQ,MAAM,CAAC,cAAc;IACvD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA6B,EAAE,IAAmC;QAC3H,OAAO,IAAI,gBAAgB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACvE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,gBAAgB,CAAC,YAAY,CAAC;IACjE,CAAC;
|
|
1
|
+
{"version":3,"file":"groupAccessToken.js","sourceRoot":"","sources":["../groupAccessToken.ts"],"names":[],"mappings":"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"}
|