@pulumi/gitlab 9.8.0-alpha.1768501030 → 9.8.0
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/getProjectHook.d.ts +2 -2
- package/getProjectSecureFile.d.ts +2 -2
- package/getProjectSecureFile.js +2 -2
- package/group.d.ts +36 -0
- package/group.js +6 -0
- package/group.js.map +1 -1
- package/groupHook.d.ts +50 -48
- package/groupHook.js +2 -0
- package/groupHook.js.map +1 -1
- package/index.d.ts +18 -0
- package/index.js +33 -3
- package/index.js.map +1 -1
- package/package.json +2 -2
- package/projectCicdCatalog.d.ts +107 -0
- package/projectCicdCatalog.js +103 -0
- package/projectCicdCatalog.js.map +1 -0
- package/projectHook.d.ts +45 -42
- package/projectHook.js +3 -0
- package/projectHook.js.map +1 -1
- package/projectIssueLink.d.ts +179 -0
- package/projectIssueLink.js +149 -0
- package/projectIssueLink.js.map +1 -0
- package/projectJobTokenScope.d.ts +10 -2
- package/projectJobTokenScope.js +10 -2
- package/projectJobTokenScope.js.map +1 -1
- package/projectMirror.d.ts +4 -3
- package/projectMirror.js +4 -3
- package/projectMirror.js.map +1 -1
- package/projectPackageDependencyProxy.d.ts +153 -0
- package/projectPackageDependencyProxy.js +119 -0
- package/projectPackageDependencyProxy.js.map +1 -0
- package/projectPullMirror.d.ts +267 -0
- package/projectPullMirror.js +160 -0
- package/projectPullMirror.js.map +1 -0
- package/projectPushMirror.d.ts +173 -0
- package/projectPushMirror.js +116 -0
- package/projectPushMirror.js.map +1 -0
- package/projectSecureFile.d.ts +173 -0
- package/projectSecureFile.js +132 -0
- package/projectSecureFile.js.map +1 -0
- package/projectTag.d.ts +2 -2
- package/projectTag.js +1 -1
- package/runner.d.ts +1 -1
- package/runner.js +1 -1
- package/types/output.d.ts +19 -1
package/projectHook.d.ts
CHANGED
|
@@ -4,6 +4,8 @@ import * as outputs from "./types/output";
|
|
|
4
4
|
/**
|
|
5
5
|
* The `gitlab.ProjectHook` resource allows to manage the lifecycle of a project hook.
|
|
6
6
|
*
|
|
7
|
+
* > Note that `pushEvents` defaults to `true`.
|
|
8
|
+
*
|
|
7
9
|
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/project_webhooks/)
|
|
8
10
|
*
|
|
9
11
|
* ## Example Usage
|
|
@@ -18,6 +20,7 @@ import * as outputs from "./types/output";
|
|
|
18
20
|
* name: "example",
|
|
19
21
|
* description: "Example hook",
|
|
20
22
|
* mergeRequestsEvents: true,
|
|
23
|
+
* pushEvents: false,
|
|
21
24
|
* });
|
|
22
25
|
* // Using Custom Headers
|
|
23
26
|
* // Values of headers can't be imported
|
|
@@ -79,11 +82,11 @@ export declare class ProjectHook extends pulumi.CustomResource {
|
|
|
79
82
|
*/
|
|
80
83
|
static isInstance(obj: any): obj is ProjectHook;
|
|
81
84
|
/**
|
|
82
|
-
* Invoke the hook for confidential issues events.
|
|
85
|
+
* Invoke the hook for confidential issues events. Defaults to `false`.
|
|
83
86
|
*/
|
|
84
87
|
readonly confidentialIssuesEvents: pulumi.Output<boolean>;
|
|
85
88
|
/**
|
|
86
|
-
* Invoke the hook for confidential note events.
|
|
89
|
+
* Invoke the hook for confidential note events. Defaults to `false`.
|
|
87
90
|
*/
|
|
88
91
|
readonly confidentialNoteEvents: pulumi.Output<boolean>;
|
|
89
92
|
/**
|
|
@@ -95,7 +98,7 @@ export declare class ProjectHook extends pulumi.CustomResource {
|
|
|
95
98
|
*/
|
|
96
99
|
readonly customWebhookTemplate: pulumi.Output<string>;
|
|
97
100
|
/**
|
|
98
|
-
* Invoke the hook for deployment events.
|
|
101
|
+
* Invoke the hook for deployment events. Defaults to `false`.
|
|
99
102
|
*/
|
|
100
103
|
readonly deploymentEvents: pulumi.Output<boolean>;
|
|
101
104
|
/**
|
|
@@ -103,7 +106,7 @@ export declare class ProjectHook extends pulumi.CustomResource {
|
|
|
103
106
|
*/
|
|
104
107
|
readonly description: pulumi.Output<string>;
|
|
105
108
|
/**
|
|
106
|
-
* Enable SSL verification when invoking the hook.
|
|
109
|
+
* Enable SSL verification when invoking the hook. Defaults to `true`.
|
|
107
110
|
*/
|
|
108
111
|
readonly enableSslVerification: pulumi.Output<boolean>;
|
|
109
112
|
/**
|
|
@@ -111,15 +114,15 @@ export declare class ProjectHook extends pulumi.CustomResource {
|
|
|
111
114
|
*/
|
|
112
115
|
readonly hookId: pulumi.Output<number>;
|
|
113
116
|
/**
|
|
114
|
-
* Invoke the hook for issues events.
|
|
117
|
+
* Invoke the hook for issues events. Defaults to `false`.
|
|
115
118
|
*/
|
|
116
119
|
readonly issuesEvents: pulumi.Output<boolean>;
|
|
117
120
|
/**
|
|
118
|
-
* Invoke the hook for job events.
|
|
121
|
+
* Invoke the hook for job events. Defaults to `false`.
|
|
119
122
|
*/
|
|
120
123
|
readonly jobEvents: pulumi.Output<boolean>;
|
|
121
124
|
/**
|
|
122
|
-
* Invoke the hook for merge requests events.
|
|
125
|
+
* Invoke the hook for merge requests events. Defaults to `false`.
|
|
123
126
|
*/
|
|
124
127
|
readonly mergeRequestsEvents: pulumi.Output<boolean>;
|
|
125
128
|
/**
|
|
@@ -127,11 +130,11 @@ export declare class ProjectHook extends pulumi.CustomResource {
|
|
|
127
130
|
*/
|
|
128
131
|
readonly name: pulumi.Output<string>;
|
|
129
132
|
/**
|
|
130
|
-
* Invoke the hook for note events.
|
|
133
|
+
* Invoke the hook for note events. Defaults to `false`.
|
|
131
134
|
*/
|
|
132
135
|
readonly noteEvents: pulumi.Output<boolean>;
|
|
133
136
|
/**
|
|
134
|
-
* Invoke the hook for pipeline events.
|
|
137
|
+
* Invoke the hook for pipeline events. Defaults to `false`.
|
|
135
138
|
*/
|
|
136
139
|
readonly pipelineEvents: pulumi.Output<boolean>;
|
|
137
140
|
/**
|
|
@@ -143,7 +146,7 @@ export declare class ProjectHook extends pulumi.CustomResource {
|
|
|
143
146
|
*/
|
|
144
147
|
readonly projectId: pulumi.Output<number>;
|
|
145
148
|
/**
|
|
146
|
-
* Invoke the hook for push events.
|
|
149
|
+
* Invoke the hook for push events. Defaults to `true`.
|
|
147
150
|
*/
|
|
148
151
|
readonly pushEvents: pulumi.Output<boolean>;
|
|
149
152
|
/**
|
|
@@ -151,15 +154,15 @@ export declare class ProjectHook extends pulumi.CustomResource {
|
|
|
151
154
|
*/
|
|
152
155
|
readonly pushEventsBranchFilter: pulumi.Output<string>;
|
|
153
156
|
/**
|
|
154
|
-
* Invoke the hook for release events.
|
|
157
|
+
* Invoke the hook for release events. Defaults to `false`.
|
|
155
158
|
*/
|
|
156
159
|
readonly releasesEvents: pulumi.Output<boolean>;
|
|
157
160
|
/**
|
|
158
|
-
* Invoke the hook for project access token expiry events.
|
|
161
|
+
* Invoke the hook for project access token expiry events. Defaults to `false`.
|
|
159
162
|
*/
|
|
160
163
|
readonly resourceAccessTokenEvents: pulumi.Output<boolean>;
|
|
161
164
|
/**
|
|
162
|
-
* Invoke the hook for tag push events.
|
|
165
|
+
* Invoke the hook for tag push events. Defaults to `false`.
|
|
163
166
|
*/
|
|
164
167
|
readonly tagPushEvents: pulumi.Output<boolean>;
|
|
165
168
|
/**
|
|
@@ -171,7 +174,7 @@ export declare class ProjectHook extends pulumi.CustomResource {
|
|
|
171
174
|
*/
|
|
172
175
|
readonly url: pulumi.Output<string>;
|
|
173
176
|
/**
|
|
174
|
-
* Invoke the hook for wiki page events.
|
|
177
|
+
* Invoke the hook for wiki page events. Defaults to `false`.
|
|
175
178
|
*/
|
|
176
179
|
readonly wikiPageEvents: pulumi.Output<boolean>;
|
|
177
180
|
/**
|
|
@@ -188,11 +191,11 @@ export declare class ProjectHook extends pulumi.CustomResource {
|
|
|
188
191
|
*/
|
|
189
192
|
export interface ProjectHookState {
|
|
190
193
|
/**
|
|
191
|
-
* Invoke the hook for confidential issues events.
|
|
194
|
+
* Invoke the hook for confidential issues events. Defaults to `false`.
|
|
192
195
|
*/
|
|
193
196
|
confidentialIssuesEvents?: pulumi.Input<boolean>;
|
|
194
197
|
/**
|
|
195
|
-
* Invoke the hook for confidential note events.
|
|
198
|
+
* Invoke the hook for confidential note events. Defaults to `false`.
|
|
196
199
|
*/
|
|
197
200
|
confidentialNoteEvents?: pulumi.Input<boolean>;
|
|
198
201
|
/**
|
|
@@ -204,7 +207,7 @@ export interface ProjectHookState {
|
|
|
204
207
|
*/
|
|
205
208
|
customWebhookTemplate?: pulumi.Input<string>;
|
|
206
209
|
/**
|
|
207
|
-
* Invoke the hook for deployment events.
|
|
210
|
+
* Invoke the hook for deployment events. Defaults to `false`.
|
|
208
211
|
*/
|
|
209
212
|
deploymentEvents?: pulumi.Input<boolean>;
|
|
210
213
|
/**
|
|
@@ -212,7 +215,7 @@ export interface ProjectHookState {
|
|
|
212
215
|
*/
|
|
213
216
|
description?: pulumi.Input<string>;
|
|
214
217
|
/**
|
|
215
|
-
* Enable SSL verification when invoking the hook.
|
|
218
|
+
* Enable SSL verification when invoking the hook. Defaults to `true`.
|
|
216
219
|
*/
|
|
217
220
|
enableSslVerification?: pulumi.Input<boolean>;
|
|
218
221
|
/**
|
|
@@ -220,15 +223,15 @@ export interface ProjectHookState {
|
|
|
220
223
|
*/
|
|
221
224
|
hookId?: pulumi.Input<number>;
|
|
222
225
|
/**
|
|
223
|
-
* Invoke the hook for issues events.
|
|
226
|
+
* Invoke the hook for issues events. Defaults to `false`.
|
|
224
227
|
*/
|
|
225
228
|
issuesEvents?: pulumi.Input<boolean>;
|
|
226
229
|
/**
|
|
227
|
-
* Invoke the hook for job events.
|
|
230
|
+
* Invoke the hook for job events. Defaults to `false`.
|
|
228
231
|
*/
|
|
229
232
|
jobEvents?: pulumi.Input<boolean>;
|
|
230
233
|
/**
|
|
231
|
-
* Invoke the hook for merge requests events.
|
|
234
|
+
* Invoke the hook for merge requests events. Defaults to `false`.
|
|
232
235
|
*/
|
|
233
236
|
mergeRequestsEvents?: pulumi.Input<boolean>;
|
|
234
237
|
/**
|
|
@@ -236,11 +239,11 @@ export interface ProjectHookState {
|
|
|
236
239
|
*/
|
|
237
240
|
name?: pulumi.Input<string>;
|
|
238
241
|
/**
|
|
239
|
-
* Invoke the hook for note events.
|
|
242
|
+
* Invoke the hook for note events. Defaults to `false`.
|
|
240
243
|
*/
|
|
241
244
|
noteEvents?: pulumi.Input<boolean>;
|
|
242
245
|
/**
|
|
243
|
-
* Invoke the hook for pipeline events.
|
|
246
|
+
* Invoke the hook for pipeline events. Defaults to `false`.
|
|
244
247
|
*/
|
|
245
248
|
pipelineEvents?: pulumi.Input<boolean>;
|
|
246
249
|
/**
|
|
@@ -252,7 +255,7 @@ export interface ProjectHookState {
|
|
|
252
255
|
*/
|
|
253
256
|
projectId?: pulumi.Input<number>;
|
|
254
257
|
/**
|
|
255
|
-
* Invoke the hook for push events.
|
|
258
|
+
* Invoke the hook for push events. Defaults to `true`.
|
|
256
259
|
*/
|
|
257
260
|
pushEvents?: pulumi.Input<boolean>;
|
|
258
261
|
/**
|
|
@@ -260,15 +263,15 @@ export interface ProjectHookState {
|
|
|
260
263
|
*/
|
|
261
264
|
pushEventsBranchFilter?: pulumi.Input<string>;
|
|
262
265
|
/**
|
|
263
|
-
* Invoke the hook for release events.
|
|
266
|
+
* Invoke the hook for release events. Defaults to `false`.
|
|
264
267
|
*/
|
|
265
268
|
releasesEvents?: pulumi.Input<boolean>;
|
|
266
269
|
/**
|
|
267
|
-
* Invoke the hook for project access token expiry events.
|
|
270
|
+
* Invoke the hook for project access token expiry events. Defaults to `false`.
|
|
268
271
|
*/
|
|
269
272
|
resourceAccessTokenEvents?: pulumi.Input<boolean>;
|
|
270
273
|
/**
|
|
271
|
-
* Invoke the hook for tag push events.
|
|
274
|
+
* Invoke the hook for tag push events. Defaults to `false`.
|
|
272
275
|
*/
|
|
273
276
|
tagPushEvents?: pulumi.Input<boolean>;
|
|
274
277
|
/**
|
|
@@ -280,7 +283,7 @@ export interface ProjectHookState {
|
|
|
280
283
|
*/
|
|
281
284
|
url?: pulumi.Input<string>;
|
|
282
285
|
/**
|
|
283
|
-
* Invoke the hook for wiki page events.
|
|
286
|
+
* Invoke the hook for wiki page events. Defaults to `false`.
|
|
284
287
|
*/
|
|
285
288
|
wikiPageEvents?: pulumi.Input<boolean>;
|
|
286
289
|
}
|
|
@@ -289,11 +292,11 @@ export interface ProjectHookState {
|
|
|
289
292
|
*/
|
|
290
293
|
export interface ProjectHookArgs {
|
|
291
294
|
/**
|
|
292
|
-
* Invoke the hook for confidential issues events.
|
|
295
|
+
* Invoke the hook for confidential issues events. Defaults to `false`.
|
|
293
296
|
*/
|
|
294
297
|
confidentialIssuesEvents?: pulumi.Input<boolean>;
|
|
295
298
|
/**
|
|
296
|
-
* Invoke the hook for confidential note events.
|
|
299
|
+
* Invoke the hook for confidential note events. Defaults to `false`.
|
|
297
300
|
*/
|
|
298
301
|
confidentialNoteEvents?: pulumi.Input<boolean>;
|
|
299
302
|
/**
|
|
@@ -305,7 +308,7 @@ export interface ProjectHookArgs {
|
|
|
305
308
|
*/
|
|
306
309
|
customWebhookTemplate?: pulumi.Input<string>;
|
|
307
310
|
/**
|
|
308
|
-
* Invoke the hook for deployment events.
|
|
311
|
+
* Invoke the hook for deployment events. Defaults to `false`.
|
|
309
312
|
*/
|
|
310
313
|
deploymentEvents?: pulumi.Input<boolean>;
|
|
311
314
|
/**
|
|
@@ -313,19 +316,19 @@ export interface ProjectHookArgs {
|
|
|
313
316
|
*/
|
|
314
317
|
description?: pulumi.Input<string>;
|
|
315
318
|
/**
|
|
316
|
-
* Enable SSL verification when invoking the hook.
|
|
319
|
+
* Enable SSL verification when invoking the hook. Defaults to `true`.
|
|
317
320
|
*/
|
|
318
321
|
enableSslVerification?: pulumi.Input<boolean>;
|
|
319
322
|
/**
|
|
320
|
-
* Invoke the hook for issues events.
|
|
323
|
+
* Invoke the hook for issues events. Defaults to `false`.
|
|
321
324
|
*/
|
|
322
325
|
issuesEvents?: pulumi.Input<boolean>;
|
|
323
326
|
/**
|
|
324
|
-
* Invoke the hook for job events.
|
|
327
|
+
* Invoke the hook for job events. Defaults to `false`.
|
|
325
328
|
*/
|
|
326
329
|
jobEvents?: pulumi.Input<boolean>;
|
|
327
330
|
/**
|
|
328
|
-
* Invoke the hook for merge requests events.
|
|
331
|
+
* Invoke the hook for merge requests events. Defaults to `false`.
|
|
329
332
|
*/
|
|
330
333
|
mergeRequestsEvents?: pulumi.Input<boolean>;
|
|
331
334
|
/**
|
|
@@ -333,11 +336,11 @@ export interface ProjectHookArgs {
|
|
|
333
336
|
*/
|
|
334
337
|
name?: pulumi.Input<string>;
|
|
335
338
|
/**
|
|
336
|
-
* Invoke the hook for note events.
|
|
339
|
+
* Invoke the hook for note events. Defaults to `false`.
|
|
337
340
|
*/
|
|
338
341
|
noteEvents?: pulumi.Input<boolean>;
|
|
339
342
|
/**
|
|
340
|
-
* Invoke the hook for pipeline events.
|
|
343
|
+
* Invoke the hook for pipeline events. Defaults to `false`.
|
|
341
344
|
*/
|
|
342
345
|
pipelineEvents?: pulumi.Input<boolean>;
|
|
343
346
|
/**
|
|
@@ -345,7 +348,7 @@ export interface ProjectHookArgs {
|
|
|
345
348
|
*/
|
|
346
349
|
project: pulumi.Input<string>;
|
|
347
350
|
/**
|
|
348
|
-
* Invoke the hook for push events.
|
|
351
|
+
* Invoke the hook for push events. Defaults to `true`.
|
|
349
352
|
*/
|
|
350
353
|
pushEvents?: pulumi.Input<boolean>;
|
|
351
354
|
/**
|
|
@@ -353,15 +356,15 @@ export interface ProjectHookArgs {
|
|
|
353
356
|
*/
|
|
354
357
|
pushEventsBranchFilter?: pulumi.Input<string>;
|
|
355
358
|
/**
|
|
356
|
-
* Invoke the hook for release events.
|
|
359
|
+
* Invoke the hook for release events. Defaults to `false`.
|
|
357
360
|
*/
|
|
358
361
|
releasesEvents?: pulumi.Input<boolean>;
|
|
359
362
|
/**
|
|
360
|
-
* Invoke the hook for project access token expiry events.
|
|
363
|
+
* Invoke the hook for project access token expiry events. Defaults to `false`.
|
|
361
364
|
*/
|
|
362
365
|
resourceAccessTokenEvents?: pulumi.Input<boolean>;
|
|
363
366
|
/**
|
|
364
|
-
* Invoke the hook for tag push events.
|
|
367
|
+
* Invoke the hook for tag push events. Defaults to `false`.
|
|
365
368
|
*/
|
|
366
369
|
tagPushEvents?: pulumi.Input<boolean>;
|
|
367
370
|
/**
|
|
@@ -373,7 +376,7 @@ export interface ProjectHookArgs {
|
|
|
373
376
|
*/
|
|
374
377
|
url: pulumi.Input<string>;
|
|
375
378
|
/**
|
|
376
|
-
* Invoke the hook for wiki page events.
|
|
379
|
+
* Invoke the hook for wiki page events. Defaults to `false`.
|
|
377
380
|
*/
|
|
378
381
|
wikiPageEvents?: pulumi.Input<boolean>;
|
|
379
382
|
}
|
package/projectHook.js
CHANGED
|
@@ -8,6 +8,8 @@ const utilities = require("./utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* The `gitlab.ProjectHook` resource allows to manage the lifecycle of a project hook.
|
|
10
10
|
*
|
|
11
|
+
* > Note that `pushEvents` defaults to `true`.
|
|
12
|
+
*
|
|
11
13
|
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/project_webhooks/)
|
|
12
14
|
*
|
|
13
15
|
* ## Example Usage
|
|
@@ -22,6 +24,7 @@ const utilities = require("./utilities");
|
|
|
22
24
|
* name: "example",
|
|
23
25
|
* description: "Example hook",
|
|
24
26
|
* mergeRequestsEvents: true,
|
|
27
|
+
* pushEvents: false,
|
|
25
28
|
* });
|
|
26
29
|
* // Using Custom Headers
|
|
27
30
|
* // Values of headers can't be imported
|
package/projectHook.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"projectHook.js","sourceRoot":"","sources":["../projectHook.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"projectHook.js","sourceRoot":"","sources":["../projectHook.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* The `gitlab.ProjectIssueLink` resource allows to manage the lifecycle of project issue links.
|
|
4
|
+
*
|
|
5
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/issue_links/)
|
|
6
|
+
*
|
|
7
|
+
* ## Example Usage
|
|
8
|
+
*
|
|
9
|
+
* ```typescript
|
|
10
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
11
|
+
* import * as gitlab from "@pulumi/gitlab";
|
|
12
|
+
*
|
|
13
|
+
* // Create a project
|
|
14
|
+
* const example = new gitlab.Project("example", {
|
|
15
|
+
* name: "example",
|
|
16
|
+
* description: "An example project",
|
|
17
|
+
* visibilityLevel: "public",
|
|
18
|
+
* });
|
|
19
|
+
* // Create source issue
|
|
20
|
+
* const source = new gitlab.ProjectIssue("source", {
|
|
21
|
+
* project: example.id,
|
|
22
|
+
* title: "Source Issue",
|
|
23
|
+
* });
|
|
24
|
+
* // Create target issue
|
|
25
|
+
* const target = new gitlab.ProjectIssue("target", {
|
|
26
|
+
* project: example.id,
|
|
27
|
+
* title: "Target Issue",
|
|
28
|
+
* });
|
|
29
|
+
* // Link issues with "relates_to" link type (default)
|
|
30
|
+
* const relatesTo = new gitlab.ProjectIssueLink("relates_to", {
|
|
31
|
+
* project: example.id,
|
|
32
|
+
* issueIid: source.iid,
|
|
33
|
+
* targetProjectId: example.id,
|
|
34
|
+
* targetIssueIid: target.iid,
|
|
35
|
+
* linkType: "relates_to",
|
|
36
|
+
* });
|
|
37
|
+
* // Cross-project linking example
|
|
38
|
+
* const otherProject = new gitlab.Project("other_project", {
|
|
39
|
+
* name: "other_project",
|
|
40
|
+
* description: "Another project for cross-project linking",
|
|
41
|
+
* });
|
|
42
|
+
* const crossTarget = new gitlab.ProjectIssue("cross_target", {
|
|
43
|
+
* project: otherProject.id,
|
|
44
|
+
* title: "Cross-Project Target Issue",
|
|
45
|
+
* });
|
|
46
|
+
* const crossProjectRelatesTo = new gitlab.ProjectIssueLink("cross_project_relates_to", {
|
|
47
|
+
* project: example.id,
|
|
48
|
+
* issueIid: source.iid,
|
|
49
|
+
* targetProjectId: otherProject.id,
|
|
50
|
+
* targetIssueIid: crossTarget.iid,
|
|
51
|
+
* linkType: "relates_to",
|
|
52
|
+
* });
|
|
53
|
+
* ```
|
|
54
|
+
*
|
|
55
|
+
* ## Import
|
|
56
|
+
*
|
|
57
|
+
* Starting in Terraform v1.5.0, you can use an import block to import `gitlab_project_issue_link`. For example:
|
|
58
|
+
*
|
|
59
|
+
* terraform
|
|
60
|
+
*
|
|
61
|
+
* import {
|
|
62
|
+
*
|
|
63
|
+
* to = gitlab_project_issue_link.example
|
|
64
|
+
*
|
|
65
|
+
* id = "see CLI command below for ID"
|
|
66
|
+
*
|
|
67
|
+
* }
|
|
68
|
+
*
|
|
69
|
+
* Importing using the CLI is supported with the following syntax:
|
|
70
|
+
*
|
|
71
|
+
* You can import this resource with an id made up of `{project-id}:{source-issue-iid}:{target-issue-iid}`, e.g.
|
|
72
|
+
*
|
|
73
|
+
* ```sh
|
|
74
|
+
* $ pulumi import gitlab:index/projectIssueLink:ProjectIssueLink example 42:1001:1002
|
|
75
|
+
* ```
|
|
76
|
+
*/
|
|
77
|
+
export declare class ProjectIssueLink extends pulumi.CustomResource {
|
|
78
|
+
/**
|
|
79
|
+
* Get an existing ProjectIssueLink resource's state with the given name, ID, and optional extra
|
|
80
|
+
* properties used to qualify the lookup.
|
|
81
|
+
*
|
|
82
|
+
* @param name The _unique_ name of the resulting resource.
|
|
83
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
84
|
+
* @param state Any extra arguments used during the lookup.
|
|
85
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
86
|
+
*/
|
|
87
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: ProjectIssueLinkState, opts?: pulumi.CustomResourceOptions): ProjectIssueLink;
|
|
88
|
+
/**
|
|
89
|
+
* Returns true if the given object is an instance of ProjectIssueLink. This is designed to work even
|
|
90
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
91
|
+
*/
|
|
92
|
+
static isInstance(obj: any): obj is ProjectIssueLink;
|
|
93
|
+
/**
|
|
94
|
+
* The internal ID of a project's issue.
|
|
95
|
+
*/
|
|
96
|
+
readonly issueIid: pulumi.Output<number>;
|
|
97
|
+
/**
|
|
98
|
+
* ID of an issue relationship.
|
|
99
|
+
*/
|
|
100
|
+
readonly issueLinkId: pulumi.Output<number>;
|
|
101
|
+
/**
|
|
102
|
+
* Type of the relationship. Valid values are `relatesTo`, `blocks`, `isBlockedBy`.
|
|
103
|
+
*/
|
|
104
|
+
readonly linkType: pulumi.Output<string>;
|
|
105
|
+
/**
|
|
106
|
+
* The ID or URL-encoded path of the project.
|
|
107
|
+
*/
|
|
108
|
+
readonly project: pulumi.Output<string>;
|
|
109
|
+
/**
|
|
110
|
+
* The internal ID of the target issue.
|
|
111
|
+
*/
|
|
112
|
+
readonly targetIssueIid: pulumi.Output<number>;
|
|
113
|
+
/**
|
|
114
|
+
* The ID or URL-encoded path of the target project.
|
|
115
|
+
*/
|
|
116
|
+
readonly targetProjectId: pulumi.Output<string>;
|
|
117
|
+
/**
|
|
118
|
+
* Create a ProjectIssueLink resource with the given unique name, arguments, and options.
|
|
119
|
+
*
|
|
120
|
+
* @param name The _unique_ name of the resource.
|
|
121
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
122
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
123
|
+
*/
|
|
124
|
+
constructor(name: string, args: ProjectIssueLinkArgs, opts?: pulumi.CustomResourceOptions);
|
|
125
|
+
}
|
|
126
|
+
/**
|
|
127
|
+
* Input properties used for looking up and filtering ProjectIssueLink resources.
|
|
128
|
+
*/
|
|
129
|
+
export interface ProjectIssueLinkState {
|
|
130
|
+
/**
|
|
131
|
+
* The internal ID of a project's issue.
|
|
132
|
+
*/
|
|
133
|
+
issueIid?: pulumi.Input<number>;
|
|
134
|
+
/**
|
|
135
|
+
* ID of an issue relationship.
|
|
136
|
+
*/
|
|
137
|
+
issueLinkId?: pulumi.Input<number>;
|
|
138
|
+
/**
|
|
139
|
+
* Type of the relationship. Valid values are `relatesTo`, `blocks`, `isBlockedBy`.
|
|
140
|
+
*/
|
|
141
|
+
linkType?: pulumi.Input<string>;
|
|
142
|
+
/**
|
|
143
|
+
* The ID or URL-encoded path of the project.
|
|
144
|
+
*/
|
|
145
|
+
project?: pulumi.Input<string>;
|
|
146
|
+
/**
|
|
147
|
+
* The internal ID of the target issue.
|
|
148
|
+
*/
|
|
149
|
+
targetIssueIid?: pulumi.Input<number>;
|
|
150
|
+
/**
|
|
151
|
+
* The ID or URL-encoded path of the target project.
|
|
152
|
+
*/
|
|
153
|
+
targetProjectId?: pulumi.Input<string>;
|
|
154
|
+
}
|
|
155
|
+
/**
|
|
156
|
+
* The set of arguments for constructing a ProjectIssueLink resource.
|
|
157
|
+
*/
|
|
158
|
+
export interface ProjectIssueLinkArgs {
|
|
159
|
+
/**
|
|
160
|
+
* The internal ID of a project's issue.
|
|
161
|
+
*/
|
|
162
|
+
issueIid: pulumi.Input<number>;
|
|
163
|
+
/**
|
|
164
|
+
* Type of the relationship. Valid values are `relatesTo`, `blocks`, `isBlockedBy`.
|
|
165
|
+
*/
|
|
166
|
+
linkType: pulumi.Input<string>;
|
|
167
|
+
/**
|
|
168
|
+
* The ID or URL-encoded path of the project.
|
|
169
|
+
*/
|
|
170
|
+
project: pulumi.Input<string>;
|
|
171
|
+
/**
|
|
172
|
+
* The internal ID of the target issue.
|
|
173
|
+
*/
|
|
174
|
+
targetIssueIid: pulumi.Input<number>;
|
|
175
|
+
/**
|
|
176
|
+
* The ID or URL-encoded path of the target project.
|
|
177
|
+
*/
|
|
178
|
+
targetProjectId: pulumi.Input<string>;
|
|
179
|
+
}
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.ProjectIssueLink = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* The `gitlab.ProjectIssueLink` resource allows to manage the lifecycle of project issue links.
|
|
10
|
+
*
|
|
11
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/issue_links/)
|
|
12
|
+
*
|
|
13
|
+
* ## Example Usage
|
|
14
|
+
*
|
|
15
|
+
* ```typescript
|
|
16
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
+
* import * as gitlab from "@pulumi/gitlab";
|
|
18
|
+
*
|
|
19
|
+
* // Create a project
|
|
20
|
+
* const example = new gitlab.Project("example", {
|
|
21
|
+
* name: "example",
|
|
22
|
+
* description: "An example project",
|
|
23
|
+
* visibilityLevel: "public",
|
|
24
|
+
* });
|
|
25
|
+
* // Create source issue
|
|
26
|
+
* const source = new gitlab.ProjectIssue("source", {
|
|
27
|
+
* project: example.id,
|
|
28
|
+
* title: "Source Issue",
|
|
29
|
+
* });
|
|
30
|
+
* // Create target issue
|
|
31
|
+
* const target = new gitlab.ProjectIssue("target", {
|
|
32
|
+
* project: example.id,
|
|
33
|
+
* title: "Target Issue",
|
|
34
|
+
* });
|
|
35
|
+
* // Link issues with "relates_to" link type (default)
|
|
36
|
+
* const relatesTo = new gitlab.ProjectIssueLink("relates_to", {
|
|
37
|
+
* project: example.id,
|
|
38
|
+
* issueIid: source.iid,
|
|
39
|
+
* targetProjectId: example.id,
|
|
40
|
+
* targetIssueIid: target.iid,
|
|
41
|
+
* linkType: "relates_to",
|
|
42
|
+
* });
|
|
43
|
+
* // Cross-project linking example
|
|
44
|
+
* const otherProject = new gitlab.Project("other_project", {
|
|
45
|
+
* name: "other_project",
|
|
46
|
+
* description: "Another project for cross-project linking",
|
|
47
|
+
* });
|
|
48
|
+
* const crossTarget = new gitlab.ProjectIssue("cross_target", {
|
|
49
|
+
* project: otherProject.id,
|
|
50
|
+
* title: "Cross-Project Target Issue",
|
|
51
|
+
* });
|
|
52
|
+
* const crossProjectRelatesTo = new gitlab.ProjectIssueLink("cross_project_relates_to", {
|
|
53
|
+
* project: example.id,
|
|
54
|
+
* issueIid: source.iid,
|
|
55
|
+
* targetProjectId: otherProject.id,
|
|
56
|
+
* targetIssueIid: crossTarget.iid,
|
|
57
|
+
* linkType: "relates_to",
|
|
58
|
+
* });
|
|
59
|
+
* ```
|
|
60
|
+
*
|
|
61
|
+
* ## Import
|
|
62
|
+
*
|
|
63
|
+
* Starting in Terraform v1.5.0, you can use an import block to import `gitlab_project_issue_link`. For example:
|
|
64
|
+
*
|
|
65
|
+
* terraform
|
|
66
|
+
*
|
|
67
|
+
* import {
|
|
68
|
+
*
|
|
69
|
+
* to = gitlab_project_issue_link.example
|
|
70
|
+
*
|
|
71
|
+
* id = "see CLI command below for ID"
|
|
72
|
+
*
|
|
73
|
+
* }
|
|
74
|
+
*
|
|
75
|
+
* Importing using the CLI is supported with the following syntax:
|
|
76
|
+
*
|
|
77
|
+
* You can import this resource with an id made up of `{project-id}:{source-issue-iid}:{target-issue-iid}`, e.g.
|
|
78
|
+
*
|
|
79
|
+
* ```sh
|
|
80
|
+
* $ pulumi import gitlab:index/projectIssueLink:ProjectIssueLink example 42:1001:1002
|
|
81
|
+
* ```
|
|
82
|
+
*/
|
|
83
|
+
class ProjectIssueLink extends pulumi.CustomResource {
|
|
84
|
+
/**
|
|
85
|
+
* Get an existing ProjectIssueLink resource's state with the given name, ID, and optional extra
|
|
86
|
+
* properties used to qualify the lookup.
|
|
87
|
+
*
|
|
88
|
+
* @param name The _unique_ name of the resulting resource.
|
|
89
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
90
|
+
* @param state Any extra arguments used during the lookup.
|
|
91
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
92
|
+
*/
|
|
93
|
+
static get(name, id, state, opts) {
|
|
94
|
+
return new ProjectIssueLink(name, state, { ...opts, id: id });
|
|
95
|
+
}
|
|
96
|
+
/**
|
|
97
|
+
* Returns true if the given object is an instance of ProjectIssueLink. This is designed to work even
|
|
98
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
99
|
+
*/
|
|
100
|
+
static isInstance(obj) {
|
|
101
|
+
if (obj === undefined || obj === null) {
|
|
102
|
+
return false;
|
|
103
|
+
}
|
|
104
|
+
return obj['__pulumiType'] === ProjectIssueLink.__pulumiType;
|
|
105
|
+
}
|
|
106
|
+
constructor(name, argsOrState, opts) {
|
|
107
|
+
let resourceInputs = {};
|
|
108
|
+
opts = opts || {};
|
|
109
|
+
if (opts.id) {
|
|
110
|
+
const state = argsOrState;
|
|
111
|
+
resourceInputs["issueIid"] = state?.issueIid;
|
|
112
|
+
resourceInputs["issueLinkId"] = state?.issueLinkId;
|
|
113
|
+
resourceInputs["linkType"] = state?.linkType;
|
|
114
|
+
resourceInputs["project"] = state?.project;
|
|
115
|
+
resourceInputs["targetIssueIid"] = state?.targetIssueIid;
|
|
116
|
+
resourceInputs["targetProjectId"] = state?.targetProjectId;
|
|
117
|
+
}
|
|
118
|
+
else {
|
|
119
|
+
const args = argsOrState;
|
|
120
|
+
if (args?.issueIid === undefined && !opts.urn) {
|
|
121
|
+
throw new Error("Missing required property 'issueIid'");
|
|
122
|
+
}
|
|
123
|
+
if (args?.linkType === undefined && !opts.urn) {
|
|
124
|
+
throw new Error("Missing required property 'linkType'");
|
|
125
|
+
}
|
|
126
|
+
if (args?.project === undefined && !opts.urn) {
|
|
127
|
+
throw new Error("Missing required property 'project'");
|
|
128
|
+
}
|
|
129
|
+
if (args?.targetIssueIid === undefined && !opts.urn) {
|
|
130
|
+
throw new Error("Missing required property 'targetIssueIid'");
|
|
131
|
+
}
|
|
132
|
+
if (args?.targetProjectId === undefined && !opts.urn) {
|
|
133
|
+
throw new Error("Missing required property 'targetProjectId'");
|
|
134
|
+
}
|
|
135
|
+
resourceInputs["issueIid"] = args?.issueIid;
|
|
136
|
+
resourceInputs["linkType"] = args?.linkType;
|
|
137
|
+
resourceInputs["project"] = args?.project;
|
|
138
|
+
resourceInputs["targetIssueIid"] = args?.targetIssueIid;
|
|
139
|
+
resourceInputs["targetProjectId"] = args?.targetProjectId;
|
|
140
|
+
resourceInputs["issueLinkId"] = undefined /*out*/;
|
|
141
|
+
}
|
|
142
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
143
|
+
super(ProjectIssueLink.__pulumiType, name, resourceInputs, opts);
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
exports.ProjectIssueLink = ProjectIssueLink;
|
|
147
|
+
/** @internal */
|
|
148
|
+
ProjectIssueLink.__pulumiType = 'gitlab:index/projectIssueLink:ProjectIssueLink';
|
|
149
|
+
//# sourceMappingURL=projectIssueLink.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"projectIssueLink.js","sourceRoot":"","sources":["../projectIssueLink.ts"],"names":[],"mappings":"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"}
|