We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have a kafka service deployed and running on Aiven. I want to get the endpoint (the IP) for this kafka service's cluster.
kafka
I have tried using the following code
listProjectServiceTypesOut, err := aivenClient.ListProjectServiceTypes(ctx, project.ProjectName) if err != nil { fmt.Printf("error listing services for for project: %s: %s", project.ProjectName, err) }
however I get &{Any:<nil>} although there is definitely a kafka cluster running.
&{Any:<nil>}
Examples / README.md
README.md
The text was updated successfully, but these errors were encountered:
Hey, @pantelis-karamolegkos! 👋
Thank you for bringing this up! Please try retrieving the information that you're looking for via aivenClient.ServiceList(ctx, project.ProjectName).
aivenClient.ServiceList(ctx, project.ProjectName)
Since methods of the client include the endpoint URL in the comment, I can recommend taking a look at https://api.aiven.io/doc/.
Additionally, each method also has a direct link to the API doc page of the specific endpoint:
go-client-codegen/handler/service/service.go
Lines 123 to 126 in 3d3e22a
Cf. ListProjectServiceTypes vs. ServiceList.
I will close this issue for now, please feel free to open it if you have any additional questions 🙂
Sorry, something went wrong.
Related to #34.
Serpentiel
No branches or pull requests
What can we help you with?
I have a
kafka
service deployed and running on Aiven. I want to get the endpoint (the IP) for this kafka service's cluster.I have tried using the following code
however I get
&{Any:<nil>}
although there is definitely a kafka cluster running.Where would you expect to find this information?
Examples /
README.md
The text was updated successfully, but these errors were encountered: