python-gitlab 4.4.0__py3-none-any.whl → 4.6.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.
- gitlab/_backends/protocol.py +2 -4
- gitlab/_version.py +1 -1
- gitlab/cli.py +33 -5
- gitlab/client.py +2 -3
- gitlab/mixins.py +22 -14
- gitlab/utils.py +3 -3
- gitlab/v4/cli.py +32 -11
- gitlab/v4/objects/__init__.py +1 -0
- gitlab/v4/objects/artifacts.py +7 -3
- gitlab/v4/objects/audit_events.py +1 -0
- gitlab/v4/objects/branches.py +10 -3
- gitlab/v4/objects/ci_lint.py +4 -4
- gitlab/v4/objects/commits.py +6 -6
- gitlab/v4/objects/container_registry.py +2 -2
- gitlab/v4/objects/deploy_keys.py +3 -1
- gitlab/v4/objects/deployments.py +3 -2
- gitlab/v4/objects/environments.py +1 -1
- gitlab/v4/objects/features.py +1 -0
- gitlab/v4/objects/files.py +15 -7
- gitlab/v4/objects/geo_nodes.py +4 -4
- gitlab/v4/objects/groups.py +13 -7
- gitlab/v4/objects/integrations.py +3 -1
- gitlab/v4/objects/issues.py +6 -4
- gitlab/v4/objects/iterations.py +29 -2
- gitlab/v4/objects/job_token_scope.py +48 -0
- gitlab/v4/objects/jobs.py +15 -15
- gitlab/v4/objects/merge_request_approvals.py +12 -59
- gitlab/v4/objects/merge_requests.py +14 -12
- gitlab/v4/objects/milestones.py +4 -4
- gitlab/v4/objects/namespaces.py +3 -1
- gitlab/v4/objects/packages.py +4 -4
- gitlab/v4/objects/pipelines.py +6 -5
- gitlab/v4/objects/projects.py +22 -18
- gitlab/v4/objects/repositories.py +14 -9
- gitlab/v4/objects/runners.py +2 -2
- gitlab/v4/objects/secure_files.py +2 -1
- gitlab/v4/objects/service_accounts.py +18 -0
- gitlab/v4/objects/sidekiq.py +4 -4
- gitlab/v4/objects/snippets.py +3 -3
- gitlab/v4/objects/todos.py +2 -2
- gitlab/v4/objects/topics.py +2 -2
- gitlab/v4/objects/users.py +11 -10
- gitlab/v4/objects/variables.py +1 -0
- {python_gitlab-4.4.0.dist-info → python_gitlab-4.6.0.dist-info}/METADATA +20 -3
- {python_gitlab-4.4.0.dist-info → python_gitlab-4.6.0.dist-info}/RECORD +50 -49
- {python_gitlab-4.4.0.dist-info → python_gitlab-4.6.0.dist-info}/WHEEL +1 -1
- {python_gitlab-4.4.0.dist-info → python_gitlab-4.6.0.dist-info}/AUTHORS +0 -0
- {python_gitlab-4.4.0.dist-info → python_gitlab-4.6.0.dist-info}/COPYING +0 -0
- {python_gitlab-4.4.0.dist-info → python_gitlab-4.6.0.dist-info}/entry_points.txt +0 -0
- {python_gitlab-4.4.0.dist-info → python_gitlab-4.6.0.dist-info}/top_level.txt +0 -0
gitlab/v4/objects/users.py
CHANGED
@@ -3,6 +3,7 @@ GitLab API:
|
|
3
3
|
https://docs.gitlab.com/ee/api/users.html
|
4
4
|
https://docs.gitlab.com/ee/api/projects.html#list-projects-starred-by-a-user
|
5
5
|
"""
|
6
|
+
|
6
7
|
from typing import Any, cast, Dict, List, Optional, Union
|
7
8
|
|
8
9
|
import requests
|
@@ -189,7 +190,7 @@ class User(SaveMixin, ObjectDeleteMixin, RESTObject):
|
|
189
190
|
starred_projects: "StarredProjectManager"
|
190
191
|
status: "UserStatusManager"
|
191
192
|
|
192
|
-
@cli.register_custom_action("User")
|
193
|
+
@cli.register_custom_action(cls_names="User")
|
193
194
|
@exc.on_http_error(exc.GitlabBlockError)
|
194
195
|
def block(self, **kwargs: Any) -> Optional[bool]:
|
195
196
|
"""Block the user.
|
@@ -214,7 +215,7 @@ class User(SaveMixin, ObjectDeleteMixin, RESTObject):
|
|
214
215
|
self._attrs["state"] = "blocked"
|
215
216
|
return server_data
|
216
217
|
|
217
|
-
@cli.register_custom_action("User")
|
218
|
+
@cli.register_custom_action(cls_names="User")
|
218
219
|
@exc.on_http_error(exc.GitlabFollowError)
|
219
220
|
def follow(self, **kwargs: Any) -> Union[Dict[str, Any], requests.Response]:
|
220
221
|
"""Follow the user.
|
@@ -232,7 +233,7 @@ class User(SaveMixin, ObjectDeleteMixin, RESTObject):
|
|
232
233
|
path = f"/users/{self.encoded_id}/follow"
|
233
234
|
return self.manager.gitlab.http_post(path, **kwargs)
|
234
235
|
|
235
|
-
@cli.register_custom_action("User")
|
236
|
+
@cli.register_custom_action(cls_names="User")
|
236
237
|
@exc.on_http_error(exc.GitlabUnfollowError)
|
237
238
|
def unfollow(self, **kwargs: Any) -> Union[Dict[str, Any], requests.Response]:
|
238
239
|
"""Unfollow the user.
|
@@ -250,7 +251,7 @@ class User(SaveMixin, ObjectDeleteMixin, RESTObject):
|
|
250
251
|
path = f"/users/{self.encoded_id}/unfollow"
|
251
252
|
return self.manager.gitlab.http_post(path, **kwargs)
|
252
253
|
|
253
|
-
@cli.register_custom_action("User")
|
254
|
+
@cli.register_custom_action(cls_names="User")
|
254
255
|
@exc.on_http_error(exc.GitlabUnblockError)
|
255
256
|
def unblock(self, **kwargs: Any) -> Optional[bool]:
|
256
257
|
"""Unblock the user.
|
@@ -275,7 +276,7 @@ class User(SaveMixin, ObjectDeleteMixin, RESTObject):
|
|
275
276
|
self._attrs["state"] = "active"
|
276
277
|
return server_data
|
277
278
|
|
278
|
-
@cli.register_custom_action("User")
|
279
|
+
@cli.register_custom_action(cls_names="User")
|
279
280
|
@exc.on_http_error(exc.GitlabDeactivateError)
|
280
281
|
def deactivate(self, **kwargs: Any) -> Union[Dict[str, Any], requests.Response]:
|
281
282
|
"""Deactivate the user.
|
@@ -296,7 +297,7 @@ class User(SaveMixin, ObjectDeleteMixin, RESTObject):
|
|
296
297
|
self._attrs["state"] = "deactivated"
|
297
298
|
return server_data
|
298
299
|
|
299
|
-
@cli.register_custom_action("User")
|
300
|
+
@cli.register_custom_action(cls_names="User")
|
300
301
|
@exc.on_http_error(exc.GitlabActivateError)
|
301
302
|
def activate(self, **kwargs: Any) -> Union[Dict[str, Any], requests.Response]:
|
302
303
|
"""Activate the user.
|
@@ -317,7 +318,7 @@ class User(SaveMixin, ObjectDeleteMixin, RESTObject):
|
|
317
318
|
self._attrs["state"] = "active"
|
318
319
|
return server_data
|
319
320
|
|
320
|
-
@cli.register_custom_action("User")
|
321
|
+
@cli.register_custom_action(cls_names="User")
|
321
322
|
@exc.on_http_error(exc.GitlabUserApproveError)
|
322
323
|
def approve(self, **kwargs: Any) -> Union[Dict[str, Any], requests.Response]:
|
323
324
|
"""Approve a user creation request.
|
@@ -335,7 +336,7 @@ class User(SaveMixin, ObjectDeleteMixin, RESTObject):
|
|
335
336
|
path = f"/users/{self.encoded_id}/approve"
|
336
337
|
return self.manager.gitlab.http_post(path, **kwargs)
|
337
338
|
|
338
|
-
@cli.register_custom_action("User")
|
339
|
+
@cli.register_custom_action(cls_names="User")
|
339
340
|
@exc.on_http_error(exc.GitlabUserRejectError)
|
340
341
|
def reject(self, **kwargs: Any) -> Union[Dict[str, Any], requests.Response]:
|
341
342
|
"""Reject a user creation request.
|
@@ -353,7 +354,7 @@ class User(SaveMixin, ObjectDeleteMixin, RESTObject):
|
|
353
354
|
path = f"/users/{self.encoded_id}/reject"
|
354
355
|
return self.manager.gitlab.http_post(path, **kwargs)
|
355
356
|
|
356
|
-
@cli.register_custom_action("User")
|
357
|
+
@cli.register_custom_action(cls_names="User")
|
357
358
|
@exc.on_http_error(exc.GitlabBanError)
|
358
359
|
def ban(self, **kwargs: Any) -> Union[Dict[str, Any], requests.Response]:
|
359
360
|
"""Ban the user.
|
@@ -374,7 +375,7 @@ class User(SaveMixin, ObjectDeleteMixin, RESTObject):
|
|
374
375
|
self._attrs["state"] = "banned"
|
375
376
|
return server_data
|
376
377
|
|
377
|
-
@cli.register_custom_action("User")
|
378
|
+
@cli.register_custom_action(cls_names="User")
|
378
379
|
@exc.on_http_error(exc.GitlabUnbanError)
|
379
380
|
def unban(self, **kwargs: Any) -> Union[Dict[str, Any], requests.Response]:
|
380
381
|
"""Unban the user.
|
gitlab/v4/objects/variables.py
CHANGED
@@ -4,6 +4,7 @@ https://docs.gitlab.com/ee/api/instance_level_ci_variables.html
|
|
4
4
|
https://docs.gitlab.com/ee/api/project_level_variables.html
|
5
5
|
https://docs.gitlab.com/ee/api/group_level_variables.html
|
6
6
|
"""
|
7
|
+
|
7
8
|
from typing import Any, cast, Union
|
8
9
|
|
9
10
|
from gitlab.base import RESTManager, RESTObject
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: python-gitlab
|
3
|
-
Version: 4.
|
3
|
+
Version: 4.6.0
|
4
4
|
Summary: A python wrapper for the GitLab API
|
5
5
|
Author-email: Gauvain Pocentek <gauvain@pocentek.net>
|
6
6
|
Maintainer-email: John Villalovos <john@sodarock.com>, Max Wittig <max.wittig@siemens.com>, Nejc Habjan <nejc.habjan@siemens.com>, Roger Meier <r.meier@siemens.com>
|
@@ -28,8 +28,8 @@ Requires-Python: >=3.8.0
|
|
28
28
|
Description-Content-Type: text/x-rst
|
29
29
|
License-File: COPYING
|
30
30
|
License-File: AUTHORS
|
31
|
-
Requires-Dist: requests >=2.
|
32
|
-
Requires-Dist: requests-toolbelt >=0.
|
31
|
+
Requires-Dist: requests >=2.32.0
|
32
|
+
Requires-Dist: requests-toolbelt >=1.0.0
|
33
33
|
Provides-Extra: autocompletion
|
34
34
|
Requires-Dist: argcomplete <3,>=1.10.0 ; extra == 'autocompletion'
|
35
35
|
Provides-Extra: yaml
|
@@ -149,6 +149,23 @@ You can also mount your own config file:
|
|
149
149
|
|
150
150
|
$ docker run -it --rm -v /path/to/python-gitlab.cfg:/etc/python-gitlab.cfg registry.gitlab.com/python-gitlab/python-gitlab:latest <command> ...
|
151
151
|
|
152
|
+
Usage inside GitLab CI
|
153
|
+
~~~~~~~~~~~~~~~~~~~~~~
|
154
|
+
|
155
|
+
If you want to use the Docker image directly inside your GitLab CI as an ``image``, you will need to override
|
156
|
+
the ``entrypoint``, `as noted in the official GitLab documentation <https://docs.gitlab.com/ee/ci/docker/using_docker_images.html#override-the-entrypoint-of-an-image>`__:
|
157
|
+
|
158
|
+
.. code-block:: yaml
|
159
|
+
|
160
|
+
Job Name:
|
161
|
+
image:
|
162
|
+
name: registry.gitlab.com/python-gitlab/python-gitlab:latest
|
163
|
+
entrypoint: [""]
|
164
|
+
before_script:
|
165
|
+
gitlab --version
|
166
|
+
script:
|
167
|
+
gitlab <command>
|
168
|
+
|
152
169
|
Building the image
|
153
170
|
~~~~~~~~~~~~~~~~~~
|
154
171
|
|
@@ -1,99 +1,100 @@
|
|
1
1
|
gitlab/__init__.py,sha256=bd8BSLyUUjtHMKtzmf-T5855W6FUHcuhIwx2hNu0w2o,1382
|
2
2
|
gitlab/__main__.py,sha256=HTesNl0UAU6mPb9EXWkTKMy6Q6pAUxGi3iPnDHTE2uE,68
|
3
|
-
gitlab/_version.py,sha256=
|
3
|
+
gitlab/_version.py,sha256=JMTtJPASormHXzXDVC7oPZIMS8qox4-C3RSdjtoyR1E,249
|
4
4
|
gitlab/base.py,sha256=5cotawlHD01Vw88aN4o7wNIhDyk_bmcwubX4mbOpnVo,13780
|
5
|
-
gitlab/cli.py,sha256=
|
6
|
-
gitlab/client.py,sha256=
|
5
|
+
gitlab/cli.py,sha256=PLcL8P0hhjtixHimdPRzY-hDKmLzeFyMB8YzJUIJNOw,13250
|
6
|
+
gitlab/client.py,sha256=7HHsmoP4UZgznapb-0_M3Z7ZJx0NJzzoF8ChcwNDzdY,48774
|
7
7
|
gitlab/config.py,sha256=T1DgUXD0-MN2qNszrv-SO5d4uy0FITnNN0vWJgOt2yo,9088
|
8
8
|
gitlab/const.py,sha256=rtPU-fxVSOvgpueoQVTvZGQp6iAZ-aa3nsY4RcSs_M4,5352
|
9
9
|
gitlab/exceptions.py,sha256=Ruz9LusKMRu6SyV1vXpOu_UTCi3XU64A9BeHsqKASOw,8303
|
10
|
-
gitlab/mixins.py,sha256=
|
10
|
+
gitlab/mixins.py,sha256=O2qb7qH7T_dHd6_c9QOaBAYNdzLgyffF7DIezndT8nQ,36591
|
11
11
|
gitlab/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
12
12
|
gitlab/types.py,sha256=lepiiI_YOr94B4koqIHuY70tszZC_X3YW4lDvbadbI8,3312
|
13
|
-
gitlab/utils.py,sha256=
|
13
|
+
gitlab/utils.py,sha256=PNf4GT25MzgFIYa3e9_7FxleUYPqkt8DRPe4tYc0vUI,6396
|
14
14
|
gitlab/_backends/__init__.py,sha256=WalQZRIDzw19FuNxraG7fvck6ddg4cdNd3bi53QKvZM,392
|
15
|
-
gitlab/_backends/protocol.py,sha256=
|
15
|
+
gitlab/_backends/protocol.py,sha256=m5qSz1o3i0H4XJCWnqx0wIFilOIU9cKxzFsYxLL6Big,842
|
16
16
|
gitlab/_backends/requests_backend.py,sha256=CrSDTfkvi17dT4kTU8R3qQFBNCPJqEfBJq4gJ2GXleA,5534
|
17
17
|
gitlab/v4/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
18
|
-
gitlab/v4/cli.py,sha256=
|
19
|
-
gitlab/v4/objects/__init__.py,sha256=
|
18
|
+
gitlab/v4/cli.py,sha256=buPexbNJeoi5rwnMV1q7G7zwcwof3m_Xs111yIUawq8,21942
|
19
|
+
gitlab/v4/objects/__init__.py,sha256=F_ff0QyakRXOdUzAcIuJCdpLXFvPxW8ZTouYErBQjC4,1990
|
20
20
|
gitlab/v4/objects/access_requests.py,sha256=pPYwB-b4fvKVdBoBRpzx2ensiMXbQwmBkN0XBh6ScaA,923
|
21
21
|
gitlab/v4/objects/appearance.py,sha256=uMt0bjo_KlxwKHItFzGMY9vXm5e489UG_o0EcFVJE8E,1932
|
22
22
|
gitlab/v4/objects/applications.py,sha256=FB1Se6Xa3CFLJlSeZ7lLoyAwY8cAF4DUDsuc59NGpcs,591
|
23
|
-
gitlab/v4/objects/artifacts.py,sha256=
|
24
|
-
gitlab/v4/objects/audit_events.py,sha256=
|
23
|
+
gitlab/v4/objects/artifacts.py,sha256=_oJbZrtK4058ZYd_nn0D1DT8I-c0f6XzgkgMcEa6ykQ,5098
|
24
|
+
gitlab/v4/objects/audit_events.py,sha256=OPhGt3br-pOyqMGUvXKAVuBvEz9_TQttBfOnjytAtJY,1910
|
25
25
|
gitlab/v4/objects/award_emojis.py,sha256=ASgIh4475tf1pq2xBHP2bYgKoQoP6UxgoZUHT65iYPM,5881
|
26
26
|
gitlab/v4/objects/badges.py,sha256=wtL7u7qQ01vwUIpA_9RsztAWsVSNLnPsov9VAYyagLQ,1464
|
27
27
|
gitlab/v4/objects/boards.py,sha256=J6ZeMELZXPzhd0obVZozTkAKXm-ivyQkLCjktwUDEkw,2680
|
28
|
-
gitlab/v4/objects/branches.py,sha256=
|
28
|
+
gitlab/v4/objects/branches.py,sha256=DgVwmi5CK9hW2ocGSdd-c71oDrq4WrOVEp0421S_iuY,1814
|
29
29
|
gitlab/v4/objects/broadcast_messages.py,sha256=EtjzOFwIsjqZe5jaPwYMdUa1QjNcWfoCl6-M363HJbI,1103
|
30
30
|
gitlab/v4/objects/bulk_imports.py,sha256=rexiCZiZLRdzDlFqRjW4MN8JGfbaYV71s1BxKZx3JQs,1573
|
31
|
-
gitlab/v4/objects/ci_lint.py,sha256=
|
31
|
+
gitlab/v4/objects/ci_lint.py,sha256=HhU-PJsQdymh3p0wFxB0ecf84Sd0UaiX0V3YEYQjMqg,2308
|
32
32
|
gitlab/v4/objects/clusters.py,sha256=Gsz5Jf2L27gzdbQvb5gKY20gxFT4jZASAofy5qL5hxQ,3750
|
33
|
-
gitlab/v4/objects/commits.py,sha256=
|
34
|
-
gitlab/v4/objects/container_registry.py,sha256=
|
33
|
+
gitlab/v4/objects/commits.py,sha256=ya4hglN4IFVTpa7BLAjMf-xty5E6bLbpzp5vthQdzUk,8292
|
34
|
+
gitlab/v4/objects/container_registry.py,sha256=w-t1nbjavJ18MEPmbIrEUcaOP2mXsr3Oc1Ub_1U95Y0,3360
|
35
35
|
gitlab/v4/objects/custom_attributes.py,sha256=48HKZ2C65UUU65FdvKrefFzRMVKRbG-rl58OE9FAuyI,1875
|
36
|
-
gitlab/v4/objects/deploy_keys.py,sha256=
|
36
|
+
gitlab/v4/objects/deploy_keys.py,sha256=i05JPwOOKq_h5R4WV4RmY-r78ksVEliEWTnxgqgCz8c,1878
|
37
37
|
gitlab/v4/objects/deploy_tokens.py,sha256=SEVSCr9D7LBj7qoE_D1-wK4pr2daFsVwBbhpm4m1Ey0,2110
|
38
|
-
gitlab/v4/objects/deployments.py,sha256=
|
38
|
+
gitlab/v4/objects/deployments.py,sha256=xN7FXcjpHxq25OD4ywhZkbq_5EqlU5dQp-DbWYe1NR0,2889
|
39
39
|
gitlab/v4/objects/discussions.py,sha256=LK-nyJx0ncevYXehiI4gyUQCrY3feZ5mUK6HpqhCeDU,3457
|
40
40
|
gitlab/v4/objects/draft_notes.py,sha256=wMHm5eIgv-KlHlXf14s4mMKxZRi82WelAQ7HRHKtrIA,1450
|
41
|
-
gitlab/v4/objects/environments.py,sha256=
|
41
|
+
gitlab/v4/objects/environments.py,sha256=eZl6w9uvBJswU3bSJbDtQVGtV6dUlDVGz61UN1nUWL4,2736
|
42
42
|
gitlab/v4/objects/epics.py,sha256=HKLpEL7_K54M6prGjga3qw5VfI2ZGGxBbfz42Oumvr0,4150
|
43
43
|
gitlab/v4/objects/events.py,sha256=20yCSlR9XB75AwMzatmAt4VdT9PL2nX0t1p1sAWbrvI,7067
|
44
44
|
gitlab/v4/objects/export_import.py,sha256=XVmrSq_qHwQr3XamFPfISEXnlBd-icJRm2CCa3V2puY,1909
|
45
|
-
gitlab/v4/objects/features.py,sha256=
|
46
|
-
gitlab/v4/objects/files.py,sha256=
|
47
|
-
gitlab/v4/objects/geo_nodes.py,sha256=
|
45
|
+
gitlab/v4/objects/features.py,sha256=N7T52I2JyNIgD1JejrSr8fNa14ZlAUxrS2VceUekhj0,1973
|
46
|
+
gitlab/v4/objects/files.py,sha256=9-cGDO3EdNA5xJ-MmVl8oMSLNkzRbnHAEV68_CPBwOQ,10506
|
47
|
+
gitlab/v4/objects/geo_nodes.py,sha256=tD9piU7OIZgbNQRUeLTFPtAJ6PVL_SI6tR_zh6Tm2M8,3686
|
48
48
|
gitlab/v4/objects/group_access_tokens.py,sha256=EijY0sfsp0Gtx_q4JLBeLL3jphx5b_6-nTzKxV272jc,1023
|
49
|
-
gitlab/v4/objects/groups.py,sha256=
|
49
|
+
gitlab/v4/objects/groups.py,sha256=YxOeaRYUjhu8PicCicVT7Eua04YuyOLAc8J13V7r9Gg,15958
|
50
50
|
gitlab/v4/objects/hooks.py,sha256=1uDYi09GOmgR6t7gVT06CeMGL0ZZ1N5swz1KMtsybDk,3598
|
51
|
-
gitlab/v4/objects/integrations.py,sha256=
|
51
|
+
gitlab/v4/objects/integrations.py,sha256=QWl5ZnE1oivt4ho9qJa_o268ORdaW35D4klBRy1jUyQ,9229
|
52
52
|
gitlab/v4/objects/invitations.py,sha256=ya9x7xhL1oSbx-FLJud-lHKmbYQoTplZlAbjsZip2CI,2734
|
53
|
-
gitlab/v4/objects/issues.py,sha256=
|
54
|
-
gitlab/v4/objects/iterations.py,sha256=
|
55
|
-
gitlab/v4/objects/job_token_scope.py,sha256=
|
56
|
-
gitlab/v4/objects/jobs.py,sha256=
|
53
|
+
gitlab/v4/objects/issues.py,sha256=FToUg3rm-nrcHPwwrx5SQCyNSNBOC7xNJmHa2S5szdI,10234
|
54
|
+
gitlab/v4/objects/iterations.py,sha256=QsPOg0YB57ShQUdTQwa_wXtNfWAM2c53kWE6y5xjg6E,1561
|
55
|
+
gitlab/v4/objects/job_token_scope.py,sha256=J69VVjtRgnTYQrFHFxOWQv3T2s6XRxb7uz57IAhnsdU,2622
|
56
|
+
gitlab/v4/objects/jobs.py,sha256=g7l5dA6-99tyLDoohjJ_xZvGyMbeytn4L9T-h78NQaE,9140
|
57
57
|
gitlab/v4/objects/keys.py,sha256=IclYGSzcVEZPIhDdIz-p16rvb68FnBTgAf1cWCXWjkY,882
|
58
58
|
gitlab/v4/objects/labels.py,sha256=JvOciJ6V76pF9HuJp5OT_Ykq8oqaa6ItxvpKf3hiEzs,4736
|
59
59
|
gitlab/v4/objects/ldap.py,sha256=adpkdfk7VBjshuh8SpCsc77Pax4QgqCx1N12CuzitDE,1662
|
60
60
|
gitlab/v4/objects/members.py,sha256=knzhMYLqaKWAUbTX4QAowMmtMirU2Kizt85zZRcpgmA,3836
|
61
|
-
gitlab/v4/objects/merge_request_approvals.py,sha256=
|
62
|
-
gitlab/v4/objects/merge_requests.py,sha256=
|
61
|
+
gitlab/v4/objects/merge_request_approvals.py,sha256=oPZFd4AUtrAVhBTa0iM4krNkk2UTNOTw_MWlEWo2HAQ,6400
|
62
|
+
gitlab/v4/objects/merge_requests.py,sha256=tpFCMmTVWyL9X7HtUoZuHJP4MVZUz1kk9-Bv-SbnwfU,17422
|
63
63
|
gitlab/v4/objects/merge_trains.py,sha256=e0Gp2Ri75elcG_r9w8qxdrcWW_YiebPRwUYIH5od8kc,422
|
64
|
-
gitlab/v4/objects/milestones.py,sha256=
|
65
|
-
gitlab/v4/objects/namespaces.py,sha256=
|
64
|
+
gitlab/v4/objects/milestones.py,sha256=LHAGYJlTm2ed3eqv4mTO-QZ7vRbwGXRFpre_G4gHdKY,7073
|
65
|
+
gitlab/v4/objects/namespaces.py,sha256=5_km8RP_OLZoRm6u-p53S2AM5UsHyJ4j65fi5fGIoLo,1535
|
66
66
|
gitlab/v4/objects/notes.py,sha256=Y0wrSD2pwvzX1RfyzyeXMMBy0_jOsWsaIUpa6CYWprg,8588
|
67
67
|
gitlab/v4/objects/notification_settings.py,sha256=zhltGjuu1HiqdON2v9-uKu7Z6TOOBOgQ3GdWgfEAJ64,2061
|
68
|
-
gitlab/v4/objects/packages.py,sha256=
|
68
|
+
gitlab/v4/objects/packages.py,sha256=4tEocanjw1GlFvfOncCY0Z-jJfjiFLhZeUiBIjLz9_g,7225
|
69
69
|
gitlab/v4/objects/pages.py,sha256=o6EHYJa-4qo8-IolppZk5Y5o64CAIlLceW2LPNR3nM4,1141
|
70
70
|
gitlab/v4/objects/personal_access_tokens.py,sha256=vMsAytE5czai3fpyTCyV1sR3cZDZRhvI06u08L8O7mw,1315
|
71
|
-
gitlab/v4/objects/pipelines.py,sha256=
|
71
|
+
gitlab/v4/objects/pipelines.py,sha256=YfH-JN4_u1XhNmxHTFPGeuXe7Gi3aWhPiRtBwbvo7lg,9818
|
72
72
|
gitlab/v4/objects/project_access_tokens.py,sha256=z_BCaBtXC7wzGVN6Ip0H72VwHID8XEBHDddCw0J8hO0,1043
|
73
|
-
gitlab/v4/objects/projects.py,sha256=
|
73
|
+
gitlab/v4/objects/projects.py,sha256=IS9QARQ36DU1B6S8XvmpxjqciWOygqSC9_wQRFDuoBg,44401
|
74
74
|
gitlab/v4/objects/push_rules.py,sha256=0dKMWEzF5h1zATh0_j_SvjQ7HKx9_5M7J9hzDGB66Rc,3041
|
75
75
|
gitlab/v4/objects/releases.py,sha256=j4_45oOj2yaA2XZ3fwBcKhFJ6li4vQy_zyr013LKfvY,1972
|
76
|
-
gitlab/v4/objects/repositories.py,sha256=
|
76
|
+
gitlab/v4/objects/repositories.py,sha256=RfOzuEvq_dBY1t6KaHG939tfsto9PiyMi-y_ikXSqkU,11221
|
77
77
|
gitlab/v4/objects/resource_groups.py,sha256=fYYnA2YO9CSTzxwImVCVPSiPkIeNpKRrPj7dpzwati4,1427
|
78
78
|
gitlab/v4/objects/reviewers.py,sha256=HTU8hw09fRofvoj5V4kde1PLK3QSe1uY3BVUtxOvJ00,517
|
79
|
-
gitlab/v4/objects/runners.py,sha256=
|
80
|
-
gitlab/v4/objects/secure_files.py,sha256=
|
79
|
+
gitlab/v4/objects/runners.py,sha256=QFYiApMyBWs0rhw1drylutoltI2zdIwDeYP1oFJUGJ4,4917
|
80
|
+
gitlab/v4/objects/secure_files.py,sha256=KC5jGC79Qd_IeHx1EhjobMZrJPPIA-4jUYZny_o3cCE,2521
|
81
|
+
gitlab/v4/objects/service_accounts.py,sha256=MPy-xk2ObEwohscBK7jcsVUYjhEM48c8_7jK6wB0PYM,517
|
81
82
|
gitlab/v4/objects/settings.py,sha256=LTkdyhhU2MTA15EJw2lZeqDKfK_Bg65CV1CchPljrqY,4295
|
82
|
-
gitlab/v4/objects/sidekiq.py,sha256=
|
83
|
-
gitlab/v4/objects/snippets.py,sha256=
|
83
|
+
gitlab/v4/objects/sidekiq.py,sha256=kIMgglIBJkbA_io9MXwkCEUs8mZPte6sFQYoWH1TXI4,2996
|
84
|
+
gitlab/v4/objects/snippets.py,sha256=uOWD275Ck8wc9lWiKdryzJeYZaGCCnVtWRhzmQ6OL5g,6048
|
84
85
|
gitlab/v4/objects/statistics.py,sha256=NPN8WpCwFJeWeLcn5zahwAgzpJl-Q6bJyoi5ff8XCRQ,2638
|
85
86
|
gitlab/v4/objects/tags.py,sha256=LCvSzI44a1NlrUVi5A_2eOwFSOJjVBSkWe71QdXH_68,1453
|
86
87
|
gitlab/v4/objects/templates.py,sha256=DWbb46-SiusrbW7OuMfBJLrH0rqpRV0G6gzFLbaLpOc,1726
|
87
|
-
gitlab/v4/objects/todos.py,sha256=
|
88
|
-
gitlab/v4/objects/topics.py,sha256=
|
88
|
+
gitlab/v4/objects/todos.py,sha256=HMqvK9CDyxj2jwSQKjnaTLmMztDhqIL_62CHh6Rh4lk,1846
|
89
|
+
gitlab/v4/objects/topics.py,sha256=rJU4q2gH8caaJXgBV81x9docr5XobZBaI-9vPmgCvXQ,2208
|
89
90
|
gitlab/v4/objects/triggers.py,sha256=UAERq_C-QdPBbBQPHLh5IfhpkdDeIxdnVGPHfu9Qy5Y,824
|
90
|
-
gitlab/v4/objects/users.py,sha256=
|
91
|
-
gitlab/v4/objects/variables.py,sha256=
|
91
|
+
gitlab/v4/objects/users.py,sha256=_gGrTwcE17jeoXIPgfFSv54jtF1_9C1R0Y0hhssTvXY,21381
|
92
|
+
gitlab/v4/objects/variables.py,sha256=S0Vz32jEpUbo4J2js8gMPPTVpcy1ge5FYVHLiPz9c-A,2627
|
92
93
|
gitlab/v4/objects/wikis.py,sha256=JtI1cQqZV1_PRfKVlQRMh4LZjdxEfi9T2VuFYv6PrV8,1775
|
93
|
-
python_gitlab-4.
|
94
|
-
python_gitlab-4.
|
95
|
-
python_gitlab-4.
|
96
|
-
python_gitlab-4.
|
97
|
-
python_gitlab-4.
|
98
|
-
python_gitlab-4.
|
99
|
-
python_gitlab-4.
|
94
|
+
python_gitlab-4.6.0.dist-info/AUTHORS,sha256=Z0P61GJSVnp7iFbRcMezhx3f4zMyPkVmG--TWaRo768,526
|
95
|
+
python_gitlab-4.6.0.dist-info/COPYING,sha256=2n6rt7r999OuXp8iOqW9we7ORaxWncIbOwN1ILRGR2g,7651
|
96
|
+
python_gitlab-4.6.0.dist-info/METADATA,sha256=WUoK-pngHNFgI0nPSIetLjJw1vSaPwfspoZoWqDZfbM,8228
|
97
|
+
python_gitlab-4.6.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
98
|
+
python_gitlab-4.6.0.dist-info/entry_points.txt,sha256=nhpKLLP_uQPFByn8UtE9zsvQQwa402t52o_Cw9IFXMo,43
|
99
|
+
python_gitlab-4.6.0.dist-info/top_level.txt,sha256=MvIaP8p_Oaf4gO_hXmHkX-5y2deHLp1pe6tJR3ukQ6o,7
|
100
|
+
python_gitlab-4.6.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|