@@ -116,7 +116,7 @@ export class API extends ParentAPI {
116116 )
117117
118118 /**
119- * List all your namespaces.
119+ * List all your namespaces. List all namespaces in a specified region.
120120 *
121121 * @param request - The request {@link ListNamespacesRequest}
122122 * @returns A Promise of ListNamespacesResponse
@@ -125,7 +125,7 @@ export class API extends ParentAPI {
125125 enrichForPagination ( 'namespaces' , this . pageOfListNamespaces , request )
126126
127127 /**
128- * Get a namespace. Get the namespace associated with the given id .
128+ * Get a namespace. Get the namespace associated with the specified ID .
129129 *
130130 * @param request - The request {@link GetNamespaceRequest}
131131 * @returns A Promise of Namespace
@@ -163,7 +163,7 @@ export class API extends ParentAPI {
163163 )
164164
165165 /**
166- * Create a new namespace.
166+ * Create a new namespace. Create a new namespace in a specified region.
167167 *
168168 * @param request - The request {@link CreateNamespaceRequest}
169169 * @returns A Promise of Namespace
@@ -185,8 +185,8 @@ export class API extends ParentAPI {
185185 )
186186
187187 /**
188- * Update an existing namespace. Update the space associated with the given
189- * id .
188+ * Update an existing namespace. Update the space associated with the
189+ * specified ID .
190190 *
191191 * @param request - The request {@link UpdateNamespaceRequest}
192192 * @returns A Promise of Namespace
@@ -209,7 +209,7 @@ export class API extends ParentAPI {
209209
210210 /**
211211 * Delete an existing namespace. Delete the namespace associated with the
212- * given id .
212+ * specified ID .
213213 *
214214 * @param request - The request {@link DeleteNamespaceRequest}
215215 * @returns A Promise of Namespace
@@ -251,7 +251,7 @@ export class API extends ParentAPI {
251251 )
252252
253253 /**
254- * List all your containers.
254+ * List all your containers. List all containers for a specified region.
255255 *
256256 * @param request - The request {@link ListContainersRequest}
257257 * @returns A Promise of ListContainersResponse
@@ -260,7 +260,7 @@ export class API extends ParentAPI {
260260 enrichForPagination ( 'containers' , this . pageOfListContainers , request )
261261
262262 /**
263- * Get a container. Get the container associated with the given id .
263+ * Get a container. Get the container associated with the specified ID .
264264 *
265265 * @param request - The request {@link GetContainerRequest}
266266 * @returns A Promise of Container
@@ -298,7 +298,7 @@ export class API extends ParentAPI {
298298 )
299299
300300 /**
301- * Create a new container.
301+ * Create a new container. Create a new container in the specified region.
302302 *
303303 * @param request - The request {@link CreateContainerRequest}
304304 * @returns A Promise of Container
@@ -321,7 +321,7 @@ export class API extends ParentAPI {
321321
322322 /**
323323 * Update an existing container. Update the container associated with the
324- * given id .
324+ * specified ID .
325325 *
326326 * @param request - The request {@link UpdateContainerRequest}
327327 * @returns A Promise of Container
@@ -343,7 +343,7 @@ export class API extends ParentAPI {
343343 )
344344
345345 /**
346- * Delete a container. Delete the container associated with the given id .
346+ * Delete a container. Delete the container associated with the specified ID .
347347 *
348348 * @param request - The request {@link DeleteContainerRequest}
349349 * @returns A Promise of Container
@@ -361,7 +361,7 @@ export class API extends ParentAPI {
361361 )
362362
363363 /**
364- * Deploy a container. Deploy a container associated with the given id .
364+ * Deploy a container. Deploy a container associated with the specified ID .
365365 *
366366 * @param request - The request {@link DeployContainerRequest}
367367 * @returns A Promise of Container
@@ -414,7 +414,7 @@ export class API extends ParentAPI {
414414 enrichForPagination ( 'crons' , this . pageOfListCrons , request )
415415
416416 /**
417- * Get a cron. Get the cron associated with the given id .
417+ * Get a cron. Get the cron associated with the specified ID .
418418 *
419419 * @param request - The request {@link GetCronRequest}
420420 * @returns A Promise of Cron
@@ -473,7 +473,7 @@ export class API extends ParentAPI {
473473 )
474474
475475 /**
476- * Update an existing cron. Update the cron associated with the given id .
476+ * Update an existing cron. Update the cron associated with the specified ID .
477477 *
478478 * @param request - The request {@link UpdateCronRequest}
479479 * @returns A Promise of Cron
@@ -495,7 +495,7 @@ export class API extends ParentAPI {
495495 )
496496
497497 /**
498- * Delete an existing cron. Delete the cron associated with the given id .
498+ * Delete an existing cron. Delete the cron associated with the specified ID .
499499 *
500500 * @param request - The request {@link DeleteCronRequest}
501501 * @returns A Promise of Cron
@@ -536,7 +536,8 @@ export class API extends ParentAPI {
536536 )
537537
538538 /**
539- * List your container logs.
539+ * List your container logs. List the logs of the container with the specified
540+ * ID.
540541 *
541542 * @param request - The request {@link ListLogsRequest}
542543 * @returns A Promise of ListLogsResponse
@@ -566,7 +567,8 @@ export class API extends ParentAPI {
566567 )
567568
568569 /**
569- * List all domain name bindings.
570+ * List all domain name bindings. List all domain name bindings in a specified
571+ * region.
570572 *
571573 * @param request - The request {@link ListDomainsRequest}
572574 * @returns A Promise of ListDomainsResponse
@@ -575,7 +577,8 @@ export class API extends ParentAPI {
575577 enrichForPagination ( 'domains' , this . pageOfListDomains , request )
576578
577579 /**
578- * Get a domain name binding.
580+ * Get a domain name binding. Get a domain name binding for the container with
581+ * the specified ID.
579582 *
580583 * @param request - The request {@link GetDomainRequest}
581584 * @returns A Promise of Domain
@@ -613,7 +616,8 @@ export class API extends ParentAPI {
613616 )
614617
615618 /**
616- * Create a domain name binding.
619+ * Create a domain name binding. Create a domain name binding for the
620+ * container with the specified ID.
617621 *
618622 * @param request - The request {@link CreateDomainRequest}
619623 * @returns A Promise of Domain
@@ -635,7 +639,8 @@ export class API extends ParentAPI {
635639 )
636640
637641 /**
638- * Delete a domain name binding.
642+ * Delete a domain name binding. Delete the domain name binding with the
643+ * specific ID.
639644 *
640645 * @param request - The request {@link DeleteDomainRequest}
641646 * @returns A Promise of Domain
@@ -707,7 +712,7 @@ export class API extends ParentAPI {
707712 )
708713
709714 /**
710- * Get a token.
715+ * Get a token. Get a token with a specified ID.
711716 *
712717 * @param request - The request {@link GetTokenRequest}
713718 * @returns A Promise of Token
@@ -767,7 +772,8 @@ export class API extends ParentAPI {
767772 )
768773
769774 /**
770- * List all tokens.
775+ * List all tokens. List all tokens belonging to a specified Organization or
776+ * Project.
771777 *
772778 * @param request - The request {@link ListTokensRequest}
773779 * @returns A Promise of ListTokensResponse
@@ -776,7 +782,7 @@ export class API extends ParentAPI {
776782 enrichForPagination ( 'tokens' , this . pageOfListTokens , request )
777783
778784 /**
779- * Delete a token.
785+ * Delete a token. Delete a token with a specified ID.
780786 *
781787 * @param request - The request {@link DeleteTokenRequest}
782788 * @returns A Promise of Token
0 commit comments