@@ -1156,8 +1156,8 @@ async def list_domains(
1156
1156
order_by : Optional [ListDomainsRequestOrderBy ] = None ,
1157
1157
) -> ListDomainsResponse :
1158
1158
"""
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.
1161
1161
:param container_id: UUID of the container the domain belongs to.
1162
1162
:param region: Region to target. If none is passed will use default region from the config.
1163
1163
:param page: Page number.
@@ -1201,8 +1201,8 @@ async def list_domains_all(
1201
1201
order_by : Optional [ListDomainsRequestOrderBy ] = None ,
1202
1202
) -> List [Domain ]:
1203
1203
"""
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.
1206
1206
:param container_id: UUID of the container the domain belongs to.
1207
1207
:param region: Region to target. If none is passed will use default region from the config.
1208
1208
:param page: Page number.
@@ -1238,8 +1238,8 @@ async def get_domain(
1238
1238
region : Optional [Region ] = None ,
1239
1239
) -> Domain :
1240
1240
"""
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.
1243
1243
:param domain_id: UUID of the domain to get.
1244
1244
:param region: Region to target. If none is passed will use default region from the config.
1245
1245
:return: :class:`Domain <Domain>`
@@ -1273,8 +1273,8 @@ async def wait_for_domain(
1273
1273
options : Optional [WaitForOptions [Domain , Union [bool , Awaitable [bool ]]]] = None ,
1274
1274
) -> Domain :
1275
1275
"""
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.
1278
1278
:param domain_id: UUID of the domain to get.
1279
1279
:param region: Region to target. If none is passed will use default region from the config.
1280
1280
:return: :class:`Domain <Domain>`
@@ -1310,8 +1310,8 @@ async def create_domain(
1310
1310
region : Optional [Region ] = None ,
1311
1311
) -> Domain :
1312
1312
"""
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.
1315
1315
:param hostname: Domain to assign.
1316
1316
:param container_id: UUID of the container to assign the domain to.
1317
1317
:param region: Region to target. If none is passed will use default region from the config.
@@ -1353,8 +1353,8 @@ async def delete_domain(
1353
1353
region : Optional [Region ] = None ,
1354
1354
) -> Domain :
1355
1355
"""
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.
1358
1358
:param domain_id: UUID of the domain to delete.
1359
1359
:param region: Region to target. If none is passed will use default region from the config.
1360
1360
:return: :class:`Domain <Domain>`
0 commit comments