pulumi-gitlab 9.5.0a1761172288__py3-none-any.whl → 9.9.0a1768542389__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 (78) hide show
  1. pulumi_gitlab/__init__.py +69 -0
  2. pulumi_gitlab/_inputs.py +557 -0
  3. pulumi_gitlab/branch.py +1 -1
  4. pulumi_gitlab/deploy_key_enable.py +4 -42
  5. pulumi_gitlab/get_artifact_file.py +266 -0
  6. pulumi_gitlab/get_group_billable_member_memberships.py +2 -2
  7. pulumi_gitlab/get_group_membership.py +2 -2
  8. pulumi_gitlab/get_group_service_account.py +2 -2
  9. pulumi_gitlab/get_group_service_account_access_tokens.py +138 -0
  10. pulumi_gitlab/get_group_variable.py +1 -1
  11. pulumi_gitlab/get_instance_service_account.py +2 -2
  12. pulumi_gitlab/get_member_role.py +200 -0
  13. pulumi_gitlab/get_project.py +15 -1
  14. pulumi_gitlab/get_project_hook.py +2 -2
  15. pulumi_gitlab/get_project_issue_label_events.py +170 -0
  16. pulumi_gitlab/get_project_membership.py +2 -2
  17. pulumi_gitlab/get_project_protected_tag.py +2 -2
  18. pulumi_gitlab/get_project_secure_file.py +247 -0
  19. pulumi_gitlab/get_project_tag.py +2 -2
  20. pulumi_gitlab/get_project_tags.py +1 -1
  21. pulumi_gitlab/get_projects.py +3 -3
  22. pulumi_gitlab/get_release_link.py +5 -5
  23. pulumi_gitlab/get_release_links.py +3 -3
  24. pulumi_gitlab/get_security_policy_document.py +170 -0
  25. pulumi_gitlab/get_user.py +32 -0
  26. pulumi_gitlab/global_level_notifications.py +2 -2
  27. pulumi_gitlab/group.py +141 -0
  28. pulumi_gitlab/group_access_token.py +4 -4
  29. pulumi_gitlab/group_hook.py +116 -112
  30. pulumi_gitlab/group_label.py +7 -7
  31. pulumi_gitlab/group_level_mr_approvals.py +36 -0
  32. pulumi_gitlab/group_membership.py +2 -2
  33. pulumi_gitlab/group_service_account.py +2 -2
  34. pulumi_gitlab/group_service_account_access_token.py +92 -2
  35. pulumi_gitlab/group_share_group.py +2 -2
  36. pulumi_gitlab/instance_service_account.py +2 -2
  37. pulumi_gitlab/instance_variable.py +12 -12
  38. pulumi_gitlab/label.py +7 -7
  39. pulumi_gitlab/member_role.py +9 -9
  40. pulumi_gitlab/outputs.py +829 -15
  41. pulumi_gitlab/pages_domain.py +7 -7
  42. pulumi_gitlab/personal_access_token.py +2 -2
  43. pulumi_gitlab/pipeline_schedule_variable.py +2 -2
  44. pulumi_gitlab/project.py +54 -7
  45. pulumi_gitlab/project_access_token.py +2 -2
  46. pulumi_gitlab/project_approval_rule.py +120 -0
  47. pulumi_gitlab/project_cicd_catalog.py +314 -0
  48. pulumi_gitlab/project_deploy_token.py +2 -2
  49. pulumi_gitlab/project_hook.py +108 -102
  50. pulumi_gitlab/project_issue_link.py +502 -0
  51. pulumi_gitlab/project_job_token_scope.py +24 -4
  52. pulumi_gitlab/project_label.py +11 -11
  53. pulumi_gitlab/project_level_mr_approvals.py +2 -2
  54. pulumi_gitlab/project_level_notifications.py +2 -2
  55. pulumi_gitlab/project_membership.py +2 -2
  56. pulumi_gitlab/project_mirror.py +8 -6
  57. pulumi_gitlab/project_package_dependency_proxy.py +446 -0
  58. pulumi_gitlab/project_pull_mirror.py +837 -0
  59. pulumi_gitlab/project_push_mirror.py +547 -0
  60. pulumi_gitlab/project_secure_file.py +489 -0
  61. pulumi_gitlab/project_tag.py +3 -3
  62. pulumi_gitlab/project_target_branch_rule.py +2 -2
  63. pulumi_gitlab/project_variable.py +7 -7
  64. pulumi_gitlab/project_wiki_page.py +26 -0
  65. pulumi_gitlab/pulumi-plugin.json +1 -1
  66. pulumi_gitlab/release_link.py +19 -19
  67. pulumi_gitlab/runner.py +4 -4
  68. pulumi_gitlab/system_hook.py +7 -7
  69. pulumi_gitlab/user_avatar.py +386 -0
  70. pulumi_gitlab/user_gpg_key.py +2 -2
  71. pulumi_gitlab/user_impersonation_token.py +2 -2
  72. pulumi_gitlab/user_runner.py +14 -14
  73. pulumi_gitlab/user_ssh_key.py +2 -2
  74. pulumi_gitlab/value_stream_analytics.py +88 -0
  75. {pulumi_gitlab-9.5.0a1761172288.dist-info → pulumi_gitlab-9.9.0a1768542389.dist-info}/METADATA +1 -1
  76. {pulumi_gitlab-9.5.0a1761172288.dist-info → pulumi_gitlab-9.9.0a1768542389.dist-info}/RECORD +78 -65
  77. {pulumi_gitlab-9.5.0a1761172288.dist-info → pulumi_gitlab-9.9.0a1768542389.dist-info}/WHEEL +0 -0
  78. {pulumi_gitlab-9.5.0a1761172288.dist-info → pulumi_gitlab-9.9.0a1768542389.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 *
@@ -33,6 +34,7 @@ from .get_group_membership import *
33
34
  from .get_group_provisioned_users import *
34
35
  from .get_group_saml_links import *
35
36
  from .get_group_service_account import *
37
+ from .get_group_service_account_access_tokens import *
36
38
  from .get_group_subgroups import *
37
39
  from .get_group_variable import *
38
40
  from .get_group_variables import *
@@ -41,6 +43,7 @@ from .get_instance_deploy_keys import *
41
43
  from .get_instance_service_account import *
42
44
  from .get_instance_variable import *
43
45
  from .get_instance_variables import *
46
+ from .get_member_role import *
44
47
  from .get_metadata import *
45
48
  from .get_pipeline_schedule import *
46
49
  from .get_pipeline_schedules import *
@@ -53,6 +56,7 @@ from .get_project_hook import *
53
56
  from .get_project_hooks import *
54
57
  from .get_project_ids import *
55
58
  from .get_project_issue import *
59
+ from .get_project_issue_label_events import *
56
60
  from .get_project_issues import *
57
61
  from .get_project_membership import *
58
62
  from .get_project_merge_request import *
@@ -64,6 +68,7 @@ from .get_project_protected_branch import *
64
68
  from .get_project_protected_branches import *
65
69
  from .get_project_protected_tag import *
66
70
  from .get_project_protected_tags import *
71
+ from .get_project_secure_file import *
67
72
  from .get_project_tag import *
68
73
  from .get_project_tags import *
69
74
  from .get_project_variable import *
@@ -75,6 +80,7 @@ from .get_release_links import *
75
80
  from .get_repository_file import *
76
81
  from .get_repository_tree import *
77
82
  from .get_runners import *
83
+ from .get_security_policy_document import *
78
84
  from .get_user import *
79
85
  from .get_user_sshkeys import *
80
86
  from .get_users import *
@@ -128,6 +134,7 @@ from .project import *
128
134
  from .project_access_token import *
129
135
  from .project_approval_rule import *
130
136
  from .project_badge import *
137
+ from .project_cicd_catalog import *
131
138
  from .project_cluster import *
132
139
  from .project_compliance_frameworks import *
133
140
  from .project_container_repository_protection import *
@@ -152,6 +159,7 @@ from .project_integration_telegram import *
152
159
  from .project_integration_youtrack import *
153
160
  from .project_issue import *
154
161
  from .project_issue_board import *
162
+ from .project_issue_link import *
155
163
  from .project_job_token_scope import *
156
164
  from .project_job_token_scopes import *
157
165
  from .project_label import *
@@ -161,10 +169,14 @@ from .project_membership import *
161
169
  from .project_merge_request_note import *
162
170
  from .project_milestone import *
163
171
  from .project_mirror import *
172
+ from .project_package_dependency_proxy import *
164
173
  from .project_pages_settings import *
165
174
  from .project_protected_environment import *
175
+ from .project_pull_mirror import *
176
+ from .project_push_mirror import *
166
177
  from .project_push_rules import *
167
178
  from .project_runner_enablement import *
179
+ from .project_secure_file import *
168
180
  from .project_security_policy_attachment import *
169
181
  from .project_share_group import *
170
182
  from .project_tag import *
@@ -180,6 +192,7 @@ from .system_hook import *
180
192
  from .tag_protection import *
181
193
  from .topic import *
182
194
  from .user import *
195
+ from .user_avatar import *
183
196
  from .user_custom_attribute import *
184
197
  from .user_gpg_key import *
185
198
  from .user_identity import *
@@ -688,6 +701,14 @@ _utilities.register(
688
701
  "gitlab:index/projectBadge:ProjectBadge": "ProjectBadge"
689
702
  }
690
703
  },
