[vi] Release Public Preview for Azure Video Indexer Version v1.0.0b1#9604
[vi] Release Public Preview for Azure Video Indexer Version v1.0.0b1#9604nassiharel wants to merge 34 commits intoAzure:mainfrom
Conversation
|
Validation for Breaking Change Starting...
Thanks for your contribution! |
|
Thank you for your contribution! We will review the pull request and get back to you soon. |
|
The git hooks are available for azure-cli and azure-cli-extensions repos. They could help you run required checks before creating the PR. Please sync the latest code with latest dev branch (for azure-cli) or main branch (for azure-cli-extensions). pip install azdev --upgrade
azdev setup -c <your azure-cli repo path> -r <your azure-cli-extensions repo path>
|
|
There was a problem hiding this comment.
Pull request overview
Adds a new Azure CLI extension vi (Video Indexer) intended for a Public Preview release, including commands to show/troubleshoot the VI Kubernetes extension and list cameras via an extension-issued access token.
Changes:
- Introduces packaging/metadata for the new
viextension (setup files, README/HISTORY, azext metadata). - Adds command wiring/help/formatters and custom command implementations for
vi extension ...andvi camera list. - Vendors a small generated management client + operations helpers, plus a large Kubernetes troubleshooting utility module.
Reviewed changes
Copilot reviewed 26 out of 26 changed files in this pull request and generated 16 comments.
Show a summary per file
| File | Description |
|---|---|
| src/vi/setup.py | Extension packaging metadata and dependencies. |
| src/vi/setup.cfg | Wheel build configuration. |
| src/vi/README.rst | Extension README content for long description. |
| src/vi/HISTORY.rst | Release history for the extension. |
| src/vi/azext_vi/init.py | Command loader registration for the extension. |
| src/vi/azext_vi/_client_factory.py | Client factory for the vendored management client. |
| src/vi/azext_vi/commands.py | Registers vi command groups and commands. |
| src/vi/azext_vi/_params.py | CLI argument definitions for commands. |
| src/vi/azext_vi/_help.py | Help text for groups/commands. |
| src/vi/azext_vi/_format.py | Table transformers for extension/camera output. |
| src/vi/azext_vi/consts.py | Shared constants (kube troubleshooting, helm version, etc.). |
| src/vi/azext_vi/custom.py | Custom command implementations (show/troubleshoot/list cameras). |
| src/vi/azext_vi/cameras_utils.py | Rich-table formatting helper for camera output. |
| src/vi/azext_vi/k8s_utils.py | Kubernetes troubleshooting/diagnostics collection utilities. |
| src/vi/azext_vi/azext_metadata.json | Declares extension preview status and min CLI core version. |
| src/vi/azext_vi/vendored_sdks/init.py | Exposes the vendored VIManagementClient. |
| src/vi/azext_vi/vendored_sdks/_configuration.py | Client configuration and policy wiring. |
| src/vi/azext_vi/vendored_sdks/_version.py | Version used for SDK moniker/user agent. |
| src/vi/azext_vi/vendored_sdks/_vi_management_client.py | Generated management client entry point + ops wiring. |
| src/vi/azext_vi/vendored_sdks/models/init.py | Model exports. |
| src/vi/azext_vi/vendored_sdks/models/_models_py3.py | Model definitions for token request payload. |
| src/vi/azext_vi/vendored_sdks/operations/init.py | Operations exports. |
| src/vi/azext_vi/vendored_sdks/operations/_utils.py | Raw HTTP helper for calling extension endpoint. |
| src/vi/azext_vi/vendored_sdks/operations/_extension_operations.py | Generated ops to list extensions and fetch extension access token. |
| src/vi/azext_vi/vendored_sdks/operations/_camera_operations.py | Camera listing operation via extension endpoint. |
| .github/CODEOWNERS | Adds an owner entry for the extension path. |
|
@microsoft-github-policy-service agree company="Microsoft" |
src/vi/azext_vi/tests/latest/recordings/test_extension_show.yaml
Outdated
Show resolved
Hide resolved
|
/azp run |
|
Azure Pipelines successfully started running 2 pipeline(s). |
|
@necusjz Really appreciate your approval |
Related command
General Guidelines
azdev style <YOUR_EXT>locally? Yespython scripts/ci/test_index.py -qlocally? (pip install wheel==0.30.0required) Yes1.0.0b1previewFor new extensions:
About Extension Publish
There is a pipeline to automatically build, upload and publish extension wheels.
Once your pull request is merged into main branch, a new pull request will be created to update
src/index.jsonautomatically.You only need to update the version information in file setup.py and historical information in file HISTORY.rst in your PR but do not modify
src/index.json.