@@ -1156,8 +1156,8 @@ async def list_domains(
11561156 order_by: Optional[ListDomainsRequestOrderBy] = None,
11571157 ) -> ListDomainsResponse:
11581158 """
1159- List all domain name bindings .
1160- List all domain name bindings in a specified region.
1159+ List all custom domains .
1160+ List all custom domains in a specified region.
11611161 :param container_id: UUID of the container the domain belongs to.
11621162 :param region: Region to target. If none is passed will use default region from the config.
11631163 :param page: Page number.
@@ -1201,8 +1201,8 @@ async def list_domains_all(
12011201 order_by: Optional[ListDomainsRequestOrderBy] = None,
12021202 ) -> List[Domain]:
12031203 """
1204- List all domain name bindings .
1205- List all domain name bindings in a specified region.
1204+ List all custom domains .
1205+ List all custom domains in a specified region.
12061206 :param container_id: UUID of the container the domain belongs to.
12071207 :param region: Region to target. If none is passed will use default region from the config.
12081208 :param page: Page number.
@@ -1238,8 +1238,8 @@ async def get_domain(
12381238 region: Optional[Region] = None,
12391239 ) -> Domain:
12401240 """
1241- Get a domain name binding .
1242- Get a domain name binding for the container with the specified ID.
1241+ Get a custom domain .
1242+ Get a custom domain for the container with the specified ID.
12431243 :param domain_id: UUID of the domain to get.
12441244 :param region: Region to target. If none is passed will use default region from the config.
12451245 :return: :class:`Domain <Domain>`
@@ -1273,8 +1273,8 @@ async def wait_for_domain(
12731273 options: Optional[WaitForOptions[Domain, Union[bool, Awaitable[bool]]]] = None,
12741274 ) -> Domain:
12751275 """
1276- Get a domain name binding .
1277- Get a domain name binding for the container with the specified ID.
1276+ Get a custom domain .
1277+ Get a custom domain for the container with the specified ID.
12781278 :param domain_id: UUID of the domain to get.
12791279 :param region: Region to target. If none is passed will use default region from the config.
12801280 :return: :class:`Domain <Domain>`
@@ -1310,8 +1310,8 @@ async def create_domain(
13101310 region: Optional[Region] = None,
13111311 ) -> Domain:
13121312 """
1313- Create a domain name binding .
1314- Create a domain name binding for the container with the specified ID.
1313+ Create a custom domain .
1314+ Create a custom domain for the container with the specified ID.
13151315 :param hostname: Domain to assign.
13161316 :param container_id: UUID of the container to assign the domain to.
13171317 :param region: Region to target. If none is passed will use default region from the config.
@@ -1353,8 +1353,8 @@ async def delete_domain(
13531353 region: Optional[Region] = None,
13541354 ) -> Domain:
13551355 """
1356- Delete a domain name binding .
1357- Delete the domain name binding with the specific ID.
1356+ Delete a custom domain .
1357+ Delete the custom domain with the specific ID.
13581358 :param domain_id: UUID of the domain to delete.
13591359 :param region: Region to target. If none is passed will use default region from the config.
13601360 :return: :class:`Domain <Domain>`
0 commit comments