blob: d6b39c7205581a8ea38b0578d2baba8d12d41cb3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
#############
Pages domains
#############
Admin
=====
References
----------
* v4 API:
+ :class:`gitlab.v4.objects.PagesDomain`
+ :class:`gitlab.v4.objects.PagesDomainManager`
+ :attr:`gitlab.Gitlab.pagesdomains`
* GitLab API: https://docs.gitlab.com/ce/api/pages_domains.html#list-all-pages-domains
Examples
--------
List all the existing domains (admin only)::
domains = gl.pagesdomains.list()
Project pages domain
====================
References
----------
* v4 API:
+ :class:`gitlab.v4.objects.ProjectPagesDomain`
+ :class:`gitlab.v4.objects.ProjectPagesDomainManager`
+ :attr:`gitlab.v4.objects.Project.pagesdomains`
* GitLab API: https://docs.gitlab.com/ce/api/pages_domains.html#list-pages-domains
Examples
--------
List domains for a project::
domains = project.pagesdomains.list()
Get a single domain::
domain = project.pagesdomains.get('d1.example.com')
Create a new domain::
domain = project.pagesdomains.create({'domain': 'd2.example.com})
Update an existing domain::
domain.certificate = open('d2.crt').read()
domain.key = open('d2.key').read()
domain.save()
Delete an existing domain::
domain.delete
# or
project.pagesdomains.delete('d2.example.com')
|