pulumi-gitlab 9.3.0a1759182301__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.
Files changed (121) hide show
  1. pulumi_gitlab/__init__.py +107 -0
  2. pulumi_gitlab/_inputs.py +795 -0
  3. pulumi_gitlab/application_settings.py +16 -7
  4. pulumi_gitlab/branch.py +1 -1
  5. pulumi_gitlab/cluster_agent_token.py +1 -1
  6. pulumi_gitlab/config/__init__.pyi +15 -0
  7. pulumi_gitlab/config/vars.py +21 -0
  8. pulumi_gitlab/deploy_key_enable.py +4 -42
  9. pulumi_gitlab/deploy_token.py +11 -7
  10. pulumi_gitlab/get_artifact_file.py +266 -0
  11. pulumi_gitlab/get_branch.py +1 -1
  12. pulumi_gitlab/get_cluster_agent.py +3 -3
  13. pulumi_gitlab/get_cluster_agents.py +6 -6
  14. pulumi_gitlab/get_current_user.py +1 -1
  15. pulumi_gitlab/get_group.py +2 -2
  16. pulumi_gitlab/get_group_billable_member_memberships.py +2 -2
  17. pulumi_gitlab/get_group_hook.py +22 -3
  18. pulumi_gitlab/get_group_hooks.py +7 -3
  19. pulumi_gitlab/get_group_membership.py +2 -2
  20. pulumi_gitlab/get_group_saml_links.py +114 -0
  21. pulumi_gitlab/get_group_service_account.py +6 -2
  22. pulumi_gitlab/get_group_service_account_access_tokens.py +138 -0
  23. pulumi_gitlab/get_group_subgroups.py +1 -1
  24. pulumi_gitlab/get_group_variable.py +1 -1
  25. pulumi_gitlab/get_groups.py +1 -1
  26. pulumi_gitlab/get_instance_deploy_keys.py +1 -1
  27. pulumi_gitlab/get_instance_service_account.py +2 -2
  28. pulumi_gitlab/get_instance_variable.py +7 -7
  29. pulumi_gitlab/get_instance_variables.py +4 -4
  30. pulumi_gitlab/get_member_role.py +200 -0
  31. pulumi_gitlab/get_project.py +27 -7
  32. pulumi_gitlab/get_project_approval_rules.py +137 -0
  33. pulumi_gitlab/get_project_branches.py +1 -1
  34. pulumi_gitlab/get_project_hook.py +20 -5
  35. pulumi_gitlab/get_project_hooks.py +1 -1
  36. pulumi_gitlab/get_project_issue_label_events.py +170 -0
  37. pulumi_gitlab/get_project_membership.py +34 -16
  38. pulumi_gitlab/get_project_milestone.py +1 -1
  39. pulumi_gitlab/get_project_milestones.py +1 -1
  40. pulumi_gitlab/get_project_protected_tag.py +2 -2
  41. pulumi_gitlab/get_project_secure_file.py +247 -0
  42. pulumi_gitlab/get_project_tag.py +2 -2
  43. pulumi_gitlab/get_project_tags.py +1 -1
  44. pulumi_gitlab/get_project_variable.py +12 -12
  45. pulumi_gitlab/get_project_variables.py +4 -4
  46. pulumi_gitlab/get_projects.py +3 -3
  47. pulumi_gitlab/get_release_link.py +9 -9
  48. pulumi_gitlab/get_release_links.py +4 -4
  49. pulumi_gitlab/get_repository_file.py +1 -1
  50. pulumi_gitlab/get_repository_tree.py +1 -1
  51. pulumi_gitlab/get_security_policy_document.py +170 -0
  52. pulumi_gitlab/get_user.py +33 -1
  53. pulumi_gitlab/get_users.py +22 -2
  54. pulumi_gitlab/global_level_notifications.py +2 -2
  55. pulumi_gitlab/group.py +148 -7
  56. pulumi_gitlab/group_access_token.py +54 -7
  57. pulumi_gitlab/group_deploy_token.py +582 -0
  58. pulumi_gitlab/group_hook.py +163 -112
  59. pulumi_gitlab/group_label.py +7 -7
  60. pulumi_gitlab/group_level_mr_approvals.py +509 -0
  61. pulumi_gitlab/group_membership.py +10 -10
  62. pulumi_gitlab/group_service_account.py +38 -2
  63. pulumi_gitlab/group_service_account_access_token.py +146 -5
  64. pulumi_gitlab/group_share_group.py +13 -9
  65. pulumi_gitlab/instance_service_account.py +3 -3
  66. pulumi_gitlab/instance_variable.py +12 -12
  67. pulumi_gitlab/integration_custom_issue_tracker.py +4 -0
  68. pulumi_gitlab/integration_emails_on_push.py +9 -7
  69. pulumi_gitlab/integration_harbor.py +4 -0
  70. pulumi_gitlab/integration_jenkins.py +4 -0
  71. pulumi_gitlab/integration_redmine.py +4 -2
  72. pulumi_gitlab/integration_telegram.py +4 -0
  73. pulumi_gitlab/label.py +11 -7
  74. pulumi_gitlab/member_role.py +9 -9
  75. pulumi_gitlab/outputs.py +1279 -112
  76. pulumi_gitlab/pages_domain.py +7 -7
  77. pulumi_gitlab/personal_access_token.py +52 -5
  78. pulumi_gitlab/pipeline_schedule_variable.py +2 -2
  79. pulumi_gitlab/project.py +241 -105
  80. pulumi_gitlab/project_access_token.py +52 -5
  81. pulumi_gitlab/project_approval_rule.py +120 -0
  82. pulumi_gitlab/project_cicd_catalog.py +314 -0
  83. pulumi_gitlab/project_deploy_token.py +582 -0
  84. pulumi_gitlab/project_environment.py +4 -4
  85. pulumi_gitlab/project_external_status_check.py +469 -0
  86. pulumi_gitlab/project_freeze_period.py +22 -22
  87. pulumi_gitlab/project_hook.py +162 -109
  88. pulumi_gitlab/project_integration_emails_on_push.py +17 -7
  89. pulumi_gitlab/project_issue_link.py +502 -0
  90. pulumi_gitlab/project_job_token_scope.py +24 -4
  91. pulumi_gitlab/project_job_token_scopes.py +14 -14
  92. pulumi_gitlab/project_label.py +11 -11
  93. pulumi_gitlab/project_level_mr_approvals.py +2 -2
  94. pulumi_gitlab/project_level_notifications.py +2 -2
  95. pulumi_gitlab/project_membership.py +9 -9
  96. pulumi_gitlab/project_mirror.py +8 -6
  97. pulumi_gitlab/project_package_dependency_proxy.py +446 -0
  98. pulumi_gitlab/project_protected_environment.py +14 -14
  99. pulumi_gitlab/project_pull_mirror.py +837 -0
  100. pulumi_gitlab/project_push_mirror.py +547 -0
  101. pulumi_gitlab/project_secure_file.py +489 -0
  102. pulumi_gitlab/project_tag.py +3 -3
  103. pulumi_gitlab/project_target_branch_rule.py +2 -2
  104. pulumi_gitlab/project_variable.py +7 -7
  105. pulumi_gitlab/project_wiki_page.py +30 -0
  106. pulumi_gitlab/provider.py +76 -0
  107. pulumi_gitlab/pulumi-plugin.json +1 -1
  108. pulumi_gitlab/release_link.py +19 -19
  109. pulumi_gitlab/runner.py +8 -4
  110. pulumi_gitlab/system_hook.py +7 -7
  111. pulumi_gitlab/user_avatar.py +386 -0
  112. pulumi_gitlab/user_gpg_key.py +2 -2
  113. pulumi_gitlab/user_impersonation_token.py +52 -5
  114. pulumi_gitlab/user_runner.py +14 -14
  115. pulumi_gitlab/user_ssh_key.py +2 -2
  116. pulumi_gitlab/value_stream_analytics.py +92 -0
  117. {pulumi_gitlab-9.3.0a1759182301.dist-info → pulumi_gitlab-9.8.1.dist-info}/METADATA +1 -1
  118. pulumi_gitlab-9.8.1.dist-info/RECORD +207 -0
  119. pulumi_gitlab-9.3.0a1759182301.dist-info/RECORD +0 -188
  120. {pulumi_gitlab-9.3.0a1759182301.dist-info → pulumi_gitlab-9.8.1.dist-info}/WHEEL +0 -0
  121. {pulumi_gitlab-9.3.0a1759182301.dist-info → pulumi_gitlab-9.8.1.dist-info}/top_level.txt +0 -0
