fix(tools/alloydbgetinstance): remove parameter duplication (#1993)

## Description

Previous merge conflict caused parameter duplications

## PR Checklist

> Thank you for opening a Pull Request! Before submitting your PR, there
are a
> few things you can do to make sure it goes smoothly:

- [x] Make sure you reviewed

[CONTRIBUTING.md](https://github.com/googleapis/genai-toolbox/blob/main/CONTRIBUTING.md)
- [x] Make sure to open an issue as a

[bug/issue](https://github.com/googleapis/genai-toolbox/issues/new/choose)
  before writing your code! That way we can discuss the change, evaluate
  designs, and agree on the general idea
- [x] Ensure the tests and linter pass
- [x] Code coverage does not decrease (if any source code was changed)
- [x] Appropriate docs were updated (if necessary)
- [x] Make sure to add `!` if this involve a breaking change

🛠️ Fixes https://github.com/gemini-cli-extensions/alloydb/issues/97
This commit is contained in:
Yuan Teoh
2025-11-19 11:43:00 -08:00
committed by GitHub
parent b8af73fa4e
commit 0e269a1d12

View File

@@ -84,9 +84,6 @@ func (cfg Config) Initialize(srcs map[string]sources.Source) (tools.Tool, error)
parameters.NewStringParameter("location", "The location of the instance (e.g., 'us-central1')."),
parameters.NewStringParameter("cluster", "The ID of the cluster."),
parameters.NewStringParameter("instance", "The ID of the instance."),
parameters.NewStringParameter("location", "The location of the instance (e.g., 'us-central1')."),
parameters.NewStringParameter("cluster", "The ID of the cluster."),
parameters.NewStringParameter("instance", "The ID of the instance."),
}
paramManifest := allParameters.Manifest()