summaryrefslogtreecommitdiff
path: root/gitlab/v3/objects.py
diff options
context:
space:
mode:
Diffstat (limited to 'gitlab/v3/objects.py')
-rw-r--r--gitlab/v3/objects.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/gitlab/v3/objects.py b/gitlab/v3/objects.py
index 9ea597c..0db9dfd 100644
--- a/gitlab/v3/objects.py
+++ b/gitlab/v3/objects.py
@@ -1496,18 +1496,6 @@ class ProjectFileManager(BaseManager):
obj_cls = ProjectFile
-class ProjectPipelineSchedule(GitlabObject):
- _url = '/projects/%(project_id)s/pipeline_schedules'
- _create_url = '/projects/%(project_id)s/pipeline_schedules'
-
- requiredUrlAttrs = ['project_id']
- requiredCreateAttrs = ['description', 'ref', 'cron']
-
-
-class ProjectPipelineSchedulesManager(BaseManager):
- obj_cls = ProjectPipelineSchedule
-
-
class ProjectPipeline(GitlabObject):
_url = '/projects/%(project_id)s/pipelines'
_create_url = '/projects/%(project_id)s/pipeline'
@@ -1815,7 +1803,6 @@ class Project(GitlabObject):
('notificationsettings', 'ProjectNotificationSettingsManager',
[('project_id', 'id')]),
('pipelines', 'ProjectPipelineManager', [('project_id', 'id')]),
- ('pipeline_schedules', 'ProjectPipelineSchedulesManager', [('project_id', 'id')]),
('runners', 'ProjectRunnerManager', [('project_id', 'id')]),
('services', 'ProjectServiceManager', [('project_id', 'id')]),
('snippets', 'ProjectSnippetManager', [('project_id', 'id')]),