Skip to content

feat(webhosting): add custom domain to hosting #1167

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 18, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions scaleway-async/scaleway_async/webhosting/v1/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# This file was automatically generated. DO NOT EDIT.
# If you have any remark or suggestion do not hesitate to open an issue.
from .types import BackupItemType
from .types import BackupStatus
from .content import BACKUP_TRANSIENT_STATUSES
from .types import DnsRecordStatus
from .types import DnsRecordType
from .types import DnsRecordsStatus
Expand All @@ -13,6 +16,7 @@
from .types import DomainZoneOwner
from .types import HostingStatus
from .content import HOSTING_TRANSIENT_STATUSES
from .types import ListBackupsRequestOrderBy
from .types import ListDatabaseUsersRequestOrderBy
from .types import ListDatabasesRequestOrderBy
from .types import ListFtpAccountsRequestOrderBy
Expand All @@ -29,6 +33,7 @@
from .types import HostingDomainCustomDomain
from .types import OfferOption
from .types import PlatformControlPanel
from .types import BackupItem
from .types import HostingDomain
from .types import CreateDatabaseRequestUser
from .types import CreateHostingRequestDomainConfiguration
Expand All @@ -39,6 +44,8 @@
from .types import HostingUser
from .types import Offer
from .types import Platform
from .types import BackupItemGroup
from .types import Backup
from .types import ControlPanel
from .types import DatabaseUser
from .types import Database
Expand All @@ -47,6 +54,11 @@
from .types import MailAccount
from .types import Website
from .types import DomainAvailability
from .types import BackupApiGetBackupRequest
from .types import BackupApiListBackupItemsRequest
from .types import BackupApiListBackupsRequest
from .types import BackupApiRestoreBackupItemsRequest
from .types import BackupApiRestoreBackupRequest
from .types import CheckUserOwnsDomainResponse
from .types import ControlPanelApiListControlPanelsRequest
from .types import DatabaseApiAssignDatabaseUserRequest
Expand All @@ -72,14 +84,18 @@
from .types import FtpAccountApiListFtpAccountsRequest
from .types import FtpAccountApiRemoveFtpAccountRequest
from .types import Hosting
from .types import HostingApiAddCustomDomainRequest
from .types import HostingApiCreateHostingRequest
from .types import HostingApiCreateSessionRequest
from .types import HostingApiDeleteHostingRequest
from .types import HostingApiGetHostingRequest
from .types import HostingApiGetResourceSummaryRequest
from .types import HostingApiListHostingsRequest
from .types import HostingApiRemoveCustomDomainRequest
from .types import HostingApiResetHostingPasswordRequest
from .types import HostingApiUpdateHostingRequest
from .types import ListBackupItemsResponse
from .types import ListBackupsResponse
from .types import ListControlPanelsResponse
from .types import ListDatabaseUsersResponse
from .types import ListDatabasesResponse
Expand All @@ -95,9 +111,12 @@
from .types import OfferApiListOffersRequest
from .types import ResetHostingPasswordResponse
from .types import ResourceSummary
from .types import RestoreBackupItemsResponse
from .types import RestoreBackupResponse
from .types import SearchDomainsResponse
from .types import Session
from .types import WebsiteApiListWebsitesRequest
from .api import WebhostingV1BackupAPI
from .api import WebhostingV1ControlPanelAPI
from .api import WebhostingV1DatabaseAPI
from .api import WebhostingV1DnsAPI
Expand All @@ -108,6 +127,9 @@
from .api import WebhostingV1WebsiteAPI

__all__ = [
"BackupItemType",
"BackupStatus",
"BACKUP_TRANSIENT_STATUSES",
"DnsRecordStatus",
"DnsRecordType",
"DnsRecordsStatus",
Expand All @@ -121,6 +143,7 @@
"DomainZoneOwner",
"HostingStatus",
"HOSTING_TRANSIENT_STATUSES",
"ListBackupsRequestOrderBy",
"ListDatabaseUsersRequestOrderBy",
"ListDatabasesRequestOrderBy",
"ListFtpAccountsRequestOrderBy",
Expand All @@ -137,6 +160,7 @@
"HostingDomainCustomDomain",
"OfferOption",
"PlatformControlPanel",
"BackupItem",
"HostingDomain",
"CreateDatabaseRequestUser",
"CreateHostingRequestDomainConfiguration",
Expand All @@ -147,6 +171,8 @@
"HostingUser",
"Offer",
"Platform",
"BackupItemGroup",
"Backup",
"ControlPanel",
"DatabaseUser",
"Database",
Expand All @@ -155,6 +181,11 @@
"MailAccount",
"Website",
"DomainAvailability",
"BackupApiGetBackupRequest",
"BackupApiListBackupItemsRequest",
"BackupApiListBackupsRequest",
"BackupApiRestoreBackupItemsRequest",
"BackupApiRestoreBackupRequest",
"CheckUserOwnsDomainResponse",
"ControlPanelApiListControlPanelsRequest",
"DatabaseApiAssignDatabaseUserRequest",
Expand All @@ -180,14 +211,18 @@
"FtpAccountApiListFtpAccountsRequest",
"FtpAccountApiRemoveFtpAccountRequest",
"Hosting",
"HostingApiAddCustomDomainRequest",
"HostingApiCreateHostingRequest",
"HostingApiCreateSessionRequest",
"HostingApiDeleteHostingRequest",
"HostingApiGetHostingRequest",
"HostingApiGetResourceSummaryRequest",
"HostingApiListHostingsRequest",
"HostingApiRemoveCustomDomainRequest",
"HostingApiResetHostingPasswordRequest",
"HostingApiUpdateHostingRequest",
"ListBackupItemsResponse",
"ListBackupsResponse",
"ListControlPanelsResponse",
"ListDatabaseUsersResponse",
"ListDatabasesResponse",
Expand All @@ -203,9 +238,12 @@
"OfferApiListOffersRequest",
"ResetHostingPasswordResponse",
"ResourceSummary",
"RestoreBackupItemsResponse",
"RestoreBackupResponse",
"SearchDomainsResponse",
"Session",
"WebsiteApiListWebsitesRequest",
"WebhostingV1BackupAPI",
"WebhostingV1ControlPanelAPI",
"WebhostingV1DatabaseAPI",
"WebhostingV1DnsAPI",
Expand Down
Loading
Loading