airbyte-source-gitlab 4.0.0__py3-none-any.whl → 4.0.2__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.
@@ -3,389 +3,513 @@
3
3
  "type": "object",
4
4
  "properties": {
5
5
  "id": {
6
+ "description": "ID of the project",
6
7
  "type": ["null", "integer"]
7
8
  },
8
9
  "description": {
10
+ "description": "Description of the project",
9
11
  "type": ["null", "string"]
10
12
  },
11
13
  "description_html": {
14
+ "description": "HTML formatted project description",
12
15
  "type": ["null", "string"]
13
16
  },
14
17
  "name": {
18
+ "description": "Name of the project",
15
19
  "type": ["null", "string"]
16
20
  },
17
21
  "name_with_namespace": {
22
+ "description": "Name of the project with namespace",
18
23
  "type": ["null", "string"]
19
24
  },
20
25
  "path": {
26
+ "description": "Path of the project",
21
27
  "type": ["null", "string"]
22
28
  },
23
29
  "path_with_namespace": {
30
+ "description": "Path of the project with namespace",
24
31
  "type": ["null", "string"]
25
32
  },
26
33
  "created_at": {
34
+ "description": "Date and time of project creation",
27
35
  "type": ["null", "string"],
28
36
  "format": "date-time"
29
37
  },
30
38
  "updated_at": {
39
+ "description": "Date and time of last update",
31
40
  "type": ["null", "string"],
32
41
  "format": "date-time"
33
42
  },
34
43
  "default_branch": {
44
+ "description": "Default branch of the project",
35
45
  "type": ["null", "string"]
36
46
  },
37
47
  "tag_list": {
48
+ "description": "List of tags associated with the project",
38
49
  "type": ["null", "array"],
39
50
  "items": {
51
+ "description": "Tag item",
40
52
  "type": ["null", "string"]
41
53
  }
42
54
  },
43
55
  "topics": {
56
+ "description": "Topics associated with the project",
44
57
  "type": ["null", "array"]
45
58
  },
46
59
  "ssh_url_to_repo": {
60
+ "description": "SSH URL to project repository",
47
61
  "type": ["null", "string"]
48
62
  },
49
63
  "http_url_to_repo": {
64
+ "description": "HTTP URL to project repository",
50
65
  "type": ["null", "string"]
51
66
  },
52
67
  "web_url": {
68
+ "description": "URL of the project",
53
69
  "type": ["null", "string"]
54
70
  },
55
71
  "readme_url": {
72
+ "description": "URL for project readme",
56
73
  "type": ["null", "string"]
57
74
  },
58
75
  "avatar_url": {
76
+ "description": "URL for project avatar",
59
77
  "type": ["null", "string"]
60
78
  },
61
79
  "forks_count": {
80
+ "description": "Number of forks for the project",
62
81
  "type": ["null", "integer"]
63
82
  },
64
83
  "star_count": {
84
+ "description": "Number of stars for the project",
65
85
  "type": ["null", "integer"]
66
86
  },
67
87
  "last_activity_at": {
88
+ "description": "Date and time of last activity",
68
89
  "type": ["null", "string"],
69
90
  "format": "date-time"
70
91
  },
71
92
  "namespace": {
93
+ "description": "Namespace details",
72
94
  "type": "object",
73
95
  "properties": {
74
96
  "id": {
97
+ "description": "ID of the namespace",
75
98
  "type": ["null", "integer"]
76
99
  },
77
100
  "name": {
101
+ "description": "Name of the namespace",
78
102
  "type": ["null", "string"]
79
103
  },
80
104
  "path": {
105
+ "description": "Path of the namespace",
81
106
  "type": ["null", "string"]
82
107
  },
83
108
  "kind": {
109
+ "description": "Kind of namespace",
84
110
  "type": ["null", "string"]
85
111
  },
86
112
  "full_path": {
113
+ "description": "Full path of the namespace",
87
114
  "type": ["null", "string"]
88
115
  },
89
116
  "parent_id": {
117
+ "description": "ID of the parent namespace",
90
118
  "type": ["null", "integer"]
91
119
  },
92
120
  "avatar_url": {
121
+ "description": "URL for namespace avatar",
93
122
  "type": ["null", "string"]
94
123
  },
95
124
  "web_url": {
125
+ "description": "Web URL of the namespace",
96
126
  "type": ["null", "string"]
97
127
  }
98
128
  }
99
129
  },
100
130
  "container_registry_image_prefix": {
131
+ "description": "Prefix for container registry images",
101
132
  "type": ["null", "string"]
102
133
  },
103
134
  "_links": {
135
+ "description": "Links related to the project",
104
136
  "type": "object",
105
137
  "properties": {
106
138
  "self": {
139
+ "description": "URL for the project itself",
107
140
  "type": ["null", "string"]
108
141
  },
109
142
  "issues": {
143
+ "description": "URL for project issues",
110
144
  "type": ["null", "string"]
111
145
  },
112
146
  "merge_requests": {
147
+ "description": "URL for project merge requests",
113
148
  "type": ["null", "string"]
114
149
  },
115
150
  "repo_branches": {
151
+ "description": "URL for project repository branches",
116
152
  "type": ["null", "string"]
117
153
  },
118
154
  "labels": {
155
+ "description": "URL for project labels",
119
156
  "type": ["null", "string"]
120
157
  },
121
158
  "events": {
159
+ "description": "URL for events related to the project",
122
160
  "type": ["null", "string"]
123
161
  },
124
162
  "members": {
163
+ "description": "URL for project members",
125
164
  "type": ["null", "string"]
126
165
  },
127
166
  "cluster_agents": {
167
+ "description": "URL for cluster agents",
128
168
  "type": ["null", "string"]
129
169
  }
130
170
  }
131
171
  },
132
172
  "packages_enabled": {
173
+ "description": "Flag indicating if packages are enabled",
133
174
  "type": ["null", "boolean"]
134
175
  },
135
176
  "empty_repo": {
177
+ "description": "Flag indicating if repository is empty",
136
178
  "type": ["null", "boolean"]
137
179
  },
138
180
  "archived": {
181
+ "description": "Flag indicating if project is archived",
139
182
  "type": ["null", "boolean"]
140
183
  },
141
184
  "visibility": {
185
+ "description": "Visibility level of the project",
142
186
  "type": ["null", "string"]
143
187
  },
144
188
  "resolve_outdated_diff_discussions": {
189
+ "description": "Resolve outdated diff discussions",
145
190
  "type": ["null", "boolean"]
146
191
  },
147
192
  "container_registry_enabled": {
193
+ "description": "Flag indicating if container registry is enabled",
148
194
  "type": ["null", "boolean"]
149
195
  },
150
196
  "container_expiration_policy": {
197
+ "description": "Container expiration policy details",
151
198
  "type": ["null", "object"],
152
199
  "properties": {
153
200
  "cadence": {
201
+ "description": "Expiration cadence",
154
202
  "type": ["null", "string"]
155
203
  },
156
204
  "enabled": {
205
+ "description": "Flag indicating if expiration policy is enabled",
157
206
  "type": ["null", "boolean"]
158
207
  },
159
208
  "keep_n": {
209
+ "description": "Number of containers to keep",
160
210
  "type": ["null", "integer"]
161
211
  },
162
212
  "older_than": {
213
+ "description": "Age threshold for expiration",
163
214
  "type": ["null", "string"]
164
215
  },
165
216
  "name_regex": {
217
+ "description": "Regex for container name",
166
218
  "type": ["null", "string"]
167
219
  },
168
220
  "name_regex_keep": {
221
+ "description": "Regex for container name to keep",
169
222
  "type": ["null", "string"]
170
223
  },
171
224
  "next_run_at": {
225
+ "description": "Next scheduled run for expiration policy",
172
226
  "type": ["null", "string"],
173
227
  "format": "date-time"
174
228
  }
175
229
  }
176
230
  },
177
231
  "issues_enabled": {
232
+ "description": "Flag indicating if issues are enabled",
178
233
  "type": ["null", "boolean"]
179
234
  },
180
235
  "merge_requests_enabled": {
236
+ "description": "Flag indicating if merge requests are enabled",
181
237
  "type": ["null", "boolean"]
182
238
  },
183
239
  "wiki_enabled": {
240
+ "description": "Flag indicating if wiki is enabled",
184
241
  "type": ["null", "boolean"]
185
242
  },
186
243
  "jobs_enabled": {
244
+ "description": "Flag indicating if jobs are enabled",
187
245
  "type": ["null", "boolean"]
188
246
  },
189
247
  "snippets_enabled": {
248
+ "description": "Flag indicating if snippets are enabled",
190
249
  "type": ["null", "boolean"]
191
250
  },
192
251
  "service_desk_enabled": {
252
+ "description": "Flag indicating if service desk is enabled",
193
253
  "type": ["null", "boolean"]
194
254
  },
195
255
  "service_desk_address": {
256
+ "description": "Address for service desk",
196
257
  "type": ["null", "string"]
197
258
  },
198
259
  "can_create_merge_request_in": {
260
+ "description": "Locations where merge requests can be created",
199
261
  "type": ["null", "boolean"]
200
262
  },
201
263
  "issues_access_level": {
264
+ "description": "Access level for issues",
202
265
  "type": ["null", "string"]
203
266
  },
204
267
  "repository_access_level": {
268
+ "description": "Access level for repository",
205
269
  "type": ["null", "string"]
206
270
  },
207
271
  "merge_requests_access_level": {
272
+ "description": "Access level for merge requests",
208
273
  "type": ["null", "string"]
209
274
  },
210
275
  "forking_access_level": {
276
+ "description": "Access level for forking projects",
211
277
  "type": ["null", "string"]
212
278
  },
213
279
  "wiki_access_level": {
280
+ "description": "Access level for wiki",
214
281
  "type": ["null", "string"]
215
282
  },
216
283
  "builds_access_level": {
284
+ "description": "Access level for builds",
217
285
  "type": ["null", "string"]
218
286
  },
219
287
  "snippets_access_level": {
288
+ "description": "Access level for snippets",
220
289
  "type": ["null", "string"]
221
290
  },
222
291
  "pages_access_level": {
292
+ "description": "Access level for project pages",
223
293
  "type": ["null", "string"]
224
294
  },
225
295
  "operations_access_level": {
296
+ "description": "Access level for operations",
226
297
  "type": ["null", "string"]
227
298
  },
228
299
  "analytics_access_level": {
300
+ "description": "Access level for analytics",
229
301
  "type": ["null", "string"]
230
302
  },
231
303
  "emails_disabled": {
304
+ "description": "Flag indicating if emails are disabled",
232
305
  "type": ["null", "boolean"]
233
306
  },
234
307
  "shared_runners_enabled": {
308
+ "description": "Flag indicating if shared runners are enabled",
235
309
  "type": ["null", "boolean"]
236
310
  },
237
311
  "lfs_enabled": {
312
+ "description": "Flag indicating if Git LFS is enabled",
238
313
  "type": ["null", "boolean"]
239
314
  },
240
315
  "creator_id": {
316
+ "description": "ID of the project creator",
241
317
  "type": ["null", "integer"]
242
318
  },
243
319
  "import_status": {
320
+ "description": "Status of project import",
244
321
  "type": ["null", "string"]
245
322
  },
246
323
  "import_error": {
324
+ "description": "Error message if import failed",
247
325
  "type": ["null", "string", "boolean"]
248
326
  },
249
327
  "open_issues_count": {
328
+ "description": "Count of open issues",
250
329
  "type": ["null", "integer"]
251
330
  },
252
331
  "runners_token": {
332
+ "description": "Token for runners",
253
333
  "type": ["null", "string"]
254
334
  },
255
335
  "ci_default_git_depth": {
336
+ "description": "Default git depth for CI",
256
337
  "type": ["null", "integer"]
257
338
  },
258
339
  "ci_forward_deployment_enabled": {
340
+ "description": "Flag for forward deployment enabled in CI",
259
341
  "type": ["null", "boolean"]
260
342
  },
261
343
  "public_jobs": {
344
+ "description": "Flag indicating if jobs are public",
262
345
  "type": ["null", "boolean"]
263
346
  },
264
347
  "build_git_strategy": {
348
+ "description": "Git strategy for build",
265
349
  "type": ["null", "string"]
266
350
  },
267
351
  "build_timeout": {
352
+ "description": "Timeout for build",
268
353
  "type": ["null", "integer"]
269
354
  },
270
355
  "auto_cancel_pending_pipelines": {
356
+ "description": "Automatically cancel pending pipelines",
271
357
  "type": ["null", "string"]
272
358
  },
273
359
  "build_coverage_regex": {
360
+ "description": "Regex for build coverage",
274
361
  "type": ["null", "string"]
275
362
  },
276
363
  "ci_config_path": {
364
+ "description": "Path for CI configuration",
277
365
  "type": ["null", "string"]
278
366
  },
279
367
  "shared_with_groups": {
368
+ "description": "List of groups with which project is shared",
280
369
  "type": ["null", "array"]
281
370
  },
282
371
  "only_allow_merge_if_pipeline_succeeds": {
372
+ "description": "Only allow merge if pipeline succeeds",
283
373
  "type": ["null", "boolean"]
284
374
  },
285
375
  "allow_merge_on_skipped_pipeline": {
376
+ "description": "Allow merge on skipped pipeline",
286
377
  "type": ["null", "boolean"]
287
378
  },
288
379
  "restrict_user_defined_variables": {
380
+ "description": "Restrict user-defined variables",
289
381
  "type": ["null", "boolean"]
290
382
  },
291
383
  "request_access_enabled": {
384
+ "description": "Flag indicating if request access is enabled",
292
385
  "type": ["null", "boolean"]
293
386
  },
294
387
  "only_allow_merge_if_all_discussions_are_resolved": {
388
+ "description": "Only allow merge if all discussions are resolved",
295
389
  "type": ["null", "boolean"]
296
390
  },
297
391
  "remove_source_branch_after_merge": {
392
+ "description": "Remove source branch after merge",
298
393
  "type": ["null", "boolean"]
299
394
  },
300
395
  "printing_merge_request_link_enabled": {
396
+ "description": "Enable printing merge request link",
301
397
  "type": ["null", "boolean"]
302
398
  },
303
399
  "merge_method": {
400
+ "description": "Method used for merges",
304
401
  "type": ["null", "string"]
305
402
  },
306
403
  "suggestion_commit_message": {
404
+ "description": "Commit message suggestion",
307
405
  "type": ["null", "string"]
308
406
  },
309
407
  "statistics": {
408
+ "description": "Project statistics",
310
409
  "type": "object",
311
410
  "properties": {
312
411
  "commit_count": {
412
+ "description": "Number of commits",
313
413
  "type": ["null", "integer"]
314
414
  },
315
415
  "storage_size": {
416
+ "description": "Total storage size",
316
417
  "type": ["null", "integer"]
317
418
  },
318
419
  "repository_size": {
420
+ "description": "Size of repository",
319
421
  "type": ["null", "integer"]
320
422
  },
321
423
  "wiki_size": {
424
+ "description": "Size of wiki",
322
425
  "type": ["null", "integer"]
323
426
  },
324
427
  "lfs_objects_size": {
428
+ "description": "Size of LFS objects",
325
429
  "type": ["null", "integer"]
326
430
  },
327
431
  "job_artifacts_size": {
432
+ "description": "Size of job artifacts",
328
433
  "type": ["null", "integer"]
329
434
  },
330
435
  "snippets_size": {
436
+ "description": "Size of snippets",
331
437
  "type": ["null", "integer"]
332
438
  },
333
439
  "packages_size": {
440
+ "description": "Size of packages",
334
441
  "type": ["null", "integer"]
335
442
  },
336
443
  "container_registry_size": {
444
+ "description": "Size of container registry",
337
445
  "type": ["null", "integer"]
338
446
  },
339
447
  "pipeline_artifacts_size": {
448
+ "description": "Size of pipeline artifacts",
340
449
  "type": ["null", "integer"]
341
450
  },
342
451
  "uploads_size": {
452
+ "description": "Size of uploads",
343
453
  "type": ["null", "integer"]
344
454
  }
345
455
  }
346
456
  },
347
457
  "auto_devops_enabled": {
458
+ "description": "Flag indicating if Auto DevOps is enabled",
348
459
  "type": ["null", "boolean"]
349
460
  },
350
461
  "auto_devops_deploy_strategy": {
462
+ "description": "Auto DevOps deployment strategy",
351
463
  "type": ["null", "string"]
352
464
  },
353
465
  "autoclose_referenced_issues": {
466
+ "description": "Automatically close referenced issues",
354
467
  "type": ["null", "boolean"]
355
468
  },
356
469
  "external_authorization_classification_label": {
470
+ "description": "Label for external authorization classification",
357
471
  "type": ["null", "string"]
358
472
  },
359
473
  "requirements_enabled": {
474
+ "description": "Flag indicating if requirements are enabled",
360
475
  "type": ["null", "boolean"]
361
476
  },
362
477
  "security_and_compliance_enabled": {
478
+ "description": "Flag indicating if security and compliance are enabled",
363
479
  "type": ["null", "boolean"]
364
480
  },
365
481
  "compliance_frameworks": {
482
+ "description": "Compliance frameworks associated with the project",
366
483
  "type": ["null", "array"]
367
484
  },
368
485
  "permissions": {
486
+ "description": "Permissions for project access",
369
487
  "type": "object",
370
488
  "properties": {
371
489
  "project_access": {
490
+ "description": "Project access level",
372
491
  "type": ["null", "object"],
373
492
  "properties": {
374
493
  "access_level": {
494
+ "description": "Access level for project",
375
495
  "type": ["null", "integer"]
376
496
  },
377
497
  "notification_level": {
498
+ "description": "Notification level for project",
378
499
  "type": ["null", "integer"]
379
500
  }
380
501
  }
381
502
  },
382
503
  "group_access": {
504
+ "description": "Group access level",
383
505
  "type": ["null", "object"],
384
506
  "properties": {
385
507
  "access_level": {
508
+ "description": "Access level for groups",
386
509
  "type": ["null", "integer"]
387
510
  },
388
511
  "notification_level": {
512
+ "description": "Notification level for groups",
389
513
  "type": ["null", "integer"]
390
514
  }
391
515
  }
@@ -393,122 +517,161 @@
393
517
  }
394
518
  },
395
519
  "feature_flags_access_level": {
520
+ "description": "Access level for feature flags",
396
521
  "type": ["null", "string"]
397
522
  },
398
523
  "group_runners_enabled": {
524
+ "description": "Flag indicating if group runners are enabled",
399
525
  "type": ["null", "boolean"]
400
526
  },
401
527
  "enforce_auth_checks_on_uploads": {
528
+ "description": "Enforce authentication checks on uploads",
402
529
  "type": ["null", "boolean"]
403
530
  },
404
531
  "monitor_access_level": {
532
+ "description": "Access level for monitoring tools",
405
533
  "type": ["null", "string"]
406
534
  },
407
535
  "container_registry_access_level": {
536
+ "description": "Access level for container registry",
408
537
  "type": ["null", "string"]
409
538
  },
410
539
  "import_type": {
540
+ "description": "Type of project import",
411
541
  "type": ["null", "string"]
412
542
  },
413
543
  "ci_job_token_scope_enabled": {
544
+ "description": "Enable job token scope in CI",
414
545
  "type": ["null", "boolean"]
415
546
  },
416
547
  "requirements_access_level": {
548
+ "description": "Access level for requirements",
417
549
  "type": ["null", "string"]
418
550
  },
419
551
  "releases_access_level": {
552
+ "description": "Access level for project releases",
420
553
  "type": ["null", "string"]
421
554
  },
422
555
  "runner_token_expiration_interval": {
556
+ "description": "Token expiration interval for runners",
423
557
  "type": ["null", "string"]
424
558
  },
425
559
  "squash_option": {
560
+ "description": "Squash option for merges",
426
561
  "type": ["null", "string"]
427
562
  },
428
563
  "squash_commit_template": {
564
+ "description": "Template for squash commits",
429
565
  "type": ["null", "string"]
430
566
  },
431
567
  "issue_branch_template": {
568
+ "description": "Template for issue branches",
432
569
  "type": ["null", "string"]
433
570
  },
434
571
  "keep_latest_artifact": {
572
+ "description": "Keep latest artifact",
435
573
  "type": ["null", "boolean"]
436
574
  },
437
575
  "import_url": {
576
+ "description": "URL for project import",
438
577
  "type": ["null", "string"]
439
578
  },
440
579
  "ci_separated_caches": {
580
+ "description": "Use separated caches in CI",
441
581
  "type": ["null", "boolean"]
442
582
  },
443
583
  "security_and_compliance_access_level": {
584
+ "description": "Access level for security and compliance",
444
585
  "type": ["null", "string"]
445
586
  },
446
587
  "infrastructure_access_level": {
588
+ "description": "Access level for infrastructure settings",
447
589
  "type": ["null", "string"]
448
590
  },
449
591
  "merge_commit_template": {
592
+ "description": "Template for merge commits",
450
593
  "type": ["null", "string"]
451
594
  },
452
595
  "ci_allow_fork_pipelines_to_run_in_parent_project": {
596
+ "description": "Allow fork pipelines to run in parent project",
453
597
  "type": ["null", "boolean"]
454
598
  },
455
599
  "environments_access_level": {
600
+ "description": "Access level for environments",
456
601
  "type": ["null", "string"]
457
602
  },
458
603
  "approvals_before_merge": {
604
+ "description": "Number of approvals required before merge",
459
605
  "type": ["null", "integer"]
460
606
  },
461
607
  "marked_for_deletion_at": {
608
+ "description": "Date marked for deletion",
462
609
  "type": ["null", "string"],
463
610
  "format": "date"
464
611
  },
465
612
  "merge_trains_enabled": {
613
+ "description": "Flag indicating if merge trains are enabled",
466
614
  "type": ["null", "boolean"]
467
615
  },
468
616
  "mirror": {
617
+ "description": "Flag indicating if project is mirrored",
469
618
  "type": ["null", "boolean"]
470
619
  },
471
620
  "issues_template": {
621
+ "description": "Template for issues",
472
622
  "type": ["null", "string"]
473
623
  },
474
624
  "merge_pipelines_enabled": {
625
+ "description": "Flag indicating if merge pipelines are enabled",
475
626
  "type": ["null", "boolean"]
476
627
  },
477
628
  "merge_requests_template": {
629
+ "description": "Template for merge requests",
478
630
  "type": ["null", "string"]
479
631
  },
480
632
  "allow_pipeline_trigger_approve_deployment": {
633
+ "description": "Allow pipeline trigger to approve deployment",
481
634
  "type": ["null", "boolean"]
482
635
  },
483
636
  "marked_for_deletion_on": {
637
+ "description": "Date marked for deletion",
484
638
  "type": ["null", "string"],
485
639
  "format": "date"
486
640
  },
487
641
  "ci_forward_deployment_rollback_allowed": {
642
+ "description": "Allow rollback in forward deployment CI",
488
643
  "type": ["null", "boolean"]
489
644
  },
490
645
  "emails_enabled": {
646
+ "description": "Flag indicating if emails are enabled",
491
647
  "type": ["null", "boolean"]
492
648
  },
493
649
  "model_experiments_access_level": {
650
+ "description": "Access level for model experiments",
494
651
  "type": ["null", "string"]
495
652
  },
496
653
  "merge_trains_skip_train_allowed": {
654
+ "description": "Allow skipping merge trains",
497
655
  "type": ["null", "boolean"]
498
656
  },
499
657
  "code_suggestions": {
658
+ "description": "Enable code suggestions",
500
659
  "type": ["null", "boolean"]
501
660
  },
502
661
  "model_registry_access_level": {
662
+ "description": "Access level for model registry",
503
663
  "type": ["null", "string"]
504
664
  },
505
665
  "ci_restrict_pipeline_cancellation_role": {
666
+ "description": "Role allowed to restrict pipeline cancellation in CI",
506
667
  "type": ["null", "string"]
507
668
  },
508
669
  "repository_object_format": {
670
+ "description": "Format of repository object",
509
671
  "type": ["null", "string"]
510
672
  },
511
673
  "warn_about_potentially_unwanted_characters": {
674
+ "description": "Warn about potentially unwanted characters",
512
675
  "type": ["null", "boolean"]
513
676
  }
514
677
  }