Skip to content

Commit 30423f2

Browse files
feat(iam): add support for PrettyName, Unit and Description for Quotum (#2050)
Co-authored-by: Rémy Léone <[email protected]>
1 parent 0d27543 commit 30423f2

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

api/iam/v1alpha1/iam_sdk.go

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -887,6 +887,15 @@ type Quotum struct {
887887
// Unlimited: defines whether or not the quota is unlimited.
888888
// Precisely one of Limit, Unlimited must be set.
889889
Unlimited *bool `json:"unlimited,omitempty"`
890+
891+
// PrettyName: a human-readable name for the quota.
892+
PrettyName string `json:"pretty_name"`
893+
894+
// Unit: the unit in which the quota is expressed.
895+
Unit string `json:"unit"`
896+
897+
// Description: details about the quota.
898+
Description string `json:"description"`
890899
}
891900

892901
// Rule: rule.

0 commit comments

Comments
 (0)