pulumi_gitlab/__init__.py CHANGED
@@ -18,6 +18,7 @@ from .deploy_key import *
18
18
  from .deploy_key_enable import *
19
19
  from .deploy_token import *
20
20
  from .get_application import *
21
+ from .get_artifact_file import *
21
22
  from .get_branch import *
22
23
  from .get_cluster_agent import *
23
24
  from .get_cluster_agents import *
@@ -31,7 +32,9 @@ from .get_group_hooks import *
31
32
  from .get_group_ids import *
32
33
  from .get_group_membership import *
33
34
  from .get_group_provisioned_users import *
35
+ from .get_group_saml_links import *
34
36
  from .get_group_service_account import *
37
+ from .get_group_service_account_access_tokens import *
35
38
  from .get_group_subgroups import *
36
39
  from .get_group_variable import *
37
40
  from .get_group_variables import *
@@ -40,17 +43,20 @@ from .get_instance_deploy_keys import *
40
43
  from .get_instance_service_account import *
41
44
  from .get_instance_variable import *
42
45
  from .get_instance_variables import *
46
+ from .get_member_role import *
43
47
  from .get_metadata import *
44
48
  from .get_pipeline_schedule import *
45
49
  from .get_pipeline_schedules import *
46
50
  from .get_project import *
47
51
  from .get_project_access_tokens import *
