Skip to content

Commit 63e3194

Browse files
authored
docs(domain): update description for dns zone update MTA-7047 (#1732)
1 parent 8ead009 commit 63e3194

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

scaleway-async/scaleway_async/domain/v2beta1/api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ async def create_dns_zone(
320320
"""
321321
Create a DNS zone.
322322
Create a new DNS zone specified by the domain name, the subdomain and the Project ID.
323-
:param domain: Domain in which to crreate the DNS zone.
323+
:param domain: Domain in which to create the DNS zone.
324324
:param subdomain: Subdomain of the DNS zone to create.
325325
:param project_id: Project ID in which to create the DNS zone.
326326
:return: :class:`DNSZone <DNSZone>`
@@ -360,7 +360,7 @@ async def update_dns_zone(
360360
"""
361361
Update a DNS zone.
362362
Update the name and/or the Organizations for a DNS zone.
363-
:param dns_zone: DNS zone to update.
363+
:param dns_zone: The full name of the DNS zone to modify. For a root zone (e.g., example.com), enter `example.com`. For a specific sub-zone (e.g., prod.example.com), enter `prod.example.com`.
364364
:param new_dns_zone: Name of the new DNS zone to create.
365365
:param project_id: Project ID in which to create the new DNS zone.
366366
:return: :class:`DNSZone <DNSZone>`

scaleway-async/scaleway_async/domain/v2beta1/types.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -983,7 +983,7 @@ class CloneDNSZoneRequest:
983983
class CreateDNSZoneRequest:
984984
domain: str
985985
"""
986-
Domain in which to crreate the DNS zone.
986+
Domain in which to create the DNS zone.
987987
"""
988988

989989
subdomain: str
@@ -1927,7 +1927,7 @@ class UpdateDNSZoneRecordsResponse:
19271927
class UpdateDNSZoneRequest:
19281928
dns_zone: str
19291929
"""
1930-
DNS zone to update.
1930+
The full name of the DNS zone to modify. For a root zone (e.g., example.com), enter `example.com`. For a specific sub-zone (e.g., prod.example.com), enter `prod.example.com`.
19311931
"""
19321932

19331933
new_dns_zone: Optional[str] = None

scaleway/scaleway/domain/v2beta1/api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ def create_dns_zone(
320320
"""
321321
Create a DNS zone.
322322
Create a new DNS zone specified by the domain name, the subdomain and the Project ID.
323-
:param domain: Domain in which to crreate the DNS zone.
323+
:param domain: Domain in which to create the DNS zone.
324324
:param subdomain: Subdomain of the DNS zone to create.
325325
:param project_id: Project ID in which to create the DNS zone.
326326
:return: :class:`DNSZone <DNSZone>`
@@ -360,7 +360,7 @@ def update_dns_zone(
360360
"""
361361
Update a DNS zone.
362362
Update the name and/or the Organizations for a DNS zone.
363-
:param dns_zone: DNS zone to update.
363+
:param dns_zone: The full name of the DNS zone to modify. For a root zone (e.g., example.com), enter `example.com`. For a specific sub-zone (e.g., prod.example.com), enter `prod.example.com`.
364364
:param new_dns_zone: Name of the new DNS zone to create.
365365
:param project_id: Project ID in which to create the new DNS zone.
366366
:return: :class:`DNSZone <DNSZone>`

scaleway/scaleway/domain/v2beta1/types.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -983,7 +983,7 @@ class CloneDNSZoneRequest:
983983
class CreateDNSZoneRequest:
984984
domain: str
985985
"""
986-
Domain in which to crreate the DNS zone.
986+
Domain in which to create the DNS zone.
987987
"""
988988

989989
subdomain: str
@@ -1927,7 +1927,7 @@ class UpdateDNSZoneRecordsResponse:
19271927
class UpdateDNSZoneRequest:
19281928
dns_zone: str
19291929
"""
1930-
DNS zone to update.
1930+
The full name of the DNS zone to modify. For a root zone (e.g., example.com), enter `example.com`. For a specific sub-zone (e.g., prod.example.com), enter `prod.example.com`.
19311931
"""
19321932

19331933
new_dns_zone: Optional[str] = None

0 commit comments

Comments
 (0)