pulumi-gitlab 8.8.0a1736401428__py3-none-any.whl → 9.5.0a1763618872__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 +256 -68
- pulumi_gitlab/_inputs.py +2458 -1247
- pulumi_gitlab/_utilities.py +9 -5
- pulumi_gitlab/application.py +95 -94
- pulumi_gitlab/application_appearance.py +793 -0
- pulumi_gitlab/application_settings.py +5396 -5615
- pulumi_gitlab/branch.py +142 -149
- pulumi_gitlab/branch_protection.py +164 -149
- pulumi_gitlab/cluster_agent.py +76 -77
- pulumi_gitlab/cluster_agent_token.py +131 -134
- pulumi_gitlab/compliance_framework.py +120 -119
- pulumi_gitlab/config/__init__.py +2 -1
- pulumi_gitlab/config/__init__.pyi +21 -13
- pulumi_gitlab/config/vars.py +36 -22
- pulumi_gitlab/deploy_key.py +149 -87
- pulumi_gitlab/deploy_key_enable.py +94 -93
- pulumi_gitlab/deploy_token.py +136 -131
- pulumi_gitlab/get_application.py +34 -16
- pulumi_gitlab/get_branch.py +35 -35
- pulumi_gitlab/get_cluster_agent.py +27 -31
- pulumi_gitlab/get_cluster_agents.py +17 -21
- pulumi_gitlab/get_compliance_framework.py +28 -28
- pulumi_gitlab/get_current_user.py +23 -23
- pulumi_gitlab/get_group.py +57 -57
- pulumi_gitlab/get_group_access_tokens.py +128 -0
- pulumi_gitlab/get_group_billable_member_memberships.py +19 -19
- pulumi_gitlab/get_group_hook.py +78 -59
- pulumi_gitlab/get_group_hooks.py +20 -16
- pulumi_gitlab/get_group_ids.py +26 -20
- pulumi_gitlab/get_group_membership.py +32 -32
- pulumi_gitlab/get_group_provisioned_users.py +49 -49
- pulumi_gitlab/get_group_saml_links.py +114 -0
- pulumi_gitlab/get_group_service_account.py +28 -36
- pulumi_gitlab/get_group_subgroups.py +68 -68
- pulumi_gitlab/get_group_variable.py +39 -42
- pulumi_gitlab/get_group_variables.py +19 -22
- pulumi_gitlab/get_groups.py +32 -32
- pulumi_gitlab/get_instance_deploy_keys.py +14 -14
- pulumi_gitlab/get_instance_service_account.py +159 -0
- pulumi_gitlab/get_instance_variable.py +31 -31
- pulumi_gitlab/get_instance_variables.py +11 -11
- pulumi_gitlab/get_metadata.py +14 -14
- pulumi_gitlab/get_pipeline_schedule.py +41 -41
- pulumi_gitlab/get_pipeline_schedules.py +13 -13
- pulumi_gitlab/get_project.py +209 -169
- pulumi_gitlab/get_project_access_tokens.py +130 -0
- pulumi_gitlab/get_project_approval_rules.py +137 -0
- pulumi_gitlab/get_project_branches.py +14 -14
- pulumi_gitlab/get_project_environments.py +31 -31
- pulumi_gitlab/get_project_hook.py +59 -58
- pulumi_gitlab/get_project_hooks.py +14 -14
- pulumi_gitlab/get_project_ids.py +20 -20
- pulumi_gitlab/get_project_issue.py +91 -91
- pulumi_gitlab/get_project_issues.py +196 -196
- pulumi_gitlab/get_project_membership.py +82 -44
- pulumi_gitlab/get_project_merge_request.py +34 -34
- pulumi_gitlab/get_project_merge_requests.py +503 -0
- pulumi_gitlab/get_project_milestone.py +41 -41
- pulumi_gitlab/get_project_milestones.py +45 -45
- pulumi_gitlab/get_project_mirror_public_key.py +133 -0
- pulumi_gitlab/get_project_protected_branch.py +24 -24
- pulumi_gitlab/get_project_protected_branches.py +13 -13
- pulumi_gitlab/get_project_protected_tag.py +19 -19
- pulumi_gitlab/get_project_protected_tags.py +13 -13
- pulumi_gitlab/get_project_tag.py +26 -26
- pulumi_gitlab/get_project_tags.py +31 -31
- pulumi_gitlab/get_project_variable.py +44 -44
- pulumi_gitlab/get_project_variables.py +21 -21
- pulumi_gitlab/get_projects.py +145 -145
- pulumi_gitlab/get_release.py +29 -29
- pulumi_gitlab/get_release_link.py +43 -43
- pulumi_gitlab/get_release_links.py +21 -21
- pulumi_gitlab/get_repository_file.py +44 -44
- pulumi_gitlab/get_repository_tree.py +32 -32
- pulumi_gitlab/get_runners.py +31 -31
- pulumi_gitlab/get_user.py +138 -88
- pulumi_gitlab/get_user_sshkeys.py +21 -21
- pulumi_gitlab/get_users.py +188 -68
- pulumi_gitlab/global_level_notifications.py +315 -314
- pulumi_gitlab/group.py +547 -558
- pulumi_gitlab/group_access_token.py +247 -152
- pulumi_gitlab/group_badge.py +104 -99
- pulumi_gitlab/group_cluster.py +234 -233
- pulumi_gitlab/group_custom_attribute.py +60 -59
- pulumi_gitlab/group_dependency_proxy.py +381 -0
- pulumi_gitlab/group_deploy_token.py +582 -0
- pulumi_gitlab/group_epic_board.py +46 -45
- pulumi_gitlab/group_hook.py +589 -353
- pulumi_gitlab/group_issue_board.py +122 -77
- pulumi_gitlab/group_label.py +114 -85
- pulumi_gitlab/group_ldap_link.py +198 -179
- pulumi_gitlab/group_level_mr_approvals.py +509 -0
- pulumi_gitlab/group_membership.py +142 -141
- pulumi_gitlab/group_project_file_template.py +41 -40
- pulumi_gitlab/group_protected_environment.py +49 -48
- pulumi_gitlab/group_saml_link.py +80 -79
- pulumi_gitlab/group_security_policy_attachment.py +59 -58
- pulumi_gitlab/group_service_account.py +153 -69
- pulumi_gitlab/group_service_account_access_token.py +282 -140
- pulumi_gitlab/group_share_group.py +133 -81
- pulumi_gitlab/group_variable.py +223 -205
- pulumi_gitlab/instance_cluster.py +234 -233
- pulumi_gitlab/instance_service_account.py +198 -56
- pulumi_gitlab/instance_variable.py +131 -130
- pulumi_gitlab/integration_custom_issue_tracker.py +102 -97
- pulumi_gitlab/integration_emails_on_push.py +179 -174
- pulumi_gitlab/integration_external_wiki.py +94 -89
- pulumi_gitlab/integration_github.py +128 -123
- pulumi_gitlab/integration_harbor.py +519 -0
- pulumi_gitlab/integration_jenkins.py +177 -172
- pulumi_gitlab/integration_jira.py +322 -364
- pulumi_gitlab/integration_mattermost.py +406 -401
- pulumi_gitlab/integration_microsoft_teams.py +263 -258
- pulumi_gitlab/integration_pipelines_email.py +83 -78
- pulumi_gitlab/integration_redmine.py +435 -0
- pulumi_gitlab/integration_slack.py +428 -427
- pulumi_gitlab/integration_telegram.py +258 -251
- pulumi_gitlab/label.py +114 -85
- pulumi_gitlab/member_role.py +128 -127
- pulumi_gitlab/outputs.py +4684 -3122
- pulumi_gitlab/pages_domain.py +144 -143
- pulumi_gitlab/personal_access_token.py +218 -123
- pulumi_gitlab/pipeline_schedule.py +142 -141
- pulumi_gitlab/pipeline_schedule_variable.py +94 -93
- pulumi_gitlab/pipeline_trigger.py +61 -60
- pulumi_gitlab/project.py +2182 -1819
- pulumi_gitlab/project_access_token.py +247 -152
- pulumi_gitlab/project_approval_rule.py +297 -176
- pulumi_gitlab/project_badge.py +95 -94
- pulumi_gitlab/project_cluster.py +251 -250
- pulumi_gitlab/project_compliance_frameworks.py +43 -42
- pulumi_gitlab/project_container_repository_protection.py +402 -0
- pulumi_gitlab/project_custom_attribute.py +60 -59
- pulumi_gitlab/project_deploy_token.py +582 -0
- pulumi_gitlab/project_environment.py +305 -182
- pulumi_gitlab/project_external_status_check.py +469 -0
- pulumi_gitlab/project_freeze_period.py +86 -85
- pulumi_gitlab/project_hook.py +488 -342
- pulumi_gitlab/{service_custom_issue_tracker.py → project_integration_custom_issue_tracker.py} +123 -126
- pulumi_gitlab/{service_emails_on_push.py → project_integration_emails_on_push.py} +201 -204
- pulumi_gitlab/{service_external_wiki.py → project_integration_external_wiki.py} +115 -118
- pulumi_gitlab/project_integration_github.py +484 -0
- pulumi_gitlab/project_integration_harbor.py +505 -0
- pulumi_gitlab/project_integration_jenkins.py +644 -0
- pulumi_gitlab/{service_jira.py → project_integration_jira.py} +344 -394
- pulumi_gitlab/{service_slack.py → project_integration_mattermost.py} +431 -518
- pulumi_gitlab/{service_microsoft_teams.py → project_integration_microsoft_teams.py} +285 -288
- pulumi_gitlab/{service_pipelines_email.py → project_integration_pipelines_email.py} +102 -105
- pulumi_gitlab/project_integration_redmine.py +433 -0
- pulumi_gitlab/project_integration_telegram.py +876 -0
- pulumi_gitlab/project_integration_youtrack.py +328 -0
- pulumi_gitlab/project_issue.py +512 -511
- pulumi_gitlab/project_issue_board.py +210 -113
- pulumi_gitlab/project_job_token_scope.py +96 -45
- pulumi_gitlab/project_job_token_scopes.py +180 -92
- pulumi_gitlab/project_label.py +124 -93
- pulumi_gitlab/project_level_mr_approvals.py +128 -131
- pulumi_gitlab/project_level_notifications.py +416 -329
- pulumi_gitlab/project_membership.py +127 -79
- pulumi_gitlab/project_merge_request_note.py +581 -0
- pulumi_gitlab/project_milestone.py +174 -173
- pulumi_gitlab/project_mirror.py +198 -111
- pulumi_gitlab/project_pages_settings.py +382 -0
- pulumi_gitlab/project_protected_environment.py +113 -56
- pulumi_gitlab/project_push_rules.py +245 -244
- pulumi_gitlab/project_runner_enablement.py +43 -42
- pulumi_gitlab/project_security_policy_attachment.py +59 -58
- pulumi_gitlab/project_share_group.py +83 -82
- pulumi_gitlab/project_tag.py +99 -98
- pulumi_gitlab/project_target_branch_rule.py +330 -0
- pulumi_gitlab/project_variable.py +223 -179
- pulumi_gitlab/project_wiki_page.py +429 -0
- pulumi_gitlab/provider.py +187 -118
- pulumi_gitlab/pulumi-plugin.json +1 -1
- pulumi_gitlab/release.py +841 -0
- pulumi_gitlab/release_link.py +146 -145
- pulumi_gitlab/repository_file.py +331 -323
- pulumi_gitlab/runner.py +186 -181
- pulumi_gitlab/system_hook.py +137 -140
- pulumi_gitlab/tag_protection.py +64 -63
- pulumi_gitlab/topic.py +118 -176
- pulumi_gitlab/user.py +269 -315
- pulumi_gitlab/user_custom_attribute.py +60 -59
- pulumi_gitlab/user_gpg_key.py +61 -60
- pulumi_gitlab/user_identity.py +352 -0
- pulumi_gitlab/user_impersonation_token.py +181 -133
- pulumi_gitlab/user_runner.py +219 -218
- pulumi_gitlab/user_ssh_key.py +95 -94
- pulumi_gitlab/value_stream_analytics.py +447 -0
- {pulumi_gitlab-8.8.0a1736401428.dist-info → pulumi_gitlab-9.5.0a1763618872.dist-info}/METADATA +4 -4
- pulumi_gitlab-9.5.0a1763618872.dist-info/RECORD +194 -0
- {pulumi_gitlab-8.8.0a1736401428.dist-info → pulumi_gitlab-9.5.0a1763618872.dist-info}/WHEEL +1 -1
- pulumi_gitlab/project_compliance_framework.py +0 -287
- pulumi_gitlab/service_github.py +0 -487
- pulumi_gitlab-8.8.0a1736401428.dist-info/RECORD +0 -167
- {pulumi_gitlab-8.8.0a1736401428.dist-info → pulumi_gitlab-9.5.0a1763618872.dist-info}/top_level.txt +0 -0
pulumi_gitlab/__init__.py
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
# coding=utf-8
|
|
2
|
-
# *** WARNING: this file was generated by
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
+
import builtins as _builtins
|
|
5
6
|
from . import _utilities
|
|
6
7
|
import typing
|
|
7
8
|
# Export this package's modules as members:
|
|
8
9
|
from .application import *
|
|
10
|
+
from .application_appearance import *
|
|
9
11
|
from .application_settings import *
|
|
10
12
|
from .branch import *
|
|
11
13
|
from .branch_protection import *
|
|
@@ -22,24 +24,29 @@ from .get_cluster_agents import *
|
|
|
22
24
|
from .get_compliance_framework import *
|
|
23
25
|
from .get_current_user import *
|
|
24
26
|
from .get_group import *
|
|
27
|
+
from .get_group_access_tokens import *
|
|
25
28
|
from .get_group_billable_member_memberships import *
|
|
26
29
|
from .get_group_hook import *
|
|
27
30
|
from .get_group_hooks import *
|
|
28
31
|
from .get_group_ids import *
|
|
29
32
|
from .get_group_membership import *
|
|
30
33
|
from .get_group_provisioned_users import *
|
|
34
|
+
from .get_group_saml_links import *
|
|
31
35
|
from .get_group_service_account import *
|
|
32
36
|
from .get_group_subgroups import *
|
|
33
37
|
from .get_group_variable import *
|
|
34
38
|
from .get_group_variables import *
|
|
35
39
|
from .get_groups import *
|
|
36
40
|
from .get_instance_deploy_keys import *
|
|
41
|
+
from .get_instance_service_account import *
|
|
37
42
|
from .get_instance_variable import *
|
|
38
43
|
from .get_instance_variables import *
|
|
39
44
|
from .get_metadata import *
|
|
40
45
|
from .get_pipeline_schedule import *
|
|
41
46
|
from .get_pipeline_schedules import *
|
|
42
47
|
from .get_project import *
|
|
48
|
+
from .get_project_access_tokens import *
|
|
49
|
+
from .get_project_approval_rules import *
|
|
43
50
|
from .get_project_branches import *
|
|
44
51
|
from .get_project_environments import *
|
|
45
52
|
from .get_project_hook import *
|
|
@@ -49,8 +56,10 @@ from .get_project_issue import *
|
|
|
49
56
|
from .get_project_issues import *
|
|
50
57
|
from .get_project_membership import *
|
|
51
58
|
from .get_project_merge_request import *
|
|
59
|
+
from .get_project_merge_requests import *
|
|
52
60
|
from .get_project_milestone import *
|
|
53
61
|
from .get_project_milestones import *
|
|
62
|
+
from .get_project_mirror_public_key import *
|
|
54
63
|
from .get_project_protected_branch import *
|
|
55
64
|
from .get_project_protected_branches import *
|
|
56
65
|
from .get_project_protected_tag import *
|
|
@@ -75,11 +84,14 @@ from .group_access_token import *
|
|
|
75
84
|
from .group_badge import *
|
|
76
85
|
from .group_cluster import *
|
|
77
86
|
from .group_custom_attribute import *
|
|
87
|
+
from .group_dependency_proxy import *
|
|
88
|
+
from .group_deploy_token import *
|
|
78
89
|
from .group_epic_board import *
|
|
79
90
|
from .group_hook import *
|
|
80
91
|
from .group_issue_board import *
|
|
81
92
|
from .group_label import *
|
|
82
93
|
from .group_ldap_link import *
|
|
94
|
+
from .group_level_mr_approvals import *
|
|
83
95
|
from .group_membership import *
|
|
84
96
|
from .group_project_file_template import *
|
|
85
97
|
from .group_protected_environment import *
|
|
@@ -96,11 +108,13 @@ from .integration_custom_issue_tracker import *
|
|
|
96
108
|
from .integration_emails_on_push import *
|
|
97
109
|
from .integration_external_wiki import *
|
|
98
110
|
from .integration_github import *
|
|
111
|
+
from .integration_harbor import *
|
|
99
112
|
from .integration_jenkins import *
|
|
100
113
|
from .integration_jira import *
|
|
101
114
|
from .integration_mattermost import *
|
|
102
115
|
from .integration_microsoft_teams import *
|
|
103
116
|
from .integration_pipelines_email import *
|
|
117
|
+
from .integration_redmine import *
|
|
104
118
|
from .integration_slack import *
|
|
105
119
|
from .integration_telegram import *
|
|
106
120
|
from .label import *
|
|
@@ -115,12 +129,27 @@ from .project_access_token import *
|
|
|
115
129
|
from .project_approval_rule import *
|
|
116
130
|
from .project_badge import *
|
|
117
131
|
from .project_cluster import *
|
|
118
|
-
from .project_compliance_framework import *
|
|
119
132
|
from .project_compliance_frameworks import *
|
|
133
|
+
from .project_container_repository_protection import *
|
|
120
134
|
from .project_custom_attribute import *
|
|
135
|
+
from .project_deploy_token import *
|
|
121
136
|
from .project_environment import *
|
|
137
|
+
from .project_external_status_check import *
|
|
122
138
|
from .project_freeze_period import *
|
|
123
139
|
from .project_hook import *
|
|
140
|
+
from .project_integration_custom_issue_tracker import *
|
|
141
|
+
from .project_integration_emails_on_push import *
|
|
142
|
+
from .project_integration_external_wiki import *
|
|
143
|
+
from .project_integration_github import *
|
|
144
|
+
from .project_integration_harbor import *
|
|
145
|
+
from .project_integration_jenkins import *
|
|
146
|
+
from .project_integration_jira import *
|
|
147
|
+
from .project_integration_mattermost import *
|
|
148
|
+
from .project_integration_microsoft_teams import *
|
|
149
|
+
from .project_integration_pipelines_email import *
|
|
150
|
+
from .project_integration_redmine import *
|
|
151
|
+
from .project_integration_telegram import *
|
|
152
|
+
from .project_integration_youtrack import *
|
|
124
153
|
from .project_issue import *
|
|
125
154
|
from .project_issue_board import *
|
|
126
155
|
from .project_job_token_scope import *
|
|
@@ -129,36 +158,35 @@ from .project_label import *
|
|
|
129
158
|
from .project_level_mr_approvals import *
|
|
130
159
|
from .project_level_notifications import *
|
|
131
160
|
from .project_membership import *
|
|
161
|
+
from .project_merge_request_note import *
|
|
132
162
|
from .project_milestone import *
|
|
133
163
|
from .project_mirror import *
|
|
164
|
+
from .project_pages_settings import *
|
|
134
165
|
from .project_protected_environment import *
|
|
135
166
|
from .project_push_rules import *
|
|
136
167
|
from .project_runner_enablement import *
|
|
137
168
|
from .project_security_policy_attachment import *
|
|
138
169
|
from .project_share_group import *
|
|
139
170
|
from .project_tag import *
|
|
171
|
+
from .project_target_branch_rule import *
|
|
140
172
|
from .project_variable import *
|
|
173
|
+
from .project_wiki_page import *
|
|
141
174
|
from .provider import *
|
|
175
|
+
from .release import *
|
|
142
176
|
from .release_link import *
|
|
143
177
|
from .repository_file import *
|
|
144
178
|
from .runner import *
|
|
145
|
-
from .service_custom_issue_tracker import *
|
|
146
|
-
from .service_emails_on_push import *
|
|
147
|
-
from .service_external_wiki import *
|
|
148
|
-
from .service_github import *
|
|
149
|
-
from .service_jira import *
|
|
150
|
-
from .service_microsoft_teams import *
|
|
151
|
-
from .service_pipelines_email import *
|
|
152
|
-
from .service_slack import *
|
|
153
179
|
from .system_hook import *
|
|
154
180
|
from .tag_protection import *
|
|
155
181
|
from .topic import *
|
|
156
182
|
from .user import *
|
|
157
183
|
from .user_custom_attribute import *
|
|
158
184
|
from .user_gpg_key import *
|
|
185
|
+
from .user_identity import *
|
|
159
186
|
from .user_impersonation_token import *
|
|
160
187
|
from .user_runner import *
|
|
161
188
|
from .user_ssh_key import *
|
|
189
|
+
from .value_stream_analytics import *
|
|
162
190
|
from ._inputs import *
|
|
163
191
|
from . import outputs
|
|
164
192
|
|
|
@@ -180,6 +208,14 @@ _utilities.register(
|
|
|
180
208
|
"gitlab:index/application:Application": "Application"
|
|
181
209
|
}
|
|
182
210
|
},
|
|
211
|
+
{
|
|
212
|
+
"pkg": "gitlab",
|
|
213
|
+
"mod": "index/applicationAppearance",
|
|
214
|
+
"fqn": "pulumi_gitlab",
|
|
215
|
+
"classes": {
|
|
216
|
+
"gitlab:index/applicationAppearance:ApplicationAppearance": "ApplicationAppearance"
|
|
217
|
+
}
|
|
218
|
+
},
|
|
183
219
|
{
|
|
184
220
|
"pkg": "gitlab",
|
|
185
221
|
"mod": "index/applicationSettings",
|
|
@@ -300,6 +336,22 @@ _utilities.register(
|
|
|
300
336
|
"gitlab:index/groupCustomAttribute:GroupCustomAttribute": "GroupCustomAttribute"
|
|
301
337
|
}
|
|
302
338
|
},
|
|
339
|
+
{
|
|
340
|
+
"pkg": "gitlab",
|
|
341
|
+
"mod": "index/groupDependencyProxy",
|
|
342
|
+
"fqn": "pulumi_gitlab",
|
|
343
|
+
"classes": {
|
|
344
|
+
"gitlab:index/groupDependencyProxy:GroupDependencyProxy": "GroupDependencyProxy"
|
|
345
|
+
}
|
|
346
|
+
},
|
|
347
|
+
{
|
|
348
|
+
"pkg": "gitlab",
|
|
349
|
+
"mod": "index/groupDeployToken",
|
|
350
|
+
"fqn": "pulumi_gitlab",
|
|
351
|
+
"classes": {
|
|
352
|
+
"gitlab:index/groupDeployToken:GroupDeployToken": "GroupDeployToken"
|
|
353
|
+
}
|
|
354
|
+
},
|
|
303
355
|
{
|
|
304
356
|
"pkg": "gitlab",
|
|
305
357
|
"mod": "index/groupEpicBoard",
|
|
@@ -340,6 +392,14 @@ _utilities.register(
|
|
|
340
392
|
"gitlab:index/groupLdapLink:GroupLdapLink": "GroupLdapLink"
|
|
341
393
|
}
|
|
342
394
|
},
|
|
395
|
+
{
|
|
396
|
+
"pkg": "gitlab",
|
|
397
|
+
"mod": "index/groupLevelMrApprovals",
|
|
398
|
+
"fqn": "pulumi_gitlab",
|
|
399
|
+
"classes": {
|
|
400
|
+
"gitlab:index/groupLevelMrApprovals:GroupLevelMrApprovals": "GroupLevelMrApprovals"
|
|
401
|
+
}
|
|
402
|
+
},
|
|
343
403
|
{
|
|
344
404
|
"pkg": "gitlab",
|
|
345
405
|
"mod": "index/groupMembership",
|
|
@@ -468,6 +528,14 @@ _utilities.register(
|
|
|
468
528
|
"gitlab:index/integrationGithub:IntegrationGithub": "IntegrationGithub"
|
|
469
529
|
}
|
|
470
530
|
},
|
|
531
|
+
{
|
|
532
|
+
"pkg": "gitlab",
|
|
533
|
+
"mod": "index/integrationHarbor",
|
|
534
|
+
"fqn": "pulumi_gitlab",
|
|
535
|
+
"classes": {
|
|
536
|
+
"gitlab:index/integrationHarbor:IntegrationHarbor": "IntegrationHarbor"
|
|
537
|
+
}
|
|
538
|
+
},
|
|
471
539
|
{
|
|
472
540
|
"pkg": "gitlab",
|
|
473
541
|
"mod": "index/integrationJenkins",
|
|
@@ -508,6 +576,14 @@ _utilities.register(
|
|
|
508
576
|
"gitlab:index/integrationPipelinesEmail:IntegrationPipelinesEmail": "IntegrationPipelinesEmail"
|
|
509
577
|
}
|
|
510
578
|
},
|
|
579
|
+
{
|
|
580
|
+
"pkg": "gitlab",
|
|
581
|
+
"mod": "index/integrationRedmine",
|
|
582
|
+
"fqn": "pulumi_gitlab",
|
|
583
|
+
"classes": {
|
|
584
|
+
"gitlab:index/integrationRedmine:IntegrationRedmine": "IntegrationRedmine"
|
|
585
|
+
}
|
|
586
|
+
},
|
|
511
587
|
{
|
|
512
588
|
"pkg": "gitlab",
|
|
513
589
|
"mod": "index/integrationSlack",
|
|
@@ -622,18 +698,18 @@ _utilities.register(
|
|
|
622
698
|
},
|
|
623
699
|
{
|
|
624
700
|
"pkg": "gitlab",
|
|
625
|
-
"mod": "index/
|
|
701
|
+
"mod": "index/projectComplianceFrameworks",
|
|
626
702
|
"fqn": "pulumi_gitlab",
|
|
627
703
|
"classes": {
|
|
628
|
-
"gitlab:index/
|
|
704
|
+
"gitlab:index/projectComplianceFrameworks:ProjectComplianceFrameworks": "ProjectComplianceFrameworks"
|
|
629
705
|
}
|
|
630
706
|
},
|
|
631
707
|
{
|
|
632
708
|
"pkg": "gitlab",
|
|
633
|
-
"mod": "index/
|
|
709
|
+
"mod": "index/projectContainerRepositoryProtection",
|
|
634
710
|
"fqn": "pulumi_gitlab",
|
|
635
711
|
"classes": {
|
|
636
|
-
"gitlab:index/
|
|
712
|
+
"gitlab:index/projectContainerRepositoryProtection:ProjectContainerRepositoryProtection": "ProjectContainerRepositoryProtection"
|
|
637
713
|
}
|
|
638
714
|
},
|
|
639
715
|
{
|
|
@@ -644,6 +720,14 @@ _utilities.register(
|
|
|
644
720
|
"gitlab:index/projectCustomAttribute:ProjectCustomAttribute": "ProjectCustomAttribute"
|
|
645
721
|
}
|
|
646
722
|
},
|
|
723
|
+
{
|
|
724
|
+
"pkg": "gitlab",
|
|
725
|
+
"mod": "index/projectDeployToken",
|
|
726
|
+
"fqn": "pulumi_gitlab",
|
|
727
|
+
"classes": {
|
|
728
|
+
"gitlab:index/projectDeployToken:ProjectDeployToken": "ProjectDeployToken"
|
|
729
|
+
}
|
|
730
|
+
},
|
|
647
731
|
{
|
|
648
732
|
"pkg": "gitlab",
|
|
649
733
|
"mod": "index/projectEnvironment",
|
|
@@ -652,6 +736,14 @@ _utilities.register(
|
|
|
652
736
|
"gitlab:index/projectEnvironment:ProjectEnvironment": "ProjectEnvironment"
|
|
653
737
|
}
|
|
654
738
|
},
|
|
739
|
+
{
|
|
740
|
+
"pkg": "gitlab",
|
|
741
|
+
"mod": "index/projectExternalStatusCheck",
|
|
742
|
+
"fqn": "pulumi_gitlab",
|
|
743
|
+
"classes": {
|
|
744
|
+
"gitlab:index/projectExternalStatusCheck:ProjectExternalStatusCheck": "ProjectExternalStatusCheck"
|
|
745
|
+
}
|
|
746
|
+
},
|
|
655
747
|
{
|
|
656
748
|
"pkg": "gitlab",
|
|
657
749
|
"mod": "index/projectFreezePeriod",
|
|
@@ -668,6 +760,110 @@ _utilities.register(
|
|
|
668
760
|
"gitlab:index/projectHook:ProjectHook": "ProjectHook"
|
|
669
761
|
}
|
|
670
762
|
},
|
|
763
|
+
{
|
|
764
|
+
"pkg": "gitlab",
|
|
765
|
+
"mod": "index/projectIntegrationCustomIssueTracker",
|
|
766
|
+
"fqn": "pulumi_gitlab",
|
|
767
|
+
"classes": {
|
|
768
|
+
"gitlab:index/projectIntegrationCustomIssueTracker:ProjectIntegrationCustomIssueTracker": "ProjectIntegrationCustomIssueTracker"
|
|
769
|
+
}
|
|
770
|
+
},
|
|
771
|
+
{
|
|
772
|
+
"pkg": "gitlab",
|
|
773
|
+
"mod": "index/projectIntegrationEmailsOnPush",
|
|
774
|
+
"fqn": "pulumi_gitlab",
|
|
775
|
+
"classes": {
|
|
776
|
+
"gitlab:index/projectIntegrationEmailsOnPush:ProjectIntegrationEmailsOnPush": "ProjectIntegrationEmailsOnPush"
|
|
777
|
+
}
|
|
778
|
+
},
|
|
779
|
+
{
|
|
780
|
+
"pkg": "gitlab",
|
|
781
|
+
"mod": "index/projectIntegrationExternalWiki",
|
|
782
|
+
"fqn": "pulumi_gitlab",
|
|
783
|
+
"classes": {
|
|
784
|
+
"gitlab:index/projectIntegrationExternalWiki:ProjectIntegrationExternalWiki": "ProjectIntegrationExternalWiki"
|
|
785
|
+
}
|
|
786
|
+
},
|
|
787
|
+
{
|
|
788
|
+
"pkg": "gitlab",
|
|
789
|
+
"mod": "index/projectIntegrationGithub",
|
|
790
|
+
"fqn": "pulumi_gitlab",
|
|
791
|
+
"classes": {
|
|
792
|
+
"gitlab:index/projectIntegrationGithub:ProjectIntegrationGithub": "ProjectIntegrationGithub"
|
|
793
|
+
}
|
|
794
|
+
},
|
|
795
|
+
{
|
|
796
|
+
"pkg": "gitlab",
|
|
797
|
+
"mod": "index/projectIntegrationHarbor",
|
|
798
|
+
"fqn": "pulumi_gitlab",
|
|
799
|
+
"classes": {
|
|
800
|
+
"gitlab:index/projectIntegrationHarbor:ProjectIntegrationHarbor": "ProjectIntegrationHarbor"
|
|
801
|
+
}
|
|
802
|
+
},
|
|
803
|
+
{
|
|
804
|
+
"pkg": "gitlab",
|
|
805
|
+
"mod": "index/projectIntegrationJenkins",
|
|
806
|
+
"fqn": "pulumi_gitlab",
|
|
807
|
+
"classes": {
|
|
808
|
+
"gitlab:index/projectIntegrationJenkins:ProjectIntegrationJenkins": "ProjectIntegrationJenkins"
|
|
809
|
+
}
|
|
810
|
+
},
|
|
811
|
+
{
|
|
812
|
+
"pkg": "gitlab",
|
|
813
|
+
"mod": "index/projectIntegrationJira",
|
|
814
|
+
"fqn": "pulumi_gitlab",
|
|
815
|
+
"classes": {
|
|
816
|
+
"gitlab:index/projectIntegrationJira:ProjectIntegrationJira": "ProjectIntegrationJira"
|
|
817
|
+
}
|
|
818
|
+
},
|
|
819
|
+
{
|
|
820
|
+
"pkg": "gitlab",
|
|
821
|
+
"mod": "index/projectIntegrationMattermost",
|
|
822
|
+
"fqn": "pulumi_gitlab",
|
|
823
|
+
"classes": {
|
|
824
|
+
"gitlab:index/projectIntegrationMattermost:ProjectIntegrationMattermost": "ProjectIntegrationMattermost"
|
|
825
|
+
}
|
|
826
|
+
},
|
|
827
|
+
{
|
|
828
|
+
"pkg": "gitlab",
|
|
829
|
+
"mod": "index/projectIntegrationMicrosoftTeams",
|
|
830
|
+
"fqn": "pulumi_gitlab",
|
|
831
|
+
"classes": {
|
|
832
|
+
"gitlab:index/projectIntegrationMicrosoftTeams:ProjectIntegrationMicrosoftTeams": "ProjectIntegrationMicrosoftTeams"
|
|
833
|
+
}
|
|
834
|
+
},
|
|
835
|
+
{
|
|
836
|
+
"pkg": "gitlab",
|
|
837
|
+
"mod": "index/projectIntegrationPipelinesEmail",
|
|
838
|
+
"fqn": "pulumi_gitlab",
|
|
839
|
+
"classes": {
|
|
840
|
+
"gitlab:index/projectIntegrationPipelinesEmail:ProjectIntegrationPipelinesEmail": "ProjectIntegrationPipelinesEmail"
|
|
841
|
+
}
|
|
842
|
+
},
|
|
843
|
+
{
|
|
844
|
+
"pkg": "gitlab",
|
|
845
|
+
"mod": "index/projectIntegrationRedmine",
|
|
846
|
+
"fqn": "pulumi_gitlab",
|
|
847
|
+
"classes": {
|
|
848
|
+
"gitlab:index/projectIntegrationRedmine:ProjectIntegrationRedmine": "ProjectIntegrationRedmine"
|
|
849
|
+
}
|
|
850
|
+
},
|
|
851
|
+
{
|
|
852
|
+
"pkg": "gitlab",
|
|
853
|
+
"mod": "index/projectIntegrationTelegram",
|
|
854
|
+
"fqn": "pulumi_gitlab",
|
|
855
|
+
"classes": {
|
|
856
|
+
"gitlab:index/projectIntegrationTelegram:ProjectIntegrationTelegram": "ProjectIntegrationTelegram"
|
|
857
|
+
}
|
|
858
|
+
},
|
|
859
|
+
{
|
|
860
|
+
"pkg": "gitlab",
|
|
861
|
+
"mod": "index/projectIntegrationYoutrack",
|
|
862
|
+
"fqn": "pulumi_gitlab",
|
|
863
|
+
"classes": {
|
|
864
|
+
"gitlab:index/projectIntegrationYoutrack:ProjectIntegrationYoutrack": "ProjectIntegrationYoutrack"
|
|
865
|
+
}
|
|
866
|
+
},
|
|
671
867
|
{
|
|
672
868
|
"pkg": "gitlab",
|
|
673
869
|
"mod": "index/projectIssue",
|
|
@@ -732,6 +928,14 @@ _utilities.register(
|
|
|
732
928
|
"gitlab:index/projectMembership:ProjectMembership": "ProjectMembership"
|
|
733
929
|
}
|
|
734
930
|
},
|
|
931
|
+
{
|
|
932
|
+
"pkg": "gitlab",
|
|
933
|
+
"mod": "index/projectMergeRequestNote",
|
|
934
|
+
"fqn": "pulumi_gitlab",
|
|
935
|
+
"classes": {
|
|
936
|
+
"gitlab:index/projectMergeRequestNote:ProjectMergeRequestNote": "ProjectMergeRequestNote"
|
|
937
|
+
}
|
|
938
|
+
},
|
|
735
939
|
{
|
|
736
940
|
"pkg": "gitlab",
|
|
737
941
|
"mod": "index/projectMilestone",
|
|
@@ -748,6 +952,14 @@ _utilities.register(
|
|
|
748
952
|
"gitlab:index/projectMirror:ProjectMirror": "ProjectMirror"
|
|
749
953
|
}
|
|
750
954
|
},
|
|
955
|
+
{
|
|
956
|
+
"pkg": "gitlab",
|
|
957
|
+
"mod": "index/projectPagesSettings",
|
|
958
|
+
"fqn": "pulumi_gitlab",
|
|
959
|
+
"classes": {
|
|
960
|
+
"gitlab:index/projectPagesSettings:ProjectPagesSettings": "ProjectPagesSettings"
|
|
961
|
+
}
|
|
962
|
+
},
|
|
751
963
|
{
|
|
752
964
|
"pkg": "gitlab",
|
|
753
965
|
"mod": "index/projectProtectedEnvironment",
|
|
@@ -798,98 +1010,58 @@ _utilities.register(
|
|
|
798
1010
|
},
|
|
799
1011
|
{
|
|
800
1012
|
"pkg": "gitlab",
|
|
801
|
-
"mod": "index/
|
|
802
|
-
"fqn": "pulumi_gitlab",
|
|
803
|
-
"classes": {
|
|
804
|
-
"gitlab:index/projectVariable:ProjectVariable": "ProjectVariable"
|
|
805
|
-
}
|
|
806
|
-
},
|
|
807
|
-
{
|
|
808
|
-
"pkg": "gitlab",
|
|
809
|
-
"mod": "index/releaseLink",
|
|
810
|
-
"fqn": "pulumi_gitlab",
|
|
811
|
-
"classes": {
|
|
812
|
-
"gitlab:index/releaseLink:ReleaseLink": "ReleaseLink"
|
|
813
|
-
}
|
|
814
|
-
},
|
|
815
|
-
{
|
|
816
|
-
"pkg": "gitlab",
|
|
817
|
-
"mod": "index/repositoryFile",
|
|
818
|
-
"fqn": "pulumi_gitlab",
|
|
819
|
-
"classes": {
|
|
820
|
-
"gitlab:index/repositoryFile:RepositoryFile": "RepositoryFile"
|
|
821
|
-
}
|
|
822
|
-
},
|
|
823
|
-
{
|
|
824
|
-
"pkg": "gitlab",
|
|
825
|
-
"mod": "index/runner",
|
|
826
|
-
"fqn": "pulumi_gitlab",
|
|
827
|
-
"classes": {
|
|
828
|
-
"gitlab:index/runner:Runner": "Runner"
|
|
829
|
-
}
|
|
830
|
-
},
|
|
831
|
-
{
|
|
832
|
-
"pkg": "gitlab",
|
|
833
|
-
"mod": "index/serviceCustomIssueTracker",
|
|
834
|
-
"fqn": "pulumi_gitlab",
|
|
835
|
-
"classes": {
|
|
836
|
-
"gitlab:index/serviceCustomIssueTracker:ServiceCustomIssueTracker": "ServiceCustomIssueTracker"
|
|
837
|
-
}
|
|
838
|
-
},
|
|
839
|
-
{
|
|
840
|
-
"pkg": "gitlab",
|
|
841
|
-
"mod": "index/serviceEmailsOnPush",
|
|
1013
|
+
"mod": "index/projectTargetBranchRule",
|
|
842
1014
|
"fqn": "pulumi_gitlab",
|
|
843
1015
|
"classes": {
|
|
844
|
-
"gitlab:index/
|
|
1016
|
+
"gitlab:index/projectTargetBranchRule:ProjectTargetBranchRule": "ProjectTargetBranchRule"
|
|
845
1017
|
}
|
|
846
1018
|
},
|
|
847
1019
|
{
|
|
848
1020
|
"pkg": "gitlab",
|
|
849
|
-
"mod": "index/
|
|
1021
|
+
"mod": "index/projectVariable",
|
|
850
1022
|
"fqn": "pulumi_gitlab",
|
|
851
1023
|
"classes": {
|
|
852
|
-
"gitlab:index/
|
|
1024
|
+
"gitlab:index/projectVariable:ProjectVariable": "ProjectVariable"
|
|
853
1025
|
}
|
|
854
1026
|
},
|
|
855
1027
|
{
|
|
856
1028
|
"pkg": "gitlab",
|
|
857
|
-
"mod": "index/
|
|
1029
|
+
"mod": "index/projectWikiPage",
|
|
858
1030
|
"fqn": "pulumi_gitlab",
|
|
859
1031
|
"classes": {
|
|
860
|
-
"gitlab:index/
|
|
1032
|
+
"gitlab:index/projectWikiPage:ProjectWikiPage": "ProjectWikiPage"
|
|
861
1033
|
}
|
|
862
1034
|
},
|
|
863
1035
|
{
|
|
864
1036
|
"pkg": "gitlab",
|
|
865
|
-
"mod": "index/
|
|
1037
|
+
"mod": "index/release",
|
|
866
1038
|
"fqn": "pulumi_gitlab",
|
|
867
1039
|
"classes": {
|
|
868
|
-
"gitlab:index/
|
|
1040
|
+
"gitlab:index/release:Release": "Release"
|
|
869
1041
|
}
|
|
870
1042
|
},
|
|
871
1043
|
{
|
|
872
1044
|
"pkg": "gitlab",
|
|
873
|
-
"mod": "index/
|
|
1045
|
+
"mod": "index/releaseLink",
|
|
874
1046
|
"fqn": "pulumi_gitlab",
|
|
875
1047
|
"classes": {
|
|
876
|
-
"gitlab:index/
|
|
1048
|
+
"gitlab:index/releaseLink:ReleaseLink": "ReleaseLink"
|
|
877
1049
|
}
|
|
878
1050
|
},
|
|
879
1051
|
{
|
|
880
1052
|
"pkg": "gitlab",
|
|
881
|
-
"mod": "index/
|
|
1053
|
+
"mod": "index/repositoryFile",
|
|
882
1054
|
"fqn": "pulumi_gitlab",
|
|
883
1055
|
"classes": {
|
|
884
|
-
"gitlab:index/
|
|
1056
|
+
"gitlab:index/repositoryFile:RepositoryFile": "RepositoryFile"
|
|
885
1057
|
}
|
|
886
1058
|
},
|
|
887
1059
|
{
|
|
888
1060
|
"pkg": "gitlab",
|
|
889
|
-
"mod": "index/
|
|
1061
|
+
"mod": "index/runner",
|
|
890
1062
|
"fqn": "pulumi_gitlab",
|
|
891
1063
|
"classes": {
|
|
892
|
-
"gitlab:index/
|
|
1064
|
+
"gitlab:index/runner:Runner": "Runner"
|
|
893
1065
|
}
|
|
894
1066
|
},
|
|
895
1067
|
{
|
|
@@ -940,6 +1112,14 @@ _utilities.register(
|
|
|
940
1112
|
"gitlab:index/userGpgKey:UserGpgKey": "UserGpgKey"
|
|
941
1113
|
}
|
|
942
1114
|
},
|
|
1115
|
+
{
|
|
1116
|
+
"pkg": "gitlab",
|
|
1117
|
+
"mod": "index/userIdentity",
|
|
1118
|
+
"fqn": "pulumi_gitlab",
|
|
1119
|
+
"classes": {
|
|
1120
|
+
"gitlab:index/userIdentity:UserIdentity": "UserIdentity"
|
|
1121
|
+
}
|
|
1122
|
+
},
|
|
943
1123
|
{
|
|
944
1124
|
"pkg": "gitlab",
|
|
945
1125
|
"mod": "index/userImpersonationToken",
|
|
@@ -963,6 +1143,14 @@ _utilities.register(
|
|
|
963
1143
|
"classes": {
|
|
964
1144
|
"gitlab:index/userSshKey:UserSshKey": "UserSshKey"
|
|
965
1145
|
}
|
|
1146
|
+
},
|
|
1147
|
+
{
|
|
1148
|
+
"pkg": "gitlab",
|
|
1149
|
+
"mod": "index/valueStreamAnalytics",
|
|
1150
|
+
"fqn": "pulumi_gitlab",
|
|
1151
|
+
"classes": {
|
|
1152
|
+
"gitlab:index/valueStreamAnalytics:ValueStreamAnalytics": "ValueStreamAnalytics"
|
|
1153
|
+
}
|
|
966
1154
|
}
|
|
967
1155
|
]
|
|
968
1156
|
""",
|