## Get File Store Info

`admin.get_filestores_info()  -> AdminGetFilestoresInfoResponse`

**get** `/api/v1/admin/filestores/info`

Get File Store Info

### Returns

- `class AdminGetFilestoresInfoResponse: …`

  - `status: Literal["missing_buckets", "missing_credentials", "ok"]`

    - `"missing_buckets"`

    - `"missing_credentials"`

    - `"ok"`

  - `available_buckets: Optional[Dict[str, str]]`

  - `unavailable_buckets: Optional[Dict[str, str]]`

### Example

```python
import os
from llama_cloud_admin import LlamaCloudAdmin

client = LlamaCloudAdmin(
    api_key=os.environ.get("LLAMA_CLOUD_API_KEY"),  # This is the default and can be omitted
)
response = client.admin.get_filestores_info()
print(response.status)
```

#### Response

```json
{
  "status": "missing_buckets",
  "available_buckets": {
    "foo": "string"
  },
  "unavailable_buckets": {
    "foo": "string"
  }
}
```
