pulumi-gitlab 9.5.0a1761172288__py3-none-any.whl → 9.8.1__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 +69 -0
- pulumi_gitlab/_inputs.py +557 -0
- pulumi_gitlab/branch.py +1 -1
- pulumi_gitlab/deploy_key_enable.py +4 -42
- pulumi_gitlab/get_artifact_file.py +266 -0
- pulumi_gitlab/get_group_billable_member_memberships.py +2 -2
- pulumi_gitlab/get_group_hook.py +15 -1
- pulumi_gitlab/get_group_membership.py +2 -2
- pulumi_gitlab/get_group_service_account.py +2 -2
- pulumi_gitlab/get_group_service_account_access_tokens.py +138 -0
- pulumi_gitlab/get_group_variable.py +1 -1
- pulumi_gitlab/get_instance_service_account.py +2 -2
- pulumi_gitlab/get_member_role.py +200 -0
- pulumi_gitlab/get_project.py +15 -1
- pulumi_gitlab/get_project_hook.py +17 -3
- pulumi_gitlab/get_project_issue_label_events.py +170 -0
- pulumi_gitlab/get_project_membership.py +2 -2
- pulumi_gitlab/get_project_protected_tag.py +2 -2
- pulumi_gitlab/get_project_secure_file.py +247 -0
- pulumi_gitlab/get_project_tag.py +2 -2
- pulumi_gitlab/get_project_tags.py +1 -1
- pulumi_gitlab/get_projects.py +3 -3
- pulumi_gitlab/get_release_link.py +5 -5
- pulumi_gitlab/get_release_links.py +3 -3
- pulumi_gitlab/get_security_policy_document.py +170 -0
- pulumi_gitlab/get_user.py +32 -0
- pulumi_gitlab/global_level_notifications.py +2 -2
- pulumi_gitlab/group.py +141 -0
- pulumi_gitlab/group_access_token.py +4 -4
- pulumi_gitlab/group_hook.py +163 -112
- pulumi_gitlab/group_label.py +7 -7
- pulumi_gitlab/group_level_mr_approvals.py +36 -0
- pulumi_gitlab/group_membership.py +2 -2
- pulumi_gitlab/group_service_account.py +2 -2
- pulumi_gitlab/group_service_account_access_token.py +92 -2
- pulumi_gitlab/group_share_group.py +2 -2
- pulumi_gitlab/instance_service_account.py +2 -2
- pulumi_gitlab/instance_variable.py +12 -12
- pulumi_gitlab/integration_emails_on_push.py +9 -7
- pulumi_gitlab/label.py +7 -7
- pulumi_gitlab/member_role.py +9 -9
- pulumi_gitlab/outputs.py +851 -15
- pulumi_gitlab/pages_domain.py +7 -7
- pulumi_gitlab/personal_access_token.py +2 -2
- pulumi_gitlab/pipeline_schedule_variable.py +2 -2
- pulumi_gitlab/project.py +54 -7
- pulumi_gitlab/project_access_token.py +2 -2
- pulumi_gitlab/project_approval_rule.py +120 -0
- pulumi_gitlab/project_cicd_catalog.py +314 -0
- pulumi_gitlab/project_deploy_token.py +2 -2
- pulumi_gitlab/project_hook.py +155 -102
- pulumi_gitlab/project_integration_emails_on_push.py +17 -7
- pulumi_gitlab/project_issue_link.py +502 -0
- pulumi_gitlab/project_job_token_scope.py +24 -4
- pulumi_gitlab/project_label.py +11 -11
- pulumi_gitlab/project_level_mr_approvals.py +2 -2
- pulumi_gitlab/project_level_notifications.py +2 -2
- pulumi_gitlab/project_membership.py +2 -2
- 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/project_target_branch_rule.py +2 -2
- pulumi_gitlab/project_variable.py +7 -7
- pulumi_gitlab/project_wiki_page.py +26 -0
- pulumi_gitlab/pulumi-plugin.json +1 -1
- pulumi_gitlab/release_link.py +19 -19
- pulumi_gitlab/runner.py +4 -4
- pulumi_gitlab/system_hook.py +7 -7
- pulumi_gitlab/user_avatar.py +386 -0
- pulumi_gitlab/user_gpg_key.py +2 -2
- pulumi_gitlab/user_impersonation_token.py +2 -2
- pulumi_gitlab/user_runner.py +14 -14
- pulumi_gitlab/user_ssh_key.py +2 -2
- pulumi_gitlab/value_stream_analytics.py +88 -0
- {pulumi_gitlab-9.5.0a1761172288.dist-info → pulumi_gitlab-9.8.1.dist-info}/METADATA +1 -1
- {pulumi_gitlab-9.5.0a1761172288.dist-info → pulumi_gitlab-9.8.1.dist-info}/RECORD +81 -68
- {pulumi_gitlab-9.5.0a1761172288.dist-info → pulumi_gitlab-9.8.1.dist-info}/WHEEL +0 -0
- {pulumi_gitlab-9.5.0a1761172288.dist-info → pulumi_gitlab-9.8.1.dist-info}/top_level.txt +0 -0
|
@@ -301,7 +301,7 @@ class UserImpersonationToken(pulumi.CustomResource):
|
|
|
301
301
|
The `UserImpersonationToken` resource allows to manage impersonation tokens of users.
|
|
302
302
|
Requires administrator access. Token values are returned once. You are only able to create impersonation tokens to impersonate the user and perform both API calls and Git reads and writes. The user can’t see these tokens in their profile settings page.
|
|
303
303
|
|
|
304
|
-
**Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/
|
|
304
|
+
**Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/user_tokens/#create-an-impersonation-token)
|
|
305
305
|
|
|
306
306
|
## Example Usage
|
|
307
307
|
|
|
@@ -358,7 +358,7 @@ class UserImpersonationToken(pulumi.CustomResource):
|
|
|
358
358
|
The `UserImpersonationToken` resource allows to manage impersonation tokens of users.
|
|
359
359
|
Requires administrator access. Token values are returned once. You are only able to create impersonation tokens to impersonate the user and perform both API calls and Git reads and writes. The user can’t see these tokens in their profile settings page.
|
|
360
360
|
|
|
361
|
-
**Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/
|
|
361
|
+
**Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/user_tokens/#create-an-impersonation-token)
|
|
362
362
|
|
|
363
363
|
## Example Usage
|
|
364
364
|
|
pulumi_gitlab/user_runner.py
CHANGED
|
@@ -420,7 +420,7 @@ class UserRunner(pulumi.CustomResource):
|
|
|
420
420
|
"""
|
|
421
421
|
The `UserRunner` resource allows creating a GitLab runner using the new [GitLab Runner Registration Flow](https://docs.gitlab.com/ci/runners/new_creation_workflow/).
|
|
422
422
|
|
|
423
|
-
**Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/users/#create-a-runner)
|
|
423
|
+
**Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/users/#create-a-runner-linked-to-a-user)
|
|
424
424
|
|
|
425
425
|
## Example Usage
|
|
426
426
|
|
|
@@ -451,10 +451,10 @@ class UserRunner(pulumi.CustomResource):
|
|
|
451
451
|
session_timeout = 1800
|
|
452
452
|
|
|
453
453
|
[[runners]]
|
|
454
|
-
name = "my_gitlab_runner"
|
|
455
|
-
url = "https://example.gitlab.com"
|
|
456
|
-
token = "{token}"
|
|
457
|
-
executor = "docker"
|
|
454
|
+
name = \\"my_gitlab_runner\\"
|
|
455
|
+
url = \\"https://example.gitlab.com\\"
|
|
456
|
+
token = \\"{token}\\"
|
|
457
|
+
executor = \\"docker\\"
|
|
458
458
|
|
|
459
459
|
[runners.custom_build_dir]
|
|
460
460
|
[runners.cache]
|
|
@@ -463,12 +463,12 @@ class UserRunner(pulumi.CustomResource):
|
|
|
463
463
|
[runners.cache.azure]
|
|
464
464
|
[runners.docker]
|
|
465
465
|
tls_verify = false
|
|
466
|
-
image = "ubuntu"
|
|
466
|
+
image = \\"ubuntu\\"
|
|
467
467
|
privileged = true
|
|
468
468
|
disable_entrypoint_overwrite = false
|
|
469
469
|
oom_kill_disable = false
|
|
470
470
|
disable_cache = false
|
|
471
|
-
volumes = ["/cache", "/certs/client"]
|
|
471
|
+
volumes = [\\"/cache\\", \\"/certs/client\\"]
|
|
472
472
|
shm_size = 0
|
|
473
473
|
\"\"\")
|
|
474
474
|
```
|
|
@@ -520,7 +520,7 @@ class UserRunner(pulumi.CustomResource):
|
|
|
520
520
|
"""
|
|
521
521
|
The `UserRunner` resource allows creating a GitLab runner using the new [GitLab Runner Registration Flow](https://docs.gitlab.com/ci/runners/new_creation_workflow/).
|
|
522
522
|
|
|
523
|
-
**Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/users/#create-a-runner)
|
|
523
|
+
**Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/users/#create-a-runner-linked-to-a-user)
|
|
524
524
|
|
|
525
525
|
## Example Usage
|
|
526
526
|
|
|
@@ -551,10 +551,10 @@ class UserRunner(pulumi.CustomResource):
|
|
|
551
551
|
session_timeout = 1800
|
|
552
552
|
|
|
553
553
|
[[runners]]
|
|
554
|
-
name = "my_gitlab_runner"
|
|
555
|
-
url = "https://example.gitlab.com"
|
|
556
|
-
token = "{token}"
|
|
557
|
-
executor = "docker"
|
|
554
|
+
name = \\"my_gitlab_runner\\"
|
|
555
|
+
url = \\"https://example.gitlab.com\\"
|
|
556
|
+
token = \\"{token}\\"
|
|
557
|
+
executor = \\"docker\\"
|
|
558
558
|
|
|
559
559
|
[runners.custom_build_dir]
|
|
560
560
|
[runners.cache]
|
|
@@ -563,12 +563,12 @@ class UserRunner(pulumi.CustomResource):
|
|
|
563
563
|
[runners.cache.azure]
|
|
564
564
|
[runners.docker]
|
|
565
565
|
tls_verify = false
|
|
566
|
-
image = "ubuntu"
|
|
566
|
+
image = \\"ubuntu\\"
|
|
567
567
|
privileged = true
|
|
568
568
|
disable_entrypoint_overwrite = false
|
|
569
569
|
oom_kill_disable = false
|
|
570
570
|
disable_cache = false
|
|
571
|
-
volumes = ["/cache", "/certs/client"]
|
|
571
|
+
volumes = [\\"/cache\\", \\"/certs/client\\"]
|
|
572
572
|
shm_size = 0
|
|
573
573
|
\"\"\")
|
|
574
574
|
```
|
pulumi_gitlab/user_ssh_key.py
CHANGED
|
@@ -204,7 +204,7 @@ class UserSshKey(pulumi.CustomResource):
|
|
|
204
204
|
"""
|
|
205
205
|
The `UserSshKey` resource allows to manage the lifecycle of an SSH key assigned to a user.
|
|
206
206
|
|
|
207
|
-
**Upstream API**: [GitLab API docs](https://docs.gitlab.com/api/
|
|
207
|
+
**Upstream API**: [GitLab API docs](https://docs.gitlab.com/api/user_keys/#get-an-ssh-key-for-a-user)
|
|
208
208
|
|
|
209
209
|
## Example Usage
|
|
210
210
|
|
|
@@ -258,7 +258,7 @@ class UserSshKey(pulumi.CustomResource):
|
|
|
258
258
|
"""
|
|
259
259
|
The `UserSshKey` resource allows to manage the lifecycle of an SSH key assigned to a user.
|
|
260
260
|
|
|
261
|
-
**Upstream API**: [GitLab API docs](https://docs.gitlab.com/api/
|
|
261
|
+
**Upstream API**: [GitLab API docs](https://docs.gitlab.com/api/user_keys/#get-an-ssh-key-for-a-user)
|
|
262
262
|
|
|
263
263
|
## Example Usage
|
|
264
264
|
|
|
@@ -181,6 +181,50 @@ class ValueStreamAnalytics(pulumi.CustomResource):
|
|
|
181
181
|
|
|
182
182
|
## Example Usage
|
|
183
183
|
|
|
184
|
+
```python
|
|
185
|
+
import pulumi
|
|
186
|
+
import pulumi_gitlab as gitlab
|
|
187
|
+
|
|
188
|
+
project = gitlab.ValueStreamAnalytics("project",
|
|
189
|
+
name="TEST",
|
|
190
|
+
project_full_path="test/project",
|
|
191
|
+
stages=[
|
|
192
|
+
{
|
|
193
|
+
"name": "Issue",
|
|
194
|
+
"custom": False,
|
|
195
|
+
"hidden": False,
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"name": "Issue Labels",
|
|
199
|
+
"custom": True,
|
|
200
|
+
"hidden": False,
|
|
201
|
+
"start_event_identifier": "ISSUE_LABEL_ADDED",
|
|
202
|
+
"start_event_label_id": "gid://gitlab/ProjectLabel/0",
|
|
203
|
+
"end_event_identifier": "ISSUE_LABEL_REMOVED",
|
|
204
|
+
"end_event_label_id": "gid://gitlab/ProjectLabel/1",
|
|
205
|
+
},
|
|
206
|
+
])
|
|
207
|
+
group = gitlab.ValueStreamAnalytics("group",
|
|
208
|
+
name="TEST",
|
|
209
|
+
group_full_path="test/group",
|
|
210
|
+
stages=[
|
|
211
|
+
{
|
|
212
|
+
"name": "Issue",
|
|
213
|
+
"custom": False,
|
|
214
|
+
"hidden": False,
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
"name": "Issue Labels",
|
|
218
|
+
"custom": True,
|
|
219
|
+
"hidden": False,
|
|
220
|
+
"start_event_identifier": "ISSUE_LABEL_ADDED",
|
|
221
|
+
"start_event_label_id": "gid://gitlab/GroupLabel/0",
|
|
222
|
+
"end_event_identifier": "ISSUE_LABEL_REMOVED",
|
|
223
|
+
"end_event_label_id": "gid://gitlab/GroupLabel/1",
|
|
224
|
+
},
|
|
225
|
+
])
|
|
226
|
+
```
|
|
227
|
+
|
|
184
228
|
## Import
|
|
185
229
|
|
|
186
230
|
Starting in Terraform v1.5.0, you can use an import block to import `gitlab_value_stream_analytics`. For example:
|
|
@@ -229,6 +273,50 @@ class ValueStreamAnalytics(pulumi.CustomResource):
|
|
|
229
273
|
|
|
230
274
|
## Example Usage
|
|
231
275
|
|
|
276
|
+
```python
|
|
277
|
+
import pulumi
|
|
278
|
+
import pulumi_gitlab as gitlab
|
|
279
|
+
|
|
280
|
+
project = gitlab.ValueStreamAnalytics("project",
|
|
281
|
+
name="TEST",
|
|
282
|
+
project_full_path="test/project",
|
|
283
|
+
stages=[
|
|
284
|
+
{
|
|
285
|
+
"name": "Issue",
|
|
286
|
+
"custom": False,
|
|
287
|
+
"hidden": False,
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
"name": "Issue Labels",
|
|
291
|
+
"custom": True,
|
|
292
|
+
"hidden": False,
|
|
293
|
+
"start_event_identifier": "ISSUE_LABEL_ADDED",
|
|
294
|
+
"start_event_label_id": "gid://gitlab/ProjectLabel/0",
|
|
295
|
+
"end_event_identifier": "ISSUE_LABEL_REMOVED",
|
|
296
|
+
"end_event_label_id": "gid://gitlab/ProjectLabel/1",
|
|
297
|
+
},
|
|
298
|
+
])
|
|
299
|
+
group = gitlab.ValueStreamAnalytics("group",
|
|
300
|
+
name="TEST",
|
|
301
|
+
group_full_path="test/group",
|
|
302
|
+
stages=[
|
|
303
|
+
{
|
|
304
|
+
"name": "Issue",
|
|
305
|
+
"custom": False,
|
|
306
|
+
"hidden": False,
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
"name": "Issue Labels",
|
|
310
|
+
"custom": True,
|
|
311
|
+
"hidden": False,
|
|
312
|
+
"start_event_identifier": "ISSUE_LABEL_ADDED",
|
|
313
|
+
"start_event_label_id": "gid://gitlab/GroupLabel/0",
|
|
314
|
+
"end_event_identifier": "ISSUE_LABEL_REMOVED",
|
|
315
|
+
"end_event_label_id": "gid://gitlab/GroupLabel/1",
|
|
316
|
+
},
|
|
317
|
+
])
|
|
318
|
+
```
|
|
319
|
+
|
|
232
320
|
## Import
|
|
233
321
|
|
|
234
322
|
Starting in Terraform v1.5.0, you can use an import block to import `gitlab_value_stream_analytics`. For example:
|
|
@@ -1,18 +1,19 @@
|
|
|
1
|
-
pulumi_gitlab/__init__.py,sha256=
|
|
2
|
-
pulumi_gitlab/_inputs.py,sha256=
|
|
1
|
+
pulumi_gitlab/__init__.py,sha256=gJCDLHFbnUmBNsXe4YKbH74L0CI-EUmW7wEXhCaCcLY,31041
|
|
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
|
|
5
5
|
pulumi_gitlab/application_appearance.py,sha256=m6opePjc2q9HWQUPUyl88wxHUm15IwlCS7EbXBIh508,38986
|
|
6
6
|
pulumi_gitlab/application_settings.py,sha256=NVreAF0z4l9jv-JA0WSCatc7VbshDLopDoz16dvQQxQ,936273
|
|
7
|
-
pulumi_gitlab/branch.py,sha256=
|
|
7
|
+
pulumi_gitlab/branch.py,sha256=BDerW-NRX5UCfrJd3qQUpgWnUtDrWpEDMzxvqB5MI-I,24026
|
|
8
8
|
pulumi_gitlab/branch_protection.py,sha256=yJc3rrP0xKfkBQiGqqdkaas6MXG2hEY6f_zl7-9qPys,38562
|
|
9
9
|
pulumi_gitlab/cluster_agent.py,sha256=S6OdazI_e7wxIXKYcyhruKjzkwHHpkZOEE399SMCP3s,15683
|
|
10
10
|
pulumi_gitlab/cluster_agent_token.py,sha256=vlRO-OFxp2hZRQY876gTDsEvwflcXyzILVmgvaePIU8,24082
|
|
11
11
|
pulumi_gitlab/compliance_framework.py,sha256=o1YewNvA739ZlH8pYrK5Iy5nGubLasK9HC7OrLhaKX8,23925
|
|
12
12
|
pulumi_gitlab/deploy_key.py,sha256=NYEVpalJkdEKXnntKqrMpGkLMfL-QWN2LKG_Zqo5poc,18979
|
|
13
|
-
pulumi_gitlab/deploy_key_enable.py,sha256=
|
|
13
|
+
pulumi_gitlab/deploy_key_enable.py,sha256=o2rQ2Kj4KElodUVhc-Gq0qLit0cZsgR0JixzjQhQ7kk,15714
|
|
14
14
|
pulumi_gitlab/deploy_token.py,sha256=pXk5qOA5ooPSBis8kFmrh_I8VlVrCSWA1IwvHk1t5jc,22734
|
|
15
15
|
pulumi_gitlab/get_application.py,sha256=uaW2ZAb_9OhwZRzTgVura2xxnI_NNDF9drDqgAFQ2vg,5391
|
|
16
|
+
pulumi_gitlab/get_artifact_file.py,sha256=zG1F4Aof2np3bhhJOZG7aKOZu1Ot-lnlImJP1zczp78,11813
|
|
16
17
|
pulumi_gitlab/get_branch.py,sha256=j6ZSamR96v5YUUbIGsLvAFbuxOXNwXbheOSW4C7CjH4,9060
|
|
17
18
|
pulumi_gitlab/get_cluster_agent.py,sha256=iwTqj8ZnCgX8nJTzcbrE6GPVErjv_HgENPgbCcrNpQo,6680
|
|
18
19
|
pulumi_gitlab/get_cluster_agents.py,sha256=_G242BH8y3zZuOILvlTaIXfYyCKzqEstVQt8rz7EaJc,4764
|
|
@@ -20,36 +21,39 @@ pulumi_gitlab/get_compliance_framework.py,sha256=7y9VD1LBEqmQrmxd5IVPKeRWhk8Z6cq
|
|
|
20
21
|
pulumi_gitlab/get_current_user.py,sha256=bViEaUXlbt63mH5IjGNKHAsifCm29P5QiM24xaUb3Ns,7832
|
|
21
22
|
pulumi_gitlab/get_group.py,sha256=XrnaVL0aDidOMVTaHkI1Lc62Umojf9jeHy85j-D_U4c,17701
|
|
22
23
|
pulumi_gitlab/get_group_access_tokens.py,sha256=3ARMgU0EDOk8_9NcBzcq18jKvKGCIvFki_nR6gRKCv8,4651
|
|
23
|
-
pulumi_gitlab/get_group_billable_member_memberships.py,sha256=
|
|
24
|
-
pulumi_gitlab/get_group_hook.py,sha256=
|
|
24
|
+
pulumi_gitlab/get_group_billable_member_memberships.py,sha256=jeuM7xK0eexFbosqsGZdB-yBay0P3u6_E-1rqWyoVOA,6804
|
|
25
|
+
pulumi_gitlab/get_group_hook.py,sha256=Vln2cyMq1JVOBXHxbsMYqyatymPP-skDJTmFxVKw2M4,18649
|
|
25
26
|
pulumi_gitlab/get_group_hooks.py,sha256=nP98eVH04CkUP1kyp66Wi3SIq3W55PLTjh7PbeKRjKE,4097
|
|
26
27
|
pulumi_gitlab/get_group_ids.py,sha256=00AwhFanqKDX5EglZHzaEDvdAMp5Ld7pxsvLwIQkEaQ,6351
|
|
27
|
-
pulumi_gitlab/get_group_membership.py,sha256=
|
|
28
|
+
pulumi_gitlab/get_group_membership.py,sha256=QjNW2Jnh4FafMLS3v7omYep9e1Q0cEUmXudLiPp1Now,7676
|
|
28
29
|
pulumi_gitlab/get_group_provisioned_users.py,sha256=H9KF77X5Q4bBZHzckmVG1qcB8d21qW57oL7P03sfV7E,11345
|
|
29
30
|
pulumi_gitlab/get_group_saml_links.py,sha256=KEfL-zQYt8LdRItauKv6eemE1VpJKwJUASAyTk_ark8,4226
|
|
30
|
-
pulumi_gitlab/get_group_service_account.py,sha256
|
|
31
|
+
pulumi_gitlab/get_group_service_account.py,sha256=TX1gqVmVAaYyQlj22fa5KFhG8XJhkLO8QJktr_3vK28,6120
|
|
32
|
+
pulumi_gitlab/get_group_service_account_access_tokens.py,sha256=Rr6nV_lZPZAieoTIvB5BfTAoLRzE88IZktrZtnIGpZ8,6634
|
|
31
33
|
pulumi_gitlab/get_group_subgroups.py,sha256=UJBp1hKYgFjkoUE27KZPer9kqDWsao_FKJI7VOTne64,13821
|
|
32
|
-
pulumi_gitlab/get_group_variable.py,sha256=
|
|
34
|
+
pulumi_gitlab/get_group_variable.py,sha256=uu-_xK1kNGZ_Br6JldneayClNIdArRahjCXkYp5FJR4,9972
|
|
33
35
|
pulumi_gitlab/get_group_variables.py,sha256=mfsFrd7u54vMYS1ciC8Sk1D02LwsaPOK_g_YUghpRRI,6010
|
|
34
36
|
pulumi_gitlab/get_groups.py,sha256=KRsfsYZtjzlScpkQe_WIfUVd6mt_2EqSiJSBaIPfvAc,7974
|
|
35
37
|
pulumi_gitlab/get_instance_deploy_keys.py,sha256=vz22DdfqMA59sCB-XG0NYdNNR54JC6oIBKrKnMEhZgU,4666
|
|
36
|
-
pulumi_gitlab/get_instance_service_account.py,sha256=
|
|
38
|
+
pulumi_gitlab/get_instance_service_account.py,sha256=Twaj31F7uYxukyxM9_C2HJ_oQxvtScfVBdY-cpFWESs,6189
|
|
37
39
|
pulumi_gitlab/get_instance_variable.py,sha256=r5la7d0kTiFGBaSs914T1mVld_-x1qpARDRLV1FLFZg,7285
|
|
38
40
|
pulumi_gitlab/get_instance_variables.py,sha256=AZ_XyYUk-O_Tp36IcqfrXYMxCbG9A2npDD3febIeNgM,3790
|
|
41
|
+
pulumi_gitlab/get_member_role.py,sha256=yY5RdEaUKtuN4r8CJxO5_K8KucsZIOaDlhdXwm7H9ng,7610
|
|
39
42
|
pulumi_gitlab/get_metadata.py,sha256=voj93AOaaeOx2rKEvLoIAya8xAsb5oaPXovs_bzl-bE,5028
|
|
40
43
|
pulumi_gitlab/get_pipeline_schedule.py,sha256=EWKGUP0lrD1AZT9ve9WcLzg0Xuf-Q-sSRAyU93MsdxA,11944
|
|
41
44
|
pulumi_gitlab/get_pipeline_schedules.py,sha256=Yl6rZi3VRy1xQpxHZ1AP-cZ6WjSL3wHshD1n4f3Cjww,4825
|
|
42
|
-
pulumi_gitlab/get_project.py,sha256=
|
|
45
|
+
pulumi_gitlab/get_project.py,sha256=lgelvxOAL0aap_muMOlzbZkHqA0sHkcK5XSQJMfRJ5g,63464
|
|
43
46
|
pulumi_gitlab/get_project_access_tokens.py,sha256=dZqQOdQN_qx1zwVqgEVBSAT5q_472rjxS90TyBEX-AM,5637
|
|
44
47
|
pulumi_gitlab/get_project_approval_rules.py,sha256=tMXq5S_pK7MSJsRNTV6vVhN2wwSPhyl_XdcsjCx5Zis,6002
|
|
45
48
|
pulumi_gitlab/get_project_branches.py,sha256=rYkIWuK26IF2VhIwpOSd1syjYiLbHXPdPYQYM3bBYU8,4473
|
|
46
49
|
pulumi_gitlab/get_project_environments.py,sha256=_OceJyjkKpn2nseAn2d0ZO4Y0XukjccNsizZEBGMpUs,8301
|
|
47
|
-
pulumi_gitlab/get_project_hook.py,sha256=
|
|
50
|
+
pulumi_gitlab/get_project_hook.py,sha256=3A-RI-XmVPI1jzGUwdJbfLColH0FkF0yCdbw4WqLOp8,18016
|
|
48
51
|
pulumi_gitlab/get_project_hooks.py,sha256=lc878gqd34e1Y5D1ATy9_93OcGC9w99jNZuQa90ySBU,4609
|
|
49
52
|
pulumi_gitlab/get_project_ids.py,sha256=NJ0nKGlZMpU0L8SSZT3cZnb9kpDj3-tX0P8FvCGr_1c,6413
|
|
50
53
|
pulumi_gitlab/get_project_issue.py,sha256=3mpqGTfUUf0QEG0udnql46pV4T0Axxp0cPAA-Wmtc2I,28756
|
|
54
|
+
pulumi_gitlab/get_project_issue_label_events.py,sha256=g5bJLgR06dvpNbduZVO_WEwq9i_OAI2B__FJk-GeUU0,6908
|
|
51
55
|
pulumi_gitlab/get_project_issues.py,sha256=I5s7ZJ1xt_8RtgVZmQuaD-GJ9HGZrQcGWnd3PcACge4,35358
|
|
52
|
-
pulumi_gitlab/get_project_membership.py,sha256=
|
|
56
|
+
pulumi_gitlab/get_project_membership.py,sha256=mAGX3YfcqgxzVCalDl6BCGHLcY07sn45JDte3TBxGlU,9661
|
|
53
57
|
pulumi_gitlab/get_project_merge_request.py,sha256=PDHQknafRHM-looU5Vo33EJ_dKM2Qhy3HYAd60vC0mY,10415
|
|
54
58
|
pulumi_gitlab/get_project_merge_requests.py,sha256=8u1y1yi0N-MQ7qG2cyuMKFkd_dZA2McqegDneXiXedE,26373
|
|
55
59
|
pulumi_gitlab/get_project_milestone.py,sha256=uPNG2mzamuQ1H7M02wGMujOX_OGoxccea4F-dWn90DE,11057
|
|
@@ -57,50 +61,52 @@ pulumi_gitlab/get_project_milestones.py,sha256=4TT5AHBDZ1e0eLZtGxkcKi0HALrLa1033
|
|
|
57
61
|
pulumi_gitlab/get_project_mirror_public_key.py,sha256=wo2TPoadmi-Ru7hk0ncEKys_LImArdS1xds2BU8H6Og,5799
|
|
58
62
|
pulumi_gitlab/get_project_protected_branch.py,sha256=YQTtGqGo5W8KN9RRU_4hjSmNFIfu1n-UY-KBBU1r_2Q,10246
|
|
59
63
|
pulumi_gitlab/get_project_protected_branches.py,sha256=nhvPTRqgJwRQXuN2y1zG7IQRl5TDPkG-aV2Hchxg_Aw,5906
|
|
60
|
-
pulumi_gitlab/get_project_protected_tag.py,sha256=
|
|
64
|
+
pulumi_gitlab/get_project_protected_tag.py,sha256=fRQDNm0a2VUgKls564Wklof10wrz9SE2zLC2RPJwDZs,5704
|
|
61
65
|
pulumi_gitlab/get_project_protected_tags.py,sha256=t2VcHaU1UX1hhs9VTWuC_W5ia5Jl24WK1vNMxIv4YSU,4671
|
|
62
|
-
pulumi_gitlab/
|
|
63
|
-
pulumi_gitlab/
|
|
66
|
+
pulumi_gitlab/get_project_secure_file.py,sha256=VrupLsH_xOMig9PIigSvjXUdUOS90VXbFSOpKGEV2GI,9825
|
|
67
|
+
pulumi_gitlab/get_project_tag.py,sha256=bTYxA4HpDxpyKka5WOpuO93gMaJYcyXyat8asZIDtXA,7129
|
|
68
|
+
pulumi_gitlab/get_project_tags.py,sha256=meUS3PZNccndWKnP4wWDj_KD_TuLnZXnheCCqfvTlyw,7596
|
|
64
69
|
pulumi_gitlab/get_project_variable.py,sha256=OvfaMmjKasLxraaAEkdWPWuoKhV6z9azth3HjgcdhFo,9798
|
|
65
70
|
pulumi_gitlab/get_project_variables.py,sha256=4LgJrtm2cmU9-H3ollUpyYbrCJnH3E5ufVgAP6zTNDQ,6258
|
|
66
|
-
pulumi_gitlab/get_projects.py,sha256=
|
|
71
|
+
pulumi_gitlab/get_projects.py,sha256=AYgPLJaoZKzM81zUoY9eGIz-0C8Eb-3OrmKHO9v7yZM,30272
|
|
67
72
|
pulumi_gitlab/get_release.py,sha256=5PpeltakBOULxz3kDO9U4ropLtDTGWOcmYiS9NqORW4,8110
|
|
68
|
-
pulumi_gitlab/get_release_link.py,sha256=
|
|
69
|
-
pulumi_gitlab/get_release_links.py,sha256=
|
|
73
|
+
pulumi_gitlab/get_release_link.py,sha256=vQ_0peiNOvzeNV3i9tqCKH9KjUVTCvBbn2h3KxRGf7s,8837
|
|
74
|
+
pulumi_gitlab/get_release_links.py,sha256=PHxiG1FoZei1fKhVQOjTnBUI-yrrnZQMriSB6_XBa6U,5155
|
|
70
75
|
pulumi_gitlab/get_repository_file.py,sha256=uRHSoeJZx3bvp8FfBtJ4OFXn8-I8pbU3_3DFRGf1EWo,11034
|
|
71
76
|
pulumi_gitlab/get_repository_tree.py,sha256=JP8VF9tZkKefCSy8HDKzV_NmHHNAjI1HE6BSkFEB_A4,7653
|
|
72
77
|
pulumi_gitlab/get_runners.py,sha256=pJB6EVKC_ri7kdwQU04eZcXaWhK_SRvmhvXe_C3jdfY,7962
|
|
73
|
-
pulumi_gitlab/
|
|
78
|
+
pulumi_gitlab/get_security_policy_document.py,sha256=f8vbiw8DiXnEiUyjFEiJEeOYaK3O0E5kzVGESqHk4XM,7379
|
|
79
|
+
pulumi_gitlab/get_user.py,sha256=2rOWfEt-H4YtiIa2NrCH3vS7lAbXuNsB8QccAexVphE,23289
|
|
74
80
|
pulumi_gitlab/get_user_sshkeys.py,sha256=scInXXnKt-97WzrjUXZWtVxlWaQIq6sgr8ga7xiMQDE,5097
|
|
75
81
|
pulumi_gitlab/get_users.py,sha256=auAZ02cMuSTO5jtWzEdtUwu8gk8knDJPAflH0ftJPjY,19393
|
|
76
|
-
pulumi_gitlab/global_level_notifications.py,sha256=
|
|
77
|
-
pulumi_gitlab/group.py,sha256=
|
|
78
|
-
pulumi_gitlab/group_access_token.py,sha256=
|
|
82
|
+
pulumi_gitlab/global_level_notifications.py,sha256=5G94vzvat1k3cIPsCfc1yKxUkKfWVqDJRNfWR470_G4,53007
|
|
83
|
+
pulumi_gitlab/group.py,sha256=a2tJGGY0rJ_wTY5RCnDtOqX6MHp3Cbmss5zkPC05jFA,110829
|
|
84
|
+
pulumi_gitlab/group_access_token.py,sha256=hDMEo250e1r-h8gv-xod6Yr2Bheur4V6IEcCw4is7I8,35535
|
|
79
85
|
pulumi_gitlab/group_badge.py,sha256=WR9ThyUKTPh-1gjy7Z-xveuA905e22Tz8cWIwmASDrc,18949
|
|
80
86
|
pulumi_gitlab/group_cluster.py,sha256=iocCCOb_06u5WAbPKhIQqXTu4noiF3eXx2zCD3QSj7o,36943
|
|
81
87
|
pulumi_gitlab/group_custom_attribute.py,sha256=Fbfs2YjyORYk5BhBkDqmvhSMkfLGfKDXgalsZknS08c,11466
|
|
82
88
|
pulumi_gitlab/group_dependency_proxy.py,sha256=D3pmyCKDUUZrwV0UfSRf3B_8stlH9SN9gXp199LiKMg,16889
|
|
83
89
|
pulumi_gitlab/group_deploy_token.py,sha256=i5Zk1Go9tWQKF3JTkxMipP1OnFxMRxJSWKpIk6JayhQ,25579
|
|
84
90
|
pulumi_gitlab/group_epic_board.py,sha256=VXlQuenFczYFToWTj1szmYkdSXss79p_ULqzLxhlc6w,13384
|
|
85
|
-
pulumi_gitlab/group_hook.py,sha256=
|
|
91
|
+
pulumi_gitlab/group_hook.py,sha256=qt3cozLBcm2zyK1J-HlCRvUQePy5ch0J_AVCndJzRjs,70358
|
|
86
92
|
pulumi_gitlab/group_issue_board.py,sha256=rW8CE1JTljj--nLgwgLoG955nmm-bGnrRogxetT6mmA,16554
|
|
87
|
-
pulumi_gitlab/group_label.py,sha256=
|
|
93
|
+
pulumi_gitlab/group_label.py,sha256=RqSDyK-0olrP3gFt3mmVvB5ERCI453la-bwkZn75jMY,17898
|
|
88
94
|
pulumi_gitlab/group_ldap_link.py,sha256=R-IiorP7cIydTFTT2t1VUBil-fz5PdEf0r3w_clGMro,26664
|
|
89
|
-
pulumi_gitlab/group_level_mr_approvals.py,sha256=
|
|
90
|
-
pulumi_gitlab/group_membership.py,sha256=
|
|
95
|
+
pulumi_gitlab/group_level_mr_approvals.py,sha256=yua5IEIx9PBdY9UX2jp0BNhjX11GXgUjYwJingrgt1o,25283
|
|
96
|
+
pulumi_gitlab/group_membership.py,sha256=vRsb4UwMAsFhTMNvdcekY2_4AnYp15EY4cpiNHkikJ0,25239
|
|
91
97
|
pulumi_gitlab/group_project_file_template.py,sha256=X725geAovfqK_Xl_huFpVWONDPt9sPUixX96OC3mN-I,12980
|
|
92
98
|
pulumi_gitlab/group_protected_environment.py,sha256=LA-V7wNI5cUhYuL944D-xEeoRZxzffgmZhEQ3I1S9m8,19950
|
|
93
99
|
pulumi_gitlab/group_saml_link.py,sha256=mHYsrkb_7ii9PbJI8agSZx2m1ju814zivdAco4oHuvM,17004
|
|
94
100
|
pulumi_gitlab/group_security_policy_attachment.py,sha256=l3S07Irezx8c_aBtF4g-6lB9jzho-tUXyXDGyNg5kME,16841
|
|
95
|
-
pulumi_gitlab/group_service_account.py,sha256=
|
|
96
|
-
pulumi_gitlab/group_service_account_access_token.py,sha256=
|
|
97
|
-
pulumi_gitlab/group_share_group.py,sha256=
|
|
101
|
+
pulumi_gitlab/group_service_account.py,sha256=VLoxKV0ODHEUWcNUC1vCniCbgVaObow7zXXTElPHjFA,20974
|
|
102
|
+
pulumi_gitlab/group_service_account_access_token.py,sha256=cvBYnrgYhjqW7fL_3q5ci8i0LTlmX5q4Dh5DTL6RFqU,38403
|
|
103
|
+
pulumi_gitlab/group_share_group.py,sha256=eUjXUxeOjxAs00pHDVu9dSMNQol5-eoGzwW3Px2DQ_I,19910
|
|
98
104
|
pulumi_gitlab/group_variable.py,sha256=hDS-wTKG7HkCJapo9Ts2vrbPZZ_lry0X8fdB03oCM4w,28854
|
|
99
105
|
pulumi_gitlab/instance_cluster.py,sha256=R9yIDusyqTYSfjhGoQuireednDPDZOewyFocqdJuRq4,37617
|
|
100
|
-
pulumi_gitlab/instance_service_account.py,sha256=
|
|
101
|
-
pulumi_gitlab/instance_variable.py,sha256=
|
|
106
|
+
pulumi_gitlab/instance_service_account.py,sha256=sC4Ox4bt2WkNNF59wMT49z7Nu3Dv5TsMllgn3vyU8bI,17127
|
|
107
|
+
pulumi_gitlab/instance_variable.py,sha256=488J1JjxE__x86n6I6bspY6CQi6i6gvDQL9ZlTtbqoc,22319
|
|
102
108
|
pulumi_gitlab/integration_custom_issue_tracker.py,sha256=73Zhuz1bO5PNWql_Rx3iglS8whxwPAqZwztdvIdeqU4,19226
|
|
103
|
-
pulumi_gitlab/integration_emails_on_push.py,sha256=
|
|
109
|
+
pulumi_gitlab/integration_emails_on_push.py,sha256=CY_EW60meOrO-DVXCskAucl_Lm6WejLvnaODtcvNr2g,29748
|
|
104
110
|
pulumi_gitlab/integration_external_wiki.py,sha256=XG4xLgtJVALMJNl42vBLnL1qotH3w5Qv88YQYQQfi4s,17464
|
|
105
111
|
pulumi_gitlab/integration_github.py,sha256=6SXZWy-wus9CKnTuXfMUMxZrlgpuEEwG7RZnCoygj0Q,20473
|
|
106
112
|
pulumi_gitlab/integration_harbor.py,sha256=ydbcExzBVmTWaGz2AmjLVp17eyyeRJf26lqSDQpF7aA,22660
|
|
@@ -112,29 +118,30 @@ pulumi_gitlab/integration_pipelines_email.py,sha256=ClNpd1BDLTuzHLZN9YoR3gmAjr1z
|
|
|
112
118
|
pulumi_gitlab/integration_redmine.py,sha256=78m4dYqGr6xtN7mbx-FkVm-brSZrx4QPl88UKf3zNEk,19288
|
|
113
119
|
pulumi_gitlab/integration_slack.py,sha256=-D_4aaoSleCEK4qI99XWuWzeh2QpAOQM-Ewq9ZhN7Do,67572
|
|
114
120
|
pulumi_gitlab/integration_telegram.py,sha256=wLKXDVepFB45HgeyCHsyS484jzhVz50ud7qHz1arzjI,41348
|
|
115
|
-
pulumi_gitlab/label.py,sha256=
|
|
116
|
-
pulumi_gitlab/member_role.py,sha256=
|
|
117
|
-
pulumi_gitlab/outputs.py,sha256=
|
|
118
|
-
pulumi_gitlab/pages_domain.py,sha256=
|
|
119
|
-
pulumi_gitlab/personal_access_token.py,sha256=
|
|
121
|
+
pulumi_gitlab/label.py,sha256=JcFf0z4ek_ZdX2F508mRbPmRfXvXJN_OIADbgiEUYto,16366
|
|
122
|
+
pulumi_gitlab/member_role.py,sha256=GRzgL3QmtVODXo4-RS50d-jyRePxQalthMIYYWTfhOY,27402
|
|
123
|
+
pulumi_gitlab/outputs.py,sha256=Yi5rVvh0y__bZ9P0k8nNzTNCbih7IwoZycDBteTOsNA,474339
|
|
124
|
+
pulumi_gitlab/pages_domain.py,sha256=zrf6GcOcMDfzld1R-6v_nd_gfpLrjXvI_IMi0moNTxo,22937
|
|
125
|
+
pulumi_gitlab/personal_access_token.py,sha256=Y70b9bxV5Q8mxJrI3DRYNkca1O1SJWa0DEeVIjcL_OM,32593
|
|
120
126
|
pulumi_gitlab/pipeline_schedule.py,sha256=UcqpiWKBXWbDm491woCUjIEm_TcRg48Ihh93x8qHgNg,22808
|
|
121
|
-
pulumi_gitlab/pipeline_schedule_variable.py,sha256=
|
|
127
|
+
pulumi_gitlab/pipeline_schedule_variable.py,sha256=dZSQ8z2egOSHGeJ5wPJguGK-_e4U2zQq3-NCL9_0qh8,17398
|
|
122
128
|
pulumi_gitlab/pipeline_trigger.py,sha256=2HduK2DJqxsOyXsOYxGsiU-bxcI2BVM2LFIwIel2NWM,12682
|
|
123
|
-
pulumi_gitlab/project.py,sha256=
|
|
124
|
-
pulumi_gitlab/project_access_token.py,sha256=
|
|
125
|
-
pulumi_gitlab/project_approval_rule.py,sha256=
|
|
129
|
+
pulumi_gitlab/project.py,sha256=9noRopIZOJU7Apbnc0ZW3Riy4zE-FWikSrhWsufSfck,337215
|
|
130
|
+
pulumi_gitlab/project_access_token.py,sha256=GtmRfxR3w52sYpicX_nMvzjW4dvhIrU8_jmJ0SWRpxc,35920
|
|
131
|
+
pulumi_gitlab/project_approval_rule.py,sha256=PGPoYugk-11ItJK6ah6U0kzFIA8rTotJkBIR08kKGEk,36738
|
|
126
132
|
pulumi_gitlab/project_badge.py,sha256=Hqr40R54NWDH0sGEzjZqERlpNglcuHg89npy53zcPM8,19105
|
|
133
|
+
pulumi_gitlab/project_cicd_catalog.py,sha256=awB0zGPqpPKdy1J_gVZDn3VzgwJ5jmwLxVV1w0rU-tA,12831
|
|
127
134
|
pulumi_gitlab/project_cluster.py,sha256=2CUL69X7DoZ7JCVe7_wClfSOXrUM7b0drawDtT24i4A,39578
|
|
128
135
|
pulumi_gitlab/project_compliance_frameworks.py,sha256=KGVm9M8DZHibuGr88bY3fMj1NZT4tr2E7Gn3bWkijOI,13194
|
|
129
136
|
pulumi_gitlab/project_container_repository_protection.py,sha256=wPheIqqBAeM7ICMvcj8Zh_SwRX3qwnp5D1bx5HNR4lI,21926
|
|
130
137
|
pulumi_gitlab/project_custom_attribute.py,sha256=Rd54eHYb5djIfP0fVRZlBcrBWCTZsgjY9rpnQOdELvs,11620
|
|
131
|
-
pulumi_gitlab/project_deploy_token.py,sha256=
|
|
138
|
+
pulumi_gitlab/project_deploy_token.py,sha256=gsjwwVFLMsa-hjnr6p07GmgmVGC35a_jwLytXHPeiYY,25819
|
|
132
139
|
pulumi_gitlab/project_environment.py,sha256=B1fx3lHPUohxkn1fgsr1TW0iDirCh_bfuZNEyhHLTqI,37495
|
|
133
140
|
pulumi_gitlab/project_external_status_check.py,sha256=JFBXrmqCjLd2WzHtz5iCZhg-bVIODL_8yU09Xjc11LM,20690
|
|
134
141
|
pulumi_gitlab/project_freeze_period.py,sha256=QEw2FMam93mutlvGDR7DYUrNO_4ZJih5aRGlFtbzBn8,15038
|
|
135
|
-
pulumi_gitlab/project_hook.py,sha256=
|
|
142
|
+
pulumi_gitlab/project_hook.py,sha256=1XC_MLgxZtEIJvt7L8S5pbNGsEz9FNt3-lgll2oJLj0,65728
|
|
136
143
|
pulumi_gitlab/project_integration_custom_issue_tracker.py,sha256=qZGs8NRs53KeWTB-hBqBEJDBu7RAmzi3absOO9Musxo,19246
|
|
137
|
-
pulumi_gitlab/project_integration_emails_on_push.py,sha256=
|
|
144
|
+
pulumi_gitlab/project_integration_emails_on_push.py,sha256=sewMFe5-fHl-Xl8Vdu4TtNJ7BMyRw9h728t5zkXUbr4,29890
|
|
138
145
|
pulumi_gitlab/project_integration_external_wiki.py,sha256=RWRxGVpxFnejDObzwoWIzviKdDkysVBBo_sGZZDDFY8,17496
|
|
139
146
|
pulumi_gitlab/project_integration_github.py,sha256=YIxxokn3zP1E1K8_xk01f9TFzrJ1P7W3gID6RXB9mPw,20543
|
|
140
147
|
pulumi_gitlab/project_integration_harbor.py,sha256=liyycpoeKYFnqmui8VS9kFN4kGWhZpGcrRdjAojMwwU,22394
|
|
@@ -148,47 +155,53 @@ pulumi_gitlab/project_integration_telegram.py,sha256=dQBrrOfy_g-wmsMamRZJdEsQqj6
|
|
|
148
155
|
pulumi_gitlab/project_integration_youtrack.py,sha256=wihZf51t24gujnDhZ8Jzsh70Ad0ByFtTkuipzEMiTNw,13498
|
|
149
156
|
pulumi_gitlab/project_issue.py,sha256=SDmV-LWw6t11R_KvTiO5rMQ1tEFmo1rh0ja1w3F1KFA,79631
|
|
150
157
|
pulumi_gitlab/project_issue_board.py,sha256=5HKL9kY2a1ZxtfPhVlag_zc3ucz2pnP0GqhELrFlEkw,25075
|
|
151
|
-
pulumi_gitlab/
|
|
158
|
+
pulumi_gitlab/project_issue_link.py,sha256=cTt0FnKv-S9OcYRSdT8BjCF9SKpkuGtRAxIhx7nUJNc,20887
|
|
159
|
+
pulumi_gitlab/project_job_token_scope.py,sha256=RkcBAcYLH5dhin-l6nl29XzK2adgpT8o_tf6LhL-EC8,13489
|
|
152
160
|
pulumi_gitlab/project_job_token_scopes.py,sha256=UNAbifpoe4BTMPQfQMTm6cpszhW0hLF8clqJqQ6Bmmc,23785
|
|
153
|
-
pulumi_gitlab/project_label.py,sha256=
|
|
154
|
-
pulumi_gitlab/project_level_mr_approvals.py,sha256=
|
|
155
|
-
pulumi_gitlab/project_level_notifications.py,sha256=
|
|
156
|
-
pulumi_gitlab/project_membership.py,sha256=
|
|
161
|
+
pulumi_gitlab/project_label.py,sha256=MV6_OY4krpNHXLyw8GwIjkrQLwP_KDnxqndSLQb7j1U,18690
|
|
162
|
+
pulumi_gitlab/project_level_mr_approvals.py,sha256=AIh7aet0VvEjkPTas9DsPwDrzI3hslnHPgAPKbw4sUE,28766
|
|
163
|
+
pulumi_gitlab/project_level_notifications.py,sha256=OJYlubXEbxLY7_9U_KL-8NgWwmH8bqW7QN0rSXtXQbo,56590
|
|
164
|
+
pulumi_gitlab/project_membership.py,sha256=Pv-1190hOO4lotQh4uhhUCgbfxSkPh2sd5qh1Y6opRA,18929
|
|
157
165
|
pulumi_gitlab/project_merge_request_note.py,sha256=cJf7ytkeNu1Lf4FE8FWBjYY7T7KcviC9-UFo2Uo20_Q,25399
|
|
158
166
|
pulumi_gitlab/project_milestone.py,sha256=jeNDwbGifiz4LdvKoe4SukodJhNSdDqrxZnhcWMxN1s,27756
|
|
159
|
-
pulumi_gitlab/project_mirror.py,sha256=
|
|
167
|
+
pulumi_gitlab/project_mirror.py,sha256=8ki4sThrLCEgog04KZRo7wIvvww-I9hdhDfjbM_PgI4,24589
|
|
168
|
+
pulumi_gitlab/project_package_dependency_proxy.py,sha256=y4_QgOmZMsda1OCaiLlvQ4VKlPcgmFq-w6pq1Eoz0Ys,22586
|
|
160
169
|
pulumi_gitlab/project_pages_settings.py,sha256=a1iNHuuS49c5lA8Ck-VB_9lHX2gWlompa2bGfZwQNq8,17430
|
|
161
170
|
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
|
|
162
173
|
pulumi_gitlab/project_push_rules.py,sha256=ab-a-QNQ1KTexBEbKBFxMV4IEpE_pEXqtvFiWQNWy4w,41577
|
|
163
174
|
pulumi_gitlab/project_runner_enablement.py,sha256=IkaDkXjWGOMjhf1A2qLZ3q0FaQbFzE8Vw2tqBuQhVUE,10445
|
|
175
|
+
pulumi_gitlab/project_secure_file.py,sha256=XqBAdlCo4Cm8J_QJGbl8DHWz_VbOccePPFBCZqVx4nk,19278
|
|
164
176
|
pulumi_gitlab/project_security_policy_attachment.py,sha256=yFcRRH5H76QbkY_BCQVwSNonts_bB-sNYqxmS8X-vK8,16851
|
|
165
177
|
pulumi_gitlab/project_share_group.py,sha256=KOBlnLsjiDJILFiMZsWvMkONtU7ApGlteaD07UNSCA8,16751
|
|
166
|
-
pulumi_gitlab/project_tag.py,sha256=
|
|
167
|
-
pulumi_gitlab/project_target_branch_rule.py,sha256=
|
|
168
|
-
pulumi_gitlab/project_variable.py,sha256=
|
|
169
|
-
pulumi_gitlab/project_wiki_page.py,sha256=
|
|
178
|
+
pulumi_gitlab/project_tag.py,sha256=4q2FcJxT7sf3mefLlmf5fozEomt3gdLA2ryBH6Y_w0A,19544
|
|
179
|
+
pulumi_gitlab/project_target_branch_rule.py,sha256=pqtvi-K1mgd8CDNCSGkEjoc2ukKnEw63aZoRsB0Z1h8,14415
|
|
180
|
+
pulumi_gitlab/project_variable.py,sha256=WIv9WN6OhKb8bOAODh9GreL-Pvk_UtdDq6gPwJ1t1ic,29672
|
|
181
|
+
pulumi_gitlab/project_wiki_page.py,sha256=_uJ0vbZO0P5pVp3xuvnBYBZYfZUY0KX6hnvHK5motfU,16558
|
|
170
182
|
pulumi_gitlab/provider.py,sha256=xszx1fRkM7_uck9iIfo2dNGa2JkXWThqRXi1wHsYtjY,23257
|
|
171
|
-
pulumi_gitlab/pulumi-plugin.json,sha256=
|
|
183
|
+
pulumi_gitlab/pulumi-plugin.json,sha256=PUkDWYpPmNOK-VArX8xx-7473rpmTHuuuu2fZ8wP_r0,65
|
|
172
184
|
pulumi_gitlab/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
173
185
|
pulumi_gitlab/release.py,sha256=nl-zDbU9uBrgSal-Q_hmgvucLEdRdVwzQaHznkzG064,36331
|
|
174
|
-
pulumi_gitlab/release_link.py,sha256=
|
|
186
|
+
pulumi_gitlab/release_link.py,sha256=EjboeRdN6IM2LYb_BWljjHX-cBBfGdzQRI53hiYxLO0,23326
|
|
175
187
|
pulumi_gitlab/repository_file.py,sha256=0fBrHI7nqAzeKHhnJSs6sAez2vw34dX9JwqwMrhkdaY,48070
|
|
176
|
-
pulumi_gitlab/runner.py,sha256=
|
|
177
|
-
pulumi_gitlab/system_hook.py,sha256=
|
|
188
|
+
pulumi_gitlab/runner.py,sha256=cyG6kQ3gxX5qL-p1HeQGXnc8FyBA8x0cWQw8wAVUvIo,29831
|
|
189
|
+
pulumi_gitlab/system_hook.py,sha256=Lp4lJjdtF1HNnBHQOPTSWQkd_L_oUhBS_xbojseHaJU,23926
|
|
178
190
|
pulumi_gitlab/tag_protection.py,sha256=XtDt4Sm4YufWzrta3Mhrh63HcBLaqe0bfp3u8zXmCtY,16506
|
|
179
191
|
pulumi_gitlab/topic.py,sha256=18ZIAmJHtAJkUZRho0CrSEyIHtC8kdHLAhnuuPvj0oo,18026
|
|
180
192
|
pulumi_gitlab/user.py,sha256=R1uiQg71fU1U-OGpDLm8h4JrqMLxLngrH3gRyc8jhj4,37777
|
|
193
|
+
pulumi_gitlab/user_avatar.py,sha256=lnXKwMUkwhVd-C4ikx6--ktTouAfD7lWrVVCG4SnRzk,18248
|
|
181
194
|
pulumi_gitlab/user_custom_attribute.py,sha256=VA4mykVqWlShOEcZSZ_H8fOd8FyPbqGCmOTUs-Wg8XE,11377
|
|
182
|
-
pulumi_gitlab/user_gpg_key.py,sha256=
|
|
195
|
+
pulumi_gitlab/user_gpg_key.py,sha256=ITTNtj7-v8h5UgBoNQYX9zu_e6jqxyt0XHai_09Xu0E,14564
|
|
183
196
|
pulumi_gitlab/user_identity.py,sha256=Nsvf5xlibfciowzYnlSdu057WX174gRSKxO8Trk15AA,13465
|
|
184
|
-
pulumi_gitlab/user_impersonation_token.py,sha256=
|
|
185
|
-
pulumi_gitlab/user_runner.py,sha256=
|
|
186
|
-
pulumi_gitlab/user_ssh_key.py,sha256=
|
|
187
|
-
pulumi_gitlab/value_stream_analytics.py,sha256=
|
|
197
|
+
pulumi_gitlab/user_impersonation_token.py,sha256=EpqiH5d_5xHe1sxulVnt8S-ibDf9oppBX_wJG_J-Lsg,27351
|
|
198
|
+
pulumi_gitlab/user_runner.py,sha256=4INL6Rrz737qY8vzvYYYU2sHis7axJYDuXlrYhk22Jw,35579
|
|
199
|
+
pulumi_gitlab/user_ssh_key.py,sha256=lbD2cuGpfnnK4XbzJUWP-WRUdOIvk_A4jVHlpnD9ZQE,18212
|
|
200
|
+
pulumi_gitlab/value_stream_analytics.py,sha256=qajoNI2VIT6EgVAN-V0YAMShve-D6jDQflwIHwwxais,19626
|
|
188
201
|
pulumi_gitlab/config/__init__.py,sha256=XWnQfVtc2oPapjSXXCdORFJvMpXt_SMJQASWdTRoPmc,296
|
|
189
202
|
pulumi_gitlab/config/__init__.pyi,sha256=ZtEaCpKCo4BZor-bBsDtf4j3yl7ym84dqhkIy_Keuvs,2671
|
|
190
203
|
pulumi_gitlab/config/vars.py,sha256=Rf2oVEIYf4vSaqK-7RmfAixxpaGEhQG9kXIeSCfIuJc,4073
|
|
191
|
-
pulumi_gitlab-9.
|
|
192
|
-
pulumi_gitlab-9.
|
|
193
|
-
pulumi_gitlab-9.
|
|
194
|
-
pulumi_gitlab-9.
|
|
204
|
+
pulumi_gitlab-9.8.1.dist-info/METADATA,sha256=DD0A0fQwAmiDR-UjoipHv0XvFU8wzFZ_IRj47F5aXW0,3436
|
|
205
|
+
pulumi_gitlab-9.8.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
206
|
+
pulumi_gitlab-9.8.1.dist-info/top_level.txt,sha256=fl4bklikEmbp3mE-JWfvC3JROXPLQGxFaJd_j_qmjgE,14
|
|
207
|
+
pulumi_gitlab-9.8.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|