52
+ from .get_project_approval_rules import *
48
53
  from .get_project_branches import *
49
54
  from .get_project_environments import *
50
55
  from .get_project_hook import *
51
56
  from .get_project_hooks import *
52
57
  from .get_project_ids import *
53
58
  from .get_project_issue import *
59
+ from .get_project_issue_label_events import *
54
60
  from .get_project_issues import *
55
61
  from .get_project_membership import *
56
62
  from .get_project_merge_request import *
@@ -62,6 +68,7 @@ from .get_project_protected_branch import *
62
68
  from .get_project_protected_branches import *
63
69
  from .get_project_protected_tag import *
64
70
  from .get_project_protected_tags import *
71
+ from .get_project_secure_file import *
65
72
  from .get_project_tag import *
66
73
  from .get_project_tags import *
67
74
  from .get_project_variable import *
@@ -73,6 +80,7 @@ from .get_release_links import *
73
80
  from .get_repository_file import *
74
81
  from .get_repository_tree import *
75
82
  from .get_runners import *
83
+ from .get_security_policy_document import *
76
84
  from .get_user import *
77
85
  from .get_user_sshkeys import *
78
86
  from .get_users import *
@@ -83,11 +91,13 @@ from .group_badge import *
83
91
  from .group_cluster import *
84
92
  from .group_custom_attribute import *
85
93
  from .group_dependency_proxy import *
94
+ from .group_deploy_token import *
86
95
  from .group_epic_board import *
87
96
  from .group_hook import *
88
97
  from .group_issue_board import *
89
98
  from .group_label import *
90
99
  from .group_ldap_link import *
100
+ from .group_level_mr_approvals import *
91
101
  from .group_membership import *
92
102
  from .group_project_file_template import *
93
103
  from .group_protected_environment import *
@@ -124,11 +134,14 @@ from .project import *
124
134
  from .project_access_token import *
125
135
  from .project_approval_rule import *
126
136
  from .project_badge import *
137
+ from .project_cicd_catalog import *
127
138
  from .project_cluster import *
128
139
  from .project_compliance_frameworks import *
129
140
  from .project_container_repository_protection import *
130
141
  from .project_custom_attribute import *
142
+ from .project_deploy_token import *
131
143
  from .project_environment import *
144
+ from .project_external_status_check import *
132
145
  from .project_freeze_period import *
133
146
  from .project_hook import *
134
147
  from .project_integration_custom_issue_tracker import *
