Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | export interface QuotaItem {
used: number
limit: number
available: number
unit?: string
}
export interface ComputeQuotas {
instances: QuotaItem
vcpus: QuotaItem
ram: QuotaItem
}
export interface StorageQuotas {
volumes: QuotaItem
snapshots: QuotaItem
gigabytes: QuotaItem
}
export interface NetworkQuotas {
floating_ips: QuotaItem
security_groups: QuotaItem
security_group_rules: QuotaItem
networks: QuotaItem
ports: QuotaItem
routers: QuotaItem
}
export interface QuotaOverview {
compute: ComputeQuotas
storage: StorageQuotas
network: NetworkQuotas
}
|