pulumi-gitlab 9.6.0a1766428356__py3-none-any.whl → 9.7.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 +13 -0
- pulumi_gitlab/_inputs.py +557 -0
- pulumi_gitlab/get_artifact_file.py +2 -2
- pulumi_gitlab/get_group_billable_member_memberships.py +2 -2
- 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_project.py +15 -1
- 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_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/global_level_notifications.py +2 -2
- pulumi_gitlab/group_access_token.py +4 -4
- pulumi_gitlab/group_label.py +7 -7
- pulumi_gitlab/group_membership.py +2 -2
- pulumi_gitlab/group_service_account.py +2 -2
- pulumi_gitlab/group_service_account_access_token.py +2 -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/label.py +7 -7
- pulumi_gitlab/member_role.py +9 -9
- pulumi_gitlab/outputs.py +770 -8
- 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_deploy_token.py +2 -2
- pulumi_gitlab/project_hook.py +2 -2
- 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_target_branch_rule.py +2 -2
- pulumi_gitlab/project_variable.py +7 -7
- pulumi_gitlab/pulumi-plugin.json +1 -1
- pulumi_gitlab/release_link.py +18 -18
- pulumi_gitlab/runner.py +2 -2
- 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 +2 -2
- pulumi_gitlab/user_ssh_key.py +2 -2
- {pulumi_gitlab-9.6.0a1766428356.dist-info → pulumi_gitlab-9.7.0.dist-info}/METADATA +1 -1
- {pulumi_gitlab-9.6.0a1766428356.dist-info → pulumi_gitlab-9.7.0.dist-info}/RECORD +56 -51
- {pulumi_gitlab-9.6.0a1766428356.dist-info → pulumi_gitlab-9.7.0.dist-info}/WHEEL +0 -0
- {pulumi_gitlab-9.6.0a1766428356.dist-info → pulumi_gitlab-9.7.0.dist-info}/top_level.txt +0 -0
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
|
|
|
@@ -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
|
|
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
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
pulumi_gitlab/__init__.py,sha256=
|
|
2
|
-
pulumi_gitlab/_inputs.py,sha256=
|
|
1
|
+
pulumi_gitlab/__init__.py,sha256=fFoYU-_nRD9PCefYa-3V17cyypZFxCoQ2uVFjeeRBu0,29678
|
|
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
|
|
@@ -13,7 +13,7 @@ pulumi_gitlab/deploy_key.py,sha256=NYEVpalJkdEKXnntKqrMpGkLMfL-QWN2LKG_Zqo5poc,1
|
|
|
13
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=
|
|
16
|
+
pulumi_gitlab/get_artifact_file.py,sha256=zG1F4Aof2np3bhhJOZG7aKOZu1Ot-lnlImJP1zczp78,11813
|
|
17
17
|
pulumi_gitlab/get_branch.py,sha256=j6ZSamR96v5YUUbIGsLvAFbuxOXNwXbheOSW4C7CjH4,9060
|
|
18
18
|
pulumi_gitlab/get_cluster_agent.py,sha256=iwTqj8ZnCgX8nJTzcbrE6GPVErjv_HgENPgbCcrNpQo,6680
|
|
19
19
|
pulumi_gitlab/get_cluster_agents.py,sha256=_G242BH8y3zZuOILvlTaIXfYyCKzqEstVQt8rz7EaJc,4764
|
|
@@ -21,27 +21,28 @@ pulumi_gitlab/get_compliance_framework.py,sha256=7y9VD1LBEqmQrmxd5IVPKeRWhk8Z6cq
|
|
|
21
21
|
pulumi_gitlab/get_current_user.py,sha256=bViEaUXlbt63mH5IjGNKHAsifCm29P5QiM24xaUb3Ns,7832
|
|
22
22
|
pulumi_gitlab/get_group.py,sha256=XrnaVL0aDidOMVTaHkI1Lc62Umojf9jeHy85j-D_U4c,17701
|
|
23
23
|
pulumi_gitlab/get_group_access_tokens.py,sha256=3ARMgU0EDOk8_9NcBzcq18jKvKGCIvFki_nR6gRKCv8,4651
|
|
24
|
-
pulumi_gitlab/get_group_billable_member_memberships.py,sha256=
|
|
24
|
+
pulumi_gitlab/get_group_billable_member_memberships.py,sha256=jeuM7xK0eexFbosqsGZdB-yBay0P3u6_E-1rqWyoVOA,6804
|
|
25
25
|
pulumi_gitlab/get_group_hook.py,sha256=_VRGMtzUhrrhZABpg4kh09zOWDXUzIsYUpjgQ1B1Fsc,17913
|
|
26
26
|
pulumi_gitlab/get_group_hooks.py,sha256=nP98eVH04CkUP1kyp66Wi3SIq3W55PLTjh7PbeKRjKE,4097
|
|
27
27
|
pulumi_gitlab/get_group_ids.py,sha256=00AwhFanqKDX5EglZHzaEDvdAMp5Ld7pxsvLwIQkEaQ,6351
|
|
28
|
-
pulumi_gitlab/get_group_membership.py,sha256=
|
|
28
|
+
pulumi_gitlab/get_group_membership.py,sha256=QjNW2Jnh4FafMLS3v7omYep9e1Q0cEUmXudLiPp1Now,7676
|
|
29
29
|
pulumi_gitlab/get_group_provisioned_users.py,sha256=H9KF77X5Q4bBZHzckmVG1qcB8d21qW57oL7P03sfV7E,11345
|
|
30
30
|
pulumi_gitlab/get_group_saml_links.py,sha256=KEfL-zQYt8LdRItauKv6eemE1VpJKwJUASAyTk_ark8,4226
|
|
31
|
-
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
|
|
32
33
|
pulumi_gitlab/get_group_subgroups.py,sha256=UJBp1hKYgFjkoUE27KZPer9kqDWsao_FKJI7VOTne64,13821
|
|
33
|
-
pulumi_gitlab/get_group_variable.py,sha256=
|
|
34
|
+
pulumi_gitlab/get_group_variable.py,sha256=uu-_xK1kNGZ_Br6JldneayClNIdArRahjCXkYp5FJR4,9972
|
|
34
35
|
pulumi_gitlab/get_group_variables.py,sha256=mfsFrd7u54vMYS1ciC8Sk1D02LwsaPOK_g_YUghpRRI,6010
|
|
35
36
|
pulumi_gitlab/get_groups.py,sha256=KRsfsYZtjzlScpkQe_WIfUVd6mt_2EqSiJSBaIPfvAc,7974
|
|
36
37
|
pulumi_gitlab/get_instance_deploy_keys.py,sha256=vz22DdfqMA59sCB-XG0NYdNNR54JC6oIBKrKnMEhZgU,4666
|
|
37
|
-
pulumi_gitlab/get_instance_service_account.py,sha256=
|
|
38
|
+
pulumi_gitlab/get_instance_service_account.py,sha256=Twaj31F7uYxukyxM9_C2HJ_oQxvtScfVBdY-cpFWESs,6189
|
|
38
39
|
pulumi_gitlab/get_instance_variable.py,sha256=r5la7d0kTiFGBaSs914T1mVld_-x1qpARDRLV1FLFZg,7285
|
|
39
40
|
pulumi_gitlab/get_instance_variables.py,sha256=AZ_XyYUk-O_Tp36IcqfrXYMxCbG9A2npDD3febIeNgM,3790
|
|
40
41
|
pulumi_gitlab/get_member_role.py,sha256=yY5RdEaUKtuN4r8CJxO5_K8KucsZIOaDlhdXwm7H9ng,7610
|
|
41
42
|
pulumi_gitlab/get_metadata.py,sha256=voj93AOaaeOx2rKEvLoIAya8xAsb5oaPXovs_bzl-bE,5028
|
|
42
43
|
pulumi_gitlab/get_pipeline_schedule.py,sha256=EWKGUP0lrD1AZT9ve9WcLzg0Xuf-Q-sSRAyU93MsdxA,11944
|
|
43
44
|
pulumi_gitlab/get_pipeline_schedules.py,sha256=Yl6rZi3VRy1xQpxHZ1AP-cZ6WjSL3wHshD1n4f3Cjww,4825
|
|
44
|
-
pulumi_gitlab/get_project.py,sha256=
|
|
45
|
+
pulumi_gitlab/get_project.py,sha256=lgelvxOAL0aap_muMOlzbZkHqA0sHkcK5XSQJMfRJ5g,63464
|
|
45
46
|
pulumi_gitlab/get_project_access_tokens.py,sha256=dZqQOdQN_qx1zwVqgEVBSAT5q_472rjxS90TyBEX-AM,5637
|
|
46
47
|
pulumi_gitlab/get_project_approval_rules.py,sha256=tMXq5S_pK7MSJsRNTV6vVhN2wwSPhyl_XdcsjCx5Zis,6002
|
|
47
48
|
pulumi_gitlab/get_project_branches.py,sha256=rYkIWuK26IF2VhIwpOSd1syjYiLbHXPdPYQYM3bBYU8,4473
|
|
@@ -50,8 +51,9 @@ pulumi_gitlab/get_project_hook.py,sha256=TrF8m1WY2KChchsrMzxFo10ch0V4atnxJHX4vhU
|
|
|
50
51
|
pulumi_gitlab/get_project_hooks.py,sha256=lc878gqd34e1Y5D1ATy9_93OcGC9w99jNZuQa90ySBU,4609
|
|
51
52
|
pulumi_gitlab/get_project_ids.py,sha256=NJ0nKGlZMpU0L8SSZT3cZnb9kpDj3-tX0P8FvCGr_1c,6413
|
|
52
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
|
|
53
55
|
pulumi_gitlab/get_project_issues.py,sha256=I5s7ZJ1xt_8RtgVZmQuaD-GJ9HGZrQcGWnd3PcACge4,35358
|
|
54
|
-
pulumi_gitlab/get_project_membership.py,sha256=
|
|
56
|
+
pulumi_gitlab/get_project_membership.py,sha256=mAGX3YfcqgxzVCalDl6BCGHLcY07sn45JDte3TBxGlU,9661
|
|
55
57
|
pulumi_gitlab/get_project_merge_request.py,sha256=PDHQknafRHM-looU5Vo33EJ_dKM2Qhy3HYAd60vC0mY,10415
|
|
56
58
|
pulumi_gitlab/get_project_merge_requests.py,sha256=8u1y1yi0N-MQ7qG2cyuMKFkd_dZA2McqegDneXiXedE,26373
|
|
57
59
|
pulumi_gitlab/get_project_milestone.py,sha256=uPNG2mzamuQ1H7M02wGMujOX_OGoxccea4F-dWn90DE,11057
|
|
@@ -59,25 +61,27 @@ pulumi_gitlab/get_project_milestones.py,sha256=4TT5AHBDZ1e0eLZtGxkcKi0HALrLa1033
|
|
|
59
61
|
pulumi_gitlab/get_project_mirror_public_key.py,sha256=wo2TPoadmi-Ru7hk0ncEKys_LImArdS1xds2BU8H6Og,5799
|
|
60
62
|
pulumi_gitlab/get_project_protected_branch.py,sha256=YQTtGqGo5W8KN9RRU_4hjSmNFIfu1n-UY-KBBU1r_2Q,10246
|
|
61
63
|
pulumi_gitlab/get_project_protected_branches.py,sha256=nhvPTRqgJwRQXuN2y1zG7IQRl5TDPkG-aV2Hchxg_Aw,5906
|
|
62
|
-
pulumi_gitlab/get_project_protected_tag.py,sha256=
|
|
64
|
+
pulumi_gitlab/get_project_protected_tag.py,sha256=fRQDNm0a2VUgKls564Wklof10wrz9SE2zLC2RPJwDZs,5704
|
|
63
65
|
pulumi_gitlab/get_project_protected_tags.py,sha256=t2VcHaU1UX1hhs9VTWuC_W5ia5Jl24WK1vNMxIv4YSU,4671
|
|
66
|
+
pulumi_gitlab/get_project_secure_file.py,sha256=FW5dw4I0JifYEm5fwKBRW0dbKO6aQ3FLvUVklpnfCxI,9837
|
|
64
67
|
pulumi_gitlab/get_project_tag.py,sha256=bTYxA4HpDxpyKka5WOpuO93gMaJYcyXyat8asZIDtXA,7129
|
|
65
68
|
pulumi_gitlab/get_project_tags.py,sha256=meUS3PZNccndWKnP4wWDj_KD_TuLnZXnheCCqfvTlyw,7596
|
|
66
69
|
pulumi_gitlab/get_project_variable.py,sha256=OvfaMmjKasLxraaAEkdWPWuoKhV6z9azth3HjgcdhFo,9798
|
|
67
70
|
pulumi_gitlab/get_project_variables.py,sha256=4LgJrtm2cmU9-H3ollUpyYbrCJnH3E5ufVgAP6zTNDQ,6258
|
|
68
|
-
pulumi_gitlab/get_projects.py,sha256=
|
|
71
|
+
pulumi_gitlab/get_projects.py,sha256=AYgPLJaoZKzM81zUoY9eGIz-0C8Eb-3OrmKHO9v7yZM,30272
|
|
69
72
|
pulumi_gitlab/get_release.py,sha256=5PpeltakBOULxz3kDO9U4ropLtDTGWOcmYiS9NqORW4,8110
|
|
70
|
-
pulumi_gitlab/get_release_link.py,sha256=
|
|
71
|
-
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
|
|
72
75
|
pulumi_gitlab/get_repository_file.py,sha256=uRHSoeJZx3bvp8FfBtJ4OFXn8-I8pbU3_3DFRGf1EWo,11034
|
|
73
76
|
pulumi_gitlab/get_repository_tree.py,sha256=JP8VF9tZkKefCSy8HDKzV_NmHHNAjI1HE6BSkFEB_A4,7653
|
|
74
77
|
pulumi_gitlab/get_runners.py,sha256=pJB6EVKC_ri7kdwQU04eZcXaWhK_SRvmhvXe_C3jdfY,7962
|
|
78
|
+
pulumi_gitlab/get_security_policy_document.py,sha256=f8vbiw8DiXnEiUyjFEiJEeOYaK3O0E5kzVGESqHk4XM,7379
|
|
75
79
|
pulumi_gitlab/get_user.py,sha256=2rOWfEt-H4YtiIa2NrCH3vS7lAbXuNsB8QccAexVphE,23289
|
|
76
80
|
pulumi_gitlab/get_user_sshkeys.py,sha256=scInXXnKt-97WzrjUXZWtVxlWaQIq6sgr8ga7xiMQDE,5097
|
|
77
81
|
pulumi_gitlab/get_users.py,sha256=auAZ02cMuSTO5jtWzEdtUwu8gk8knDJPAflH0ftJPjY,19393
|
|
78
|
-
pulumi_gitlab/global_level_notifications.py,sha256=
|
|
82
|
+
pulumi_gitlab/global_level_notifications.py,sha256=5G94vzvat1k3cIPsCfc1yKxUkKfWVqDJRNfWR470_G4,53007
|
|
79
83
|
pulumi_gitlab/group.py,sha256=vgdYa1xoso553htmxNt0TzxQR2EdfGVmYPFwJV6erNk,99310
|
|
80
|
-
pulumi_gitlab/group_access_token.py,sha256=
|
|
84
|
+
pulumi_gitlab/group_access_token.py,sha256=hDMEo250e1r-h8gv-xod6Yr2Bheur4V6IEcCw4is7I8,35535
|
|
81
85
|
pulumi_gitlab/group_badge.py,sha256=WR9ThyUKTPh-1gjy7Z-xveuA905e22Tz8cWIwmASDrc,18949
|
|
82
86
|
pulumi_gitlab/group_cluster.py,sha256=iocCCOb_06u5WAbPKhIQqXTu4noiF3eXx2zCD3QSj7o,36943
|
|
83
87
|
pulumi_gitlab/group_custom_attribute.py,sha256=Fbfs2YjyORYk5BhBkDqmvhSMkfLGfKDXgalsZknS08c,11466
|
|
@@ -86,21 +90,21 @@ pulumi_gitlab/group_deploy_token.py,sha256=i5Zk1Go9tWQKF3JTkxMipP1OnFxMRxJSWKpIk
|
|
|
86
90
|
pulumi_gitlab/group_epic_board.py,sha256=VXlQuenFczYFToWTj1szmYkdSXss79p_ULqzLxhlc6w,13384
|
|
87
91
|
pulumi_gitlab/group_hook.py,sha256=X9YyLjiOBLboVaw4Oj9HycvfW981siGa7iShuOsWjYY,65329
|
|
88
92
|
pulumi_gitlab/group_issue_board.py,sha256=rW8CE1JTljj--nLgwgLoG955nmm-bGnrRogxetT6mmA,16554
|
|
89
|
-
pulumi_gitlab/group_label.py,sha256=
|
|
93
|
+
pulumi_gitlab/group_label.py,sha256=RqSDyK-0olrP3gFt3mmVvB5ERCI453la-bwkZn75jMY,17898
|
|
90
94
|
pulumi_gitlab/group_ldap_link.py,sha256=R-IiorP7cIydTFTT2t1VUBil-fz5PdEf0r3w_clGMro,26664
|
|
91
95
|
pulumi_gitlab/group_level_mr_approvals.py,sha256=yua5IEIx9PBdY9UX2jp0BNhjX11GXgUjYwJingrgt1o,25283
|
|
92
|
-
pulumi_gitlab/group_membership.py,sha256=
|
|
96
|
+
pulumi_gitlab/group_membership.py,sha256=vRsb4UwMAsFhTMNvdcekY2_4AnYp15EY4cpiNHkikJ0,25239
|
|
93
97
|
pulumi_gitlab/group_project_file_template.py,sha256=X725geAovfqK_Xl_huFpVWONDPt9sPUixX96OC3mN-I,12980
|
|
94
98
|
pulumi_gitlab/group_protected_environment.py,sha256=LA-V7wNI5cUhYuL944D-xEeoRZxzffgmZhEQ3I1S9m8,19950
|
|
95
99
|
pulumi_gitlab/group_saml_link.py,sha256=mHYsrkb_7ii9PbJI8agSZx2m1ju814zivdAco4oHuvM,17004
|
|
96
100
|
pulumi_gitlab/group_security_policy_attachment.py,sha256=l3S07Irezx8c_aBtF4g-6lB9jzho-tUXyXDGyNg5kME,16841
|
|
97
|
-
pulumi_gitlab/group_service_account.py,sha256=
|
|
98
|
-
pulumi_gitlab/group_service_account_access_token.py,sha256=
|
|
99
|
-
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
|
|
100
104
|
pulumi_gitlab/group_variable.py,sha256=hDS-wTKG7HkCJapo9Ts2vrbPZZ_lry0X8fdB03oCM4w,28854
|
|
101
105
|
pulumi_gitlab/instance_cluster.py,sha256=R9yIDusyqTYSfjhGoQuireednDPDZOewyFocqdJuRq4,37617
|
|
102
|
-
pulumi_gitlab/instance_service_account.py,sha256=
|
|
103
|
-
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
|
|
104
108
|
pulumi_gitlab/integration_custom_issue_tracker.py,sha256=73Zhuz1bO5PNWql_Rx3iglS8whxwPAqZwztdvIdeqU4,19226
|
|
105
109
|
pulumi_gitlab/integration_emails_on_push.py,sha256=rjK8oIxFm6SGDSharb_r--W96BQhkTa8xWLDFXG4JzE,29538
|
|
106
110
|
pulumi_gitlab/integration_external_wiki.py,sha256=XG4xLgtJVALMJNl42vBLnL1qotH3w5Qv88YQYQQfi4s,17464
|
|
@@ -114,27 +118,27 @@ pulumi_gitlab/integration_pipelines_email.py,sha256=ClNpd1BDLTuzHLZN9YoR3gmAjr1z
|
|
|
114
118
|
pulumi_gitlab/integration_redmine.py,sha256=78m4dYqGr6xtN7mbx-FkVm-brSZrx4QPl88UKf3zNEk,19288
|
|
115
119
|
pulumi_gitlab/integration_slack.py,sha256=-D_4aaoSleCEK4qI99XWuWzeh2QpAOQM-Ewq9ZhN7Do,67572
|
|
116
120
|
pulumi_gitlab/integration_telegram.py,sha256=wLKXDVepFB45HgeyCHsyS484jzhVz50ud7qHz1arzjI,41348
|
|
117
|
-
pulumi_gitlab/label.py,sha256=
|
|
118
|
-
pulumi_gitlab/member_role.py,sha256=
|
|
119
|
-
pulumi_gitlab/outputs.py,sha256=
|
|
120
|
-
pulumi_gitlab/pages_domain.py,sha256=
|
|
121
|
-
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=MldfzgFeAXQ3dI3XtVL8UkgupsLNnzoDtav5hLjEOoI,471374
|
|
124
|
+
pulumi_gitlab/pages_domain.py,sha256=zrf6GcOcMDfzld1R-6v_nd_gfpLrjXvI_IMi0moNTxo,22937
|
|
125
|
+
pulumi_gitlab/personal_access_token.py,sha256=Y70b9bxV5Q8mxJrI3DRYNkca1O1SJWa0DEeVIjcL_OM,32593
|
|
122
126
|
pulumi_gitlab/pipeline_schedule.py,sha256=UcqpiWKBXWbDm491woCUjIEm_TcRg48Ihh93x8qHgNg,22808
|
|
123
|
-
pulumi_gitlab/pipeline_schedule_variable.py,sha256=
|
|
127
|
+
pulumi_gitlab/pipeline_schedule_variable.py,sha256=dZSQ8z2egOSHGeJ5wPJguGK-_e4U2zQq3-NCL9_0qh8,17398
|
|
124
128
|
pulumi_gitlab/pipeline_trigger.py,sha256=2HduK2DJqxsOyXsOYxGsiU-bxcI2BVM2LFIwIel2NWM,12682
|
|
125
|
-
pulumi_gitlab/project.py,sha256=
|
|
126
|
-
pulumi_gitlab/project_access_token.py,sha256=
|
|
129
|
+
pulumi_gitlab/project.py,sha256=9noRopIZOJU7Apbnc0ZW3Riy4zE-FWikSrhWsufSfck,337215
|
|
130
|
+
pulumi_gitlab/project_access_token.py,sha256=GtmRfxR3w52sYpicX_nMvzjW4dvhIrU8_jmJ0SWRpxc,35920
|
|
127
131
|
pulumi_gitlab/project_approval_rule.py,sha256=PGPoYugk-11ItJK6ah6U0kzFIA8rTotJkBIR08kKGEk,36738
|
|
128
132
|
pulumi_gitlab/project_badge.py,sha256=Hqr40R54NWDH0sGEzjZqERlpNglcuHg89npy53zcPM8,19105
|
|
129
133
|
pulumi_gitlab/project_cluster.py,sha256=2CUL69X7DoZ7JCVe7_wClfSOXrUM7b0drawDtT24i4A,39578
|
|
130
134
|
pulumi_gitlab/project_compliance_frameworks.py,sha256=KGVm9M8DZHibuGr88bY3fMj1NZT4tr2E7Gn3bWkijOI,13194
|
|
131
135
|
pulumi_gitlab/project_container_repository_protection.py,sha256=wPheIqqBAeM7ICMvcj8Zh_SwRX3qwnp5D1bx5HNR4lI,21926
|
|
132
136
|
pulumi_gitlab/project_custom_attribute.py,sha256=Rd54eHYb5djIfP0fVRZlBcrBWCTZsgjY9rpnQOdELvs,11620
|
|
133
|
-
pulumi_gitlab/project_deploy_token.py,sha256=
|
|
137
|
+
pulumi_gitlab/project_deploy_token.py,sha256=gsjwwVFLMsa-hjnr6p07GmgmVGC35a_jwLytXHPeiYY,25819
|
|
134
138
|
pulumi_gitlab/project_environment.py,sha256=B1fx3lHPUohxkn1fgsr1TW0iDirCh_bfuZNEyhHLTqI,37495
|
|
135
139
|
pulumi_gitlab/project_external_status_check.py,sha256=JFBXrmqCjLd2WzHtz5iCZhg-bVIODL_8yU09Xjc11LM,20690
|
|
136
140
|
pulumi_gitlab/project_freeze_period.py,sha256=QEw2FMam93mutlvGDR7DYUrNO_4ZJih5aRGlFtbzBn8,15038
|
|
137
|
-
pulumi_gitlab/project_hook.py,sha256=
|
|
141
|
+
pulumi_gitlab/project_hook.py,sha256=hMbanmdR6nOMkI3o1eImNAJ6S1Ibdgwn2zUXFSTWdkA,60931
|
|
138
142
|
pulumi_gitlab/project_integration_custom_issue_tracker.py,sha256=qZGs8NRs53KeWTB-hBqBEJDBu7RAmzi3absOO9Musxo,19246
|
|
139
143
|
pulumi_gitlab/project_integration_emails_on_push.py,sha256=nOjc6moUHWV0GARBdw2gnc0Ch2_JcSB-OzeaMeZXH3Q,29570
|
|
140
144
|
pulumi_gitlab/project_integration_external_wiki.py,sha256=RWRxGVpxFnejDObzwoWIzviKdDkysVBBo_sGZZDDFY8,17496
|
|
@@ -152,10 +156,10 @@ pulumi_gitlab/project_issue.py,sha256=SDmV-LWw6t11R_KvTiO5rMQ1tEFmo1rh0ja1w3F1KF
|
|
|
152
156
|
pulumi_gitlab/project_issue_board.py,sha256=5HKL9kY2a1ZxtfPhVlag_zc3ucz2pnP0GqhELrFlEkw,25075
|
|
153
157
|
pulumi_gitlab/project_job_token_scope.py,sha256=gh894ArRyKsKBag-ugP1uUHbSi1mbDslef_LBfeGd-8,13105
|
|
154
158
|
pulumi_gitlab/project_job_token_scopes.py,sha256=UNAbifpoe4BTMPQfQMTm6cpszhW0hLF8clqJqQ6Bmmc,23785
|
|
155
|
-
pulumi_gitlab/project_label.py,sha256=
|
|
156
|
-
pulumi_gitlab/project_level_mr_approvals.py,sha256=
|
|
157
|
-
pulumi_gitlab/project_level_notifications.py,sha256=
|
|
158
|
-
pulumi_gitlab/project_membership.py,sha256=
|
|
159
|
+
pulumi_gitlab/project_label.py,sha256=MV6_OY4krpNHXLyw8GwIjkrQLwP_KDnxqndSLQb7j1U,18690
|
|
160
|
+
pulumi_gitlab/project_level_mr_approvals.py,sha256=AIh7aet0VvEjkPTas9DsPwDrzI3hslnHPgAPKbw4sUE,28766
|
|
161
|
+
pulumi_gitlab/project_level_notifications.py,sha256=OJYlubXEbxLY7_9U_KL-8NgWwmH8bqW7QN0rSXtXQbo,56590
|
|
162
|
+
pulumi_gitlab/project_membership.py,sha256=Pv-1190hOO4lotQh4uhhUCgbfxSkPh2sd5qh1Y6opRA,18929
|
|
159
163
|
pulumi_gitlab/project_merge_request_note.py,sha256=cJf7ytkeNu1Lf4FE8FWBjYY7T7KcviC9-UFo2Uo20_Q,25399
|
|
160
164
|
pulumi_gitlab/project_milestone.py,sha256=jeNDwbGifiz4LdvKoe4SukodJhNSdDqrxZnhcWMxN1s,27756
|
|
161
165
|
pulumi_gitlab/project_mirror.py,sha256=YqfLXig8-X7VMr2DACWE870x3MuObv0osXQIHIMqSl0,24505
|
|
@@ -166,31 +170,32 @@ pulumi_gitlab/project_runner_enablement.py,sha256=IkaDkXjWGOMjhf1A2qLZ3q0FaQbFzE
|
|
|
166
170
|
pulumi_gitlab/project_security_policy_attachment.py,sha256=yFcRRH5H76QbkY_BCQVwSNonts_bB-sNYqxmS8X-vK8,16851
|
|
167
171
|
pulumi_gitlab/project_share_group.py,sha256=KOBlnLsjiDJILFiMZsWvMkONtU7ApGlteaD07UNSCA8,16751
|
|
168
172
|
pulumi_gitlab/project_tag.py,sha256=gzl7epdlddA_4v7pqaUuZ6sK8bYJGLO_mEcL7IamXt4,19542
|
|
169
|
-
pulumi_gitlab/project_target_branch_rule.py,sha256=
|
|
170
|
-
pulumi_gitlab/project_variable.py,sha256=
|
|
173
|
+
pulumi_gitlab/project_target_branch_rule.py,sha256=pqtvi-K1mgd8CDNCSGkEjoc2ukKnEw63aZoRsB0Z1h8,14415
|
|
174
|
+
pulumi_gitlab/project_variable.py,sha256=WIv9WN6OhKb8bOAODh9GreL-Pvk_UtdDq6gPwJ1t1ic,29672
|
|
171
175
|
pulumi_gitlab/project_wiki_page.py,sha256=_uJ0vbZO0P5pVp3xuvnBYBZYfZUY0KX6hnvHK5motfU,16558
|
|
172
176
|
pulumi_gitlab/provider.py,sha256=xszx1fRkM7_uck9iIfo2dNGa2JkXWThqRXi1wHsYtjY,23257
|
|
173
|
-
pulumi_gitlab/pulumi-plugin.json,sha256=
|
|
177
|
+
pulumi_gitlab/pulumi-plugin.json,sha256=kSBKbi5YqXUD8iNM_1OZ8HqVOnBLdzK5SYZvSDcJiA4,65
|
|
174
178
|
pulumi_gitlab/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
175
179
|
pulumi_gitlab/release.py,sha256=nl-zDbU9uBrgSal-Q_hmgvucLEdRdVwzQaHznkzG064,36331
|
|
176
|
-
pulumi_gitlab/release_link.py,sha256=
|
|
180
|
+
pulumi_gitlab/release_link.py,sha256=EjboeRdN6IM2LYb_BWljjHX-cBBfGdzQRI53hiYxLO0,23326
|
|
177
181
|
pulumi_gitlab/repository_file.py,sha256=0fBrHI7nqAzeKHhnJSs6sAez2vw34dX9JwqwMrhkdaY,48070
|
|
178
|
-
pulumi_gitlab/runner.py,sha256=
|
|
179
|
-
pulumi_gitlab/system_hook.py,sha256=
|
|
182
|
+
pulumi_gitlab/runner.py,sha256=jAiYBAQ86FYO4oMKYqYYMEW0s0vroK7ecBAJlLXNoDg,29785
|
|
183
|
+
pulumi_gitlab/system_hook.py,sha256=Lp4lJjdtF1HNnBHQOPTSWQkd_L_oUhBS_xbojseHaJU,23926
|
|
180
184
|
pulumi_gitlab/tag_protection.py,sha256=XtDt4Sm4YufWzrta3Mhrh63HcBLaqe0bfp3u8zXmCtY,16506
|
|
181
185
|
pulumi_gitlab/topic.py,sha256=18ZIAmJHtAJkUZRho0CrSEyIHtC8kdHLAhnuuPvj0oo,18026
|
|
182
186
|
pulumi_gitlab/user.py,sha256=R1uiQg71fU1U-OGpDLm8h4JrqMLxLngrH3gRyc8jhj4,37777
|
|
187
|
+
pulumi_gitlab/user_avatar.py,sha256=lnXKwMUkwhVd-C4ikx6--ktTouAfD7lWrVVCG4SnRzk,18248
|
|
183
188
|
pulumi_gitlab/user_custom_attribute.py,sha256=VA4mykVqWlShOEcZSZ_H8fOd8FyPbqGCmOTUs-Wg8XE,11377
|
|
184
|
-
pulumi_gitlab/user_gpg_key.py,sha256=
|
|
189
|
+
pulumi_gitlab/user_gpg_key.py,sha256=ITTNtj7-v8h5UgBoNQYX9zu_e6jqxyt0XHai_09Xu0E,14564
|
|
185
190
|
pulumi_gitlab/user_identity.py,sha256=Nsvf5xlibfciowzYnlSdu057WX174gRSKxO8Trk15AA,13465
|
|
186
|
-
pulumi_gitlab/user_impersonation_token.py,sha256=
|
|
187
|
-
pulumi_gitlab/user_runner.py,sha256=
|
|
188
|
-
pulumi_gitlab/user_ssh_key.py,sha256=
|
|
191
|
+
pulumi_gitlab/user_impersonation_token.py,sha256=EpqiH5d_5xHe1sxulVnt8S-ibDf9oppBX_wJG_J-Lsg,27351
|
|
192
|
+
pulumi_gitlab/user_runner.py,sha256=4INL6Rrz737qY8vzvYYYU2sHis7axJYDuXlrYhk22Jw,35579
|
|
193
|
+
pulumi_gitlab/user_ssh_key.py,sha256=lbD2cuGpfnnK4XbzJUWP-WRUdOIvk_A4jVHlpnD9ZQE,18212
|
|
189
194
|
pulumi_gitlab/value_stream_analytics.py,sha256=qajoNI2VIT6EgVAN-V0YAMShve-D6jDQflwIHwwxais,19626
|
|
190
195
|
pulumi_gitlab/config/__init__.py,sha256=XWnQfVtc2oPapjSXXCdORFJvMpXt_SMJQASWdTRoPmc,296
|
|
191
196
|
pulumi_gitlab/config/__init__.pyi,sha256=ZtEaCpKCo4BZor-bBsDtf4j3yl7ym84dqhkIy_Keuvs,2671
|
|
192
197
|
pulumi_gitlab/config/vars.py,sha256=Rf2oVEIYf4vSaqK-7RmfAixxpaGEhQG9kXIeSCfIuJc,4073
|
|
193
|
-
pulumi_gitlab-9.
|
|
194
|
-
pulumi_gitlab-9.
|
|
195
|
-
pulumi_gitlab-9.
|
|
196
|
-
pulumi_gitlab-9.
|
|
198
|
+
pulumi_gitlab-9.7.0.dist-info/METADATA,sha256=P-O3-W2Wa8RatWmgPYR4_YyZtXCxmkD0MN4jTzx0na4,3436
|
|
199
|
+
pulumi_gitlab-9.7.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
200
|
+
pulumi_gitlab-9.7.0.dist-info/top_level.txt,sha256=fl4bklikEmbp3mE-JWfvC3JROXPLQGxFaJd_j_qmjgE,14
|
|
201
|
+
pulumi_gitlab-9.7.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|