@@ -146,6 +159,7 @@ from .project_integration_telegram import *
146
159
  from .project_integration_youtrack import *
147
160
  from .project_issue import *
148
161
  from .project_issue_board import *
162
+ from .project_issue_link import *
149
163
  from .project_job_token_scope import *
150
164
  from .project_job_token_scopes import *
151
165
  from .project_label import *
@@ -155,10 +169,14 @@ from .project_membership import *
155
169
  from .project_merge_request_note import *
156
170
  from .project_milestone import *
157
171
  from .project_mirror import *
172
+ from .project_package_dependency_proxy import *
158
173
  from .project_pages_settings import *
159
174
  from .project_protected_environment import *
175
+ from .project_pull_mirror import *
176
+ from .project_push_mirror import *
160
177
  from .project_push_rules import *
161
178
  from .project_runner_enablement import *
179
+ from .project_secure_file import *
162
180
  from .project_security_policy_attachment import *
163
181
  from .project_share_group import *
164
182
  from .project_tag import *
@@ -174,6 +192,7 @@ from .system_hook import *
174
192
  from .tag_protection import *
175
193
  from .topic import *
176
194
  from .user import *
195
+ from .user_avatar import *
177
196
  from .user_custom_attribute import *
178
197
  from .user_gpg_key import *
179
198
  from .user_identity import *
@@ -338,6 +357,14 @@ _utilities.register(
338
357
  "gitlab:index/groupDependencyProxy:GroupDependencyProxy": "GroupDependencyProxy"
339
358
  }
340
359
  },
360
+ {
361
+ "pkg": "gitlab",
362
+ "mod": "index/groupDeployToken",
363
+ "fqn": "pulumi_gitlab",
364
+ "classes": {
365
+ "gitlab:index/groupDeployToken:GroupDeployToken": "GroupDeployToken"
366
+ }
367
+ },
341
368
  {
342
369
  "pkg": "gitlab",
343
370
  "mod": "index/groupEpicBoard",
@@ -378,6 +405,14 @@ _utilities.register(
378
405
  "gitlab:index/groupLdapLink:GroupLdapLink": "GroupLdapLink"
379
406
  }
380
407
  },
408
+ {
409
+ "pkg": "gitlab",
410
+ "mod": "index/groupLevelMrApprovals",
411
+ "fqn": "pulumi_gitlab",
412
+ "classes": {
413
+ "gitlab:index/groupLevelMrApprovals:GroupLevelMrApprovals": "GroupLevelMrApprovals"
414
+ }
415
+ },
381
416
  {
382
417
  "pkg": "gitlab",
383
418
  "mod": "index/groupMembership",
@@ -666,6 +701,14 @@ _utilities.register(
666
701
  "gitlab:index/projectBadge:ProjectBadge": "ProjectBadge"
667
702
  }
668
703
  },
704
+ {
705
+ "pkg": "gitlab",
706
+ "mod": "index/projectCicdCatalog",
707
+ "fqn": "pulumi_gitlab",
708
+ "classes": {
709
+ "gitlab:index/projectCicdCatalog:ProjectCicdCatalog": "ProjectCicdCatalog"
710
+ }
711
+ },
669
712
  {
670
713
  "pkg": "gitlab",
671
714
  "mod": "index/projectCluster",
@@ -698,6 +741,14 @@ _utilities.register(
698
741
  "gitlab:index/projectCustomAttribute:ProjectCustomAttribute": "ProjectCustomAttribute"
699
742
  }
700
743
  },
744
+ {
745
+ "pkg": "gitlab",
746
+ "mod": "index/projectDeployToken",
747
+ "fqn": "pulumi_gitlab",
748
+ "classes": {
749
+ "gitlab:index/projectDeployToken:ProjectDeployToken": "ProjectDeployToken"
750
+ }
751
+ },
701
752
  {
702
753
  "pkg": "gitlab",
703
754
  "mod": "index/projectEnvironment",
@@ -706,6 +757,14 @@ _utilities.register(
706
757
  "gitlab:index/projectEnvironment:ProjectEnvironment": "ProjectEnvironment"
707
758
  }
708
759
  },
