Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions packages/clients/src/api/iam/v1alpha1/marshalling.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -189,8 +189,11 @@ export const unmarshalQuotum = (data: unknown): Quotum => {
}

return {
description: data.description,
limit: data.limit,
name: data.name,
prettyName: data.pretty_name,
unit: data.unit,
unlimited: data.unlimited,
} as Quotum
}
Expand Down
6 changes: 6 additions & 0 deletions packages/clients/src/api/iam/v1alpha1/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -304,6 +304,12 @@ export interface Quotum {
* One-of ('value'): at most one of 'limit', 'unlimited' could be set.
*/
unlimited?: boolean
/** A human-readable name for the quota. */
prettyName: string
/** The unit in which the quota is expressed. */
unit: string
/** Details about the quota. */
description: string
}

export interface Rule {
Expand Down