Commits
Click on a commit to change the comparison rangeAdd assets CLI subgroup under prefect cloud
This adds CRUD operations for managing assets in Prefect Cloud workspaces
to the official Prefect CLI under 'prefect cloud asset' (with 'assets' alias).
Commands added:
- prefect cloud asset ls: List assets in the workspace
- prefect cloud asset inspect: Get details about a specific asset by key
- prefect cloud asset delete: Delete an asset by key
- prefect cloud asset delete-old: Delete assets older than specified days
The implementation follows existing patterns from the webhook CLI and includes
comprehensive test coverage.
Co-Authored-By: Nate Nowack <nate@prefect.io>15 hours ago
by devin-ai-integration[bot] Address PR feedback: add --output/-o json flag to inspect command
- Remove unnecessary 'from __future__ import annotations' import
- Add --output/-o json flag to inspect command following established patterns
- Use Pretty() for default output, JSON for --output json
- Add tests for JSON output and invalid output format
Co-Authored-By: Nate Nowack <nate@prefect.io>14 hours ago
by devin-ai-integration[bot]