760
+ {
761
+ "pkg": "gitlab",
762
+ "mod": "index/projectExternalStatusCheck",
763
+ "fqn": "pulumi_gitlab",
764
+ "classes": {
765
+ "gitlab:index/projectExternalStatusCheck:ProjectExternalStatusCheck": "ProjectExternalStatusCheck"
766
+ }
767
+ },
709
768
  {
710
769
  "pkg": "gitlab",
711
770
  "mod": "index/projectFreezePeriod",
@@ -842,6 +901,14 @@ _utilities.register(
842
901
  "gitlab:index/projectIssueBoard:ProjectIssueBoard": "ProjectIssueBoard"
843
902
  }
844
903
  },
904
+ {
905
+ "pkg": "gitlab",
906
+ "mod": "index/projectIssueLink",
907
+ "fqn": "pulumi_gitlab",
908
+ "classes": {
909
+ "gitlab:index/projectIssueLink:ProjectIssueLink": "ProjectIssueLink"
910
+ }
911
+ },
845
912
  {
846
913
  "pkg": "gitlab",
847
914
  "mod": "index/projectJobTokenScope",
@@ -914,6 +981,14 @@ _utilities.register(
914
981
  "gitlab:index/projectMirror:ProjectMirror": "ProjectMirror"
915
982
  }
916
983
  },
984
+ {
985
+ "pkg": "gitlab",
986
+ "mod": "index/projectPackageDependencyProxy",
987
+ "fqn": "pulumi_gitlab",
988
+ "classes": {
989
+ "gitlab:index/projectPackageDependencyProxy:ProjectPackageDependencyProxy": "ProjectPackageDependencyProxy"
990
+ }
991
+ },
917
992
  {
918
993
  "pkg": "gitlab",
919
994
  "mod": "index/projectPagesSettings",
@@ -930,6 +1005,22 @@ _utilities.register(
930
1005
  "gitlab:index/projectProtectedEnvironment:ProjectProtectedEnvironment": "ProjectProtectedEnvironment"
931
1006
  }
932
1007
  },
1008
+ {
1009
+ "pkg": "gitlab",
1010
+ "mod": "index/projectPullMirror",
1011
+ "fqn": "pulumi_gitlab",
1012
+ "classes": {
1013
+ "gitlab:index/projectPullMirror:ProjectPullMirror": "ProjectPullMirror"
1014
+ }
1015
+ },
1016
+ {
1017
+ "pkg": "gitlab",
1018
+ "mod": "index/projectPushMirror",
1019
+ "fqn": "pulumi_gitlab",
1020
+ "classes": {
1021
+ "gitlab:index/projectPushMirror:ProjectPushMirror": "ProjectPushMirror"
1022
+ }
1023
+ },
933
1024
  {
934
1025
  "pkg": "gitlab",
935
1026
  "mod": "index/projectPushRules",
@@ -946,6 +1037,14 @@ _utilities.register(
946
1037
  "gitlab:index/projectRunnerEnablement:ProjectRunnerEnablement": "ProjectRunnerEnablement"
947
1038
  }
948
1039
  },
1040
+ {
1041
+ "pkg": "gitlab",
1042
+ "mod": "index/projectSecureFile",
1043
+ "fqn": "pulumi_gitlab",
1044
+ "classes": {
1045
+ "gitlab:index/projectSecureFile:ProjectSecureFile": "ProjectSecureFile"
1046
+ }
1047
+ },
949
1048
  {
950
1049
  "pkg": "gitlab",
951
1050
  "mod": "index/projectSecurityPolicyAttachment",
@@ -1058,6 +1157,14 @@ _utilities.register(
1058
1157
  "gitlab:index/user:User": "User"
1059
1158
  }
1060
1159
  },
1160
+ {
1161
+ "pkg": "gitlab",
1162
+ "mod": "index/userAvatar",
1163
+ "fqn": "pulumi_gitlab",
1164
+ "classes": {
1165
+ "gitlab:index/userAvatar:UserAvatar": "UserAvatar"
1166
+ }
1167
+ },
1061
1168
  {
1062
1169
  "pkg": "gitlab",
1063
1170
  "mod": "index/userCustomAttribute",