# The DefaultWarehouseOverride object

Represents a per-user default warehouse override configuration.
 This resource allows users or administrators to customize how a user's
 default warehouse is selected for SQL operations.
 If no override exists for a user, the workspace default warehouse will be used.

## Attributes

- `name` (string, Beta)
  The resource name of the default warehouse override.
   Format: default-warehouse-overrides/{default_warehouse_override_id}
- `default_warehouse_override_id` (string, Beta)
  The ID component of the resource name (user ID).
- `type` (string, Beta)
  The type of override behavior.
  Possible values: `DEFAULT_WAREHOUSE_OVERRIDE_TYPE_UNSPECIFIED`, `LAST_SELECTED`, `CUSTOM`
- `warehouse_id` (string, Beta)
  The specific warehouse ID when type is CUSTOM.
   Not set for LAST_SELECTED type.

## Example

```json
{
  "name": "string",
  "default_warehouse_override_id": "string",
  "type": "string",
  "warehouse_id": "string"
}
```


