We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c68cc53 commit e95d854Copy full SHA for e95d854
packages/clients/src/api/tem/v1alpha1/types.gen.ts
@@ -379,11 +379,15 @@ export type ListDomainsRequest = {
379
region?: Region
380
/** Requested page number. Value must be greater or equal to 1. */
381
page?: number
382
- /** Page size. */
+ /** Requested page size. Value must be between 1 and 1000. */
383
pageSize?: number
384
+ /** (Optional) ID of the Project in which to list the domains. */
385
projectId?: string
386
+ /** (Optional) List domains under specific statuses. */
387
status?: DomainStatus[]
388
+ /** (Optional) ID of the Organization in which to list the domains. */
389
organizationId?: string
390
+ /** (Optional) Names of the domains to list. */
391
name?: string
392
}
393
0 commit comments