-
Notifications
You must be signed in to change notification settings - Fork 105
Kibana action connectors #306
New issue
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
Conversation
The generated code still has some drawbacks: - ModelMap structure is missing (it's defined manually) - OneOf generates a golang struct with promoted fields where each field represent one of the options. The generated client cannot properly encode such structs.
Ogen cannot generate code for `oneOf` without discriminator or unique fields. This is the problem for Update where payload doesn't and should not have `connector_type_id` field that is the only candidate for discriminator.
plus fix of minimum support version for tines
@tobio , can you please have a look at this? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, couple of small questions. There's so much work here 👍 👍 👍
@tobio , I addressed all comments, I believe. Can you please have a look and approve it? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
❤️ ❤️ ❤️ ❤️ ❤️ ❤️
Fixes: #46.
Adds support for a Kibana action connectors based on a generated Kibana client. The client is generated from Kibana OpenAPI specs similar to #292.
Please refer to README for more details and known issues.