Skip to content

Commit 78ff4d2

Browse files
feat(webhosting): add custom domain to hosting (#1167)
Co-authored-by: Laure-di <[email protected]>
1 parent 7033567 commit 78ff4d2

File tree

10 files changed

+2078
-296
lines changed

10 files changed

+2078
-296
lines changed

scaleway-async/scaleway_async/webhosting/v1/__init__.py

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# This file was automatically generated. DO NOT EDIT.
22
# If you have any remark or suggestion do not hesitate to open an issue.
3+
from .types import BackupItemType
4+
from .types import BackupStatus
5+
from .content import BACKUP_TRANSIENT_STATUSES
36
from .types import DnsRecordStatus
47
from .types import DnsRecordType
58
from .types import DnsRecordsStatus
@@ -13,6 +16,7 @@
1316
from .types import DomainZoneOwner
1417
from .types import HostingStatus
1518
from .content import HOSTING_TRANSIENT_STATUSES
19+
from .types import ListBackupsRequestOrderBy
1620
from .types import ListDatabaseUsersRequestOrderBy
1721
from .types import ListDatabasesRequestOrderBy
1822
from .types import ListFtpAccountsRequestOrderBy
@@ -29,6 +33,7 @@
2933
from .types import HostingDomainCustomDomain
3034
from .types import OfferOption
3135
from .types import PlatformControlPanel
36+
from .types import BackupItem
3237
from .types import HostingDomain
3338
from .types import CreateDatabaseRequestUser
3439
from .types import CreateHostingRequestDomainConfiguration
@@ -39,6 +44,8 @@
3944
from .types import HostingUser
4045
from .types import Offer
4146
from .types import Platform
47+
from .types import BackupItemGroup
48+
from .types import Backup
4249
from .types import ControlPanel
4350
from .types import DatabaseUser
4451
from .types import Database
@@ -47,6 +54,11 @@
4754
from .types import MailAccount
4855
from .types import Website
4956
from .types import DomainAvailability
57+
from .types import BackupApiGetBackupRequest
58+
from .types import BackupApiListBackupItemsRequest
59+
from .types import BackupApiListBackupsRequest
60+
from .types import BackupApiRestoreBackupItemsRequest
61+
from .types import BackupApiRestoreBackupRequest
5062
from .types import CheckUserOwnsDomainResponse
5163
from .types import ControlPanelApiListControlPanelsRequest
5264
from .types import DatabaseApiAssignDatabaseUserRequest
@@ -72,14 +84,18 @@
7284
from .types import FtpAccountApiListFtpAccountsRequest
7385
from .types import FtpAccountApiRemoveFtpAccountRequest
7486
from .types import Hosting
87+
from .types import HostingApiAddCustomDomainRequest
7588
from .types import HostingApiCreateHostingRequest
7689
from .types import HostingApiCreateSessionRequest
7790
from .types import HostingApiDeleteHostingRequest
7891
from .types import HostingApiGetHostingRequest
7992
from .types import HostingApiGetResourceSummaryRequest
8093
from .types import HostingApiListHostingsRequest
94+
from .types import HostingApiRemoveCustomDomainRequest
8195
from .types import HostingApiResetHostingPasswordRequest
8296
from .types import HostingApiUpdateHostingRequest
97+
from .types import ListBackupItemsResponse
98+
from .types import ListBackupsResponse
8399
from .types import ListControlPanelsResponse
84100
from .types import ListDatabaseUsersResponse
85101
from .types import ListDatabasesResponse
@@ -95,9 +111,12 @@
95111
from .types import OfferApiListOffersRequest
96112
from .types import ResetHostingPasswordResponse
97113
from .types import ResourceSummary
114+
from .types import RestoreBackupItemsResponse
115+
from .types import RestoreBackupResponse
98116
from .types import SearchDomainsResponse
99117
from .types import Session
100118
from .types import WebsiteApiListWebsitesRequest
119+
from .api import WebhostingV1BackupAPI
101120
from .api import WebhostingV1ControlPanelAPI
102121
from .api import WebhostingV1DatabaseAPI
103122
from .api import WebhostingV1DnsAPI
@@ -108,6 +127,9 @@
108127
from .api import WebhostingV1WebsiteAPI
109128

110129
__all__ = [
130+
"BackupItemType",
131+
"BackupStatus",
132+
"BACKUP_TRANSIENT_STATUSES",
111133
"DnsRecordStatus",
112134
"DnsRecordType",
113135
"DnsRecordsStatus",
@@ -121,6 +143,7 @@
121143
"DomainZoneOwner",
122144
"HostingStatus",
123145
"HOSTING_TRANSIENT_STATUSES",
146+
"ListBackupsRequestOrderBy",
124147
"ListDatabaseUsersRequestOrderBy",
125148
"ListDatabasesRequestOrderBy",
126149
"ListFtpAccountsRequestOrderBy",
@@ -137,6 +160,7 @@
137160
"HostingDomainCustomDomain",
138161
"OfferOption",
139162
"PlatformControlPanel",
163+
"BackupItem",
140164
"HostingDomain",
141165
"CreateDatabaseRequestUser",
142166
"CreateHostingRequestDomainConfiguration",
@@ -147,6 +171,8 @@
147171
"HostingUser",
148172
"Offer",
149173
"Platform",
174+
"BackupItemGroup",
175+
"Backup",
150176
"ControlPanel",
151177
"DatabaseUser",
152178
"Database",
@@ -155,6 +181,11 @@
155181
"MailAccount",
156182
"Website",
157183
"DomainAvailability",
184+
"BackupApiGetBackupRequest",
185+
"BackupApiListBackupItemsRequest",
186+
"BackupApiListBackupsRequest",
187+
"BackupApiRestoreBackupItemsRequest",
188+
"BackupApiRestoreBackupRequest",
158189
"CheckUserOwnsDomainResponse",
159190
"ControlPanelApiListControlPanelsRequest",
160191
"DatabaseApiAssignDatabaseUserRequest",
@@ -180,14 +211,18 @@
180211
"FtpAccountApiListFtpAccountsRequest",
181212
"FtpAccountApiRemoveFtpAccountRequest",
182213
"Hosting",
214+
"HostingApiAddCustomDomainRequest",
183215
"HostingApiCreateHostingRequest",
184216
"HostingApiCreateSessionRequest",
185217
"HostingApiDeleteHostingRequest",
186218
"HostingApiGetHostingRequest",
187219
"HostingApiGetResourceSummaryRequest",
188220
"HostingApiListHostingsRequest",
221+
"HostingApiRemoveCustomDomainRequest",
189222
"HostingApiResetHostingPasswordRequest",
190223
"HostingApiUpdateHostingRequest",
224+
"ListBackupItemsResponse",
225+
"ListBackupsResponse",
191226
"ListControlPanelsResponse",
192227
"ListDatabaseUsersResponse",
193228
"ListDatabasesResponse",
@@ -203,9 +238,12 @@
203238
"OfferApiListOffersRequest",
204239
"ResetHostingPasswordResponse",
205240
"ResourceSummary",
241+
"RestoreBackupItemsResponse",
242+
"RestoreBackupResponse",
206243
"SearchDomainsResponse",
207244
"Session",
208245
"WebsiteApiListWebsitesRequest",
246+
"WebhostingV1BackupAPI",
209247
"WebhostingV1ControlPanelAPI",
210248
"WebhostingV1DatabaseAPI",
211249
"WebhostingV1DnsAPI",

0 commit comments

Comments
 (0)