pulumi-gitlab 9.6.0a1766429294__py3-none-any.whl → 9.8.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 +54 -0
- pulumi_gitlab/get_project_hook.py +2 -2
- pulumi_gitlab/get_project_secure_file.py +2 -2
- pulumi_gitlab/group.py +141 -0
- pulumi_gitlab/group_hook.py +116 -112
- pulumi_gitlab/outputs.py +53 -1
- pulumi_gitlab/project_cicd_catalog.py +314 -0
- pulumi_gitlab/project_hook.py +106 -100
- pulumi_gitlab/project_issue_link.py +502 -0
- pulumi_gitlab/project_job_token_scope.py +20 -4
- 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/pulumi-plugin.json +1 -1
- pulumi_gitlab/runner.py +2 -2
- {pulumi_gitlab-9.6.0a1766429294.dist-info → pulumi_gitlab-9.8.0.dist-info}/METADATA +1 -1
- {pulumi_gitlab-9.6.0a1766429294.dist-info → pulumi_gitlab-9.8.0.dist-info}/RECORD +22 -16
- {pulumi_gitlab-9.6.0a1766429294.dist-info → pulumi_gitlab-9.8.0.dist-info}/WHEEL +0 -0
- {pulumi_gitlab-9.6.0a1766429294.dist-info → pulumi_gitlab-9.8.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,489 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import builtins as _builtins
|
|
6
|
+
import warnings
|
|
7
|
+
import sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from . import _utilities
|
|
16
|
+
|
|
17
|
+
__all__ = ['ProjectSecureFileArgs', 'ProjectSecureFile']
|
|
18
|
+
|
|
19
|
+
@pulumi.input_type
|
|
20
|
+
class ProjectSecureFileArgs:
|
|
21
|
+
def __init__(__self__, *,
|
|
22
|
+
content: pulumi.Input[_builtins.str],
|
|
23
|
+
project: pulumi.Input[_builtins.str],
|
|
24
|
+
name: Optional[pulumi.Input[_builtins.str]] = None):
|
|
25
|
+
"""
|
|
26
|
+
The set of arguments for constructing a ProjectSecureFile resource.
|
|
27
|
+
:param pulumi.Input[_builtins.str] content: The contents of the secure file
|
|
28
|
+
:param pulumi.Input[_builtins.str] project: The ID or full path of the project to environment is created for.
|
|
29
|
+
:param pulumi.Input[_builtins.str] name: The name for the secure file, unique per project
|
|
30
|
+
"""
|
|
31
|
+
pulumi.set(__self__, "content", content)
|
|
32
|
+
pulumi.set(__self__, "project", project)
|
|
33
|
+
if name is not None:
|
|
34
|
+
pulumi.set(__self__, "name", name)
|
|
35
|
+
|
|
36
|
+
@_builtins.property
|
|
37
|
+
@pulumi.getter
|
|
38
|
+
def content(self) -> pulumi.Input[_builtins.str]:
|
|
39
|
+
"""
|
|
40
|
+
The contents of the secure file
|
|
41
|
+
"""
|
|
42
|
+
return pulumi.get(self, "content")
|
|
43
|
+
|
|
44
|
+
@content.setter
|
|
45
|
+
def content(self, value: pulumi.Input[_builtins.str]):
|
|
46
|
+
pulumi.set(self, "content", value)
|
|
47
|
+
|
|
48
|
+
@_builtins.property
|
|
49
|
+
@pulumi.getter
|
|
50
|
+
def project(self) -> pulumi.Input[_builtins.str]:
|
|
51
|
+
"""
|
|
52
|
+
The ID or full path of the project to environment is created for.
|
|
53
|
+
"""
|
|
54
|
+
return pulumi.get(self, "project")
|
|
55
|
+
|
|
56
|
+
@project.setter
|
|
57
|
+
def project(self, value: pulumi.Input[_builtins.str]):
|
|
58
|
+
pulumi.set(self, "project", value)
|
|
59
|
+
|
|
60
|
+
@_builtins.property
|
|
61
|
+
@pulumi.getter
|
|
62
|
+
def name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
63
|
+
"""
|
|
64
|
+
The name for the secure file, unique per project
|
|
65
|
+
"""
|
|
66
|
+
return pulumi.get(self, "name")
|
|
67
|
+
|
|
68
|
+
@name.setter
|
|
69
|
+
def name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
70
|
+
pulumi.set(self, "name", value)
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
@pulumi.input_type
|
|
74
|
+
class _ProjectSecureFileState:
|
|
75
|
+
def __init__(__self__, *,
|
|
76
|
+
checksum: Optional[pulumi.Input[_builtins.str]] = None,
|
|
77
|
+
checksum_algorithm: Optional[pulumi.Input[_builtins.str]] = None,
|
|
78
|
+
content: Optional[pulumi.Input[_builtins.str]] = None,
|
|
79
|
+
created_at: Optional[pulumi.Input[_builtins.str]] = None,
|
|
80
|
+
expires_at: Optional[pulumi.Input[_builtins.str]] = None,
|
|
81
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
82
|
+
project: Optional[pulumi.Input[_builtins.str]] = None,
|
|
83
|
+
secure_file_id: Optional[pulumi.Input[_builtins.int]] = None):
|
|
84
|
+
"""
|
|
85
|
+
Input properties used for looking up and filtering ProjectSecureFile resources.
|
|
86
|
+
:param pulumi.Input[_builtins.str] checksum: The checksum of the file
|
|
87
|
+
:param pulumi.Input[_builtins.str] checksum_algorithm: The checksum algorithm used
|
|
88
|
+
:param pulumi.Input[_builtins.str] content: The contents of the secure file
|
|
89
|
+
:param pulumi.Input[_builtins.str] created_at: The time the secure file was uploaded
|
|
90
|
+
:param pulumi.Input[_builtins.str] expires_at: The time the secure file will expire
|
|
91
|
+
:param pulumi.Input[_builtins.str] name: The name for the secure file, unique per project
|
|
92
|
+
:param pulumi.Input[_builtins.str] project: The ID or full path of the project to environment is created for.
|
|
93
|
+
:param pulumi.Input[_builtins.int] secure_file_id: The id of the secure file in gitlab
|
|
94
|
+
"""
|
|
95
|
+
if checksum is not None:
|
|
96
|
+
pulumi.set(__self__, "checksum", checksum)
|
|
97
|
+
if checksum_algorithm is not None:
|
|
98
|
+
pulumi.set(__self__, "checksum_algorithm", checksum_algorithm)
|
|
99
|
+
if content is not None:
|
|
100
|
+
pulumi.set(__self__, "content", content)
|
|
101
|
+
if created_at is not None:
|
|
102
|
+
pulumi.set(__self__, "created_at", created_at)
|
|
103
|
+
if expires_at is not None:
|
|
104
|
+
pulumi.set(__self__, "expires_at", expires_at)
|
|
105
|
+
if name is not None:
|
|
106
|
+
pulumi.set(__self__, "name", name)
|
|
107
|
+
if project is not None:
|
|
108
|
+
pulumi.set(__self__, "project", project)
|
|
109
|
+
if secure_file_id is not None:
|
|
110
|
+
pulumi.set(__self__, "secure_file_id", secure_file_id)
|
|
111
|
+
|
|
112
|
+
@_builtins.property
|
|
113
|
+
@pulumi.getter
|
|
114
|
+
def checksum(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
115
|
+
"""
|
|
116
|
+
The checksum of the file
|
|
117
|
+
"""
|
|
118
|
+
return pulumi.get(self, "checksum")
|
|
119
|
+
|
|
120
|
+
@checksum.setter
|
|
121
|
+
def checksum(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
122
|
+
pulumi.set(self, "checksum", value)
|
|
123
|
+
|
|
124
|
+
@_builtins.property
|
|
125
|
+
@pulumi.getter(name="checksumAlgorithm")
|
|
126
|
+
def checksum_algorithm(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
127
|
+
"""
|
|
128
|
+
The checksum algorithm used
|
|
129
|
+
"""
|
|
130
|
+
return pulumi.get(self, "checksum_algorithm")
|
|
131
|
+
|
|
132
|
+
@checksum_algorithm.setter
|
|
133
|
+
def checksum_algorithm(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
134
|
+
pulumi.set(self, "checksum_algorithm", value)
|
|
135
|
+
|
|
136
|
+
@_builtins.property
|
|
137
|
+
@pulumi.getter
|
|
138
|
+
def content(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
139
|
+
"""
|
|
140
|
+
The contents of the secure file
|
|
141
|
+
"""
|
|
142
|
+
return pulumi.get(self, "content")
|
|
143
|
+
|
|
144
|
+
@content.setter
|
|
145
|
+
def content(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
146
|
+
pulumi.set(self, "content", value)
|
|
147
|
+
|
|
148
|
+
@_builtins.property
|
|
149
|
+
@pulumi.getter(name="createdAt")
|
|
150
|
+
def created_at(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
151
|
+
"""
|
|
152
|
+
The time the secure file was uploaded
|
|
153
|
+
"""
|
|
154
|
+
return pulumi.get(self, "created_at")
|
|
155
|
+
|
|
156
|
+
@created_at.setter
|
|
157
|
+
def created_at(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
158
|
+
pulumi.set(self, "created_at", value)
|
|
159
|
+
|
|
160
|
+
@_builtins.property
|
|
161
|
+
@pulumi.getter(name="expiresAt")
|
|
162
|
+
def expires_at(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
163
|
+
"""
|
|
164
|
+
The time the secure file will expire
|
|
165
|
+
"""
|
|
166
|
+
return pulumi.get(self, "expires_at")
|
|
167
|
+
|
|
168
|
+
@expires_at.setter
|
|
169
|
+
def expires_at(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
170
|
+
pulumi.set(self, "expires_at", value)
|
|
171
|
+
|
|
172
|
+
@_builtins.property
|
|
173
|
+
@pulumi.getter
|
|
174
|
+
def name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
175
|
+
"""
|
|
176
|
+
The name for the secure file, unique per project
|
|
177
|
+
"""
|
|
178
|
+
return pulumi.get(self, "name")
|
|
179
|
+
|
|
180
|
+
@name.setter
|
|
181
|
+
def name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
182
|
+
pulumi.set(self, "name", value)
|
|
183
|
+
|
|
184
|
+
@_builtins.property
|
|
185
|
+
@pulumi.getter
|
|
186
|
+
def project(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
187
|
+
"""
|
|
188
|
+
The ID or full path of the project to environment is created for.
|
|
189
|
+
"""
|
|
190
|
+
return pulumi.get(self, "project")
|
|
191
|
+
|
|
192
|
+
@project.setter
|
|
193
|
+
def project(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
194
|
+
pulumi.set(self, "project", value)
|
|
195
|
+
|
|
196
|
+
@_builtins.property
|
|
197
|
+
@pulumi.getter(name="secureFileId")
|
|
198
|
+
def secure_file_id(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
199
|
+
"""
|
|
200
|
+
The id of the secure file in gitlab
|
|
201
|
+
"""
|
|
202
|
+
return pulumi.get(self, "secure_file_id")
|
|
203
|
+
|
|
204
|
+
@secure_file_id.setter
|
|
205
|
+
def secure_file_id(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
206
|
+
pulumi.set(self, "secure_file_id", value)
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
@pulumi.type_token("gitlab:index/projectSecureFile:ProjectSecureFile")
|
|
210
|
+
class ProjectSecureFile(pulumi.CustomResource):
|
|
211
|
+
@overload
|
|
212
|
+
def __init__(__self__,
|
|
213
|
+
resource_name: str,
|
|
214
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
215
|
+
content: Optional[pulumi.Input[_builtins.str]] = None,
|
|
216
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
217
|
+
project: Optional[pulumi.Input[_builtins.str]] = None,
|
|
218
|
+
__props__=None):
|
|
219
|
+
"""
|
|
220
|
+
The `ProjectSecureFile` resource allows users to manage the lifecycle of a secure file in gitlab.
|
|
221
|
+
|
|
222
|
+
**Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/secure_files/)
|
|
223
|
+
|
|
224
|
+
## Example Usage
|
|
225
|
+
|
|
226
|
+
```python
|
|
227
|
+
import pulumi
|
|
228
|
+
import pulumi_gitlab as gitlab
|
|
229
|
+
import pulumi_std as std
|
|
230
|
+
|
|
231
|
+
this = gitlab.Group("this",
|
|
232
|
+
name="example",
|
|
233
|
+
path="example",
|
|
234
|
+
description="An example group")
|
|
235
|
+
this_project = gitlab.Project("this",
|
|
236
|
+
name="example",
|
|
237
|
+
namespace_id=this.id,
|
|
238
|
+
initialize_with_readme=True)
|
|
239
|
+
this_project_secure_file = gitlab.ProjectSecureFile("this",
|
|
240
|
+
name="my-secure-file",
|
|
241
|
+
project=this_project.id,
|
|
242
|
+
content=std.file(input="example.txt").result)
|
|
243
|
+
disable_poll_for_metadata = gitlab.ProjectSecureFile("disable_poll_for_metadata",
|
|
244
|
+
name="my-secure-file",
|
|
245
|
+
project=this_project.id,
|
|
246
|
+
content=std.file(input="example.txt").result,
|
|
247
|
+
poll_for_metadata_duration_in_seconds=0)
|
|
248
|
+
```
|
|
249
|
+
|
|
250
|
+
## Import
|
|
251
|
+
|
|
252
|
+
Starting in Terraform v1.5.0, you can use an import block to import `gitlab_project_secure_file`. For example:
|
|
253
|
+
|
|
254
|
+
terraform
|
|
255
|
+
|
|
256
|
+
import {
|
|
257
|
+
|
|
258
|
+
to = gitlab_project_secure_file.example
|
|
259
|
+
|
|
260
|
+
id = "see CLI command below for ID"
|
|
261
|
+
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
Importing using the CLI is supported with the following syntax:
|
|
265
|
+
|
|
266
|
+
GitLab secure files can be imported using an id made up of `projectId:secureFileId`, e.g.
|
|
267
|
+
|
|
268
|
+
```sh
|
|
269
|
+
$ pulumi import gitlab:index/projectSecureFile:ProjectSecureFile bar 123:321
|
|
270
|
+
```
|
|
271
|
+
|
|
272
|
+
:param str resource_name: The name of the resource.
|
|
273
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
274
|
+
:param pulumi.Input[_builtins.str] content: The contents of the secure file
|
|
275
|
+
:param pulumi.Input[_builtins.str] name: The name for the secure file, unique per project
|
|
276
|
+
:param pulumi.Input[_builtins.str] project: The ID or full path of the project to environment is created for.
|
|
277
|
+
"""
|
|
278
|
+
...
|
|
279
|
+
@overload
|
|
280
|
+
def __init__(__self__,
|
|
281
|
+
resource_name: str,
|
|
282
|
+
args: ProjectSecureFileArgs,
|
|
283
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
|
284
|
+
"""
|
|
285
|
+
The `ProjectSecureFile` resource allows users to manage the lifecycle of a secure file in gitlab.
|
|
286
|
+
|
|
287
|
+
**Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/secure_files/)
|
|
288
|
+
|
|
289
|
+
## Example Usage
|
|
290
|
+
|
|
291
|
+
```python
|
|
292
|
+
import pulumi
|
|
293
|
+
import pulumi_gitlab as gitlab
|
|
294
|
+
import pulumi_std as std
|
|
295
|
+
|
|
296
|
+
this = gitlab.Group("this",
|
|
297
|
+
name="example",
|
|
298
|
+
path="example",
|
|
299
|
+
description="An example group")
|
|
300
|
+
this_project = gitlab.Project("this",
|
|
301
|
+
name="example",
|
|
302
|
+
namespace_id=this.id,
|
|
303
|
+
initialize_with_readme=True)
|
|
304
|
+
this_project_secure_file = gitlab.ProjectSecureFile("this",
|
|
305
|
+
name="my-secure-file",
|
|
306
|
+
project=this_project.id,
|
|
307
|
+
content=std.file(input="example.txt").result)
|
|
308
|
+
disable_poll_for_metadata = gitlab.ProjectSecureFile("disable_poll_for_metadata",
|
|
309
|
+
name="my-secure-file",
|
|
310
|
+
project=this_project.id,
|
|
311
|
+
content=std.file(input="example.txt").result,
|
|
312
|
+
poll_for_metadata_duration_in_seconds=0)
|
|
313
|
+
```
|
|
314
|
+
|
|
315
|
+
## Import
|
|
316
|
+
|
|
317
|
+
Starting in Terraform v1.5.0, you can use an import block to import `gitlab_project_secure_file`. For example:
|
|
318
|
+
|
|
319
|
+
terraform
|
|
320
|
+
|
|
321
|
+
import {
|
|
322
|
+
|
|
323
|
+
to = gitlab_project_secure_file.example
|
|
324
|
+
|
|
325
|
+
id = "see CLI command below for ID"
|
|
326
|
+
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
Importing using the CLI is supported with the following syntax:
|
|
330
|
+
|
|
331
|
+
GitLab secure files can be imported using an id made up of `projectId:secureFileId`, e.g.
|
|
332
|
+
|
|
333
|
+
```sh
|
|
334
|
+
$ pulumi import gitlab:index/projectSecureFile:ProjectSecureFile bar 123:321
|
|
335
|
+
```
|
|
336
|
+
|
|
337
|
+
:param str resource_name: The name of the resource.
|
|
338
|
+
:param ProjectSecureFileArgs args: The arguments to use to populate this resource's properties.
|
|
339
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
340
|
+
"""
|
|
341
|
+
...
|
|
342
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
|
343
|
+
resource_args, opts = _utilities.get_resource_args_opts(ProjectSecureFileArgs, pulumi.ResourceOptions, *args, **kwargs)
|
|
344
|
+
if resource_args is not None:
|
|
345
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
|
346
|
+
else:
|
|
347
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
|
348
|
+
|
|
349
|
+
def _internal_init(__self__,
|
|
350
|
+
resource_name: str,
|
|
351
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
352
|
+
content: Optional[pulumi.Input[_builtins.str]] = None,
|
|
353
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
354
|
+
project: Optional[pulumi.Input[_builtins.str]] = None,
|
|
355
|
+
__props__=None):
|
|
356
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
357
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
|
358
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
|
359
|
+
if opts.id is None:
|
|
360
|
+
if __props__ is not None:
|
|
361
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
362
|
+
__props__ = ProjectSecureFileArgs.__new__(ProjectSecureFileArgs)
|
|
363
|
+
|
|
364
|
+
if content is None and not opts.urn:
|
|
365
|
+
raise TypeError("Missing required property 'content'")
|
|
366
|
+
__props__.__dict__["content"] = None if content is None else pulumi.Output.secret(content)
|
|
367
|
+
__props__.__dict__["name"] = name
|
|
368
|
+
if project is None and not opts.urn:
|
|
369
|
+
raise TypeError("Missing required property 'project'")
|
|
370
|
+
__props__.__dict__["project"] = project
|
|
371
|
+
__props__.__dict__["checksum"] = None
|
|
372
|
+
__props__.__dict__["checksum_algorithm"] = None
|
|
373
|
+
__props__.__dict__["created_at"] = None
|
|
374
|
+
__props__.__dict__["expires_at"] = None
|
|
375
|
+
__props__.__dict__["secure_file_id"] = None
|
|
376
|
+
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["content"])
|
|
377
|
+
opts = pulumi.ResourceOptions.merge(opts, secret_opts)
|
|
378
|
+
super(ProjectSecureFile, __self__).__init__(
|
|
379
|
+
'gitlab:index/projectSecureFile:ProjectSecureFile',
|
|
380
|
+
resource_name,
|
|
381
|
+
__props__,
|
|
382
|
+
opts)
|
|
383
|
+
|
|
384
|
+
@staticmethod
|
|
385
|
+
def get(resource_name: str,
|
|
386
|
+
id: pulumi.Input[str],
|
|
387
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
388
|
+
checksum: Optional[pulumi.Input[_builtins.str]] = None,
|
|
389
|
+
checksum_algorithm: Optional[pulumi.Input[_builtins.str]] = None,
|
|
390
|
+
content: Optional[pulumi.Input[_builtins.str]] = None,
|
|
391
|
+
created_at: Optional[pulumi.Input[_builtins.str]] = None,
|
|
392
|
+
expires_at: Optional[pulumi.Input[_builtins.str]] = None,
|
|
393
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
394
|
+
project: Optional[pulumi.Input[_builtins.str]] = None,
|
|
395
|
+
secure_file_id: Optional[pulumi.Input[_builtins.int]] = None) -> 'ProjectSecureFile':
|
|
396
|
+
"""
|
|
397
|
+
Get an existing ProjectSecureFile resource's state with the given name, id, and optional extra
|
|
398
|
+
properties used to qualify the lookup.
|
|
399
|
+
|
|
400
|
+
:param str resource_name: The unique name of the resulting resource.
|
|
401
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
402
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
403
|
+
:param pulumi.Input[_builtins.str] checksum: The checksum of the file
|
|
404
|
+
:param pulumi.Input[_builtins.str] checksum_algorithm: The checksum algorithm used
|
|
405
|
+
:param pulumi.Input[_builtins.str] content: The contents of the secure file
|
|
406
|
+
:param pulumi.Input[_builtins.str] created_at: The time the secure file was uploaded
|
|
407
|
+
:param pulumi.Input[_builtins.str] expires_at: The time the secure file will expire
|
|
408
|
+
:param pulumi.Input[_builtins.str] name: The name for the secure file, unique per project
|
|
409
|
+
:param pulumi.Input[_builtins.str] project: The ID or full path of the project to environment is created for.
|
|
410
|
+
:param pulumi.Input[_builtins.int] secure_file_id: The id of the secure file in gitlab
|
|
411
|
+
"""
|
|
412
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
413
|
+
|
|
414
|
+
__props__ = _ProjectSecureFileState.__new__(_ProjectSecureFileState)
|
|
415
|
+
|
|
416
|
+
__props__.__dict__["checksum"] = checksum
|
|
417
|
+
__props__.__dict__["checksum_algorithm"] = checksum_algorithm
|
|
418
|
+
__props__.__dict__["content"] = content
|
|
419
|
+
__props__.__dict__["created_at"] = created_at
|
|
420
|
+
__props__.__dict__["expires_at"] = expires_at
|
|
421
|
+
__props__.__dict__["name"] = name
|
|
422
|
+
__props__.__dict__["project"] = project
|
|
423
|
+
__props__.__dict__["secure_file_id"] = secure_file_id
|
|
424
|
+
return ProjectSecureFile(resource_name, opts=opts, __props__=__props__)
|
|
425
|
+
|
|
426
|
+
@_builtins.property
|
|
427
|
+
@pulumi.getter
|
|
428
|
+
def checksum(self) -> pulumi.Output[_builtins.str]:
|
|
429
|
+
"""
|
|
430
|
+
The checksum of the file
|
|
431
|
+
"""
|
|
432
|
+
return pulumi.get(self, "checksum")
|
|
433
|
+
|
|
434
|
+
@_builtins.property
|
|
435
|
+
@pulumi.getter(name="checksumAlgorithm")
|
|
436
|
+
def checksum_algorithm(self) -> pulumi.Output[_builtins.str]:
|
|
437
|
+
"""
|
|
438
|
+
The checksum algorithm used
|
|
439
|
+
"""
|
|
440
|
+
return pulumi.get(self, "checksum_algorithm")
|
|
441
|
+
|
|
442
|
+
@_builtins.property
|
|
443
|
+
@pulumi.getter
|
|
444
|
+
def content(self) -> pulumi.Output[_builtins.str]:
|
|
445
|
+
"""
|
|
446
|
+
The contents of the secure file
|
|
447
|
+
"""
|
|
448
|
+
return pulumi.get(self, "content")
|
|
449
|
+
|
|
450
|
+
@_builtins.property
|
|
451
|
+
@pulumi.getter(name="createdAt")
|
|
452
|
+
def created_at(self) -> pulumi.Output[_builtins.str]:
|
|
453
|
+
"""
|
|
454
|
+
The time the secure file was uploaded
|
|
455
|
+
"""
|
|
456
|
+
return pulumi.get(self, "created_at")
|
|
457
|
+
|
|
458
|
+
@_builtins.property
|
|
459
|
+
@pulumi.getter(name="expiresAt")
|
|
460
|
+
def expires_at(self) -> pulumi.Output[_builtins.str]:
|
|
461
|
+
"""
|
|
462
|
+
The time the secure file will expire
|
|
463
|
+
"""
|
|
464
|
+
return pulumi.get(self, "expires_at")
|
|
465
|
+
|
|
466
|
+
@_builtins.property
|
|
467
|
+
@pulumi.getter
|
|
468
|
+
def name(self) -> pulumi.Output[_builtins.str]:
|
|
469
|
+
"""
|
|
470
|
+
The name for the secure file, unique per project
|
|
471
|
+
"""
|
|
472
|
+
return pulumi.get(self, "name")
|
|
473
|
+
|
|
474
|
+
@_builtins.property
|
|
475
|
+
@pulumi.getter
|
|
476
|
+
def project(self) -> pulumi.Output[_builtins.str]:
|
|
477
|
+
"""
|
|
478
|
+
The ID or full path of the project to environment is created for.
|
|
479
|
+
"""
|
|
480
|
+
return pulumi.get(self, "project")
|
|
481
|
+
|
|
482
|
+
@_builtins.property
|
|
483
|
+
@pulumi.getter(name="secureFileId")
|
|
484
|
+
def secure_file_id(self) -> pulumi.Output[_builtins.int]:
|
|
485
|
+
"""
|
|
486
|
+
The id of the secure file in gitlab
|
|
487
|
+
"""
|
|
488
|
+
return pulumi.get(self, "secure_file_id")
|
|
489
|
+
|
pulumi_gitlab/project_tag.py
CHANGED
|
@@ -236,7 +236,7 @@ class ProjectTag(pulumi.CustomResource):
|
|
|
236
236
|
ref: Optional[pulumi.Input[_builtins.str]] = None,
|
|
237
237
|
__props__=None):
|
|
238
238
|
"""
|
|
239
|
-
The `ProjectTag` resource allows to manage the lifecycle of a tag in a project.
|
|
239
|
+
The `ProjectTag` resource allows users to manage the lifecycle of a tag in a project.
|
|
240
240
|
|
|
241
241
|
**Upstream API**: [GitLab API docs](https://docs.gitlab.com/api/tags/)
|
|
242
242
|
|
|
@@ -295,7 +295,7 @@ class ProjectTag(pulumi.CustomResource):
|
|
|
295
295
|
args: ProjectTagArgs,
|
|
296
296
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
297
297
|
"""
|
|
298
|
-
The `ProjectTag` resource allows to manage the lifecycle of a tag in a project.
|
|
298
|
+
The `ProjectTag` resource allows users to manage the lifecycle of a tag in a project.
|
|
299
299
|
|
|
300
300
|
**Upstream API**: [GitLab API docs](https://docs.gitlab.com/api/tags/)
|
|
301
301
|
|
|
@@ -438,7 +438,7 @@ class ProjectTag(pulumi.CustomResource):
|
|
|
438
438
|
|
|
439
439
|
@_builtins.property
|
|
440
440
|
@pulumi.getter
|
|
441
|
-
def message(self) -> pulumi.Output[
|
|
441
|
+
def message(self) -> pulumi.Output[_builtins.str]:
|
|
442
442
|
"""
|
|
443
443
|
The message of the annotated tag.
|
|
444
444
|
"""
|
pulumi_gitlab/pulumi-plugin.json
CHANGED
pulumi_gitlab/runner.py
CHANGED
|
@@ -372,7 +372,7 @@ class Runner(pulumi.CustomResource):
|
|
|
372
372
|
"""
|
|
373
373
|
The `Runner` resource allows to manage the lifecycle of a runner.
|
|
374
374
|
|
|
375
|
-
> This resource has been deprecated in favor of the `UserRunner` resource. Please use that resource, and the new registration flow, instead.
|
|
375
|
+
> This resource has been deprecated in favor of the `UserRunner` resource. Please use that resource, and the new registration flow, instead. To be removed in 19.0.
|
|
376
376
|
|
|
377
377
|
A runner can either be registered at an instance level or group level.
|
|
378
378
|
The runner will be registered at a group level if the token used is from a group, or at an instance level if the token used is for the instance.
|
|
@@ -425,7 +425,7 @@ class Runner(pulumi.CustomResource):
|
|
|
425
425
|
"""
|
|
426
426
|
The `Runner` resource allows to manage the lifecycle of a runner.
|
|
427
427
|
|
|
428
|
-
> This resource has been deprecated in favor of the `UserRunner` resource. Please use that resource, and the new registration flow, instead.
|
|
428
|
+
> This resource has been deprecated in favor of the `UserRunner` resource. Please use that resource, and the new registration flow, instead. To be removed in 19.0.
|
|
429
429
|
|
|
430
430
|
A runner can either be registered at an instance level or group level.
|
|
431
431
|
The runner will be registered at a group level if the token used is from a group, or at an instance level if the token used is for the instance.
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
pulumi_gitlab/__init__.py,sha256=
|
|
1
|
+
pulumi_gitlab/__init__.py,sha256=gJCDLHFbnUmBNsXe4YKbH74L0CI-EUmW7wEXhCaCcLY,31041
|
|
2
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
|
|
@@ -47,7 +47,7 @@ pulumi_gitlab/get_project_access_tokens.py,sha256=dZqQOdQN_qx1zwVqgEVBSAT5q_472r
|
|
|
47
47
|
pulumi_gitlab/get_project_approval_rules.py,sha256=tMXq5S_pK7MSJsRNTV6vVhN2wwSPhyl_XdcsjCx5Zis,6002
|
|
48
48
|
pulumi_gitlab/get_project_branches.py,sha256=rYkIWuK26IF2VhIwpOSd1syjYiLbHXPdPYQYM3bBYU8,4473
|
|
49
49
|
pulumi_gitlab/get_project_environments.py,sha256=_OceJyjkKpn2nseAn2d0ZO4Y0XukjccNsizZEBGMpUs,8301
|
|
50
|
-
pulumi_gitlab/get_project_hook.py,sha256=
|
|
50
|
+
pulumi_gitlab/get_project_hook.py,sha256=hp4VLWrvby4VSNaZDQX2SP-3rHeMFYkprFKH9CYfvv4,17280
|
|
51
51
|
pulumi_gitlab/get_project_hooks.py,sha256=lc878gqd34e1Y5D1ATy9_93OcGC9w99jNZuQa90ySBU,4609
|
|
52
52
|
pulumi_gitlab/get_project_ids.py,sha256=NJ0nKGlZMpU0L8SSZT3cZnb9kpDj3-tX0P8FvCGr_1c,6413
|
|
53
53
|
pulumi_gitlab/get_project_issue.py,sha256=3mpqGTfUUf0QEG0udnql46pV4T0Axxp0cPAA-Wmtc2I,28756
|
|
@@ -63,7 +63,7 @@ pulumi_gitlab/get_project_protected_branch.py,sha256=YQTtGqGo5W8KN9RRU_4hjSmNFIf
|
|
|
63
63
|
pulumi_gitlab/get_project_protected_branches.py,sha256=nhvPTRqgJwRQXuN2y1zG7IQRl5TDPkG-aV2Hchxg_Aw,5906
|
|
64
64
|
pulumi_gitlab/get_project_protected_tag.py,sha256=fRQDNm0a2VUgKls564Wklof10wrz9SE2zLC2RPJwDZs,5704
|
|
65
65
|
pulumi_gitlab/get_project_protected_tags.py,sha256=t2VcHaU1UX1hhs9VTWuC_W5ia5Jl24WK1vNMxIv4YSU,4671
|
|
66
|
-
pulumi_gitlab/get_project_secure_file.py,sha256=
|
|
66
|
+
pulumi_gitlab/get_project_secure_file.py,sha256=VrupLsH_xOMig9PIigSvjXUdUOS90VXbFSOpKGEV2GI,9825
|
|
67
67
|
pulumi_gitlab/get_project_tag.py,sha256=bTYxA4HpDxpyKka5WOpuO93gMaJYcyXyat8asZIDtXA,7129
|
|
68
68
|
pulumi_gitlab/get_project_tags.py,sha256=meUS3PZNccndWKnP4wWDj_KD_TuLnZXnheCCqfvTlyw,7596
|
|
69
69
|
pulumi_gitlab/get_project_variable.py,sha256=OvfaMmjKasLxraaAEkdWPWuoKhV6z9azth3HjgcdhFo,9798
|
|
@@ -80,7 +80,7 @@ pulumi_gitlab/get_user.py,sha256=2rOWfEt-H4YtiIa2NrCH3vS7lAbXuNsB8QccAexVphE,232
|
|
|
80
80
|
pulumi_gitlab/get_user_sshkeys.py,sha256=scInXXnKt-97WzrjUXZWtVxlWaQIq6sgr8ga7xiMQDE,5097
|
|
81
81
|
pulumi_gitlab/get_users.py,sha256=auAZ02cMuSTO5jtWzEdtUwu8gk8knDJPAflH0ftJPjY,19393
|
|
82
82
|
pulumi_gitlab/global_level_notifications.py,sha256=5G94vzvat1k3cIPsCfc1yKxUkKfWVqDJRNfWR470_G4,53007
|
|
83
|
-
pulumi_gitlab/group.py,sha256=
|
|
83
|
+
pulumi_gitlab/group.py,sha256=a2tJGGY0rJ_wTY5RCnDtOqX6MHp3Cbmss5zkPC05jFA,110829
|
|
84
84
|
pulumi_gitlab/group_access_token.py,sha256=hDMEo250e1r-h8gv-xod6Yr2Bheur4V6IEcCw4is7I8,35535
|
|
85
85
|
pulumi_gitlab/group_badge.py,sha256=WR9ThyUKTPh-1gjy7Z-xveuA905e22Tz8cWIwmASDrc,18949
|
|
86
86
|
pulumi_gitlab/group_cluster.py,sha256=iocCCOb_06u5WAbPKhIQqXTu4noiF3eXx2zCD3QSj7o,36943
|
|
@@ -88,7 +88,7 @@ pulumi_gitlab/group_custom_attribute.py,sha256=Fbfs2YjyORYk5BhBkDqmvhSMkfLGfKDXg
|
|
|
88
88
|
pulumi_gitlab/group_dependency_proxy.py,sha256=D3pmyCKDUUZrwV0UfSRf3B_8stlH9SN9gXp199LiKMg,16889
|
|
89
89
|
pulumi_gitlab/group_deploy_token.py,sha256=i5Zk1Go9tWQKF3JTkxMipP1OnFxMRxJSWKpIk6JayhQ,25579
|
|
90
90
|
pulumi_gitlab/group_epic_board.py,sha256=VXlQuenFczYFToWTj1szmYkdSXss79p_ULqzLxhlc6w,13384
|
|
91
|
-
pulumi_gitlab/group_hook.py,sha256=
|
|
91
|
+
pulumi_gitlab/group_hook.py,sha256=R_7Sdlp4njPwrMjl1hN3fVGspdvduDh9PT6EJoMCnpM,67777
|
|
92
92
|
pulumi_gitlab/group_issue_board.py,sha256=rW8CE1JTljj--nLgwgLoG955nmm-bGnrRogxetT6mmA,16554
|
|
93
93
|
pulumi_gitlab/group_label.py,sha256=RqSDyK-0olrP3gFt3mmVvB5ERCI453la-bwkZn75jMY,17898
|
|
94
94
|
pulumi_gitlab/group_ldap_link.py,sha256=R-IiorP7cIydTFTT2t1VUBil-fz5PdEf0r3w_clGMro,26664
|
|
@@ -120,7 +120,7 @@ pulumi_gitlab/integration_slack.py,sha256=-D_4aaoSleCEK4qI99XWuWzeh2QpAOQM-Ewq9Z
|
|
|
120
120
|
pulumi_gitlab/integration_telegram.py,sha256=wLKXDVepFB45HgeyCHsyS484jzhVz50ud7qHz1arzjI,41348
|
|
121
121
|
pulumi_gitlab/label.py,sha256=JcFf0z4ek_ZdX2F508mRbPmRfXvXJN_OIADbgiEUYto,16366
|
|
122
122
|
pulumi_gitlab/member_role.py,sha256=GRzgL3QmtVODXo4-RS50d-jyRePxQalthMIYYWTfhOY,27402
|
|
123
|
-
pulumi_gitlab/outputs.py,sha256=
|
|
123
|
+
pulumi_gitlab/outputs.py,sha256=CSwoSTxn9Uzxk9B-NFly3189yH0AtWIB0BXWbfNept0,473379
|
|
124
124
|
pulumi_gitlab/pages_domain.py,sha256=zrf6GcOcMDfzld1R-6v_nd_gfpLrjXvI_IMi0moNTxo,22937
|
|
125
125
|
pulumi_gitlab/personal_access_token.py,sha256=Y70b9bxV5Q8mxJrI3DRYNkca1O1SJWa0DEeVIjcL_OM,32593
|
|
126
126
|
pulumi_gitlab/pipeline_schedule.py,sha256=UcqpiWKBXWbDm491woCUjIEm_TcRg48Ihh93x8qHgNg,22808
|
|
@@ -130,6 +130,7 @@ pulumi_gitlab/project.py,sha256=9noRopIZOJU7Apbnc0ZW3Riy4zE-FWikSrhWsufSfck,3372
|
|
|
130
130
|
pulumi_gitlab/project_access_token.py,sha256=GtmRfxR3w52sYpicX_nMvzjW4dvhIrU8_jmJ0SWRpxc,35920
|
|
131
131
|
pulumi_gitlab/project_approval_rule.py,sha256=PGPoYugk-11ItJK6ah6U0kzFIA8rTotJkBIR08kKGEk,36738
|
|
132
132
|
pulumi_gitlab/project_badge.py,sha256=Hqr40R54NWDH0sGEzjZqERlpNglcuHg89npy53zcPM8,19105
|
|
133
|
+
pulumi_gitlab/project_cicd_catalog.py,sha256=awB0zGPqpPKdy1J_gVZDn3VzgwJ5jmwLxVV1w0rU-tA,12831
|
|
133
134
|
pulumi_gitlab/project_cluster.py,sha256=2CUL69X7DoZ7JCVe7_wClfSOXrUM7b0drawDtT24i4A,39578
|
|
134
135
|
pulumi_gitlab/project_compliance_frameworks.py,sha256=KGVm9M8DZHibuGr88bY3fMj1NZT4tr2E7Gn3bWkijOI,13194
|
|
135
136
|
pulumi_gitlab/project_container_repository_protection.py,sha256=wPheIqqBAeM7ICMvcj8Zh_SwRX3qwnp5D1bx5HNR4lI,21926
|
|
@@ -138,7 +139,7 @@ pulumi_gitlab/project_deploy_token.py,sha256=gsjwwVFLMsa-hjnr6p07GmgmVGC35a_jwLy
|
|
|
138
139
|
pulumi_gitlab/project_environment.py,sha256=B1fx3lHPUohxkn1fgsr1TW0iDirCh_bfuZNEyhHLTqI,37495
|
|
139
140
|
pulumi_gitlab/project_external_status_check.py,sha256=JFBXrmqCjLd2WzHtz5iCZhg-bVIODL_8yU09Xjc11LM,20690
|
|
140
141
|
pulumi_gitlab/project_freeze_period.py,sha256=QEw2FMam93mutlvGDR7DYUrNO_4ZJih5aRGlFtbzBn8,15038
|
|
141
|
-
pulumi_gitlab/project_hook.py,sha256=
|
|
142
|
+
pulumi_gitlab/project_hook.py,sha256=IEPxBGyHO15VE1YV0Id2Lip_QKVZyHbIRcvyvSc1oxM,63147
|
|
142
143
|
pulumi_gitlab/project_integration_custom_issue_tracker.py,sha256=qZGs8NRs53KeWTB-hBqBEJDBu7RAmzi3absOO9Musxo,19246
|
|
143
144
|
pulumi_gitlab/project_integration_emails_on_push.py,sha256=nOjc6moUHWV0GARBdw2gnc0Ch2_JcSB-OzeaMeZXH3Q,29570
|
|
144
145
|
pulumi_gitlab/project_integration_external_wiki.py,sha256=RWRxGVpxFnejDObzwoWIzviKdDkysVBBo_sGZZDDFY8,17496
|
|
@@ -154,7 +155,8 @@ pulumi_gitlab/project_integration_telegram.py,sha256=dQBrrOfy_g-wmsMamRZJdEsQqj6
|
|
|
154
155
|
pulumi_gitlab/project_integration_youtrack.py,sha256=wihZf51t24gujnDhZ8Jzsh70Ad0ByFtTkuipzEMiTNw,13498
|
|
155
156
|
pulumi_gitlab/project_issue.py,sha256=SDmV-LWw6t11R_KvTiO5rMQ1tEFmo1rh0ja1w3F1KFA,79631
|
|
156
157
|
pulumi_gitlab/project_issue_board.py,sha256=5HKL9kY2a1ZxtfPhVlag_zc3ucz2pnP0GqhELrFlEkw,25075
|
|
157
|
-
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
|
|
158
160
|
pulumi_gitlab/project_job_token_scopes.py,sha256=UNAbifpoe4BTMPQfQMTm6cpszhW0hLF8clqJqQ6Bmmc,23785
|
|
159
161
|
pulumi_gitlab/project_label.py,sha256=MV6_OY4krpNHXLyw8GwIjkrQLwP_KDnxqndSLQb7j1U,18690
|
|
160
162
|
pulumi_gitlab/project_level_mr_approvals.py,sha256=AIh7aet0VvEjkPTas9DsPwDrzI3hslnHPgAPKbw4sUE,28766
|
|
@@ -162,24 +164,28 @@ pulumi_gitlab/project_level_notifications.py,sha256=OJYlubXEbxLY7_9U_KL-8NgWwmH8
|
|
|
162
164
|
pulumi_gitlab/project_membership.py,sha256=Pv-1190hOO4lotQh4uhhUCgbfxSkPh2sd5qh1Y6opRA,18929
|
|
163
165
|
pulumi_gitlab/project_merge_request_note.py,sha256=cJf7ytkeNu1Lf4FE8FWBjYY7T7KcviC9-UFo2Uo20_Q,25399
|
|
164
166
|
pulumi_gitlab/project_milestone.py,sha256=jeNDwbGifiz4LdvKoe4SukodJhNSdDqrxZnhcWMxN1s,27756
|
|
165
|
-
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
|
|
166
169
|
pulumi_gitlab/project_pages_settings.py,sha256=a1iNHuuS49c5lA8Ck-VB_9lHX2gWlompa2bGfZwQNq8,17430
|
|
167
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
|
|
168
173
|
pulumi_gitlab/project_push_rules.py,sha256=ab-a-QNQ1KTexBEbKBFxMV4IEpE_pEXqtvFiWQNWy4w,41577
|
|
169
174
|
pulumi_gitlab/project_runner_enablement.py,sha256=IkaDkXjWGOMjhf1A2qLZ3q0FaQbFzE8Vw2tqBuQhVUE,10445
|
|
175
|
+
pulumi_gitlab/project_secure_file.py,sha256=XqBAdlCo4Cm8J_QJGbl8DHWz_VbOccePPFBCZqVx4nk,19278
|
|
170
176
|
pulumi_gitlab/project_security_policy_attachment.py,sha256=yFcRRH5H76QbkY_BCQVwSNonts_bB-sNYqxmS8X-vK8,16851
|
|
171
177
|
pulumi_gitlab/project_share_group.py,sha256=KOBlnLsjiDJILFiMZsWvMkONtU7ApGlteaD07UNSCA8,16751
|
|
172
|
-
pulumi_gitlab/project_tag.py,sha256=
|
|
178
|
+
pulumi_gitlab/project_tag.py,sha256=4q2FcJxT7sf3mefLlmf5fozEomt3gdLA2ryBH6Y_w0A,19544
|
|
173
179
|
pulumi_gitlab/project_target_branch_rule.py,sha256=pqtvi-K1mgd8CDNCSGkEjoc2ukKnEw63aZoRsB0Z1h8,14415
|
|
174
180
|
pulumi_gitlab/project_variable.py,sha256=WIv9WN6OhKb8bOAODh9GreL-Pvk_UtdDq6gPwJ1t1ic,29672
|
|
175
181
|
pulumi_gitlab/project_wiki_page.py,sha256=_uJ0vbZO0P5pVp3xuvnBYBZYfZUY0KX6hnvHK5motfU,16558
|
|
176
182
|
pulumi_gitlab/provider.py,sha256=xszx1fRkM7_uck9iIfo2dNGa2JkXWThqRXi1wHsYtjY,23257
|
|
177
|
-
pulumi_gitlab/pulumi-plugin.json,sha256=
|
|
183
|
+
pulumi_gitlab/pulumi-plugin.json,sha256=zuyrvrzmV5qFdLkTJo8QJ1CMRsRrTFyjR8_ABVcuqOo,65
|
|
178
184
|
pulumi_gitlab/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
179
185
|
pulumi_gitlab/release.py,sha256=nl-zDbU9uBrgSal-Q_hmgvucLEdRdVwzQaHznkzG064,36331
|
|
180
186
|
pulumi_gitlab/release_link.py,sha256=EjboeRdN6IM2LYb_BWljjHX-cBBfGdzQRI53hiYxLO0,23326
|
|
181
187
|
pulumi_gitlab/repository_file.py,sha256=0fBrHI7nqAzeKHhnJSs6sAez2vw34dX9JwqwMrhkdaY,48070
|
|
182
|
-
pulumi_gitlab/runner.py,sha256=
|
|
188
|
+
pulumi_gitlab/runner.py,sha256=cyG6kQ3gxX5qL-p1HeQGXnc8FyBA8x0cWQw8wAVUvIo,29831
|
|
183
189
|
pulumi_gitlab/system_hook.py,sha256=Lp4lJjdtF1HNnBHQOPTSWQkd_L_oUhBS_xbojseHaJU,23926
|
|
184
190
|
pulumi_gitlab/tag_protection.py,sha256=XtDt4Sm4YufWzrta3Mhrh63HcBLaqe0bfp3u8zXmCtY,16506
|
|
185
191
|
pulumi_gitlab/topic.py,sha256=18ZIAmJHtAJkUZRho0CrSEyIHtC8kdHLAhnuuPvj0oo,18026
|
|
@@ -195,7 +201,7 @@ pulumi_gitlab/value_stream_analytics.py,sha256=qajoNI2VIT6EgVAN-V0YAMShve-D6jDQf
|
|
|
195
201
|
pulumi_gitlab/config/__init__.py,sha256=XWnQfVtc2oPapjSXXCdORFJvMpXt_SMJQASWdTRoPmc,296
|
|
196
202
|
pulumi_gitlab/config/__init__.pyi,sha256=ZtEaCpKCo4BZor-bBsDtf4j3yl7ym84dqhkIy_Keuvs,2671
|
|
197
203
|
pulumi_gitlab/config/vars.py,sha256=Rf2oVEIYf4vSaqK-7RmfAixxpaGEhQG9kXIeSCfIuJc,4073
|
|
198
|
-
pulumi_gitlab-9.
|
|
199
|
-
pulumi_gitlab-9.
|
|
200
|
-
pulumi_gitlab-9.
|
|
201
|
-
pulumi_gitlab-9.
|
|
204
|
+
pulumi_gitlab-9.8.0.dist-info/METADATA,sha256=0slUf7UysCHihvdLJi7S7pYrt0zx0ANWOSaSF3jWwCk,3436
|
|
205
|
+
pulumi_gitlab-9.8.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
206
|
+
pulumi_gitlab-9.8.0.dist-info/top_level.txt,sha256=fl4bklikEmbp3mE-JWfvC3JROXPLQGxFaJd_j_qmjgE,14
|
|
207
|
+
pulumi_gitlab-9.8.0.dist-info/RECORD,,
|