Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion packages/clients/src/api/tem/v1alpha1/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -379,11 +379,15 @@ export type ListDomainsRequest = {
region?: Region
/** Requested page number. Value must be greater or equal to 1. */
page?: number
/** Page size. */
/** Requested page size. Value must be between 1 and 1000. */
pageSize?: number
/** (Optional) ID of the Project in which to list the domains. */
projectId?: string
/** (Optional) List domains under specific statuses. */
status?: DomainStatus[]
/** (Optional) ID of the Organization in which to list the domains. */
organizationId?: string
/** (Optional) Names of the domains to list. */
name?: string
}

Expand Down