[Automated] Update az CLI Options#2577
Conversation
Code ReviewThis is a small automated PR with two changes to auto-generated files. Overall the PR is doing exactly what it says — regenerating az CLI options from the latest help output. What Changed
Issue: Generator embeds a volatile default timestamp into doc commentsThe /// The point in time in UTC to restore from (ISO8601 format), e.g., 2017-04-26T02:10:00+00:00The default value is set to current time. Default: 2026-05-03T03:27:59+00:00.This creates noise on every generator run — a diff will appear even when the CLI itself has not changed — and the embedded timestamp is misleading to users (it looks like a stable default but it just reflects when the generator happened to run). Suggested fix in the generator: When the scraped default value is an ISO 8601 datetime that changes on every invocation, strip it and emit only the stable textual description ("current time"). The sentence "The default value is set to current time" already conveys the correct semantics; the specific timestamp adds no value. Pre-existing concern (not introduced by this PR)
[CliFlag("--restore-time")]
public bool? RestoreTime { get; set; }This is clearly incorrect — the property should be SummaryThe PR itself is valid and the automation is working as designed. The two concerns above are generator-level improvements worth addressing:
|
Up to standards ✅🟢 Issues
|
| Metric | Results |
|---|---|
| Complexity | ✅ 0 (≤ 20 complexity) |
NEW Get contextual insights on your PRs based on Codacy's metrics, along with PR and Jira context, without leaving GitHub. Enable AI reviewer
TIP This summary will be updated as you push new changes.
Summary
This PR contains automatically generated updates to az CLI options classes.
The generator scraped the latest CLI help output from the installed tool.
Changes
Verification
🤖 Generated with ModularPipelines.OptionsGenerator