python-gitlab 5.4.0__py3-none-any.whl → 5.5.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/_version.py CHANGED
@@ -3,4 +3,4 @@ __copyright__ = "Copyright 2013-2019 Gauvain Pocentek, 2019-2023 python-gitlab t
3
3
  __email__ = "gauvainpocentek@gmail.com"
4
4
  __license__ = "LGPL3"
5
5
  __title__ = "python-gitlab"
6
- __version__ = "5.4.0"
6
+ __version__ = "5.5.0"
gitlab/mixins.py CHANGED
@@ -640,7 +640,7 @@ class DownloadMixin(_RestObjectBase):
640
640
  def download(
641
641
  self,
642
642
  streamed: Literal[True] = True,
643
- action: Optional[Callable[[bytes], None]] = None,
643
+ action: Optional[Callable[[bytes], Any]] = None,
644
644
  chunk_size: int = 1024,
645
645
  *,
646
646
  iterator: Literal[False] = False,
@@ -652,7 +652,7 @@ class DownloadMixin(_RestObjectBase):
652
652
  def download(
653
653
  self,
654
654
  streamed: bool = False,
655
- action: Optional[Callable[[bytes], None]] = None,
655
+ action: Optional[Callable[[bytes], Any]] = None,
656
656
  chunk_size: int = 1024,
657
657
  *,
658
658
  iterator: bool = False,
gitlab/utils.py CHANGED
@@ -77,7 +77,7 @@ class MaskingFormatter(logging.Formatter):
77
77
  def response_content(
78
78
  response: requests.Response,
79
79
  streamed: bool,
80
- action: Optional[Callable[[bytes], None]],
80
+ action: Optional[Callable[[bytes], Any]],
81
81
  chunk_size: int,
82
82
  *,
83
83
  iterator: bool,
@@ -84,7 +84,7 @@ class ProjectArtifactManager(RESTManager):
84
84
  ref_name: str,
85
85
  job: str,
86
86
  streamed: Literal[True] = True,
87
- action: Optional[Callable[[bytes], None]] = None,
87
+ action: Optional[Callable[[bytes], Any]] = None,
88
88
  chunk_size: int = 1024,
89
89
  *,
90
90
  iterator: Literal[False] = False,
@@ -102,7 +102,7 @@ class ProjectArtifactManager(RESTManager):
102
102
  ref_name: str,
103
103
  job: str,
104
104
  streamed: bool = False,
105
- action: Optional[Callable[[bytes], None]] = None,
105
+ action: Optional[Callable[[bytes], Any]] = None,
106
106
  chunk_size: int = 1024,
107
107
  *,
108
108
  iterator: bool = False,
@@ -177,7 +177,7 @@ class ProjectArtifactManager(RESTManager):
177
177
  artifact_path: str,
178
178
  job: str,
179
179
  streamed: Literal[True] = True,
180
- action: Optional[Callable[[bytes], None]] = None,
180
+ action: Optional[Callable[[bytes], Any]] = None,
181
181
  chunk_size: int = 1024,
182
182
  *,
183
183
  iterator: Literal[False] = False,
@@ -195,7 +195,7 @@ class ProjectArtifactManager(RESTManager):
195
195
  artifact_path: str,
196
196
  job: str,
197
197
  streamed: bool = False,
198
- action: Optional[Callable[[bytes], None]] = None,
198
+ action: Optional[Callable[[bytes], Any]] = None,
199
199
  chunk_size: int = 1024,
200
200
  *,
201
201
  iterator: bool = False,
@@ -308,7 +308,7 @@ class ProjectFileManager(CreateMixin, UpdateMixin, DeleteMixin, RESTManager):
308
308
  file_path: str,
309
309
  ref: Optional[str] = None,
310
310
  streamed: Literal[True] = True,
311
- action: Optional[Callable[[bytes], None]] = None,
311
+ action: Optional[Callable[[bytes], Any]] = None,
312
312
  chunk_size: int = 1024,
313
313
  *,
314
314
  iterator: Literal[False] = False,
gitlab/v4/objects/jobs.py CHANGED
@@ -152,7 +152,7 @@ class ProjectJob(RefreshMixin, RESTObject):
152
152
  def artifacts(
153
153
  self,
154
154
  streamed: Literal[True] = True,
155
- action: Optional[Callable[[bytes], None]] = None,
155
+ action: Optional[Callable[[bytes], Any]] = None,
156
156
  chunk_size: int = 1024,
157
157
  *,
158
158
  iterator: Literal[False] = False,
@@ -229,7 +229,7 @@ class ProjectJob(RefreshMixin, RESTObject):
229
229
  self,
230
230
  path: str,
231
231
  streamed: Literal[True] = True,
232
- action: Optional[Callable[[bytes], None]] = None,
232
+ action: Optional[Callable[[bytes], Any]] = None,
233
233
  chunk_size: int = 1024,
234
234
  *,
235
235
  iterator: Literal[False] = False,
@@ -305,7 +305,7 @@ class ProjectJob(RefreshMixin, RESTObject):
305
305
  def trace(
306
306
  self,
307
307
  streamed: Literal[True] = True,
308
- action: Optional[Callable[[bytes], None]] = None,
308
+ action: Optional[Callable[[bytes], Any]] = None,
309
309
  chunk_size: int = 1024,
310
310
  *,
311
311
  iterator: Literal[False] = False,
@@ -159,7 +159,7 @@ class GenericPackageManager(RESTManager):
159
159
  package_version: str,
160
160
  file_name: str,
161
161
  streamed: Literal[True] = True,
162
- action: Optional[Callable[[bytes], None]] = None,
162
+ action: Optional[Callable[[bytes], Any]] = None,
163
163
  chunk_size: int = 1024,
164
164
  *,
165
165
  iterator: Literal[False] = False,
@@ -177,7 +177,7 @@ class GenericPackageManager(RESTManager):
177
177
  package_version: str,
178
178
  file_name: str,
179
179
  streamed: bool = False,
180
- action: Optional[Callable[[bytes], None]] = None,
180
+ action: Optional[Callable[[bytes], Any]] = None,
181
181
  chunk_size: int = 1024,
182
182
  *,
183
183
  iterator: bool = False,
@@ -128,6 +128,8 @@ __all__ = [
128
128
  "ProjectForkManager",
129
129
  "ProjectRemoteMirror",
130
130
  "ProjectRemoteMirrorManager",
131
+ "ProjectPullMirror",
132
+ "ProjectPullMirrorManager",
131
133
  "ProjectStorage",
132
134
  "ProjectStorageManager",
133
135
  "SharedProject",
@@ -249,6 +251,7 @@ class Project(
249
251
  releases: ProjectReleaseManager
250
252
  resource_groups: ProjectResourceGroupManager
251
253
  remote_mirrors: "ProjectRemoteMirrorManager"
254
+ pull_mirror: "ProjectPullMirrorManager"
252
255
  repositories: ProjectRegistryRepositoryManager
253
256
  runners: ProjectRunnerManager
254
257
  secure_files: ProjectSecureFileManager
@@ -520,7 +523,7 @@ class Project(
520
523
  self,
521
524
  wiki: bool = False,
522
525
  streamed: Literal[True] = True,
523
- action: Optional[Callable[[bytes], None]] = None,
526
+ action: Optional[Callable[[bytes], Any]] = None,
524
527
  chunk_size: int = 1024,
525
528
  *,
526
529
  iterator: Literal[False] = False,
@@ -533,7 +536,7 @@ class Project(
533
536
  self,
534
537
  wiki: bool = False,
535
538
  streamed: bool = False,
536
- action: Optional[Callable[[bytes], None]] = None,
539
+ action: Optional[Callable[[bytes], Any]] = None,
537
540
  chunk_size: int = 1024,
538
541
  *,
539
542
  iterator: bool = False,
@@ -605,6 +608,13 @@ class Project(
605
608
  GitlabAuthenticationError: If authentication is not correct
606
609
  GitlabCreateError: If the server failed to perform the request
607
610
  """
611
+ utils.warn(
612
+ message=(
613
+ "project.mirror_pull() is deprecated and will be removed in a "
614
+ "future major version. Use project.pull_mirror.start() instead."
615
+ ),
616
+ category=DeprecationWarning,
617
+ )
608
618
  path = f"/projects/{self.encoded_id}/mirror/pull"
609
619
  self.manager.gitlab.http_post(path, **kwargs)
610
620
 
@@ -625,6 +635,13 @@ class Project(
625
635
  Returns:
626
636
  dict of the parsed json returned by the server
627
637
  """
638
+ utils.warn(
639
+ message=(
640
+ "project.mirror_pull_details() is deprecated and will be removed in a "
641
+ "future major version. Use project.pull_mirror.get() instead."
642
+ ),
643
+ category=DeprecationWarning,
644
+ )
628
645
  path = f"/projects/{self.encoded_id}/mirror/pull"
629
646
  result = self.manager.gitlab.http_get(path, **kwargs)
630
647
  if TYPE_CHECKING:
@@ -1240,6 +1257,65 @@ class ProjectRemoteMirrorManager(
1240
1257
  _update_attrs = RequiredOptional(optional=("enabled", "only_protected_branches"))
1241
1258
 
1242
1259
 
1260
+ class ProjectPullMirror(SaveMixin, RESTObject):
1261
+ _id_attr = None
1262
+
1263
+
1264
+ class ProjectPullMirrorManager(GetWithoutIdMixin, UpdateMixin, RESTManager):
1265
+ _path = "/projects/{project_id}/mirror/pull"
1266
+ _obj_cls = ProjectPullMirror
1267
+ _from_parent_attrs = {"project_id": "id"}
1268
+ _update_attrs = RequiredOptional(optional=("url",))
1269
+
1270
+ def get(self, **kwargs: Any) -> ProjectPullMirror:
1271
+ return cast(ProjectPullMirror, super().get(**kwargs))
1272
+
1273
+ @exc.on_http_error(exc.GitlabCreateError)
1274
+ def create(self, data: Dict[str, Any], **kwargs: Any) -> ProjectPullMirror:
1275
+ """Create a new object.
1276
+
1277
+ Args:
1278
+ data: parameters to send to the server to create the
1279
+ resource
1280
+ **kwargs: Extra options to send to the server (e.g. sudo)
1281
+
1282
+ Returns:
1283
+ A new instance of the managed object class built with
1284
+ the data sent by the server
1285
+
1286
+ Raises:
1287
+ GitlabAuthenticationError: If authentication is not correct
1288
+ GitlabCreateError: If the server cannot perform the request
1289
+ """
1290
+ if TYPE_CHECKING:
1291
+ assert data is not None
1292
+ self._create_attrs.validate_attrs(data=data)
1293
+
1294
+ if TYPE_CHECKING:
1295
+ assert self.path is not None
1296
+ server_data = self.gitlab.http_put(self.path, post_data=data, **kwargs)
1297
+
1298
+ if TYPE_CHECKING:
1299
+ assert not isinstance(server_data, requests.Response)
1300
+ return self._obj_cls(self, server_data)
1301
+
1302
+ @cli.register_custom_action(cls_names="ProjectPullMirrorManager")
1303
+ @exc.on_http_error(exc.GitlabCreateError)
1304
+ def start(self, **kwargs: Any) -> None:
1305
+ """Start the pull mirroring process for the project.
1306
+
1307
+ Args:
1308
+ **kwargs: Extra options to send to the server (e.g. sudo)
1309
+
1310
+ Raises:
1311
+ GitlabAuthenticationError: If authentication is not correct
1312
+ GitlabCreateError: If the server failed to perform the request
1313
+ """
1314
+ if TYPE_CHECKING:
1315
+ assert self.path is not None
1316
+ self.gitlab.http_post(self.path, **kwargs)
1317
+
1318
+
1243
1319
  class ProjectStorage(RefreshMixin, RESTObject):
1244
1320
  pass
1245
1321
 
@@ -146,7 +146,7 @@ class RepositoryMixin(_RestObjectBase):
146
146
  self,
147
147
  sha: str,
148
148
  streamed: Literal[True] = True,
149
- action: Optional[Callable[[bytes], None]] = None,
149
+ action: Optional[Callable[[bytes], Any]] = None,
150
150
  chunk_size: int = 1024,
151
151
  *,
152
152
  iterator: Literal[False] = False,
@@ -273,7 +273,7 @@ class RepositoryMixin(_RestObjectBase):
273
273
  self,
274
274
  sha: Optional[str] = None,
275
275
  streamed: Literal[True] = True,
276
- action: Optional[Callable[[bytes], None]] = None,
276
+ action: Optional[Callable[[bytes], Any]] = None,
277
277
  chunk_size: int = 1024,
278
278
  *,
279
279
  iterator: Literal[False] = False,
@@ -54,7 +54,7 @@ class ProjectSecureFile(ObjectDeleteMixin, RESTObject):
54
54
  def download(
55
55
  self,
56
56
  streamed: Literal[True] = True,
57
- action: Optional[Callable[[bytes], None]] = None,
57
+ action: Optional[Callable[[bytes], Any]] = None,
58
58
  chunk_size: int = 1024,
59
59
  *,
60
60
  iterator: Literal[False] = False,
@@ -66,7 +66,7 @@ class ProjectSecureFile(ObjectDeleteMixin, RESTObject):
66
66
  def download(
67
67
  self,
68
68
  streamed: bool = False,
69
- action: Optional[Callable[[bytes], None]] = None,
69
+ action: Optional[Callable[[bytes], Any]] = None,
70
70
  chunk_size: int = 1024,
71
71
  *,
72
72
  iterator: bool = False,
@@ -61,7 +61,7 @@ class Snippet(UserAgentDetailMixin, SaveMixin, ObjectDeleteMixin, RESTObject):
61
61
  def content(
62
62
  self,
63
63
  streamed: Literal[True] = True,
64
- action: Optional[Callable[[bytes], None]] = None,
64
+ action: Optional[Callable[[bytes], Any]] = None,
65
65
  chunk_size: int = 1024,
66
66
  *,
67
67
  iterator: Literal[False] = False,
@@ -237,7 +237,7 @@ class ProjectSnippet(UserAgentDetailMixin, SaveMixin, ObjectDeleteMixin, RESTObj
237
237
  def content(
238
238
  self,
239
239
  streamed: Literal[True] = True,
240
- action: Optional[Callable[[bytes], None]] = None,
240
+ action: Optional[Callable[[bytes], Any]] = None,
241
241
  chunk_size: int = 1024,
242
242
  *,
243
243
  iterator: Literal[False] = False,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: python-gitlab
3
- Version: 5.4.0
3
+ Version: 5.5.0
4
4
  Summary: The python wrapper for the GitLab REST and GraphQL APIs.
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>
@@ -1,16 +1,16 @@
1
1
  gitlab/__init__.py,sha256=UP73h54550MIXpRt5OCLJJ-oBHIx1iHSdxmGARfhbO4,1440
2
2
  gitlab/__main__.py,sha256=HTesNl0UAU6mPb9EXWkTKMy6Q6pAUxGi3iPnDHTE2uE,68
3
- gitlab/_version.py,sha256=6xIwpGFEjYiKx8Z_Hgds7jGVg68iRAssqFOl3-Mcgb4,249
3
+ gitlab/_version.py,sha256=52PooMOGGDDVuRRsJVDafUi3md-JTWtC3Z-QSk-20tU,249
4
4
  gitlab/base.py,sha256=-4DNPEWtOB1sGmETTivrJVyl-DWtbmWTUIDTHpenF9Y,13810
5
5
  gitlab/cli.py,sha256=d3-LtZuA1Fgon5wZWn4c3E70fTIu4mM4Juyhh3F8EBs,12416
6
6
  gitlab/client.py,sha256=Mx1ANfIOpshgBg5saGReZsNbbK6TZmCg2iJUApAWL5Y,55065
7
7
  gitlab/config.py,sha256=T1DgUXD0-MN2qNszrv-SO5d4uy0FITnNN0vWJgOt2yo,9088
8
8
  gitlab/const.py,sha256=7SgYfngwRSwzpZMhYyT_Xko0KyGhMrAg8DiyX18DsxM,5114
9
9
  gitlab/exceptions.py,sha256=VOQftPzEq5mpVj6vke7z6Xe4S7Yf_rDTab0lNHqf3AY,8390
10
- gitlab/mixins.py,sha256=z543RVakuZI7YtKga-lFx4jcjxAUYcGxaRXj6uMZIFI,37899
10
+ gitlab/mixins.py,sha256=fdRhOve3hq3bYxrG73r4HL97fOhu41kyGyVTK2UPvNg,37897
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=3OngV45Gb4UO2GR-6-kXax1Ghdw6bpyRdUC2cHpyCSw,9027
13
+ gitlab/utils.py,sha256=z1AimZkEP7lsTTJusT2NiyUThUk-HzdMZ5b2IpxvLZo,9026
14
14
  gitlab/_backends/__init__.py,sha256=WalQZRIDzw19FuNxraG7fvck6ddg4cdNd3bi53QKvZM,392
15
15
  gitlab/_backends/graphql.py,sha256=wUEjrtz4KAFIFLc13cTj8D1757yeSeViX-xzoDy90Is,1450
16
16
  gitlab/_backends/protocol.py,sha256=m5qSz1o3i0H4XJCWnqx0wIFilOIU9cKxzFsYxLL6Big,842
@@ -21,7 +21,7 @@ gitlab/v4/objects/__init__.py,sha256=rorXTLL7nVxZtwnqVtQPRRprBQplil_w-lp87HJ3W7Q
21
21
  gitlab/v4/objects/access_requests.py,sha256=pPYwB-b4fvKVdBoBRpzx2ensiMXbQwmBkN0XBh6ScaA,923
22
22
  gitlab/v4/objects/appearance.py,sha256=uMt0bjo_KlxwKHItFzGMY9vXm5e489UG_o0EcFVJE8E,1932
23
23
  gitlab/v4/objects/applications.py,sha256=FB1Se6Xa3CFLJlSeZ7lLoyAwY8cAF4DUDsuc59NGpcs,591
24
- gitlab/v4/objects/artifacts.py,sha256=osS5eeRKeNIHsJmYscaTp5HDWYCTWwphSv8HbAIho8Y,6989
24
+ gitlab/v4/objects/artifacts.py,sha256=YUrW5V6COTH9ZnpCXhDg_jpJ5OGWWPYipMRxCTibIh8,6985
25
25
  gitlab/v4/objects/audit_events.py,sha256=OPhGt3br-pOyqMGUvXKAVuBvEz9_TQttBfOnjytAtJY,1910
26
26
  gitlab/v4/objects/award_emojis.py,sha256=ASgIh4475tf1pq2xBHP2bYgKoQoP6UxgoZUHT65iYPM,5881
27
27
  gitlab/v4/objects/badges.py,sha256=wtL7u7qQ01vwUIpA_9RsztAWsVSNLnPsov9VAYyagLQ,1464
@@ -45,7 +45,7 @@ gitlab/v4/objects/epics.py,sha256=HKLpEL7_K54M6prGjga3qw5VfI2ZGGxBbfz42Oumvr0,41
45
45
  gitlab/v4/objects/events.py,sha256=20yCSlR9XB75AwMzatmAt4VdT9PL2nX0t1p1sAWbrvI,7067
46
46
  gitlab/v4/objects/export_import.py,sha256=XVmrSq_qHwQr3XamFPfISEXnlBd-icJRm2CCa3V2puY,1909
47
47
  gitlab/v4/objects/features.py,sha256=N7T52I2JyNIgD1JejrSr8fNa14ZlAUxrS2VceUekhj0,1973
48
- gitlab/v4/objects/files.py,sha256=Vbz5mdcvmPR7QKvTufWxdnux2BRDG1dwhEPDqh8VQr0,13041
48
+ gitlab/v4/objects/files.py,sha256=j8QuQEfZEgvbdsW_yF9SRQR_yxVQ_vpJGSkhgBColws,13040
49
49
  gitlab/v4/objects/geo_nodes.py,sha256=tD9piU7OIZgbNQRUeLTFPtAJ6PVL_SI6tR_zh6Tm2M8,3686
50
50
  gitlab/v4/objects/group_access_tokens.py,sha256=EijY0sfsp0Gtx_q4JLBeLL3jphx5b_6-nTzKxV272jc,1023
51
51
  gitlab/v4/objects/groups.py,sha256=YxOeaRYUjhu8PicCicVT7Eua04YuyOLAc8J13V7r9Gg,15958
@@ -55,7 +55,7 @@ gitlab/v4/objects/invitations.py,sha256=ya9x7xhL1oSbx-FLJud-lHKmbYQoTplZlAbjsZip
55
55
  gitlab/v4/objects/issues.py,sha256=RHvoE4aJgMAfeWp3md9Ekg29PaiTbPIlDAn99Pg_ap4,10403
56
56
  gitlab/v4/objects/iterations.py,sha256=QsPOg0YB57ShQUdTQwa_wXtNfWAM2c53kWE6y5xjg6E,1561
57
57
  gitlab/v4/objects/job_token_scope.py,sha256=J69VVjtRgnTYQrFHFxOWQv3T2s6XRxb7uz57IAhnsdU,2622
58
- gitlab/v4/objects/jobs.py,sha256=tEaBf_PGxSiJQLe4HWAd3nSTmP40V_kqcjeL5lJ1juU,11535
58
+ gitlab/v4/objects/jobs.py,sha256=NNJtK9UvY5W8XIvTYOuC8E31ColfPVhlTOqyf1veKXw,11532
59
59
  gitlab/v4/objects/keys.py,sha256=IclYGSzcVEZPIhDdIz-p16rvb68FnBTgAf1cWCXWjkY,882
60
60
  gitlab/v4/objects/labels.py,sha256=4o0R9hfhsowLfPT_XGPu74R4o4Q4nOosajmf-s4Cncg,4756
61
61
  gitlab/v4/objects/ldap.py,sha256=adpkdfk7VBjshuh8SpCsc77Pax4QgqCx1N12CuzitDE,1662
@@ -68,25 +68,25 @@ gitlab/v4/objects/namespaces.py,sha256=5_km8RP_OLZoRm6u-p53S2AM5UsHyJ4j65fi5fGIo
68
68
  gitlab/v4/objects/notes.py,sha256=Y0wrSD2pwvzX1RfyzyeXMMBy0_jOsWsaIUpa6CYWprg,8588
69
69
  gitlab/v4/objects/notification_settings.py,sha256=zhltGjuu1HiqdON2v9-uKu7Z6TOOBOgQ3GdWgfEAJ64,2061
70
70
  gitlab/v4/objects/package_protection_rules.py,sha256=OVO9R_ePWjNFKK8LCuycGpCds6Yj6ZFtirZRSlzKa7Q,1129
71
- gitlab/v4/objects/packages.py,sha256=vVQmMSXunJeZxC0mvpUjsg9eatJqLpN0OxLn6nRSjNI,8255
71
+ gitlab/v4/objects/packages.py,sha256=GYkeYQJDzhNW7VcbVrt8-FZw_rICGCEz5Jt4cxlP2W4,8253
72
72
  gitlab/v4/objects/pages.py,sha256=Z9x9Sd21daSLmapkBLoV3bKmxQu-JFtrHgJMBjfNbg8,1868
73
73
  gitlab/v4/objects/personal_access_tokens.py,sha256=vMsAytE5czai3fpyTCyV1sR3cZDZRhvI06u08L8O7mw,1315
74
74
  gitlab/v4/objects/pipelines.py,sha256=nQrzNW6WCTcDCqz_nl8i7YYGpXfRaEVGGpeRdObjeW0,10664
75
75
  gitlab/v4/objects/project_access_tokens.py,sha256=z_BCaBtXC7wzGVN6Ip0H72VwHID8XEBHDddCw0J8hO0,1043
76
- gitlab/v4/objects/projects.py,sha256=X5cznXiJe-mxKeKI6LpMP2XMqbjmBUmqs6P7ZCD81dE,46711
76
+ gitlab/v4/objects/projects.py,sha256=XHGYMJtHBp2a_v4tvtD50WLJ-FalqaJ6x-xwBhk7JR4,49454
77
77
  gitlab/v4/objects/push_rules.py,sha256=0dKMWEzF5h1zATh0_j_SvjQ7HKx9_5M7J9hzDGB66Rc,3041
78
78
  gitlab/v4/objects/registry_protection_repository_rules.py,sha256=iu4ubqfh_sw0BCxRqqvXEUrPXspr8d0z3njQLwTatpo,1153
79
79
  gitlab/v4/objects/registry_protection_rules.py,sha256=bZsUAjoxwQEHOfr4Bxz6FQA2MGHZpWOFz00o99hcfI4,1092
80
80
  gitlab/v4/objects/releases.py,sha256=j4_45oOj2yaA2XZ3fwBcKhFJ6li4vQy_zyr013LKfvY,1972
81
- gitlab/v4/objects/repositories.py,sha256=c3Tj6gbjhIsjrXCooeYZnrGcLAyeKV0ERcd7SzgjriE,13027
81
+ gitlab/v4/objects/repositories.py,sha256=62t5UOMfide9wNok5qWIXbwjV2iLe43ASBmADB31YR8,13025
82
82
  gitlab/v4/objects/resource_groups.py,sha256=fYYnA2YO9CSTzxwImVCVPSiPkIeNpKRrPj7dpzwati4,1427
83
83
  gitlab/v4/objects/reviewers.py,sha256=HTU8hw09fRofvoj5V4kde1PLK3QSe1uY3BVUtxOvJ00,517
84
84
  gitlab/v4/objects/runners.py,sha256=QFYiApMyBWs0rhw1drylutoltI2zdIwDeYP1oFJUGJ4,4917
85
- gitlab/v4/objects/secure_files.py,sha256=c7vZ2Ia3qCC6lJY-Rg5zsLgQ0NIVHQnVV8QNwFwoomM,3341
85
+ gitlab/v4/objects/secure_files.py,sha256=uWe8PU2ytA6ECdDGSMLz2kZk0G7APRhT1n4s6xYo5pI,3339
86
86
  gitlab/v4/objects/service_accounts.py,sha256=r2s33LU9LLgzYtCiUwQEiqEB9o7YuzJRw0aaFXEJK6Q,603
87
87
  gitlab/v4/objects/settings.py,sha256=LTkdyhhU2MTA15EJw2lZeqDKfK_Bg65CV1CchPljrqY,4295
88
88
  gitlab/v4/objects/sidekiq.py,sha256=kIMgglIBJkbA_io9MXwkCEUs8mZPte6sFQYoWH1TXI4,2996
89
- gitlab/v4/objects/snippets.py,sha256=bHGzCPBCVgYYb5X29G3IVjCQgy7Gn87Y5kbHeJOTlps,9755
89
+ gitlab/v4/objects/snippets.py,sha256=LV64KbqnxAJjGmANdSzftij80Oa3B2t1FaCiYWSAf-Y,9753
90
90
  gitlab/v4/objects/statistics.py,sha256=NPN8WpCwFJeWeLcn5zahwAgzpJl-Q6bJyoi5ff8XCRQ,2638
91
91
  gitlab/v4/objects/status_checks.py,sha256=AV73nxwyKLWd5kCpQKB_Q-PBt2_4LeB0nM6Q3ATArm4,1609
92
92
  gitlab/v4/objects/tags.py,sha256=LCvSzI44a1NlrUVi5A_2eOwFSOJjVBSkWe71QdXH_68,1453
@@ -97,10 +97,10 @@ gitlab/v4/objects/triggers.py,sha256=UAERq_C-QdPBbBQPHLh5IfhpkdDeIxdnVGPHfu9Qy5Y
97
97
  gitlab/v4/objects/users.py,sha256=_gGrTwcE17jeoXIPgfFSv54jtF1_9C1R0Y0hhssTvXY,21381
98
98
  gitlab/v4/objects/variables.py,sha256=S0Vz32jEpUbo4J2js8gMPPTVpcy1ge5FYVHLiPz9c-A,2627
99
99
  gitlab/v4/objects/wikis.py,sha256=JtI1cQqZV1_PRfKVlQRMh4LZjdxEfi9T2VuFYv6PrV8,1775
100
- python_gitlab-5.4.0.dist-info/AUTHORS,sha256=Z0P61GJSVnp7iFbRcMezhx3f4zMyPkVmG--TWaRo768,526
101
- python_gitlab-5.4.0.dist-info/COPYING,sha256=2n6rt7r999OuXp8iOqW9we7ORaxWncIbOwN1ILRGR2g,7651
102
- python_gitlab-5.4.0.dist-info/METADATA,sha256=m9b5jCa1hyOliDS_pOjD12zWD5DXsXOdUj0a8ZX3ApA,8478
103
- python_gitlab-5.4.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
104
- python_gitlab-5.4.0.dist-info/entry_points.txt,sha256=nhpKLLP_uQPFByn8UtE9zsvQQwa402t52o_Cw9IFXMo,43
105
- python_gitlab-5.4.0.dist-info/top_level.txt,sha256=MvIaP8p_Oaf4gO_hXmHkX-5y2deHLp1pe6tJR3ukQ6o,7
106
- python_gitlab-5.4.0.dist-info/RECORD,,
100
+ python_gitlab-5.5.0.dist-info/AUTHORS,sha256=Z0P61GJSVnp7iFbRcMezhx3f4zMyPkVmG--TWaRo768,526
101
+ python_gitlab-5.5.0.dist-info/COPYING,sha256=2n6rt7r999OuXp8iOqW9we7ORaxWncIbOwN1ILRGR2g,7651
102
+ python_gitlab-5.5.0.dist-info/METADATA,sha256=tCCFyrBh5YbAhwgHZVC9R-XmWsvA2Sm7sdW9KEyp40o,8478
103
+ python_gitlab-5.5.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
104
+ python_gitlab-5.5.0.dist-info/entry_points.txt,sha256=nhpKLLP_uQPFByn8UtE9zsvQQwa402t52o_Cw9IFXMo,43
105
+ python_gitlab-5.5.0.dist-info/top_level.txt,sha256=MvIaP8p_Oaf4gO_hXmHkX-5y2deHLp1pe6tJR3ukQ6o,7
106
+ python_gitlab-5.5.0.dist-info/RECORD,,