diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2018-02-05 15:49:17 +0100 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2018-02-05 15:49:38 +0100 |
commit | 0a06779f563be22d5a654eaf1423494e31c6a35d (patch) | |
tree | ca6a9230c41ea9cfbb16fffc097118a81a7b227c /gitlab/v3/objects.py | |
parent | 39a04297d2661f82980f1b1921a3aba1ab1feb32 (diff) | |
download | gitlab-0a06779f563be22d5a654eaf1423494e31c6a35d.tar.gz |
Remove pipeline schedules from v3 (not supported)
Diffstat (limited to 'gitlab/v3/objects.py')
-rw-r--r-- | gitlab/v3/objects.py | 13 |
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')]), |