pulumi-gitlab 9.8.0__py3-none-any.whl → 9.8.0a1766469107__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 +0 -54
- pulumi_gitlab/get_project_hook.py +2 -2
- pulumi_gitlab/get_project_secure_file.py +2 -2
- pulumi_gitlab/group.py +0 -141
- pulumi_gitlab/group_hook.py +112 -116
- pulumi_gitlab/outputs.py +1 -53
- pulumi_gitlab/project_hook.py +100 -106
- pulumi_gitlab/project_job_token_scope.py +4 -20
- pulumi_gitlab/project_mirror.py +6 -8
- pulumi_gitlab/project_tag.py +3 -3
- pulumi_gitlab/pulumi-plugin.json +1 -1
- pulumi_gitlab/runner.py +2 -2
- {pulumi_gitlab-9.8.0.dist-info → pulumi_gitlab-9.8.0a1766469107.dist-info}/METADATA +1 -1
- {pulumi_gitlab-9.8.0.dist-info → pulumi_gitlab-9.8.0a1766469107.dist-info}/RECORD +16 -22
- pulumi_gitlab/project_cicd_catalog.py +0 -314
- pulumi_gitlab/project_issue_link.py +0 -502
- pulumi_gitlab/project_package_dependency_proxy.py +0 -446
- pulumi_gitlab/project_pull_mirror.py +0 -837
- pulumi_gitlab/project_push_mirror.py +0 -547
- pulumi_gitlab/project_secure_file.py +0 -489
- {pulumi_gitlab-9.8.0.dist-info → pulumi_gitlab-9.8.0a1766469107.dist-info}/WHEEL +0 -0
- {pulumi_gitlab-9.8.0.dist-info → pulumi_gitlab-9.8.0a1766469107.dist-info}/top_level.txt +0 -0
pulumi_gitlab/project_mirror.py
CHANGED
|
@@ -285,9 +285,10 @@ class ProjectMirror(pulumi.CustomResource):
|
|
|
285
285
|
url: Optional[pulumi.Input[_builtins.str]] = None,
|
|
286
286
|
__props__=None):
|
|
287
287
|
"""
|
|
288
|
-
The `ProjectMirror` resource
|
|
288
|
+
The `ProjectMirror` resource allows to manage the lifecycle of a project mirror.
|
|
289
289
|
|
|
290
|
-
This is for *pushing* changes to a remote repository. *Pull Mirroring* can be configured
|
|
290
|
+
This is for *pushing* changes to a remote repository. *Pull Mirroring* can be configured using a combination of the
|
|
291
|
+
import_url, mirror, and mirror_trigger_builds properties on the Project resource.
|
|
291
292
|
|
|
292
293
|
> **Warning** By default, the provider sets the `keep_divergent_refs` argument to `True`.
|
|
293
294
|
If you manually set `keep_divergent_refs` to `False`, GitLab mirroring removes branches in the target that aren't in the source.
|
|
@@ -295,8 +296,6 @@ class ProjectMirror(pulumi.CustomResource):
|
|
|
295
296
|
|
|
296
297
|
**Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/remote_mirrors/)
|
|
297
298
|
|
|
298
|
-
This resource is deprecated in favor of `ProjectPushMirror` which is a rename. The alias will be removed in version 19.0.
|
|
299
|
-
|
|
300
299
|
## Example Usage
|
|
301
300
|
|
|
302
301
|
```python
|
|
@@ -347,9 +346,10 @@ class ProjectMirror(pulumi.CustomResource):
|
|
|
347
346
|
args: ProjectMirrorArgs,
|
|
348
347
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
349
348
|
"""
|
|
350
|
-
The `ProjectMirror` resource
|
|
349
|
+
The `ProjectMirror` resource allows to manage the lifecycle of a project mirror.
|
|
351
350
|
|
|
352
|
-
This is for *pushing* changes to a remote repository. *Pull Mirroring* can be configured
|
|
351
|
+
This is for *pushing* changes to a remote repository. *Pull Mirroring* can be configured using a combination of the
|
|
352
|
+
import_url, mirror, and mirror_trigger_builds properties on the Project resource.
|
|
353
353
|
|
|
354
354
|
> **Warning** By default, the provider sets the `keep_divergent_refs` argument to `True`.
|
|
355
355
|
If you manually set `keep_divergent_refs` to `False`, GitLab mirroring removes branches in the target that aren't in the source.
|
|
@@ -357,8 +357,6 @@ class ProjectMirror(pulumi.CustomResource):
|
|
|
357
357
|
|
|
358
358
|
**Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/remote_mirrors/)
|
|
359
359
|
|
|
360
|
-
This resource is deprecated in favor of `ProjectPushMirror` which is a rename. The alias will be removed in version 19.0.
|
|
361
|
-
|
|
362
360
|
## Example Usage
|
|
363
361
|
|
|
364
362
|
```python
|
pulumi_gitlab/project_tag.py
CHANGED
|
@@ -236,7 +236,7 @@ class ProjectTag(pulumi.CustomResource):
|
|
|
236
236
|
ref: Optional[pulumi.Input[_builtins.str]] = None,
|
|
237
237
|
__props__=None):
|
|
238
238
|
"""
|
|
239
|
-
The `ProjectTag` resource allows
|
|
239
|
+
The `ProjectTag` resource allows to manage the lifecycle of a tag in a project.
|
|
240
240
|
|
|
241
241
|
**Upstream API**: [GitLab API docs](https://docs.gitlab.com/api/tags/)
|
|
242
242
|
|
|
@@ -295,7 +295,7 @@ class ProjectTag(pulumi.CustomResource):
|
|
|
295
295
|
args: ProjectTagArgs,
|
|
296
296
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
297
297
|
"""
|
|
298
|
-
The `ProjectTag` resource allows
|
|
298
|
+
The `ProjectTag` resource allows to manage the lifecycle of a tag in a project.
|
|
299
299
|
|
|
300
300
|
**Upstream API**: [GitLab API docs](https://docs.gitlab.com/api/tags/)
|
|
301
301
|
|
|
@@ -438,7 +438,7 @@ class ProjectTag(pulumi.CustomResource):
|
|
|
438
438
|
|
|
439
439
|
@_builtins.property
|
|
440
440
|
@pulumi.getter
|
|
441
|
-
def message(self) -> pulumi.Output[_builtins.str]:
|
|
441
|
+
def message(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
442
442
|
"""
|
|
443
443
|
The message of the annotated tag.
|
|
444
444
|
"""
|
pulumi_gitlab/pulumi-plugin.json
CHANGED
pulumi_gitlab/runner.py
CHANGED
|
@@ -372,7 +372,7 @@ class Runner(pulumi.CustomResource):
|
|
|
372
372
|
"""
|
|
373
373
|
The `Runner` resource allows to manage the lifecycle of a runner.
|
|
374
374
|
|
|
375
|
-
> This resource has been deprecated in favor of the `UserRunner` resource. Please use that resource, and the new registration flow, instead.
|
|
375
|
+
> This resource has been deprecated in favor of the `UserRunner` resource. Please use that resource, and the new registration flow, instead.
|
|
376
376
|
|
|
377
377
|
A runner can either be registered at an instance level or group level.
|
|
378
378
|
The runner will be registered at a group level if the token used is from a group, or at an instance level if the token used is for the instance.
|
|
@@ -425,7 +425,7 @@ class Runner(pulumi.CustomResource):
|
|
|
425
425
|
"""
|
|
426
426
|
The `Runner` resource allows to manage the lifecycle of a runner.
|
|
427
427
|
|
|
428
|
-
> This resource has been deprecated in favor of the `UserRunner` resource. Please use that resource, and the new registration flow, instead.
|
|
428
|
+
> This resource has been deprecated in favor of the `UserRunner` resource. Please use that resource, and the new registration flow, instead.
|
|
429
429
|
|
|
430
430
|
A runner can either be registered at an instance level or group level.
|
|
431
431
|
The runner will be registered at a group level if the token used is from a group, or at an instance level if the token used is for the instance.
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
pulumi_gitlab/__init__.py,sha256=
|
|
1
|
+
pulumi_gitlab/__init__.py,sha256=fFoYU-_nRD9PCefYa-3V17cyypZFxCoQ2uVFjeeRBu0,29678
|
|
2
2
|
pulumi_gitlab/_inputs.py,sha256=DUl4IORry906msWhS8Wq6H4UP8z6K6huUU7VYzpafQ0,258736
|
|
3
3
|
pulumi_gitlab/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
|
|
4
4
|
pulumi_gitlab/application.py,sha256=PgLuXBM3IaUaTL-YcI5Df3BqOAoUS1KD_ixUvTtQvg8,21154
|
|
@@ -47,7 +47,7 @@ pulumi_gitlab/get_project_access_tokens.py,sha256=dZqQOdQN_qx1zwVqgEVBSAT5q_472r
|
|
|
47
47
|
pulumi_gitlab/get_project_approval_rules.py,sha256=tMXq5S_pK7MSJsRNTV6vVhN2wwSPhyl_XdcsjCx5Zis,6002
|
|
48
48
|
pulumi_gitlab/get_project_branches.py,sha256=rYkIWuK26IF2VhIwpOSd1syjYiLbHXPdPYQYM3bBYU8,4473
|
|
49
49
|
pulumi_gitlab/get_project_environments.py,sha256=_OceJyjkKpn2nseAn2d0ZO4Y0XukjccNsizZEBGMpUs,8301
|
|
50
|
-
pulumi_gitlab/get_project_hook.py,sha256=
|
|
50
|
+
pulumi_gitlab/get_project_hook.py,sha256=TrF8m1WY2KChchsrMzxFo10ch0V4atnxJHX4vhUDYqg,17234
|
|
51
51
|
pulumi_gitlab/get_project_hooks.py,sha256=lc878gqd34e1Y5D1ATy9_93OcGC9w99jNZuQa90ySBU,4609
|
|
52
52
|
pulumi_gitlab/get_project_ids.py,sha256=NJ0nKGlZMpU0L8SSZT3cZnb9kpDj3-tX0P8FvCGr_1c,6413
|
|
53
53
|
pulumi_gitlab/get_project_issue.py,sha256=3mpqGTfUUf0QEG0udnql46pV4T0Axxp0cPAA-Wmtc2I,28756
|
|
@@ -63,7 +63,7 @@ pulumi_gitlab/get_project_protected_branch.py,sha256=YQTtGqGo5W8KN9RRU_4hjSmNFIf
|
|
|
63
63
|
pulumi_gitlab/get_project_protected_branches.py,sha256=nhvPTRqgJwRQXuN2y1zG7IQRl5TDPkG-aV2Hchxg_Aw,5906
|
|
64
64
|
pulumi_gitlab/get_project_protected_tag.py,sha256=fRQDNm0a2VUgKls564Wklof10wrz9SE2zLC2RPJwDZs,5704
|
|
65
65
|
pulumi_gitlab/get_project_protected_tags.py,sha256=t2VcHaU1UX1hhs9VTWuC_W5ia5Jl24WK1vNMxIv4YSU,4671
|
|
66
|
-
pulumi_gitlab/get_project_secure_file.py,sha256=
|
|
66
|
+
pulumi_gitlab/get_project_secure_file.py,sha256=FW5dw4I0JifYEm5fwKBRW0dbKO6aQ3FLvUVklpnfCxI,9837
|
|
67
67
|
pulumi_gitlab/get_project_tag.py,sha256=bTYxA4HpDxpyKka5WOpuO93gMaJYcyXyat8asZIDtXA,7129
|
|
68
68
|
pulumi_gitlab/get_project_tags.py,sha256=meUS3PZNccndWKnP4wWDj_KD_TuLnZXnheCCqfvTlyw,7596
|
|
69
69
|
pulumi_gitlab/get_project_variable.py,sha256=OvfaMmjKasLxraaAEkdWPWuoKhV6z9azth3HjgcdhFo,9798
|
|
@@ -80,7 +80,7 @@ pulumi_gitlab/get_user.py,sha256=2rOWfEt-H4YtiIa2NrCH3vS7lAbXuNsB8QccAexVphE,232
|
|
|
80
80
|
pulumi_gitlab/get_user_sshkeys.py,sha256=scInXXnKt-97WzrjUXZWtVxlWaQIq6sgr8ga7xiMQDE,5097
|
|
81
81
|
pulumi_gitlab/get_users.py,sha256=auAZ02cMuSTO5jtWzEdtUwu8gk8knDJPAflH0ftJPjY,19393
|
|
82
82
|
pulumi_gitlab/global_level_notifications.py,sha256=5G94vzvat1k3cIPsCfc1yKxUkKfWVqDJRNfWR470_G4,53007
|
|
83
|
-
pulumi_gitlab/group.py,sha256=
|
|
83
|
+
pulumi_gitlab/group.py,sha256=vgdYa1xoso553htmxNt0TzxQR2EdfGVmYPFwJV6erNk,99310
|
|
84
84
|
pulumi_gitlab/group_access_token.py,sha256=hDMEo250e1r-h8gv-xod6Yr2Bheur4V6IEcCw4is7I8,35535
|
|
85
85
|
pulumi_gitlab/group_badge.py,sha256=WR9ThyUKTPh-1gjy7Z-xveuA905e22Tz8cWIwmASDrc,18949
|
|
86
86
|
pulumi_gitlab/group_cluster.py,sha256=iocCCOb_06u5WAbPKhIQqXTu4noiF3eXx2zCD3QSj7o,36943
|
|
@@ -88,7 +88,7 @@ pulumi_gitlab/group_custom_attribute.py,sha256=Fbfs2YjyORYk5BhBkDqmvhSMkfLGfKDXg
|
|
|
88
88
|
pulumi_gitlab/group_dependency_proxy.py,sha256=D3pmyCKDUUZrwV0UfSRf3B_8stlH9SN9gXp199LiKMg,16889
|
|
89
89
|
pulumi_gitlab/group_deploy_token.py,sha256=i5Zk1Go9tWQKF3JTkxMipP1OnFxMRxJSWKpIk6JayhQ,25579
|
|
90
90
|
pulumi_gitlab/group_epic_board.py,sha256=VXlQuenFczYFToWTj1szmYkdSXss79p_ULqzLxhlc6w,13384
|
|
91
|
-
pulumi_gitlab/group_hook.py,sha256=
|
|
91
|
+
pulumi_gitlab/group_hook.py,sha256=X9YyLjiOBLboVaw4Oj9HycvfW981siGa7iShuOsWjYY,65329
|
|
92
92
|
pulumi_gitlab/group_issue_board.py,sha256=rW8CE1JTljj--nLgwgLoG955nmm-bGnrRogxetT6mmA,16554
|
|
93
93
|
pulumi_gitlab/group_label.py,sha256=RqSDyK-0olrP3gFt3mmVvB5ERCI453la-bwkZn75jMY,17898
|
|
94
94
|
pulumi_gitlab/group_ldap_link.py,sha256=R-IiorP7cIydTFTT2t1VUBil-fz5PdEf0r3w_clGMro,26664
|
|
@@ -120,7 +120,7 @@ pulumi_gitlab/integration_slack.py,sha256=-D_4aaoSleCEK4qI99XWuWzeh2QpAOQM-Ewq9Z
|
|
|
120
120
|
pulumi_gitlab/integration_telegram.py,sha256=wLKXDVepFB45HgeyCHsyS484jzhVz50ud7qHz1arzjI,41348
|
|
121
121
|
pulumi_gitlab/label.py,sha256=JcFf0z4ek_ZdX2F508mRbPmRfXvXJN_OIADbgiEUYto,16366
|
|
122
122
|
pulumi_gitlab/member_role.py,sha256=GRzgL3QmtVODXo4-RS50d-jyRePxQalthMIYYWTfhOY,27402
|
|
123
|
-
pulumi_gitlab/outputs.py,sha256=
|
|
123
|
+
pulumi_gitlab/outputs.py,sha256=MldfzgFeAXQ3dI3XtVL8UkgupsLNnzoDtav5hLjEOoI,471374
|
|
124
124
|
pulumi_gitlab/pages_domain.py,sha256=zrf6GcOcMDfzld1R-6v_nd_gfpLrjXvI_IMi0moNTxo,22937
|
|
125
125
|
pulumi_gitlab/personal_access_token.py,sha256=Y70b9bxV5Q8mxJrI3DRYNkca1O1SJWa0DEeVIjcL_OM,32593
|
|
126
126
|
pulumi_gitlab/pipeline_schedule.py,sha256=UcqpiWKBXWbDm491woCUjIEm_TcRg48Ihh93x8qHgNg,22808
|
|
@@ -130,7 +130,6 @@ pulumi_gitlab/project.py,sha256=9noRopIZOJU7Apbnc0ZW3Riy4zE-FWikSrhWsufSfck,3372
|
|
|
130
130
|
pulumi_gitlab/project_access_token.py,sha256=GtmRfxR3w52sYpicX_nMvzjW4dvhIrU8_jmJ0SWRpxc,35920
|
|
131
131
|
pulumi_gitlab/project_approval_rule.py,sha256=PGPoYugk-11ItJK6ah6U0kzFIA8rTotJkBIR08kKGEk,36738
|
|
132
132
|
pulumi_gitlab/project_badge.py,sha256=Hqr40R54NWDH0sGEzjZqERlpNglcuHg89npy53zcPM8,19105
|
|
133
|
-
pulumi_gitlab/project_cicd_catalog.py,sha256=awB0zGPqpPKdy1J_gVZDn3VzgwJ5jmwLxVV1w0rU-tA,12831
|
|
134
133
|
pulumi_gitlab/project_cluster.py,sha256=2CUL69X7DoZ7JCVe7_wClfSOXrUM7b0drawDtT24i4A,39578
|
|
135
134
|
pulumi_gitlab/project_compliance_frameworks.py,sha256=KGVm9M8DZHibuGr88bY3fMj1NZT4tr2E7Gn3bWkijOI,13194
|
|
136
135
|
pulumi_gitlab/project_container_repository_protection.py,sha256=wPheIqqBAeM7ICMvcj8Zh_SwRX3qwnp5D1bx5HNR4lI,21926
|
|
@@ -139,7 +138,7 @@ pulumi_gitlab/project_deploy_token.py,sha256=gsjwwVFLMsa-hjnr6p07GmgmVGC35a_jwLy
|
|
|
139
138
|
pulumi_gitlab/project_environment.py,sha256=B1fx3lHPUohxkn1fgsr1TW0iDirCh_bfuZNEyhHLTqI,37495
|
|
140
139
|
pulumi_gitlab/project_external_status_check.py,sha256=JFBXrmqCjLd2WzHtz5iCZhg-bVIODL_8yU09Xjc11LM,20690
|
|
141
140
|
pulumi_gitlab/project_freeze_period.py,sha256=QEw2FMam93mutlvGDR7DYUrNO_4ZJih5aRGlFtbzBn8,15038
|
|
142
|
-
pulumi_gitlab/project_hook.py,sha256=
|
|
141
|
+
pulumi_gitlab/project_hook.py,sha256=hMbanmdR6nOMkI3o1eImNAJ6S1Ibdgwn2zUXFSTWdkA,60931
|
|
143
142
|
pulumi_gitlab/project_integration_custom_issue_tracker.py,sha256=qZGs8NRs53KeWTB-hBqBEJDBu7RAmzi3absOO9Musxo,19246
|
|
144
143
|
pulumi_gitlab/project_integration_emails_on_push.py,sha256=nOjc6moUHWV0GARBdw2gnc0Ch2_JcSB-OzeaMeZXH3Q,29570
|
|
145
144
|
pulumi_gitlab/project_integration_external_wiki.py,sha256=RWRxGVpxFnejDObzwoWIzviKdDkysVBBo_sGZZDDFY8,17496
|
|
@@ -155,8 +154,7 @@ pulumi_gitlab/project_integration_telegram.py,sha256=dQBrrOfy_g-wmsMamRZJdEsQqj6
|
|
|
155
154
|
pulumi_gitlab/project_integration_youtrack.py,sha256=wihZf51t24gujnDhZ8Jzsh70Ad0ByFtTkuipzEMiTNw,13498
|
|
156
155
|
pulumi_gitlab/project_issue.py,sha256=SDmV-LWw6t11R_KvTiO5rMQ1tEFmo1rh0ja1w3F1KFA,79631
|
|
157
156
|
pulumi_gitlab/project_issue_board.py,sha256=5HKL9kY2a1ZxtfPhVlag_zc3ucz2pnP0GqhELrFlEkw,25075
|
|
158
|
-
pulumi_gitlab/
|
|
159
|
-
pulumi_gitlab/project_job_token_scope.py,sha256=RkcBAcYLH5dhin-l6nl29XzK2adgpT8o_tf6LhL-EC8,13489
|
|
157
|
+
pulumi_gitlab/project_job_token_scope.py,sha256=gh894ArRyKsKBag-ugP1uUHbSi1mbDslef_LBfeGd-8,13105
|
|
160
158
|
pulumi_gitlab/project_job_token_scopes.py,sha256=UNAbifpoe4BTMPQfQMTm6cpszhW0hLF8clqJqQ6Bmmc,23785
|
|
161
159
|
pulumi_gitlab/project_label.py,sha256=MV6_OY4krpNHXLyw8GwIjkrQLwP_KDnxqndSLQb7j1U,18690
|
|
162
160
|
pulumi_gitlab/project_level_mr_approvals.py,sha256=AIh7aet0VvEjkPTas9DsPwDrzI3hslnHPgAPKbw4sUE,28766
|
|
@@ -164,28 +162,24 @@ pulumi_gitlab/project_level_notifications.py,sha256=OJYlubXEbxLY7_9U_KL-8NgWwmH8
|
|
|
164
162
|
pulumi_gitlab/project_membership.py,sha256=Pv-1190hOO4lotQh4uhhUCgbfxSkPh2sd5qh1Y6opRA,18929
|
|
165
163
|
pulumi_gitlab/project_merge_request_note.py,sha256=cJf7ytkeNu1Lf4FE8FWBjYY7T7KcviC9-UFo2Uo20_Q,25399
|
|
166
164
|
pulumi_gitlab/project_milestone.py,sha256=jeNDwbGifiz4LdvKoe4SukodJhNSdDqrxZnhcWMxN1s,27756
|
|
167
|
-
pulumi_gitlab/project_mirror.py,sha256=
|
|
168
|
-
pulumi_gitlab/project_package_dependency_proxy.py,sha256=y4_QgOmZMsda1OCaiLlvQ4VKlPcgmFq-w6pq1Eoz0Ys,22586
|
|
165
|
+
pulumi_gitlab/project_mirror.py,sha256=YqfLXig8-X7VMr2DACWE870x3MuObv0osXQIHIMqSl0,24505
|
|
169
166
|
pulumi_gitlab/project_pages_settings.py,sha256=a1iNHuuS49c5lA8Ck-VB_9lHX2gWlompa2bGfZwQNq8,17430
|
|
170
167
|
pulumi_gitlab/project_protected_environment.py,sha256=MAGPE7NIoAhI1JWrBxgmByl6iBJ3YQf1U7h_gWYjIac,26302
|
|
171
|
-
pulumi_gitlab/project_pull_mirror.py,sha256=Ed0yuuMKJlzyb2v7YWb7ADdA2hjn2ypM-cXxU1x6NkU,40458
|
|
172
|
-
pulumi_gitlab/project_push_mirror.py,sha256=8NvdO_LIWxdV8-P-y-gzLoyjWwqzIn52tETM_TVXlkE,24467
|
|
173
168
|
pulumi_gitlab/project_push_rules.py,sha256=ab-a-QNQ1KTexBEbKBFxMV4IEpE_pEXqtvFiWQNWy4w,41577
|
|
174
169
|
pulumi_gitlab/project_runner_enablement.py,sha256=IkaDkXjWGOMjhf1A2qLZ3q0FaQbFzE8Vw2tqBuQhVUE,10445
|
|
175
|
-
pulumi_gitlab/project_secure_file.py,sha256=XqBAdlCo4Cm8J_QJGbl8DHWz_VbOccePPFBCZqVx4nk,19278
|
|
176
170
|
pulumi_gitlab/project_security_policy_attachment.py,sha256=yFcRRH5H76QbkY_BCQVwSNonts_bB-sNYqxmS8X-vK8,16851
|
|
177
171
|
pulumi_gitlab/project_share_group.py,sha256=KOBlnLsjiDJILFiMZsWvMkONtU7ApGlteaD07UNSCA8,16751
|
|
178
|
-
pulumi_gitlab/project_tag.py,sha256=
|
|
172
|
+
pulumi_gitlab/project_tag.py,sha256=gzl7epdlddA_4v7pqaUuZ6sK8bYJGLO_mEcL7IamXt4,19542
|
|
179
173
|
pulumi_gitlab/project_target_branch_rule.py,sha256=pqtvi-K1mgd8CDNCSGkEjoc2ukKnEw63aZoRsB0Z1h8,14415
|
|
180
174
|
pulumi_gitlab/project_variable.py,sha256=WIv9WN6OhKb8bOAODh9GreL-Pvk_UtdDq6gPwJ1t1ic,29672
|
|
181
175
|
pulumi_gitlab/project_wiki_page.py,sha256=_uJ0vbZO0P5pVp3xuvnBYBZYfZUY0KX6hnvHK5motfU,16558
|
|
182
176
|
pulumi_gitlab/provider.py,sha256=xszx1fRkM7_uck9iIfo2dNGa2JkXWThqRXi1wHsYtjY,23257
|
|
183
|
-
pulumi_gitlab/pulumi-plugin.json,sha256=
|
|
177
|
+
pulumi_gitlab/pulumi-plugin.json,sha256=CsDt2PxMyCY6fkaWd5_8qCBO00ZO5AHOOd_UjaP0EEM,82
|
|
184
178
|
pulumi_gitlab/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
185
179
|
pulumi_gitlab/release.py,sha256=nl-zDbU9uBrgSal-Q_hmgvucLEdRdVwzQaHznkzG064,36331
|
|
186
180
|
pulumi_gitlab/release_link.py,sha256=EjboeRdN6IM2LYb_BWljjHX-cBBfGdzQRI53hiYxLO0,23326
|
|
187
181
|
pulumi_gitlab/repository_file.py,sha256=0fBrHI7nqAzeKHhnJSs6sAez2vw34dX9JwqwMrhkdaY,48070
|
|
188
|
-
pulumi_gitlab/runner.py,sha256=
|
|
182
|
+
pulumi_gitlab/runner.py,sha256=jAiYBAQ86FYO4oMKYqYYMEW0s0vroK7ecBAJlLXNoDg,29785
|
|
189
183
|
pulumi_gitlab/system_hook.py,sha256=Lp4lJjdtF1HNnBHQOPTSWQkd_L_oUhBS_xbojseHaJU,23926
|
|
190
184
|
pulumi_gitlab/tag_protection.py,sha256=XtDt4Sm4YufWzrta3Mhrh63HcBLaqe0bfp3u8zXmCtY,16506
|
|
191
185
|
pulumi_gitlab/topic.py,sha256=18ZIAmJHtAJkUZRho0CrSEyIHtC8kdHLAhnuuPvj0oo,18026
|
|
@@ -201,7 +195,7 @@ pulumi_gitlab/value_stream_analytics.py,sha256=qajoNI2VIT6EgVAN-V0YAMShve-D6jDQf
|
|
|
201
195
|
pulumi_gitlab/config/__init__.py,sha256=XWnQfVtc2oPapjSXXCdORFJvMpXt_SMJQASWdTRoPmc,296
|
|
202
196
|
pulumi_gitlab/config/__init__.pyi,sha256=ZtEaCpKCo4BZor-bBsDtf4j3yl7ym84dqhkIy_Keuvs,2671
|
|
203
197
|
pulumi_gitlab/config/vars.py,sha256=Rf2oVEIYf4vSaqK-7RmfAixxpaGEhQG9kXIeSCfIuJc,4073
|
|
204
|
-
pulumi_gitlab-9.8.
|
|
205
|
-
pulumi_gitlab-9.8.
|
|
206
|
-
pulumi_gitlab-9.8.
|
|
207
|
-
pulumi_gitlab-9.8.
|
|
198
|
+
pulumi_gitlab-9.8.0a1766469107.dist-info/METADATA,sha256=Dd9lK_Zf3jLgHWvN34w0UGdrv3Ln8yDBZJLB06DPEqc,3447
|
|
199
|
+
pulumi_gitlab-9.8.0a1766469107.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
200
|
+
pulumi_gitlab-9.8.0a1766469107.dist-info/top_level.txt,sha256=fl4bklikEmbp3mE-JWfvC3JROXPLQGxFaJd_j_qmjgE,14
|
|
201
|
+
pulumi_gitlab-9.8.0a1766469107.dist-info/RECORD,,
|
|
@@ -1,314 +0,0 @@
|
|
|
1
|
-
# coding=utf-8
|
|
2
|
-
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
-
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
-
|
|
5
|
-
import builtins as _builtins
|
|
6
|
-
import warnings
|
|
7
|
-
import sys
|
|
8
|
-
import pulumi
|
|
9
|
-
import pulumi.runtime
|
|
10
|
-
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
-
if sys.version_info >= (3, 11):
|
|
12
|
-
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
-
else:
|
|
14
|
-
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
-
from . import _utilities
|
|
16
|
-
|
|
17
|
-
__all__ = ['ProjectCicdCatalogArgs', 'ProjectCicdCatalog']
|
|
18
|
-
|
|
19
|
-
@pulumi.input_type
|
|
20
|
-
class ProjectCicdCatalogArgs:
|
|
21
|
-
def __init__(__self__, *,
|
|
22
|
-
enabled: pulumi.Input[_builtins.bool],
|
|
23
|
-
project: pulumi.Input[_builtins.str],
|
|
24
|
-
keep_settings_on_destroy: Optional[pulumi.Input[_builtins.bool]] = None):
|
|
25
|
-
"""
|
|
26
|
-
The set of arguments for constructing a ProjectCicdCatalog resource.
|
|
27
|
-
:param pulumi.Input[_builtins.bool] enabled: Whether the project should be enabled as a CI/CD Catalog resource.
|
|
28
|
-
:param pulumi.Input[_builtins.str] project: The ID or URL-encoded path of the project.
|
|
29
|
-
"""
|
|
30
|
-
pulumi.set(__self__, "enabled", enabled)
|
|
31
|
-
pulumi.set(__self__, "project", project)
|
|
32
|
-
if keep_settings_on_destroy is not None:
|
|
33
|
-
pulumi.set(__self__, "keep_settings_on_destroy", keep_settings_on_destroy)
|
|
34
|
-
|
|
35
|
-
@_builtins.property
|
|
36
|
-
@pulumi.getter
|
|
37
|
-
def enabled(self) -> pulumi.Input[_builtins.bool]:
|
|
38
|
-
"""
|
|
39
|
-
Whether the project should be enabled as a CI/CD Catalog resource.
|
|
40
|
-
"""
|
|
41
|
-
return pulumi.get(self, "enabled")
|
|
42
|
-
|
|
43
|
-
@enabled.setter
|
|
44
|
-
def enabled(self, value: pulumi.Input[_builtins.bool]):
|
|
45
|
-
pulumi.set(self, "enabled", value)
|
|
46
|
-
|
|
47
|
-
@_builtins.property
|
|
48
|
-
@pulumi.getter
|
|
49
|
-
def project(self) -> pulumi.Input[_builtins.str]:
|
|
50
|
-
"""
|
|
51
|
-
The ID or URL-encoded path of the project.
|
|
52
|
-
"""
|
|
53
|
-
return pulumi.get(self, "project")
|
|
54
|
-
|
|
55
|
-
@project.setter
|
|
56
|
-
def project(self, value: pulumi.Input[_builtins.str]):
|
|
57
|
-
pulumi.set(self, "project", value)
|
|
58
|
-
|
|
59
|
-
@_builtins.property
|
|
60
|
-
@pulumi.getter(name="keepSettingsOnDestroy")
|
|
61
|
-
def keep_settings_on_destroy(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
62
|
-
return pulumi.get(self, "keep_settings_on_destroy")
|
|
63
|
-
|
|
64
|
-
@keep_settings_on_destroy.setter
|
|
65
|
-
def keep_settings_on_destroy(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
66
|
-
pulumi.set(self, "keep_settings_on_destroy", value)
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
@pulumi.input_type
|
|
70
|
-
class _ProjectCicdCatalogState:
|
|
71
|
-
def __init__(__self__, *,
|
|
72
|
-
enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
73
|
-
keep_settings_on_destroy: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
74
|
-
project: Optional[pulumi.Input[_builtins.str]] = None):
|
|
75
|
-
"""
|
|
76
|
-
Input properties used for looking up and filtering ProjectCicdCatalog resources.
|
|
77
|
-
:param pulumi.Input[_builtins.bool] enabled: Whether the project should be enabled as a CI/CD Catalog resource.
|
|
78
|
-
:param pulumi.Input[_builtins.str] project: The ID or URL-encoded path of the project.
|
|
79
|
-
"""
|
|
80
|
-
if enabled is not None:
|
|
81
|
-
pulumi.set(__self__, "enabled", enabled)
|
|
82
|
-
if keep_settings_on_destroy is not None:
|
|
83
|
-
pulumi.set(__self__, "keep_settings_on_destroy", keep_settings_on_destroy)
|
|
84
|
-
if project is not None:
|
|
85
|
-
pulumi.set(__self__, "project", project)
|
|
86
|
-
|
|
87
|
-
@_builtins.property
|
|
88
|
-
@pulumi.getter
|
|
89
|
-
def enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
90
|
-
"""
|
|
91
|
-
Whether the project should be enabled as a CI/CD Catalog resource.
|
|
92
|
-
"""
|
|
93
|
-
return pulumi.get(self, "enabled")
|
|
94
|
-
|
|
95
|
-
@enabled.setter
|
|
96
|
-
def enabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
97
|
-
pulumi.set(self, "enabled", value)
|
|
98
|
-
|
|
99
|
-
@_builtins.property
|
|
100
|
-
@pulumi.getter(name="keepSettingsOnDestroy")
|
|
101
|
-
def keep_settings_on_destroy(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
102
|
-
return pulumi.get(self, "keep_settings_on_destroy")
|
|
103
|
-
|
|
104
|
-
@keep_settings_on_destroy.setter
|
|
105
|
-
def keep_settings_on_destroy(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
106
|
-
pulumi.set(self, "keep_settings_on_destroy", value)
|
|
107
|
-
|
|
108
|
-
@_builtins.property
|
|
109
|
-
@pulumi.getter
|
|
110
|
-
def project(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
111
|
-
"""
|
|
112
|
-
The ID or URL-encoded path of the project.
|
|
113
|
-
"""
|
|
114
|
-
return pulumi.get(self, "project")
|
|
115
|
-
|
|
116
|
-
@project.setter
|
|
117
|
-
def project(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
118
|
-
pulumi.set(self, "project", value)
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
@pulumi.type_token("gitlab:index/projectCicdCatalog:ProjectCicdCatalog")
|
|
122
|
-
class ProjectCicdCatalog(pulumi.CustomResource):
|
|
123
|
-
@overload
|
|
124
|
-
def __init__(__self__,
|
|
125
|
-
resource_name: str,
|
|
126
|
-
opts: Optional[pulumi.ResourceOptions] = None,
|
|
127
|
-
enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
128
|
-
keep_settings_on_destroy: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
129
|
-
project: Optional[pulumi.Input[_builtins.str]] = None,
|
|
130
|
-
__props__=None):
|
|
131
|
-
"""
|
|
132
|
-
The `ProjectCicdCatalog` resource allows users to manage the lifecycle of a CI/CD Catalog project.
|
|
133
|
-
|
|
134
|
-
This resource controls whether a project is available as a CI/CD Catalog resource.
|
|
135
|
-
|
|
136
|
-
> If `keep_settings_on_destroy` is set to false, destroying the resource will revert the catalog status to the value that was present when the resource was first created.
|
|
137
|
-
You will need to apply the resource with the new setting before destroying the resource.
|
|
138
|
-
|
|
139
|
-
**Upstream API**: [GitLab GraphQL API docs](https://docs.gitlab.com/ee/api/graphql/reference/#mutationcatalogresourcescreate)
|
|
140
|
-
|
|
141
|
-
## Example Usage
|
|
142
|
-
|
|
143
|
-
```python
|
|
144
|
-
import pulumi
|
|
145
|
-
import pulumi_gitlab as gitlab
|
|
146
|
-
|
|
147
|
-
example = gitlab.ProjectCicdCatalog("example",
|
|
148
|
-
project="namespace/project",
|
|
149
|
-
enabled=True)
|
|
150
|
-
```
|
|
151
|
-
|
|
152
|
-
## Import
|
|
153
|
-
|
|
154
|
-
Starting in Terraform v1.5.0, you can use an import block to import `gitlab_project_cicd_catalog`. For example:
|
|
155
|
-
|
|
156
|
-
terraform
|
|
157
|
-
|
|
158
|
-
import {
|
|
159
|
-
|
|
160
|
-
to = gitlab_project_cicd_catalog.example
|
|
161
|
-
|
|
162
|
-
id = "see CLI command below for ID"
|
|
163
|
-
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
Importing using the CLI is supported with the following syntax:
|
|
167
|
-
|
|
168
|
-
Gitlab Project CICD Catalogs can be imported with their id, e.g.
|
|
169
|
-
|
|
170
|
-
```sh
|
|
171
|
-
$ pulumi import gitlab:index/projectCicdCatalog:ProjectCicdCatalog example "1"
|
|
172
|
-
```
|
|
173
|
-
|
|
174
|
-
:param str resource_name: The name of the resource.
|
|
175
|
-
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
176
|
-
:param pulumi.Input[_builtins.bool] enabled: Whether the project should be enabled as a CI/CD Catalog resource.
|
|
177
|
-
:param pulumi.Input[_builtins.str] project: The ID or URL-encoded path of the project.
|
|
178
|
-
"""
|
|
179
|
-
...
|
|
180
|
-
@overload
|
|
181
|
-
def __init__(__self__,
|
|
182
|
-
resource_name: str,
|
|
183
|
-
args: ProjectCicdCatalogArgs,
|
|
184
|
-
opts: Optional[pulumi.ResourceOptions] = None):
|
|
185
|
-
"""
|
|
186
|
-
The `ProjectCicdCatalog` resource allows users to manage the lifecycle of a CI/CD Catalog project.
|
|
187
|
-
|
|
188
|
-
This resource controls whether a project is available as a CI/CD Catalog resource.
|
|
189
|
-
|
|
190
|
-
> If `keep_settings_on_destroy` is set to false, destroying the resource will revert the catalog status to the value that was present when the resource was first created.
|
|
191
|
-
You will need to apply the resource with the new setting before destroying the resource.
|
|
192
|
-
|
|
193
|
-
**Upstream API**: [GitLab GraphQL API docs](https://docs.gitlab.com/ee/api/graphql/reference/#mutationcatalogresourcescreate)
|
|
194
|
-
|
|
195
|
-
## Example Usage
|
|
196
|
-
|
|
197
|
-
```python
|
|
198
|
-
import pulumi
|
|
199
|
-
import pulumi_gitlab as gitlab
|
|
200
|
-
|
|
201
|
-
example = gitlab.ProjectCicdCatalog("example",
|
|
202
|
-
project="namespace/project",
|
|
203
|
-
enabled=True)
|
|
204
|
-
```
|
|
205
|
-
|
|
206
|
-
## Import
|
|
207
|
-
|
|
208
|
-
Starting in Terraform v1.5.0, you can use an import block to import `gitlab_project_cicd_catalog`. For example:
|
|
209
|
-
|
|
210
|
-
terraform
|
|
211
|
-
|
|
212
|
-
import {
|
|
213
|
-
|
|
214
|
-
to = gitlab_project_cicd_catalog.example
|
|
215
|
-
|
|
216
|
-
id = "see CLI command below for ID"
|
|
217
|
-
|
|
218
|
-
}
|
|
219
|
-
|
|
220
|
-
Importing using the CLI is supported with the following syntax:
|
|
221
|
-
|
|
222
|
-
Gitlab Project CICD Catalogs can be imported with their id, e.g.
|
|
223
|
-
|
|
224
|
-
```sh
|
|
225
|
-
$ pulumi import gitlab:index/projectCicdCatalog:ProjectCicdCatalog example "1"
|
|
226
|
-
```
|
|
227
|
-
|
|
228
|
-
:param str resource_name: The name of the resource.
|
|
229
|
-
:param ProjectCicdCatalogArgs args: The arguments to use to populate this resource's properties.
|
|
230
|
-
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
231
|
-
"""
|
|
232
|
-
...
|
|
233
|
-
def __init__(__self__, resource_name: str, *args, **kwargs):
|
|
234
|
-
resource_args, opts = _utilities.get_resource_args_opts(ProjectCicdCatalogArgs, pulumi.ResourceOptions, *args, **kwargs)
|
|
235
|
-
if resource_args is not None:
|
|
236
|
-
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
|
237
|
-
else:
|
|
238
|
-
__self__._internal_init(resource_name, *args, **kwargs)
|
|
239
|
-
|
|
240
|
-
def _internal_init(__self__,
|
|
241
|
-
resource_name: str,
|
|
242
|
-
opts: Optional[pulumi.ResourceOptions] = None,
|
|
243
|
-
enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
244
|
-
keep_settings_on_destroy: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
245
|
-
project: Optional[pulumi.Input[_builtins.str]] = None,
|
|
246
|
-
__props__=None):
|
|
247
|
-
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
248
|
-
if not isinstance(opts, pulumi.ResourceOptions):
|
|
249
|
-
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
|
250
|
-
if opts.id is None:
|
|
251
|
-
if __props__ is not None:
|
|
252
|
-
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
253
|
-
__props__ = ProjectCicdCatalogArgs.__new__(ProjectCicdCatalogArgs)
|
|
254
|
-
|
|
255
|
-
if enabled is None and not opts.urn:
|
|
256
|
-
raise TypeError("Missing required property 'enabled'")
|
|
257
|
-
__props__.__dict__["enabled"] = enabled
|
|
258
|
-
__props__.__dict__["keep_settings_on_destroy"] = keep_settings_on_destroy
|
|
259
|
-
if project is None and not opts.urn:
|
|
260
|
-
raise TypeError("Missing required property 'project'")
|
|
261
|
-
__props__.__dict__["project"] = project
|
|
262
|
-
super(ProjectCicdCatalog, __self__).__init__(
|
|
263
|
-
'gitlab:index/projectCicdCatalog:ProjectCicdCatalog',
|
|
264
|
-
resource_name,
|
|
265
|
-
__props__,
|
|
266
|
-
opts)
|
|
267
|
-
|
|
268
|
-
@staticmethod
|
|
269
|
-
def get(resource_name: str,
|
|
270
|
-
id: pulumi.Input[str],
|
|
271
|
-
opts: Optional[pulumi.ResourceOptions] = None,
|
|
272
|
-
enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
273
|
-
keep_settings_on_destroy: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
274
|
-
project: Optional[pulumi.Input[_builtins.str]] = None) -> 'ProjectCicdCatalog':
|
|
275
|
-
"""
|
|
276
|
-
Get an existing ProjectCicdCatalog resource's state with the given name, id, and optional extra
|
|
277
|
-
properties used to qualify the lookup.
|
|
278
|
-
|
|
279
|
-
:param str resource_name: The unique name of the resulting resource.
|
|
280
|
-
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
281
|
-
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
282
|
-
:param pulumi.Input[_builtins.bool] enabled: Whether the project should be enabled as a CI/CD Catalog resource.
|
|
283
|
-
:param pulumi.Input[_builtins.str] project: The ID or URL-encoded path of the project.
|
|
284
|
-
"""
|
|
285
|
-
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
286
|
-
|
|
287
|
-
__props__ = _ProjectCicdCatalogState.__new__(_ProjectCicdCatalogState)
|
|
288
|
-
|
|
289
|
-
__props__.__dict__["enabled"] = enabled
|
|
290
|
-
__props__.__dict__["keep_settings_on_destroy"] = keep_settings_on_destroy
|
|
291
|
-
__props__.__dict__["project"] = project
|
|
292
|
-
return ProjectCicdCatalog(resource_name, opts=opts, __props__=__props__)
|
|
293
|
-
|
|
294
|
-
@_builtins.property
|
|
295
|
-
@pulumi.getter
|
|
296
|
-
def enabled(self) -> pulumi.Output[_builtins.bool]:
|
|
297
|
-
"""
|
|
298
|
-
Whether the project should be enabled as a CI/CD Catalog resource.
|
|
299
|
-
"""
|
|
300
|
-
return pulumi.get(self, "enabled")
|
|
301
|
-
|
|
302
|
-
@_builtins.property
|
|
303
|
-
@pulumi.getter(name="keepSettingsOnDestroy")
|
|
304
|
-
def keep_settings_on_destroy(self) -> pulumi.Output[_builtins.bool]:
|
|
305
|
-
return pulumi.get(self, "keep_settings_on_destroy")
|
|
306
|
-
|
|
307
|
-
@_builtins.property
|
|
308
|
-
@pulumi.getter
|
|
309
|
-
def project(self) -> pulumi.Output[_builtins.str]:
|
|
310
|
-
"""
|
|
311
|
-
The ID or URL-encoded path of the project.
|
|
312
|
-
"""
|
|
313
|
-
return pulumi.get(self, "project")
|
|
314
|
-
|