> ## Documentation Index
> Fetch the complete documentation index at: https://platform.atlan.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Repos

> Every published repos operation, generated from the contract.

7 operations on `client.repos`.

Path parameters come first, positionally; the request body is last, as a plain
object. Method names are `snake_case` in Python and `camelCase` in
TypeScript, and resource names follow the same rule.

<CodeGroup>
  ```python Python theme={null}
  result = client.repos.archive(repo_id)
  ```

  ```typescript TypeScript theme={null}
  const result = await client.repos.archive(repo_id);
  ```
</CodeGroup>

## Operations

| Call                                 | Route                                       | Does              |
| ------------------------------------ | ------------------------------------------- | ----------------- |
| `client.repos.archive(repo_id)`      | `POST /registry/v1/repos/{repo_id}/archive` | Archive a repo    |
| `client.repos.bulk_create(body)`     | `POST /registry/v1/repos/bulk`              | Bulk create repos |
| `client.repos.create(body)`          | `POST /registry/v1/repos`                   | Create a repo     |
| `client.repos.delete(repo_id)`       | `DELETE /registry/v1/repos/{repo_id}`       | Delete a repo     |
| `client.repos.get(repo_id)`          | `GET /registry/v1/repos/{repo_id}`          | Get a repo        |
| `client.repos.list()`                | `GET /registry/v1/repos`                    | List repos        |
| `client.repos.update(repo_id, body)` | `PATCH /registry/v1/repos/{repo_id}`        | Update a repo     |

## Related

<CardGroup cols={2}>
  <Card title="How the client is organised" icon="list" href="/sdk/operations">
    Resources, call shapes, and errors.
  </Card>

  <Card title="Errors and retries" icon="triangle-exclamation" href="/developers/errors-and-retries">
    What the SDK raises, and which calls are safe to retry.
  </Card>
</CardGroup>
