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.py13
1 files changed, 11 insertions, 2 deletions
diff --git a/gitlab/v4/objects/deployments.py b/gitlab/v4/objects/deployments.py
index dea8caf..8cf0fd9 100644
--- a/gitlab/v4/objects/deployments.py
+++ b/gitlab/v4/objects/deployments.py
@@ -1,6 +1,8 @@
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",
@@ -8,14 +10,21 @@ __all__ = [
class ProjectDeployment(SaveMixin, RESTObject):
- pass
+ _managers = (("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")
+ _list_filters = (
+ "order_by",
+ "sort",
+ "updated_after",
+ "updated_before",
+ "environment",
+ "status",
+ )
_create_attrs = RequiredOptional(
required=("sha", "ref", "tag", "status", "environment")
)