pulumi-gitlab 9.6.0a1766429294__py3-none-any.whl → 9.8.0__py3-none-any.whl
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.
- pulumi_gitlab/__init__.py +54 -0
- pulumi_gitlab/get_project_hook.py +2 -2
- pulumi_gitlab/get_project_secure_file.py +2 -2
- pulumi_gitlab/group.py +141 -0
- pulumi_gitlab/group_hook.py +116 -112
- pulumi_gitlab/outputs.py +53 -1
- pulumi_gitlab/project_cicd_catalog.py +314 -0
- pulumi_gitlab/project_hook.py +106 -100
- pulumi_gitlab/project_issue_link.py +502 -0
- pulumi_gitlab/project_job_token_scope.py +20 -4
- pulumi_gitlab/project_mirror.py +8 -6
- pulumi_gitlab/project_package_dependency_proxy.py +446 -0
- pulumi_gitlab/project_pull_mirror.py +837 -0
- pulumi_gitlab/project_push_mirror.py +547 -0
- pulumi_gitlab/project_secure_file.py +489 -0
- pulumi_gitlab/project_tag.py +3 -3
- pulumi_gitlab/pulumi-plugin.json +1 -1
- pulumi_gitlab/runner.py +2 -2
- {pulumi_gitlab-9.6.0a1766429294.dist-info → pulumi_gitlab-9.8.0.dist-info}/METADATA +1 -1
- {pulumi_gitlab-9.6.0a1766429294.dist-info → pulumi_gitlab-9.8.0.dist-info}/RECORD +22 -16
- {pulumi_gitlab-9.6.0a1766429294.dist-info → pulumi_gitlab-9.8.0.dist-info}/WHEEL +0 -0
- {pulumi_gitlab-9.6.0a1766429294.dist-info → pulumi_gitlab-9.8.0.dist-info}/top_level.txt +0 -0
pulumi_gitlab/group_hook.py
CHANGED
|
@@ -51,28 +51,28 @@ class GroupHookArgs:
|
|
|
51
51
|
:param pulumi.Input[_builtins.str] group: The full path or id of the group to add the hook to.
|
|
52
52
|
:param pulumi.Input[_builtins.str] url: The url of the hook to invoke. Forces re-creation to preserve `token`.
|
|
53
53
|
:param pulumi.Input[_builtins.str] branch_filter_strategy: Filter push events by branch. Valid values are: `wildcard`, `regex`, `all_branches`.
|
|
54
|
-
:param pulumi.Input[_builtins.bool] confidential_issues_events: Invoke the hook for confidential issues events.
|
|
55
|
-
:param pulumi.Input[_builtins.bool] confidential_note_events: Invoke the hook for confidential note events.
|
|
54
|
+
:param pulumi.Input[_builtins.bool] confidential_issues_events: Invoke the hook for confidential issues events. Defaults to `false`.
|
|
55
|
+
:param pulumi.Input[_builtins.bool] confidential_note_events: Invoke the hook for confidential note events. Defaults to `false`.
|
|
56
56
|
:param pulumi.Input[Sequence[pulumi.Input['GroupHookCustomHeaderArgs']]] custom_headers: Custom headers for the project webhook.
|
|
57
57
|
:param pulumi.Input[_builtins.str] custom_webhook_template: Custom webhook template.
|
|
58
|
-
:param pulumi.Input[_builtins.bool] deployment_events: Invoke the hook for deployment events.
|
|
58
|
+
:param pulumi.Input[_builtins.bool] deployment_events: Invoke the hook for deployment events. Defaults to `false`.
|
|
59
59
|
:param pulumi.Input[_builtins.str] description: Description of the group webhook.
|
|
60
|
-
:param pulumi.Input[_builtins.bool] emoji_events: Invoke the hook for emoji events.
|
|
61
|
-
:param pulumi.Input[_builtins.bool] enable_ssl_verification: Enable SSL verification when invoking the hook.
|
|
62
|
-
:param pulumi.Input[_builtins.bool] feature_flag_events: Invoke the hook for feature flag events.
|
|
63
|
-
:param pulumi.Input[_builtins.bool] issues_events: Invoke the hook for issues events.
|
|
64
|
-
:param pulumi.Input[_builtins.bool] job_events: Invoke the hook for job events.
|
|
65
|
-
:param pulumi.Input[_builtins.bool] merge_requests_events: Invoke the hook for merge requests events.
|
|
60
|
+
:param pulumi.Input[_builtins.bool] emoji_events: Invoke the hook for emoji events. Defaults to `false`.
|
|
61
|
+
:param pulumi.Input[_builtins.bool] enable_ssl_verification: Enable SSL verification when invoking the hook. Defaults to `true`.
|
|
62
|
+
:param pulumi.Input[_builtins.bool] feature_flag_events: Invoke the hook for feature flag events. Defaults to `false`.
|
|
63
|
+
:param pulumi.Input[_builtins.bool] issues_events: Invoke the hook for issues events. Defaults to `false`.
|
|
64
|
+
:param pulumi.Input[_builtins.bool] job_events: Invoke the hook for job events. Defaults to `false`.
|
|
65
|
+
:param pulumi.Input[_builtins.bool] merge_requests_events: Invoke the hook for merge requests events. Defaults to `false`.
|
|
66
66
|
:param pulumi.Input[_builtins.str] name: Name of the group webhook.
|
|
67
|
-
:param pulumi.Input[_builtins.bool] note_events: Invoke the hook for note events.
|
|
68
|
-
:param pulumi.Input[_builtins.bool] pipeline_events: Invoke the hook for pipeline events.
|
|
69
|
-
:param pulumi.Input[_builtins.bool] push_events: Invoke the hook for push events.
|
|
67
|
+
:param pulumi.Input[_builtins.bool] note_events: Invoke the hook for note events. Defaults to `false`.
|
|
68
|
+
:param pulumi.Input[_builtins.bool] pipeline_events: Invoke the hook for pipeline events. Defaults to `false`.
|
|
69
|
+
:param pulumi.Input[_builtins.bool] push_events: Invoke the hook for push events. Defaults to `true`.
|
|
70
70
|
:param pulumi.Input[_builtins.str] push_events_branch_filter: Invoke the hook for push events on matching branches only.
|
|
71
|
-
:param pulumi.Input[_builtins.bool] releases_events: Invoke the hook for release events.
|
|
72
|
-
:param pulumi.Input[_builtins.bool] subgroup_events: Invoke the hook for subgroup events.
|
|
73
|
-
:param pulumi.Input[_builtins.bool] tag_push_events: Invoke the hook for tag push events.
|
|
71
|
+
:param pulumi.Input[_builtins.bool] releases_events: Invoke the hook for release events. Defaults to `false`.
|
|
72
|
+
:param pulumi.Input[_builtins.bool] subgroup_events: Invoke the hook for subgroup events. Defaults to `false`.
|
|
73
|
+
:param pulumi.Input[_builtins.bool] tag_push_events: Invoke the hook for tag push events. Defaults to `false`.
|
|
74
74
|
:param pulumi.Input[_builtins.str] token: A token to present when invoking the hook. The token is not available for imported resources.
|
|
75
|
-
:param pulumi.Input[_builtins.bool] wiki_page_events: Invoke the hook for wiki page events.
|
|
75
|
+
:param pulumi.Input[_builtins.bool] wiki_page_events: Invoke the hook for wiki page events. Defaults to `false`.
|
|
76
76
|
"""
|
|
77
77
|
pulumi.set(__self__, "group", group)
|
|
78
78
|
pulumi.set(__self__, "url", url)
|
|
@@ -163,7 +163,7 @@ class GroupHookArgs:
|
|
|
163
163
|
@pulumi.getter(name="confidentialIssuesEvents")
|
|
164
164
|
def confidential_issues_events(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
165
165
|
"""
|
|
166
|
-
Invoke the hook for confidential issues events.
|
|
166
|
+
Invoke the hook for confidential issues events. Defaults to `false`.
|
|
167
167
|
"""
|
|
168
168
|
return pulumi.get(self, "confidential_issues_events")
|
|
169
169
|
|
|
@@ -175,7 +175,7 @@ class GroupHookArgs:
|
|
|
175
175
|
@pulumi.getter(name="confidentialNoteEvents")
|
|
176
176
|
def confidential_note_events(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
177
177
|
"""
|
|
178
|
-
Invoke the hook for confidential note events.
|
|
178
|
+
Invoke the hook for confidential note events. Defaults to `false`.
|
|
179
179
|
"""
|
|
180
180
|
return pulumi.get(self, "confidential_note_events")
|
|
181
181
|
|
|
@@ -211,7 +211,7 @@ class GroupHookArgs:
|
|
|
211
211
|
@pulumi.getter(name="deploymentEvents")
|
|
212
212
|
def deployment_events(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
213
213
|
"""
|
|
214
|
-
Invoke the hook for deployment events.
|
|
214
|
+
Invoke the hook for deployment events. Defaults to `false`.
|
|
215
215
|
"""
|
|
216
216
|
return pulumi.get(self, "deployment_events")
|
|
217
217
|
|
|
@@ -235,7 +235,7 @@ class GroupHookArgs:
|
|
|
235
235
|
@pulumi.getter(name="emojiEvents")
|
|
236
236
|
def emoji_events(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
237
237
|
"""
|
|
238
|
-
Invoke the hook for emoji events.
|
|
238
|
+
Invoke the hook for emoji events. Defaults to `false`.
|
|
239
239
|
"""
|
|
240
240
|
return pulumi.get(self, "emoji_events")
|
|
241
241
|
|
|
@@ -247,7 +247,7 @@ class GroupHookArgs:
|
|
|
247
247
|
@pulumi.getter(name="enableSslVerification")
|
|
248
248
|
def enable_ssl_verification(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
249
249
|
"""
|
|
250
|
-
Enable SSL verification when invoking the hook.
|
|
250
|
+
Enable SSL verification when invoking the hook. Defaults to `true`.
|
|
251
251
|
"""
|
|
252
252
|
return pulumi.get(self, "enable_ssl_verification")
|
|
253
253
|
|
|
@@ -259,7 +259,7 @@ class GroupHookArgs:
|
|
|
259
259
|
@pulumi.getter(name="featureFlagEvents")
|
|
260
260
|
def feature_flag_events(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
261
261
|
"""
|
|
262
|
-
Invoke the hook for feature flag events.
|
|
262
|
+
Invoke the hook for feature flag events. Defaults to `false`.
|
|
263
263
|
"""
|
|
264
264
|
return pulumi.get(self, "feature_flag_events")
|
|
265
265
|
|
|
@@ -271,7 +271,7 @@ class GroupHookArgs:
|
|
|
271
271
|
@pulumi.getter(name="issuesEvents")
|
|
272
272
|
def issues_events(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
273
273
|
"""
|
|
274
|
-
Invoke the hook for issues events.
|
|
274
|
+
Invoke the hook for issues events. Defaults to `false`.
|
|
275
275
|
"""
|
|
276
276
|
return pulumi.get(self, "issues_events")
|
|
277
277
|
|
|
@@ -283,7 +283,7 @@ class GroupHookArgs:
|
|
|
283
283
|
@pulumi.getter(name="jobEvents")
|
|
284
284
|
def job_events(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
285
285
|
"""
|
|
286
|
-
Invoke the hook for job events.
|
|
286
|
+
Invoke the hook for job events. Defaults to `false`.
|
|
287
287
|
"""
|
|
288
288
|
return pulumi.get(self, "job_events")
|
|
289
289
|
|
|
@@ -295,7 +295,7 @@ class GroupHookArgs:
|
|
|
295
295
|
@pulumi.getter(name="mergeRequestsEvents")
|
|
296
296
|
def merge_requests_events(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
297
297
|
"""
|
|
298
|
-
Invoke the hook for merge requests events.
|
|
298
|
+
Invoke the hook for merge requests events. Defaults to `false`.
|
|
299
299
|
"""
|
|
300
300
|
return pulumi.get(self, "merge_requests_events")
|
|
301
301
|
|
|
@@ -319,7 +319,7 @@ class GroupHookArgs:
|
|
|
319
319
|
@pulumi.getter(name="noteEvents")
|
|
320
320
|
def note_events(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
321
321
|
"""
|
|
322
|
-
Invoke the hook for note events.
|
|
322
|
+
Invoke the hook for note events. Defaults to `false`.
|
|
323
323
|
"""
|
|
324
324
|
return pulumi.get(self, "note_events")
|
|
325
325
|
|
|
@@ -331,7 +331,7 @@ class GroupHookArgs:
|
|
|
331
331
|
@pulumi.getter(name="pipelineEvents")
|
|
332
332
|
def pipeline_events(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
333
333
|
"""
|
|
334
|
-
Invoke the hook for pipeline events.
|
|
334
|
+
Invoke the hook for pipeline events. Defaults to `false`.
|
|
335
335
|
"""
|
|
336
336
|
return pulumi.get(self, "pipeline_events")
|
|
337
337
|
|
|
@@ -343,7 +343,7 @@ class GroupHookArgs:
|
|
|
343
343
|
@pulumi.getter(name="pushEvents")
|
|
344
344
|
def push_events(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
345
345
|
"""
|
|
346
|
-
Invoke the hook for push events.
|
|
346
|
+
Invoke the hook for push events. Defaults to `true`.
|
|
347
347
|
"""
|
|
348
348
|
return pulumi.get(self, "push_events")
|
|
349
349
|
|
|
@@ -367,7 +367,7 @@ class GroupHookArgs:
|
|
|
367
367
|
@pulumi.getter(name="releasesEvents")
|
|
368
368
|
def releases_events(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
369
369
|
"""
|
|
370
|
-
Invoke the hook for release events.
|
|
370
|
+
Invoke the hook for release events. Defaults to `false`.
|
|
371
371
|
"""
|
|
372
372
|
return pulumi.get(self, "releases_events")
|
|
373
373
|
|
|
@@ -379,7 +379,7 @@ class GroupHookArgs:
|
|
|
379
379
|
@pulumi.getter(name="subgroupEvents")
|
|
380
380
|
def subgroup_events(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
381
381
|
"""
|
|
382
|
-
Invoke the hook for subgroup events.
|
|
382
|
+
Invoke the hook for subgroup events. Defaults to `false`.
|
|
383
383
|
"""
|
|
384
384
|
return pulumi.get(self, "subgroup_events")
|
|
385
385
|
|
|
@@ -391,7 +391,7 @@ class GroupHookArgs:
|
|
|
391
391
|
@pulumi.getter(name="tagPushEvents")
|
|
392
392
|
def tag_push_events(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
393
393
|
"""
|
|
394
|
-
Invoke the hook for tag push events.
|
|
394
|
+
Invoke the hook for tag push events. Defaults to `false`.
|
|
395
395
|
"""
|
|
396
396
|
return pulumi.get(self, "tag_push_events")
|
|
397
397
|
|
|
@@ -415,7 +415,7 @@ class GroupHookArgs:
|
|
|
415
415
|
@pulumi.getter(name="wikiPageEvents")
|
|
416
416
|
def wiki_page_events(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
417
417
|
"""
|
|
418
|
-
Invoke the hook for wiki page events.
|
|
418
|
+
Invoke the hook for wiki page events. Defaults to `false`.
|
|
419
419
|
"""
|
|
420
420
|
return pulumi.get(self, "wiki_page_events")
|
|
421
421
|
|
|
@@ -457,32 +457,32 @@ class _GroupHookState:
|
|
|
457
457
|
"""
|
|
458
458
|
Input properties used for looking up and filtering GroupHook resources.
|
|
459
459
|
:param pulumi.Input[_builtins.str] branch_filter_strategy: Filter push events by branch. Valid values are: `wildcard`, `regex`, `all_branches`.
|
|
460
|
-
:param pulumi.Input[_builtins.bool] confidential_issues_events: Invoke the hook for confidential issues events.
|
|
461
|
-
:param pulumi.Input[_builtins.bool] confidential_note_events: Invoke the hook for confidential note events.
|
|
460
|
+
:param pulumi.Input[_builtins.bool] confidential_issues_events: Invoke the hook for confidential issues events. Defaults to `false`.
|
|
461
|
+
:param pulumi.Input[_builtins.bool] confidential_note_events: Invoke the hook for confidential note events. Defaults to `false`.
|
|
462
462
|
:param pulumi.Input[Sequence[pulumi.Input['GroupHookCustomHeaderArgs']]] custom_headers: Custom headers for the project webhook.
|
|
463
463
|
:param pulumi.Input[_builtins.str] custom_webhook_template: Custom webhook template.
|
|
464
|
-
:param pulumi.Input[_builtins.bool] deployment_events: Invoke the hook for deployment events.
|
|
464
|
+
:param pulumi.Input[_builtins.bool] deployment_events: Invoke the hook for deployment events. Defaults to `false`.
|
|
465
465
|
:param pulumi.Input[_builtins.str] description: Description of the group webhook.
|
|
466
|
-
:param pulumi.Input[_builtins.bool] emoji_events: Invoke the hook for emoji events.
|
|
467
|
-
:param pulumi.Input[_builtins.bool] enable_ssl_verification: Enable SSL verification when invoking the hook.
|
|
468
|
-
:param pulumi.Input[_builtins.bool] feature_flag_events: Invoke the hook for feature flag events.
|
|
466
|
+
:param pulumi.Input[_builtins.bool] emoji_events: Invoke the hook for emoji events. Defaults to `false`.
|
|
467
|
+
:param pulumi.Input[_builtins.bool] enable_ssl_verification: Enable SSL verification when invoking the hook. Defaults to `true`.
|
|
468
|
+
:param pulumi.Input[_builtins.bool] feature_flag_events: Invoke the hook for feature flag events. Defaults to `false`.
|
|
469
469
|
:param pulumi.Input[_builtins.str] group: The full path or id of the group to add the hook to.
|
|
470
470
|
:param pulumi.Input[_builtins.int] group_id: The id of the group for the hook.
|
|
471
471
|
:param pulumi.Input[_builtins.int] hook_id: The id of the group hook.
|
|
472
|
-
:param pulumi.Input[_builtins.bool] issues_events: Invoke the hook for issues events.
|
|
473
|
-
:param pulumi.Input[_builtins.bool] job_events: Invoke the hook for job events.
|
|
474
|
-
:param pulumi.Input[_builtins.bool] merge_requests_events: Invoke the hook for merge requests events.
|
|
472
|
+
:param pulumi.Input[_builtins.bool] issues_events: Invoke the hook for issues events. Defaults to `false`.
|
|
473
|
+
:param pulumi.Input[_builtins.bool] job_events: Invoke the hook for job events. Defaults to `false`.
|
|
474
|
+
:param pulumi.Input[_builtins.bool] merge_requests_events: Invoke the hook for merge requests events. Defaults to `false`.
|
|
475
475
|
:param pulumi.Input[_builtins.str] name: Name of the group webhook.
|
|
476
|
-
:param pulumi.Input[_builtins.bool] note_events: Invoke the hook for note events.
|
|
477
|
-
:param pulumi.Input[_builtins.bool] pipeline_events: Invoke the hook for pipeline events.
|
|
478
|
-
:param pulumi.Input[_builtins.bool] push_events: Invoke the hook for push events.
|
|
476
|
+
:param pulumi.Input[_builtins.bool] note_events: Invoke the hook for note events. Defaults to `false`.
|
|
477
|
+
:param pulumi.Input[_builtins.bool] pipeline_events: Invoke the hook for pipeline events. Defaults to `false`.
|
|
478
|
+
:param pulumi.Input[_builtins.bool] push_events: Invoke the hook for push events. Defaults to `true`.
|
|
479
479
|
:param pulumi.Input[_builtins.str] push_events_branch_filter: Invoke the hook for push events on matching branches only.
|
|
480
|
-
:param pulumi.Input[_builtins.bool] releases_events: Invoke the hook for release events.
|
|
481
|
-
:param pulumi.Input[_builtins.bool] subgroup_events: Invoke the hook for subgroup events.
|
|
482
|
-
:param pulumi.Input[_builtins.bool] tag_push_events: Invoke the hook for tag push events.
|
|
480
|
+
:param pulumi.Input[_builtins.bool] releases_events: Invoke the hook for release events. Defaults to `false`.
|
|
481
|
+
:param pulumi.Input[_builtins.bool] subgroup_events: Invoke the hook for subgroup events. Defaults to `false`.
|
|
482
|
+
:param pulumi.Input[_builtins.bool] tag_push_events: Invoke the hook for tag push events. Defaults to `false`.
|
|
483
483
|
:param pulumi.Input[_builtins.str] token: A token to present when invoking the hook. The token is not available for imported resources.
|
|
484
484
|
:param pulumi.Input[_builtins.str] url: The url of the hook to invoke. Forces re-creation to preserve `token`.
|
|
485
|
-
:param pulumi.Input[_builtins.bool] wiki_page_events: Invoke the hook for wiki page events.
|
|
485
|
+
:param pulumi.Input[_builtins.bool] wiki_page_events: Invoke the hook for wiki page events. Defaults to `false`.
|
|
486
486
|
"""
|
|
487
487
|
if branch_filter_strategy is not None:
|
|
488
488
|
pulumi.set(__self__, "branch_filter_strategy", branch_filter_strategy)
|
|
@@ -555,7 +555,7 @@ class _GroupHookState:
|
|
|
555
555
|
@pulumi.getter(name="confidentialIssuesEvents")
|
|
556
556
|
def confidential_issues_events(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
557
557
|
"""
|
|
558
|
-
Invoke the hook for confidential issues events.
|
|
558
|
+
Invoke the hook for confidential issues events. Defaults to `false`.
|
|
559
559
|
"""
|
|
560
560
|
return pulumi.get(self, "confidential_issues_events")
|
|
561
561
|
|
|
@@ -567,7 +567,7 @@ class _GroupHookState:
|
|
|
567
567
|
@pulumi.getter(name="confidentialNoteEvents")
|
|
568
568
|
def confidential_note_events(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
569
569
|
"""
|
|
570
|
-
Invoke the hook for confidential note events.
|
|
570
|
+
Invoke the hook for confidential note events. Defaults to `false`.
|
|
571
571
|
"""
|
|
572
572
|
return pulumi.get(self, "confidential_note_events")
|
|
573
573
|
|
|
@@ -603,7 +603,7 @@ class _GroupHookState:
|
|
|
603
603
|
@pulumi.getter(name="deploymentEvents")
|
|
604
604
|
def deployment_events(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
605
605
|
"""
|
|
606
|
-
Invoke the hook for deployment events.
|
|
606
|
+
Invoke the hook for deployment events. Defaults to `false`.
|
|
607
607
|
"""
|
|
608
608
|
return pulumi.get(self, "deployment_events")
|
|
609
609
|
|
|
@@ -627,7 +627,7 @@ class _GroupHookState:
|
|
|
627
627
|
@pulumi.getter(name="emojiEvents")
|
|
628
628
|
def emoji_events(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
629
629
|
"""
|
|
630
|
-
Invoke the hook for emoji events.
|
|
630
|
+
Invoke the hook for emoji events. Defaults to `false`.
|
|
631
631
|
"""
|
|
632
632
|
return pulumi.get(self, "emoji_events")
|
|
633
633
|
|
|
@@ -639,7 +639,7 @@ class _GroupHookState:
|
|
|
639
639
|
@pulumi.getter(name="enableSslVerification")
|
|
640
640
|
def enable_ssl_verification(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
641
641
|
"""
|
|
642
|
-
Enable SSL verification when invoking the hook.
|
|
642
|
+
Enable SSL verification when invoking the hook. Defaults to `true`.
|
|
643
643
|
"""
|
|
644
644
|
return pulumi.get(self, "enable_ssl_verification")
|
|
645
645
|
|
|
@@ -651,7 +651,7 @@ class _GroupHookState:
|
|
|
651
651
|
@pulumi.getter(name="featureFlagEvents")
|
|
652
652
|
def feature_flag_events(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
653
653
|
"""
|
|
654
|
-
Invoke the hook for feature flag events.
|
|
654
|
+
Invoke the hook for feature flag events. Defaults to `false`.
|
|
655
655
|
"""
|
|
656
656
|
return pulumi.get(self, "feature_flag_events")
|
|
657
657
|
|
|
@@ -699,7 +699,7 @@ class _GroupHookState:
|
|
|
699
699
|
@pulumi.getter(name="issuesEvents")
|
|
700
700
|
def issues_events(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
701
701
|
"""
|
|
702
|
-
Invoke the hook for issues events.
|
|
702
|
+
Invoke the hook for issues events. Defaults to `false`.
|
|
703
703
|
"""
|
|
704
704
|
return pulumi.get(self, "issues_events")
|
|
705
705
|
|
|
@@ -711,7 +711,7 @@ class _GroupHookState:
|
|
|
711
711
|
@pulumi.getter(name="jobEvents")
|
|
712
712
|
def job_events(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
713
713
|
"""
|
|
714
|
-
Invoke the hook for job events.
|
|
714
|
+
Invoke the hook for job events. Defaults to `false`.
|
|
715
715
|
"""
|
|
716
716
|
return pulumi.get(self, "job_events")
|
|
717
717
|
|
|
@@ -723,7 +723,7 @@ class _GroupHookState:
|
|
|
723
723
|
@pulumi.getter(name="mergeRequestsEvents")
|
|
724
724
|
def merge_requests_events(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
725
725
|
"""
|
|
726
|
-
Invoke the hook for merge requests events.
|
|
726
|
+
Invoke the hook for merge requests events. Defaults to `false`.
|
|
727
727
|
"""
|
|
728
728
|
return pulumi.get(self, "merge_requests_events")
|
|
729
729
|
|
|
@@ -747,7 +747,7 @@ class _GroupHookState:
|
|
|
747
747
|
@pulumi.getter(name="noteEvents")
|
|
748
748
|
def note_events(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
749
749
|
"""
|
|
750
|
-
Invoke the hook for note events.
|
|
750
|
+
Invoke the hook for note events. Defaults to `false`.
|
|
751
751
|
"""
|
|
752
752
|
return pulumi.get(self, "note_events")
|
|
753
753
|
|
|
@@ -759,7 +759,7 @@ class _GroupHookState:
|
|
|
759
759
|
@pulumi.getter(name="pipelineEvents")
|
|
760
760
|
def pipeline_events(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
761
761
|
"""
|
|
762
|
-
Invoke the hook for pipeline events.
|
|
762
|
+
Invoke the hook for pipeline events. Defaults to `false`.
|
|
763
763
|
"""
|
|
764
764
|
return pulumi.get(self, "pipeline_events")
|
|
765
765
|
|
|
@@ -771,7 +771,7 @@ class _GroupHookState:
|
|
|
771
771
|
@pulumi.getter(name="pushEvents")
|
|
772
772
|
def push_events(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
773
773
|
"""
|
|
774
|
-
Invoke the hook for push events.
|
|
774
|
+
Invoke the hook for push events. Defaults to `true`.
|
|
775
775
|
"""
|
|
776
776
|
return pulumi.get(self, "push_events")
|
|
777
777
|
|
|
@@ -795,7 +795,7 @@ class _GroupHookState:
|
|
|
795
795
|
@pulumi.getter(name="releasesEvents")
|
|
796
796
|
def releases_events(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
797
797
|
"""
|
|
798
|
-
Invoke the hook for release events.
|
|
798
|
+
Invoke the hook for release events. Defaults to `false`.
|
|
799
799
|
"""
|
|
800
800
|
return pulumi.get(self, "releases_events")
|
|
801
801
|
|
|
@@ -807,7 +807,7 @@ class _GroupHookState:
|
|
|
807
807
|
@pulumi.getter(name="subgroupEvents")
|
|
808
808
|
def subgroup_events(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
809
809
|
"""
|
|
810
|
-
Invoke the hook for subgroup events.
|
|
810
|
+
Invoke the hook for subgroup events. Defaults to `false`.
|
|
811
811
|
"""
|
|
812
812
|
return pulumi.get(self, "subgroup_events")
|
|
813
813
|
|
|
@@ -819,7 +819,7 @@ class _GroupHookState:
|
|
|
819
819
|
@pulumi.getter(name="tagPushEvents")
|
|
820
820
|
def tag_push_events(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
821
821
|
"""
|
|
822
|
-
Invoke the hook for tag push events.
|
|
822
|
+
Invoke the hook for tag push events. Defaults to `false`.
|
|
823
823
|
"""
|
|
824
824
|
return pulumi.get(self, "tag_push_events")
|
|
825
825
|
|
|
@@ -855,7 +855,7 @@ class _GroupHookState:
|
|
|
855
855
|
@pulumi.getter(name="wikiPageEvents")
|
|
856
856
|
def wiki_page_events(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
857
857
|
"""
|
|
858
|
-
Invoke the hook for wiki page events.
|
|
858
|
+
Invoke the hook for wiki page events. Defaults to `false`.
|
|
859
859
|
"""
|
|
860
860
|
return pulumi.get(self, "wiki_page_events")
|
|
861
861
|
|
|
@@ -899,6 +899,8 @@ class GroupHook(pulumi.CustomResource):
|
|
|
899
899
|
"""
|
|
900
900
|
The `GroupHook` resource allows to manage the lifecycle of a group hook.
|
|
901
901
|
|
|
902
|
+
> Note that `push_events` defaults to `true`.
|
|
903
|
+
|
|
902
904
|
**Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/group_webhooks/)
|
|
903
905
|
|
|
904
906
|
## Import
|
|
@@ -928,30 +930,30 @@ class GroupHook(pulumi.CustomResource):
|
|
|
928
930
|
:param str resource_name: The name of the resource.
|
|
929
931
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
930
932
|
:param pulumi.Input[_builtins.str] branch_filter_strategy: Filter push events by branch. Valid values are: `wildcard`, `regex`, `all_branches`.
|
|
931
|
-
:param pulumi.Input[_builtins.bool] confidential_issues_events: Invoke the hook for confidential issues events.
|
|
932
|
-
:param pulumi.Input[_builtins.bool] confidential_note_events: Invoke the hook for confidential note events.
|
|
933
|
+
:param pulumi.Input[_builtins.bool] confidential_issues_events: Invoke the hook for confidential issues events. Defaults to `false`.
|
|
934
|
+
:param pulumi.Input[_builtins.bool] confidential_note_events: Invoke the hook for confidential note events. Defaults to `false`.
|
|
933
935
|
:param pulumi.Input[Sequence[pulumi.Input[Union['GroupHookCustomHeaderArgs', 'GroupHookCustomHeaderArgsDict']]]] custom_headers: Custom headers for the project webhook.
|
|
934
936
|
:param pulumi.Input[_builtins.str] custom_webhook_template: Custom webhook template.
|
|
935
|
-
:param pulumi.Input[_builtins.bool] deployment_events: Invoke the hook for deployment events.
|
|
937
|
+
:param pulumi.Input[_builtins.bool] deployment_events: Invoke the hook for deployment events. Defaults to `false`.
|
|
936
938
|
:param pulumi.Input[_builtins.str] description: Description of the group webhook.
|
|
937
|
-
:param pulumi.Input[_builtins.bool] emoji_events: Invoke the hook for emoji events.
|
|
938
|
-
:param pulumi.Input[_builtins.bool] enable_ssl_verification: Enable SSL verification when invoking the hook.
|
|
939
|
-
:param pulumi.Input[_builtins.bool] feature_flag_events: Invoke the hook for feature flag events.
|
|
939
|
+
:param pulumi.Input[_builtins.bool] emoji_events: Invoke the hook for emoji events. Defaults to `false`.
|
|
940
|
+
:param pulumi.Input[_builtins.bool] enable_ssl_verification: Enable SSL verification when invoking the hook. Defaults to `true`.
|
|
941
|
+
:param pulumi.Input[_builtins.bool] feature_flag_events: Invoke the hook for feature flag events. Defaults to `false`.
|
|
940
942
|
:param pulumi.Input[_builtins.str] group: The full path or id of the group to add the hook to.
|
|
941
|
-
:param pulumi.Input[_builtins.bool] issues_events: Invoke the hook for issues events.
|
|
942
|
-
:param pulumi.Input[_builtins.bool] job_events: Invoke the hook for job events.
|
|
943
|
-
:param pulumi.Input[_builtins.bool] merge_requests_events: Invoke the hook for merge requests events.
|
|
943
|
+
:param pulumi.Input[_builtins.bool] issues_events: Invoke the hook for issues events. Defaults to `false`.
|
|
944
|
+
:param pulumi.Input[_builtins.bool] job_events: Invoke the hook for job events. Defaults to `false`.
|
|
945
|
+
:param pulumi.Input[_builtins.bool] merge_requests_events: Invoke the hook for merge requests events. Defaults to `false`.
|
|
944
946
|
:param pulumi.Input[_builtins.str] name: Name of the group webhook.
|
|
945
|
-
:param pulumi.Input[_builtins.bool] note_events: Invoke the hook for note events.
|
|
946
|
-
:param pulumi.Input[_builtins.bool] pipeline_events: Invoke the hook for pipeline events.
|
|
947
|
-
:param pulumi.Input[_builtins.bool] push_events: Invoke the hook for push events.
|
|
947
|
+
:param pulumi.Input[_builtins.bool] note_events: Invoke the hook for note events. Defaults to `false`.
|
|
948
|
+
:param pulumi.Input[_builtins.bool] pipeline_events: Invoke the hook for pipeline events. Defaults to `false`.
|
|
949
|
+
:param pulumi.Input[_builtins.bool] push_events: Invoke the hook for push events. Defaults to `true`.
|
|
948
950
|
:param pulumi.Input[_builtins.str] push_events_branch_filter: Invoke the hook for push events on matching branches only.
|
|
949
|
-
:param pulumi.Input[_builtins.bool] releases_events: Invoke the hook for release events.
|
|
950
|
-
:param pulumi.Input[_builtins.bool] subgroup_events: Invoke the hook for subgroup events.
|
|
951
|
-
:param pulumi.Input[_builtins.bool] tag_push_events: Invoke the hook for tag push events.
|
|
951
|
+
:param pulumi.Input[_builtins.bool] releases_events: Invoke the hook for release events. Defaults to `false`.
|
|
952
|
+
:param pulumi.Input[_builtins.bool] subgroup_events: Invoke the hook for subgroup events. Defaults to `false`.
|
|
953
|
+
:param pulumi.Input[_builtins.bool] tag_push_events: Invoke the hook for tag push events. Defaults to `false`.
|
|
952
954
|
:param pulumi.Input[_builtins.str] token: A token to present when invoking the hook. The token is not available for imported resources.
|
|
953
955
|
:param pulumi.Input[_builtins.str] url: The url of the hook to invoke. Forces re-creation to preserve `token`.
|
|
954
|
-
:param pulumi.Input[_builtins.bool] wiki_page_events: Invoke the hook for wiki page events.
|
|
956
|
+
:param pulumi.Input[_builtins.bool] wiki_page_events: Invoke the hook for wiki page events. Defaults to `false`.
|
|
955
957
|
"""
|
|
956
958
|
...
|
|
957
959
|
@overload
|
|
@@ -962,6 +964,8 @@ class GroupHook(pulumi.CustomResource):
|
|
|
962
964
|
"""
|
|
963
965
|
The `GroupHook` resource allows to manage the lifecycle of a group hook.
|
|
964
966
|
|
|
967
|
+
> Note that `push_events` defaults to `true`.
|
|
968
|
+
|
|
965
969
|
**Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/group_webhooks/)
|
|
966
970
|
|
|
967
971
|
## Import
|
|
@@ -1115,32 +1119,32 @@ class GroupHook(pulumi.CustomResource):
|
|
|
1115
1119
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
1116
1120
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
1117
1121
|
:param pulumi.Input[_builtins.str] branch_filter_strategy: Filter push events by branch. Valid values are: `wildcard`, `regex`, `all_branches`.
|
|
1118
|
-
:param pulumi.Input[_builtins.bool] confidential_issues_events: Invoke the hook for confidential issues events.
|
|
1119
|
-
:param pulumi.Input[_builtins.bool] confidential_note_events: Invoke the hook for confidential note events.
|
|
1122
|
+
:param pulumi.Input[_builtins.bool] confidential_issues_events: Invoke the hook for confidential issues events. Defaults to `false`.
|
|
1123
|
+
:param pulumi.Input[_builtins.bool] confidential_note_events: Invoke the hook for confidential note events. Defaults to `false`.
|
|
1120
1124
|
:param pulumi.Input[Sequence[pulumi.Input[Union['GroupHookCustomHeaderArgs', 'GroupHookCustomHeaderArgsDict']]]] custom_headers: Custom headers for the project webhook.
|
|
1121
1125
|
:param pulumi.Input[_builtins.str] custom_webhook_template: Custom webhook template.
|
|
1122
|
-
:param pulumi.Input[_builtins.bool] deployment_events: Invoke the hook for deployment events.
|
|
1126
|
+
:param pulumi.Input[_builtins.bool] deployment_events: Invoke the hook for deployment events. Defaults to `false`.
|
|
1123
1127
|
:param pulumi.Input[_builtins.str] description: Description of the group webhook.
|
|
1124
|
-
:param pulumi.Input[_builtins.bool] emoji_events: Invoke the hook for emoji events.
|
|
1125
|
-
:param pulumi.Input[_builtins.bool] enable_ssl_verification: Enable SSL verification when invoking the hook.
|
|
1126
|
-
:param pulumi.Input[_builtins.bool] feature_flag_events: Invoke the hook for feature flag events.
|
|
1128
|
+
:param pulumi.Input[_builtins.bool] emoji_events: Invoke the hook for emoji events. Defaults to `false`.
|
|
1129
|
+
:param pulumi.Input[_builtins.bool] enable_ssl_verification: Enable SSL verification when invoking the hook. Defaults to `true`.
|
|
1130
|
+
:param pulumi.Input[_builtins.bool] feature_flag_events: Invoke the hook for feature flag events. Defaults to `false`.
|
|
1127
1131
|
:param pulumi.Input[_builtins.str] group: The full path or id of the group to add the hook to.
|
|
1128
1132
|
:param pulumi.Input[_builtins.int] group_id: The id of the group for the hook.
|
|
1129
1133
|
:param pulumi.Input[_builtins.int] hook_id: The id of the group hook.
|
|
1130
|
-
:param pulumi.Input[_builtins.bool] issues_events: Invoke the hook for issues events.
|
|
1131
|
-
:param pulumi.Input[_builtins.bool] job_events: Invoke the hook for job events.
|
|
1132
|
-
:param pulumi.Input[_builtins.bool] merge_requests_events: Invoke the hook for merge requests events.
|
|
1134
|
+
:param pulumi.Input[_builtins.bool] issues_events: Invoke the hook for issues events. Defaults to `false`.
|
|
1135
|
+
:param pulumi.Input[_builtins.bool] job_events: Invoke the hook for job events. Defaults to `false`.
|
|
1136
|
+
:param pulumi.Input[_builtins.bool] merge_requests_events: Invoke the hook for merge requests events. Defaults to `false`.
|
|
1133
1137
|
:param pulumi.Input[_builtins.str] name: Name of the group webhook.
|
|
1134
|
-
:param pulumi.Input[_builtins.bool] note_events: Invoke the hook for note events.
|
|
1135
|
-
:param pulumi.Input[_builtins.bool] pipeline_events: Invoke the hook for pipeline events.
|
|
1136
|
-
:param pulumi.Input[_builtins.bool] push_events: Invoke the hook for push events.
|
|
1138
|
+
:param pulumi.Input[_builtins.bool] note_events: Invoke the hook for note events. Defaults to `false`.
|
|
1139
|
+
:param pulumi.Input[_builtins.bool] pipeline_events: Invoke the hook for pipeline events. Defaults to `false`.
|
|
1140
|
+
:param pulumi.Input[_builtins.bool] push_events: Invoke the hook for push events. Defaults to `true`.
|
|
1137
1141
|
:param pulumi.Input[_builtins.str] push_events_branch_filter: Invoke the hook for push events on matching branches only.
|
|
1138
|
-
:param pulumi.Input[_builtins.bool] releases_events: Invoke the hook for release events.
|
|
1139
|
-
:param pulumi.Input[_builtins.bool] subgroup_events: Invoke the hook for subgroup events.
|
|
1140
|
-
:param pulumi.Input[_builtins.bool] tag_push_events: Invoke the hook for tag push events.
|
|
1142
|
+
:param pulumi.Input[_builtins.bool] releases_events: Invoke the hook for release events. Defaults to `false`.
|
|
1143
|
+
:param pulumi.Input[_builtins.bool] subgroup_events: Invoke the hook for subgroup events. Defaults to `false`.
|
|
1144
|
+
:param pulumi.Input[_builtins.bool] tag_push_events: Invoke the hook for tag push events. Defaults to `false`.
|
|
1141
1145
|
:param pulumi.Input[_builtins.str] token: A token to present when invoking the hook. The token is not available for imported resources.
|
|
1142
1146
|
:param pulumi.Input[_builtins.str] url: The url of the hook to invoke. Forces re-creation to preserve `token`.
|
|
1143
|
-
:param pulumi.Input[_builtins.bool] wiki_page_events: Invoke the hook for wiki page events.
|
|
1147
|
+
:param pulumi.Input[_builtins.bool] wiki_page_events: Invoke the hook for wiki page events. Defaults to `false`.
|
|
1144
1148
|
"""
|
|
1145
1149
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
1146
1150
|
|
|
@@ -1187,7 +1191,7 @@ class GroupHook(pulumi.CustomResource):
|
|
|
1187
1191
|
@pulumi.getter(name="confidentialIssuesEvents")
|
|
1188
1192
|
def confidential_issues_events(self) -> pulumi.Output[_builtins.bool]:
|
|
1189
1193
|
"""
|
|
1190
|
-
Invoke the hook for confidential issues events.
|
|
1194
|
+
Invoke the hook for confidential issues events. Defaults to `false`.
|
|
1191
1195
|
"""
|
|
1192
1196
|
return pulumi.get(self, "confidential_issues_events")
|
|
1193
1197
|
|
|
@@ -1195,7 +1199,7 @@ class GroupHook(pulumi.CustomResource):
|
|
|
1195
1199
|
@pulumi.getter(name="confidentialNoteEvents")
|
|
1196
1200
|
def confidential_note_events(self) -> pulumi.Output[_builtins.bool]:
|
|
1197
1201
|
"""
|
|
1198
|
-
Invoke the hook for confidential note events.
|
|
1202
|
+
Invoke the hook for confidential note events. Defaults to `false`.
|
|
1199
1203
|
"""
|
|
1200
1204
|
return pulumi.get(self, "confidential_note_events")
|
|
1201
1205
|
|
|
@@ -1219,7 +1223,7 @@ class GroupHook(pulumi.CustomResource):
|
|
|
1219
1223
|
@pulumi.getter(name="deploymentEvents")
|
|
1220
1224
|
def deployment_events(self) -> pulumi.Output[_builtins.bool]:
|
|
1221
1225
|
"""
|
|
1222
|
-
Invoke the hook for deployment events.
|
|
1226
|
+
Invoke the hook for deployment events. Defaults to `false`.
|
|
1223
1227
|
"""
|
|
1224
1228
|
return pulumi.get(self, "deployment_events")
|
|
1225
1229
|
|
|
@@ -1235,7 +1239,7 @@ class GroupHook(pulumi.CustomResource):
|
|
|
1235
1239
|
@pulumi.getter(name="emojiEvents")
|
|
1236
1240
|
def emoji_events(self) -> pulumi.Output[_builtins.bool]:
|
|
1237
1241
|
"""
|
|
1238
|
-
Invoke the hook for emoji events.
|
|
1242
|
+
Invoke the hook for emoji events. Defaults to `false`.
|
|
1239
1243
|
"""
|
|
1240
1244
|
return pulumi.get(self, "emoji_events")
|
|
1241
1245
|
|
|
@@ -1243,7 +1247,7 @@ class GroupHook(pulumi.CustomResource):
|
|
|
1243
1247
|
@pulumi.getter(name="enableSslVerification")
|
|
1244
1248
|
def enable_ssl_verification(self) -> pulumi.Output[_builtins.bool]:
|
|
1245
1249
|
"""
|
|
1246
|
-
Enable SSL verification when invoking the hook.
|
|
1250
|
+
Enable SSL verification when invoking the hook. Defaults to `true`.
|
|
1247
1251
|
"""
|
|
1248
1252
|
return pulumi.get(self, "enable_ssl_verification")
|
|
1249
1253
|
|
|
@@ -1251,7 +1255,7 @@ class GroupHook(pulumi.CustomResource):
|
|
|
1251
1255
|
@pulumi.getter(name="featureFlagEvents")
|
|
1252
1256
|
def feature_flag_events(self) -> pulumi.Output[_builtins.bool]:
|
|
1253
1257
|
"""
|
|
1254
|
-
Invoke the hook for feature flag events.
|
|
1258
|
+
Invoke the hook for feature flag events. Defaults to `false`.
|
|
1255
1259
|
"""
|
|
1256
1260
|
return pulumi.get(self, "feature_flag_events")
|
|
1257
1261
|
|
|
@@ -1283,7 +1287,7 @@ class GroupHook(pulumi.CustomResource):
|
|
|
1283
1287
|
@pulumi.getter(name="issuesEvents")
|
|
1284
1288
|
def issues_events(self) -> pulumi.Output[_builtins.bool]:
|
|
1285
1289
|
"""
|
|
1286
|
-
Invoke the hook for issues events.
|
|
1290
|
+
Invoke the hook for issues events. Defaults to `false`.
|
|
1287
1291
|
"""
|
|
1288
1292
|
return pulumi.get(self, "issues_events")
|
|
1289
1293
|
|
|
@@ -1291,7 +1295,7 @@ class GroupHook(pulumi.CustomResource):
|
|
|
1291
1295
|
@pulumi.getter(name="jobEvents")
|
|
1292
1296
|
def job_events(self) -> pulumi.Output[_builtins.bool]:
|
|
1293
1297
|
"""
|
|
1294
|
-
Invoke the hook for job events.
|
|
1298
|
+
Invoke the hook for job events. Defaults to `false`.
|
|
1295
1299
|
"""
|
|
1296
1300
|
return pulumi.get(self, "job_events")
|
|
1297
1301
|
|
|
@@ -1299,7 +1303,7 @@ class GroupHook(pulumi.CustomResource):
|
|
|
1299
1303
|
@pulumi.getter(name="mergeRequestsEvents")
|
|
1300
1304
|
def merge_requests_events(self) -> pulumi.Output[_builtins.bool]:
|
|
1301
1305
|
"""
|
|
1302
|
-
Invoke the hook for merge requests events.
|
|
1306
|
+
Invoke the hook for merge requests events. Defaults to `false`.
|
|
1303
1307
|
"""
|
|
1304
1308
|
return pulumi.get(self, "merge_requests_events")
|
|
1305
1309
|
|
|
@@ -1315,7 +1319,7 @@ class GroupHook(pulumi.CustomResource):
|
|
|
1315
1319
|
@pulumi.getter(name="noteEvents")
|
|
1316
1320
|
def note_events(self) -> pulumi.Output[_builtins.bool]:
|
|
1317
1321
|
"""
|
|
1318
|
-
Invoke the hook for note events.
|
|
1322
|
+
Invoke the hook for note events. Defaults to `false`.
|
|
1319
1323
|
"""
|
|
1320
1324
|
return pulumi.get(self, "note_events")
|
|
1321
1325
|
|
|
@@ -1323,7 +1327,7 @@ class GroupHook(pulumi.CustomResource):
|
|
|
1323
1327
|
@pulumi.getter(name="pipelineEvents")
|
|
1324
1328
|
def pipeline_events(self) -> pulumi.Output[_builtins.bool]:
|
|
1325
1329
|
"""
|
|
1326
|
-
Invoke the hook for pipeline events.
|
|
1330
|
+
Invoke the hook for pipeline events. Defaults to `false`.
|
|
1327
1331
|
"""
|
|
1328
1332
|
return pulumi.get(self, "pipeline_events")
|
|
1329
1333
|
|
|
@@ -1331,7 +1335,7 @@ class GroupHook(pulumi.CustomResource):
|
|
|
1331
1335
|
@pulumi.getter(name="pushEvents")
|
|
1332
1336
|
def push_events(self) -> pulumi.Output[_builtins.bool]:
|
|
1333
1337
|
"""
|
|
1334
|
-
Invoke the hook for push events.
|
|
1338
|
+
Invoke the hook for push events. Defaults to `true`.
|
|
1335
1339
|
"""
|
|
1336
1340
|
return pulumi.get(self, "push_events")
|
|
1337
1341
|
|
|
@@ -1347,7 +1351,7 @@ class GroupHook(pulumi.CustomResource):
|
|
|
1347
1351
|
@pulumi.getter(name="releasesEvents")
|
|
1348
1352
|
def releases_events(self) -> pulumi.Output[_builtins.bool]:
|
|
1349
1353
|
"""
|
|
1350
|
-
Invoke the hook for release events.
|
|
1354
|
+
Invoke the hook for release events. Defaults to `false`.
|
|
1351
1355
|
"""
|
|
1352
1356
|
return pulumi.get(self, "releases_events")
|
|
1353
1357
|
|
|
@@ -1355,7 +1359,7 @@ class GroupHook(pulumi.CustomResource):
|
|
|
1355
1359
|
@pulumi.getter(name="subgroupEvents")
|
|
1356
1360
|
def subgroup_events(self) -> pulumi.Output[_builtins.bool]:
|
|
1357
1361
|
"""
|
|
1358
|
-
Invoke the hook for subgroup events.
|
|
1362
|
+
Invoke the hook for subgroup events. Defaults to `false`.
|
|
1359
1363
|
"""
|
|
1360
1364
|
return pulumi.get(self, "subgroup_events")
|
|
1361
1365
|
|
|
@@ -1363,7 +1367,7 @@ class GroupHook(pulumi.CustomResource):
|
|
|
1363
1367
|
@pulumi.getter(name="tagPushEvents")
|
|
1364
1368
|
def tag_push_events(self) -> pulumi.Output[_builtins.bool]:
|
|
1365
1369
|
"""
|
|
1366
|
-
Invoke the hook for tag push events.
|
|
1370
|
+
Invoke the hook for tag push events. Defaults to `false`.
|
|
1367
1371
|
"""
|
|
1368
1372
|
return pulumi.get(self, "tag_push_events")
|
|
1369
1373
|
|
|
@@ -1387,7 +1391,7 @@ class GroupHook(pulumi.CustomResource):
|
|
|
1387
1391
|
@pulumi.getter(name="wikiPageEvents")
|
|
1388
1392
|
def wiki_page_events(self) -> pulumi.Output[_builtins.bool]:
|
|
1389
1393
|
"""
|
|
1390
|
-
Invoke the hook for wiki page events.
|
|
1394
|
+
Invoke the hook for wiki page events. Defaults to `false`.
|
|
1391
1395
|
"""
|
|
1392
1396
|
return pulumi.get(self, "wiki_page_events")
|
|
1393
1397
|
|