704
+ {
705
+ "pkg": "gitlab",
706
+ "mod": "index/projectCicdCatalog",
707
+ "fqn": "pulumi_gitlab",
708
+ "classes": {
709
+ "gitlab:index/projectCicdCatalog:ProjectCicdCatalog": "ProjectCicdCatalog"
710
+ }
711
+ },
691
712
  {
692
713
  "pkg": "gitlab",
693
714
  "mod": "index/projectCluster",
@@ -880,6 +901,14 @@ _utilities.register(
880
901
  "gitlab:index/projectIssueBoard:ProjectIssueBoard": "ProjectIssueBoard"
881
902
  }
882
903
  },
904
+ {
905
+ "pkg": "gitlab",
906
+ "mod": "index/projectIssueLink",
907
+ "fqn": "pulumi_gitlab",
908
+ "classes": {
909
+ "gitlab:index/projectIssueLink:ProjectIssueLink": "ProjectIssueLink"
910
+ }
911
+ },
883
912
  {
884
913
  "pkg": "gitlab",
885
914
  "mod": "index/projectJobTokenScope",
@@ -952,6 +981,14 @@ _utilities.register(
952
981
  "gitlab:index/projectMirror:ProjectMirror": "ProjectMirror"
953
982
  }
954
983
  },
984
+ {
985
+ "pkg": "gitlab",
986
+ "mod": "index/projectPackageDependencyProxy",
987
+ "fqn": "pulumi_gitlab",
988
+ "classes": {
989
+ "gitlab:index/projectPackageDependencyProxy:ProjectPackageDependencyProxy": "ProjectPackageDependencyProxy"
990
+ }
991
+ },
955
992
  {
956
993
  "pkg": "gitlab",
957
994
  "mod": "index/projectPagesSettings",
@@ -968,6 +1005,22 @@ _utilities.register(
968
1005
  "gitlab:index/projectProtectedEnvironment:ProjectProtectedEnvironment": "ProjectProtectedEnvironment"
969
1006
  }
970
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
+ },
971
1024
  {
972
1025
  "pkg": "gitlab",
973
1026
  "mod": "index/projectPushRules",
@@ -984,6 +1037,14 @@ _utilities.register(
984
1037
  "gitlab:index/projectRunnerEnablement:ProjectRunnerEnablement": "ProjectRunnerEnablement"
985
1038
  }
986
1039
  },
1040
+ {
1041
+ "pkg": "gitlab",
1042
+ "mod": "index/projectSecureFile",
1043
+ "fqn": "pulumi_gitlab",
1044
+ "classes": {
1045
+ "gitlab:index/projectSecureFile:ProjectSecureFile": "ProjectSecureFile"
1046
+ }
1047
+ },
987
1048
  {
988
1049
  "pkg": "gitlab",
989
1050
  "mod": "index/projectSecurityPolicyAttachment",
@@ -1096,6 +1157,14 @@ _utilities.register(
1096
1157
  "gitlab:index/user:User": "User"
1097
1158
  }
1098
1159
  },
1160
+ {
1161
+ "pkg": "gitlab",
1162
+ "mod": "index/userAvatar",
1163
+ "fqn": "pulumi_gitlab",
1164
+ "classes": {
1165
+ "gitlab:index/userAvatar:UserAvatar": "UserAvatar"
1166
+ }
1167
+ },
1099
1168
  {
1100
1169
  "pkg": "gitlab",
1101
1170
  "mod": "index/userCustomAttribute",