Skip to content

Commit aa362f6

Browse files
authored
chore(tem): document ListDomainsRequest fields (#2064)
1 parent 6d81bfd commit aa362f6

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

api/tem/v1alpha1/tem_sdk.go

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -710,15 +710,19 @@ type ListDomainsRequest struct {
710710
// Page: requested page number. Value must be greater or equal to 1.
711711
Page *int32 `json:"-"`
712712

713-
// PageSize: page size.
713+
// PageSize: requested page size. Value must be between 1 and 1000.
714714
PageSize *uint32 `json:"-"`
715715

716+
// ProjectID: (Optional) ID of the Project in which to list the domains.
716717
ProjectID *string `json:"-"`
717718

719+
// Status: (Optional) List domains under specific statuses.
718720
Status []DomainStatus `json:"-"`
719721

722+
// OrganizationID: (Optional) ID of the Organization in which to list the domains.
720723
OrganizationID *string `json:"-"`
721724

725+
// Name: (Optional) Names of the domains to list.
722726
Name *string `json:"-"`
723727
}
724728

0 commit comments

Comments
 (0)