-
Notifications
You must be signed in to change notification settings - Fork 90
Adding support for links and connectors to be used by Kibana #834
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
Changes from 10 commits
e3cac0c
7d390b1
5932192
0850f9a
37740ff
38577e5
818684c
3dcf866
f2d8847
b50a489
29bedfb
100c75a
fa3536f
c75f3cc
1d26da6
7956499
260b27c
7bb2a15
d10b4a4
e853b00
ca0e1fa
1aa1b1a
e5ecdc7
6050b09
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
|
|
@@ -410,6 +410,33 @@ spec: | |||
| - access | ||||
| deployment_modes: | ||||
| $ref: "#/definitions/deployment_modes" | ||||
| links: | ||||
|
criamico marked this conversation as resolved.
Outdated
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Would it make sense to add this new field also for Policy templates can be defined also in that package type: package-spec/spec/input/manifest.spec.yml Line 38 in 9ad6feb
If so, this definition can be moved to the
Examples on how to reuse/reference a field from # in input manifest:
links:
$ref: "../integration/manifest.spec.yml#/definitions/policy_template_links"
# in integration manifest:
links:
$ref: "#/definitions/policy_template_links"
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @mrodm I renamed |
||||
| description: List of links related to policy template. | ||||
| type: array | ||||
| minItems: 1 | ||||
| items: | ||||
| type: object | ||||
| additionalProperties: false | ||||
| properties: | ||||
|
criamico marked this conversation as resolved.
Outdated
|
||||
| title: | ||||
| description: Link title | ||||
| type: string | ||||
| url: | ||||
| description: Link url | ||||
| type: string | ||||
| type: | ||||
| description: Type of link. `next_steps` for a regular link, `action` for a link button. | ||||
|
criamico marked this conversation as resolved.
Outdated
|
||||
| type: string | ||||
| enum: | ||||
| - action | ||||
| - next_steps | ||||
|
criamico marked this conversation as resolved.
Outdated
|
||||
| content: | ||||
| description: Link description | ||||
| type: string | ||||
| required: | ||||
| - title | ||||
| - url | ||||
| - type | ||||
| inputs: | ||||
| description: List of inputs supported by policy template. | ||||
| type: array | ||||
|
|
||||
Uh oh!
There was an error while loading. Please reload this page.