DrFaust92 opened a new pull request, #53: URL: https://github.com/apache/airflow-client-go/pull/53
Airflow 3 (v2 API) added an optional `team_name` field on connections, pools, and variables for multi-team deployments. This adds it to the three models so consumers (e.g. the Terraform provider / k8s operator) can set it. - `Connection`, `Pool`, `Variable`: new `TeamName *string` field (`json:"team_name,omitempty"`) + `GetTeamName`/`GetTeamNameOk`/`HasTeamName`/`SetTeamName` + serialized in `MarshalJSON`. - Hand-patched (the current models are v1-shaped; a full regen from the v2 spec would reshape everything). The three files are added to `.openapi-generator-ignore` so a future regeneration won't drop the field. Verified: `go build ./...` passes and a serialization test confirms `team_name` is emitted by all three models when set (and omitted when not). 🤖 Generated with [Claude Code](https://claude.com/claude-code) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
