# The QuotaInfo object

## Attributes

- `parent_securable_type` (string)
  The quota parent securable type.
  Possible values: `CATALOG`, `SCHEMA`, `TABLE`, `STORAGE_CREDENTIAL`, `EXTERNAL_LOCATION`, `FUNCTION`, `SHARE`, `PROVIDER`, `RECIPIENT`, `CLEAN_ROOM`, `METASTORE`, `PIPELINE`, `VOLUME`, `CONNECTION`, `CREDENTIAL`, `EXTERNAL_METADATA`, `STAGING_TABLE`, `MODEL`, `MODEL_SERVICE`, `MCP_SERVICE`, `MODEL_PROVIDER_SERVICE`
  Example: `schema`
- `parent_full_name` (string)
  Name of the parent resource. Returns metastore ID if the parent is a metastore.
  Example: `main.default`
- `quota_name` (string)
  The name of the quota.
  Example: `table-quota`
- `quota_count` (int32)
  The current usage of the resource quota.
  Example: `1234`
- `quota_limit` (int32)
  The current limit of the resource quota.
  Example: `10000`
- `last_refreshed_at` (int64)
  The timestamp that indicates when the quota count was last updated.
  Example: `1723750401`

## Example

```json
{
  "parent_securable_type": "schema",
  "parent_full_name": "main.default",
  "quota_name": "table-quota",
  "quota_count": 1234,
  "quota_limit": 10000,
  "last_refreshed_at": 1723750401
}
```


