summaryrefslogtreecommitdiff
path: root/gitlab/v4/objects/deployments.py
diff options
context:
space:
mode:
Diffstat (limited to 'gitlab/v4/objects/deployments.py')
-rw-r--r--gitlab/v4/objects/deployments.py30
1 files changed, 0 insertions, 30 deletions
diff --git a/gitlab/v4/objects/deployments.py b/gitlab/v4/objects/deployments.py
deleted file mode 100644
index 11c60d1..0000000
--- a/gitlab/v4/objects/deployments.py
+++ /dev/null
@@ -1,30 +0,0 @@
-from gitlab.base import RequiredOptional, RESTManager, RESTObject
-from gitlab.mixins import CreateMixin, RetrieveMixin, SaveMixin, UpdateMixin
-
-from .merge_requests import ProjectDeploymentMergeRequestManager # noqa: F401
-
-__all__ = [
- "ProjectDeployment",
- "ProjectDeploymentManager",
-]
-
-
-class ProjectDeployment(SaveMixin, RESTObject):
- mergerequests: ProjectDeploymentMergeRequestManager
-
-
-class ProjectDeploymentManager(RetrieveMixin, CreateMixin, UpdateMixin, RESTManager):
- _path = "/projects/%(project_id)s/deployments"
- _obj_cls = ProjectDeployment
- _from_parent_attrs = {"project_id": "id"}
- _list_filters = (
- "order_by",
- "sort",
- "updated_after",
- "updated_before",
- "environment",
- "status",
- )
- _create_attrs = RequiredOptional(
- required=("sha", "ref", "tag", "status", "environment")
- )