You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: scaleway-async/scaleway_async/webhosting/v1alpha1/api.py
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,7 @@
15
15
)
16
16
from .typesimport (
17
17
HostingStatus,
18
+
LanguageCode,
18
19
ListHostingsRequestOrderBy,
19
20
ListOffersRequestOrderBy,
20
21
ControlPanel,
@@ -52,6 +53,7 @@ async def create_hosting(
52
53
*,
53
54
offer_id: str,
54
55
domain: str,
56
+
language: LanguageCode,
55
57
region: Optional[Region] =None,
56
58
project_id: Optional[str] =None,
57
59
email: Optional[str] =None,
@@ -68,6 +70,7 @@ async def create_hosting(
68
70
:param tags: List of tags for the Web Hosting plan.
69
71
:param domain: Domain name to link to the Web Hosting plan. You must already own this domain name, and have completed the DNS validation process beforehand.
70
72
:param option_ids: IDs of any selected additional options for the Web Hosting plan.
73
+
:param language: Default language for the control panel interface.
Copy file name to clipboardExpand all lines: scaleway/scaleway/webhosting/v1alpha1/api.py
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,7 @@
15
15
)
16
16
from .typesimport (
17
17
HostingStatus,
18
+
LanguageCode,
18
19
ListHostingsRequestOrderBy,
19
20
ListOffersRequestOrderBy,
20
21
ControlPanel,
@@ -52,6 +53,7 @@ def create_hosting(
52
53
*,
53
54
offer_id: str,
54
55
domain: str,
56
+
language: LanguageCode,
55
57
region: Optional[Region] =None,
56
58
project_id: Optional[str] =None,
57
59
email: Optional[str] =None,
@@ -68,6 +70,7 @@ def create_hosting(
68
70
:param tags: List of tags for the Web Hosting plan.
69
71
:param domain: Domain name to link to the Web Hosting plan. You must already own this domain name, and have completed the DNS validation process beforehand.
70
72
:param option_ids: IDs of any selected additional options for the Web Hosting plan.
73
+
:param language: Default language for the control panel interface.
0 commit comments