|
1 | 1 | # This file was automatically generated. DO NOT EDIT. |
2 | 2 | # 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 |
3 | 6 | from .types import DnsRecordStatus |
4 | 7 | from .types import DnsRecordType |
5 | 8 | from .types import DnsRecordsStatus |
|
13 | 16 | from .types import DomainZoneOwner |
14 | 17 | from .types import HostingStatus |
15 | 18 | from .content import HOSTING_TRANSIENT_STATUSES |
| 19 | +from .types import ListBackupsRequestOrderBy |
16 | 20 | from .types import ListDatabaseUsersRequestOrderBy |
17 | 21 | from .types import ListDatabasesRequestOrderBy |
18 | 22 | from .types import ListFtpAccountsRequestOrderBy |
|
29 | 33 | from .types import HostingDomainCustomDomain |
30 | 34 | from .types import OfferOption |
31 | 35 | from .types import PlatformControlPanel |
| 36 | +from .types import BackupItem |
32 | 37 | from .types import HostingDomain |
33 | 38 | from .types import CreateDatabaseRequestUser |
34 | 39 | from .types import CreateHostingRequestDomainConfiguration |
|
39 | 44 | from .types import HostingUser |
40 | 45 | from .types import Offer |
41 | 46 | from .types import Platform |
| 47 | +from .types import BackupItemGroup |
| 48 | +from .types import Backup |
42 | 49 | from .types import ControlPanel |
43 | 50 | from .types import DatabaseUser |
44 | 51 | from .types import Database |
|
47 | 54 | from .types import MailAccount |
48 | 55 | from .types import Website |
49 | 56 | 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 |
50 | 62 | from .types import CheckUserOwnsDomainResponse |
51 | 63 | from .types import ControlPanelApiListControlPanelsRequest |
52 | 64 | from .types import DatabaseApiAssignDatabaseUserRequest |
|
72 | 84 | from .types import FtpAccountApiListFtpAccountsRequest |
73 | 85 | from .types import FtpAccountApiRemoveFtpAccountRequest |
74 | 86 | from .types import Hosting |
| 87 | +from .types import HostingApiAddCustomDomainRequest |
75 | 88 | from .types import HostingApiCreateHostingRequest |
76 | 89 | from .types import HostingApiCreateSessionRequest |
77 | 90 | from .types import HostingApiDeleteHostingRequest |
78 | 91 | from .types import HostingApiGetHostingRequest |
79 | 92 | from .types import HostingApiGetResourceSummaryRequest |
80 | 93 | from .types import HostingApiListHostingsRequest |
| 94 | +from .types import HostingApiRemoveCustomDomainRequest |
81 | 95 | from .types import HostingApiResetHostingPasswordRequest |
82 | 96 | from .types import HostingApiUpdateHostingRequest |
| 97 | +from .types import ListBackupItemsResponse |
| 98 | +from .types import ListBackupsResponse |
83 | 99 | from .types import ListControlPanelsResponse |
84 | 100 | from .types import ListDatabaseUsersResponse |
85 | 101 | from .types import ListDatabasesResponse |
|
95 | 111 | from .types import OfferApiListOffersRequest |
96 | 112 | from .types import ResetHostingPasswordResponse |
97 | 113 | from .types import ResourceSummary |
| 114 | +from .types import RestoreBackupItemsResponse |
| 115 | +from .types import RestoreBackupResponse |
98 | 116 | from .types import SearchDomainsResponse |
99 | 117 | from .types import Session |
100 | 118 | from .types import WebsiteApiListWebsitesRequest |
| 119 | +from .api import WebhostingV1BackupAPI |
101 | 120 | from .api import WebhostingV1ControlPanelAPI |
102 | 121 | from .api import WebhostingV1DatabaseAPI |
103 | 122 | from .api import WebhostingV1DnsAPI |
|
108 | 127 | from .api import WebhostingV1WebsiteAPI |
109 | 128 |
|
110 | 129 | __all__ = [ |
| 130 | + "BackupItemType", |
| 131 | + "BackupStatus", |
| 132 | + "BACKUP_TRANSIENT_STATUSES", |
111 | 133 | "DnsRecordStatus", |
112 | 134 | "DnsRecordType", |
113 | 135 | "DnsRecordsStatus", |
|
121 | 143 | "DomainZoneOwner", |
122 | 144 | "HostingStatus", |
123 | 145 | "HOSTING_TRANSIENT_STATUSES", |
| 146 | + "ListBackupsRequestOrderBy", |
124 | 147 | "ListDatabaseUsersRequestOrderBy", |
125 | 148 | "ListDatabasesRequestOrderBy", |
126 | 149 | "ListFtpAccountsRequestOrderBy", |
|
137 | 160 | "HostingDomainCustomDomain", |
138 | 161 | "OfferOption", |
139 | 162 | "PlatformControlPanel", |
| 163 | + "BackupItem", |
140 | 164 | "HostingDomain", |
141 | 165 | "CreateDatabaseRequestUser", |
142 | 166 | "CreateHostingRequestDomainConfiguration", |
|
147 | 171 | "HostingUser", |
148 | 172 | "Offer", |
149 | 173 | "Platform", |
| 174 | + "BackupItemGroup", |
| 175 | + "Backup", |
150 | 176 | "ControlPanel", |
151 | 177 | "DatabaseUser", |
152 | 178 | "Database", |
|
155 | 181 | "MailAccount", |
156 | 182 | "Website", |
157 | 183 | "DomainAvailability", |
| 184 | + "BackupApiGetBackupRequest", |
| 185 | + "BackupApiListBackupItemsRequest", |
| 186 | + "BackupApiListBackupsRequest", |
| 187 | + "BackupApiRestoreBackupItemsRequest", |
| 188 | + "BackupApiRestoreBackupRequest", |
158 | 189 | "CheckUserOwnsDomainResponse", |
159 | 190 | "ControlPanelApiListControlPanelsRequest", |
160 | 191 | "DatabaseApiAssignDatabaseUserRequest", |
|
180 | 211 | "FtpAccountApiListFtpAccountsRequest", |
181 | 212 | "FtpAccountApiRemoveFtpAccountRequest", |
182 | 213 | "Hosting", |
| 214 | + "HostingApiAddCustomDomainRequest", |
183 | 215 | "HostingApiCreateHostingRequest", |
184 | 216 | "HostingApiCreateSessionRequest", |
185 | 217 | "HostingApiDeleteHostingRequest", |
186 | 218 | "HostingApiGetHostingRequest", |
187 | 219 | "HostingApiGetResourceSummaryRequest", |
188 | 220 | "HostingApiListHostingsRequest", |
| 221 | + "HostingApiRemoveCustomDomainRequest", |
189 | 222 | "HostingApiResetHostingPasswordRequest", |
190 | 223 | "HostingApiUpdateHostingRequest", |
| 224 | + "ListBackupItemsResponse", |
| 225 | + "ListBackupsResponse", |
191 | 226 | "ListControlPanelsResponse", |
192 | 227 | "ListDatabaseUsersResponse", |
193 | 228 | "ListDatabasesResponse", |
|
203 | 238 | "OfferApiListOffersRequest", |
204 | 239 | "ResetHostingPasswordResponse", |
205 | 240 | "ResourceSummary", |
| 241 | + "RestoreBackupItemsResponse", |
| 242 | + "RestoreBackupResponse", |
206 | 243 | "SearchDomainsResponse", |
207 | 244 | "Session", |
208 | 245 | "WebsiteApiListWebsitesRequest", |
| 246 | + "WebhostingV1BackupAPI", |
209 | 247 | "WebhostingV1ControlPanelAPI", |
210 | 248 | "WebhostingV1DatabaseAPI", |
211 | 249 | "WebhostingV1DnsAPI", |
|
0 commit comments