diff options
Diffstat (limited to 'docs/gl_objects/deployments.rst')
-rw-r--r-- | docs/gl_objects/deployments.rst | 21 |
1 files changed, 17 insertions, 4 deletions
diff --git a/docs/gl_objects/deployments.rst b/docs/gl_objects/deployments.rst index 1a679da..37e9468 100644 --- a/docs/gl_objects/deployments.rst +++ b/docs/gl_objects/deployments.rst @@ -2,10 +2,23 @@ Deployments ########### -Use :class:`~gitlab.objects.ProjectDeployment` objects to manipulate project -deployments. The :attr:`gitlab.Gitlab.project_deployments`, and -:attr:`Project.deployments <gitlab.objects.Project.deployments>` manager -objects provide helper functions. +Reference +--------- + +* v4 API: + + + :class:`gitlab.v4.objects.ProjectDeployment` + + :class:`gitlab.v4.objects.ProjectDeploymentManager` + + :attr:`gitlab.v4.objects.Project.deployments` + +* v3 API: + + + :class:`gitlab.v3.objects.ProjectDeployment` + + :class:`gitlab.v3.objects.ProjectDeploymentManager` + + :attr:`gitlab.v3.objects.Project.deployments` + + :attr:`gitlab.Gitlab.project_deployments` + +* GitLab API: https://docs.gitlab.com/ce/api/deployments.html Examples -------- |