Skip to content

Commit 42a4243

Browse files
author
stroomdev66
committed
Updated GitHub Pages
1 parent c04ee16 commit 42a4243

File tree

3 files changed

+90
-8
lines changed

3 files changed

+90
-8
lines changed

v7.11/stroom.json

Lines changed: 53 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4110,7 +4110,7 @@
41104110
"tags" : [ "Elastic Indices" ]
41114111
}
41124112
},
4113-
"/entityEvent/v1/{nodeName}" : {
4113+
"/entityEvent/v1/fireEvent/{nodeName}" : {
41144114
"put" : {
41154115
"operationId" : "fireEntityEvent",
41164116
"parameters" : [ {
@@ -4148,6 +4148,44 @@
41484148
"tags" : [ "Entity Events" ]
41494149
}
41504150
},
4151+
"/entityEvent/v1/fireEvents/{nodeName}" : {
4152+
"put" : {
4153+
"operationId" : "fireEntityEventBatch",
4154+
"parameters" : [ {
4155+
"in" : "path",
4156+
"name" : "nodeName",
4157+
"required" : true,
4158+
"schema" : {
4159+
"type" : "string"
4160+
}
4161+
} ],
4162+
"requestBody" : {
4163+
"content" : {
4164+
"application/json" : {
4165+
"schema" : {
4166+
"$ref" : "#/components/schemas/EntityEventBatch"
4167+
}
4168+
}
4169+
},
4170+
"description" : "entityevents",
4171+
"required" : true
4172+
},
4173+
"responses" : {
4174+
"default" : {
4175+
"content" : {
4176+
"application/json" : {
4177+
"schema" : {
4178+
"type" : "boolean"
4179+
}
4180+
}
4181+
},
4182+
"description" : "default response"
4183+
}
4184+
},
4185+
"summary" : "Sends a batch of entity events",
4186+
"tags" : [ "Entity Events" ]
4187+
}
4188+
},
41514189
"/executionSchedule/v1/createExecutionSchedule" : {
41524190
"post" : {
41534191
"operationId" : "createExecutionSchedule",
@@ -16867,6 +16905,20 @@
1686716905
}
1686816906
}
1686916907
},
16908+
"EntityEventBatch" : {
16909+
"type" : "object",
16910+
"properties" : {
16911+
"entityEvents" : {
16912+
"type" : "array",
16913+
"items" : {
16914+
"$ref" : "#/components/schemas/EntityEvent"
16915+
}
16916+
},
16917+
"homogeneousBatch" : {
16918+
"type" : "boolean"
16919+
}
16920+
}
16921+
},
1687016922
"Entry" : {
1687116923
"type" : "object",
1687216924
"properties" : {
@@ -22880,9 +22932,6 @@
2288022932
"errorFeed" : {
2288122933
"$ref" : "#/components/schemas/DocRef"
2288222934
},
22883-
"includeRuleDocumentation" : {
22884-
"type" : "boolean"
22885-
},
2288622935
"languageVersion" : {
2288722936
"type" : "string",
2288822937
"enum" : [ "STROOM_QL_VERSION_0_1", "SIGMA" ]

v7.11/stroom.yaml

Lines changed: 36 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2800,7 +2800,7 @@ paths:
28002800
summary: Update an Elasticsearch index doc
28012801
tags:
28022802
- Elastic Indices
2803-
/entityEvent/v1/{nodeName}:
2803+
/entityEvent/v1/fireEvent/{nodeName}:
28042804
put:
28052805
operationId: fireEntityEvent
28062806
parameters:
@@ -2826,6 +2826,32 @@ paths:
28262826
summary: Sends an entity event
28272827
tags:
28282828
- Entity Events
2829+
/entityEvent/v1/fireEvents/{nodeName}:
2830+
put:
2831+
operationId: fireEntityEventBatch
2832+
parameters:
2833+
- in: path
2834+
name: nodeName
2835+
required: true
2836+
schema:
2837+
type: string
2838+
requestBody:
2839+
content:
2840+
application/json:
2841+
schema:
2842+
$ref: "#/components/schemas/EntityEventBatch"
2843+
description: entityevents
2844+
required: true
2845+
responses:
2846+
default:
2847+
content:
2848+
application/json:
2849+
schema:
2850+
type: boolean
2851+
description: default response
2852+
summary: Sends a batch of entity events
2853+
tags:
2854+
- Entity Events
28292855
/executionSchedule/v1/createExecutionSchedule:
28302856
post:
28312857
operationId: createExecutionSchedule
@@ -12132,6 +12158,15 @@ components:
1213212158
$ref: "#/components/schemas/DocRef"
1213312159
oldDocRef:
1213412160
$ref: "#/components/schemas/DocRef"
12161+
EntityEventBatch:
12162+
type: object
12163+
properties:
12164+
entityEvents:
12165+
type: array
12166+
items:
12167+
$ref: "#/components/schemas/EntityEvent"
12168+
homogeneousBatch:
12169+
type: boolean
1213512170
Entry:
1213612171
type: object
1213712172
properties:
@@ -16921,8 +16956,6 @@ components:
1692116956
$ref: "#/components/schemas/DuplicateNotificationConfig"
1692216957
errorFeed:
1692316958
$ref: "#/components/schemas/DocRef"
16924-
includeRuleDocumentation:
16925-
type: boolean
1692616959
languageVersion:
1692716960
type: string
1692816961
enum:

v7.11/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v7.11-beta.19-gwt-sourcemaps
1+
v7.11-beta.20

0 commit comments

Comments
 (0)