Skip to content

Commit f3a84a8

Browse files
author
at055612
committed
Updated GitHub Pages
1 parent 00566e6 commit f3a84a8

File tree

3 files changed

+186
-56
lines changed

3 files changed

+186
-56
lines changed

Diff for: v7.8/stroom.json

+112-21
Original file line numberDiff line numberDiff line change
@@ -11186,6 +11186,22 @@
1118611186
},
1118711187
"required" : [ "type" ]
1118811188
},
11189+
"AbstractPlanBSettings" : {
11190+
"type" : "object",
11191+
"discriminator" : {
11192+
"propertyName" : "type"
11193+
},
11194+
"properties" : {
11195+
"maxStoreSize" : {
11196+
"type" : "integer",
11197+
"format" : "int64"
11198+
},
11199+
"type" : {
11200+
"type" : "string"
11201+
}
11202+
},
11203+
"required" : [ "type" ]
11204+
},
1118911205
"Account" : {
1119011206
"type" : "object",
1119111207
"properties" : {
@@ -13868,6 +13884,17 @@
1386813884
}
1386913885
}
1387013886
},
13887+
"DurationSetting" : {
13888+
"type" : "object",
13889+
"properties" : {
13890+
"duration" : {
13891+
"$ref" : "#/components/schemas/SimpleDuration"
13892+
},
13893+
"enabled" : {
13894+
"type" : "boolean"
13895+
}
13896+
}
13897+
},
1387113898
"ElasticClusterDoc" : {
1387213899
"type" : "object",
1387313900
"properties" : {
@@ -17532,17 +17559,6 @@
1753217559
"PlanBDoc" : {
1753317560
"type" : "object",
1753417561
"properties" : {
17535-
"condense" : {
17536-
"type" : "boolean"
17537-
},
17538-
"condenseAge" : {
17539-
"type" : "integer",
17540-
"format" : "int32"
17541-
},
17542-
"condenseTimeUnit" : {
17543-
"type" : "string",
17544-
"enum" : [ "NANOSECONDS", "MILLISECONDS", "SECONDS", "MINUTES", "HOURS", "DAYS", "WEEKS", "MONTHS", "YEARS" ]
17545-
},
1754617562
"createTimeMs" : {
1754717563
"type" : "integer",
1754817564
"format" : "int64"
@@ -17556,16 +17572,8 @@
1755617572
"name" : {
1755717573
"type" : "string"
1755817574
},
17559-
"retainAge" : {
17560-
"type" : "integer",
17561-
"format" : "int32"
17562-
},
17563-
"retainForever" : {
17564-
"type" : "boolean"
17565-
},
17566-
"retainTimeUnit" : {
17567-
"type" : "string",
17568-
"enum" : [ "NANOSECONDS", "MILLISECONDS", "SECONDS", "MINUTES", "HOURS", "DAYS", "WEEKS", "MONTHS", "YEARS" ]
17575+
"settings" : {
17576+
"$ref" : "#/components/schemas/AbstractPlanBSettings"
1756917577
},
1757017578
"stateType" : {
1757117579
"type" : "string",
@@ -18506,6 +18514,19 @@
1850618514
}
1850718515
}
1850818516
},
18517+
"RangedStateSettings" : {
18518+
"type" : "object",
18519+
"allOf" : [ {
18520+
"$ref" : "#/components/schemas/AbstractPlanBSettings"
18521+
}, {
18522+
"type" : "object",
18523+
"properties" : {
18524+
"overwrite" : {
18525+
"type" : "boolean"
18526+
}
18527+
}
18528+
} ]
18529+
},
1850918530
"Rec" : {
1851018531
"type" : "object",
1851118532
"properties" : {
@@ -20217,6 +20238,25 @@
2021720238
}
2021820239
}
2021920240
},
20241+
"SessionSettings" : {
20242+
"type" : "object",
20243+
"allOf" : [ {
20244+
"$ref" : "#/components/schemas/AbstractPlanBSettings"
20245+
}, {
20246+
"type" : "object",
20247+
"properties" : {
20248+
"condense" : {
20249+
"$ref" : "#/components/schemas/DurationSetting"
20250+
},
20251+
"overwrite" : {
20252+
"type" : "boolean"
20253+
},
20254+
"retention" : {
20255+
"$ref" : "#/components/schemas/DurationSetting"
20256+
}
20257+
}
20258+
} ]
20259+
},
2022020260
"SetAllPermissionsFrom" : {
2022120261
"type" : "object",
2022220262
"allOf" : [ {
@@ -20748,6 +20788,19 @@
2074820788
}
2074920789
}
2075020790
},
20791+
"StateSettings" : {
20792+
"type" : "object",
20793+
"allOf" : [ {
20794+
"$ref" : "#/components/schemas/AbstractPlanBSettings"
20795+
}, {
20796+
"type" : "object",
20797+
"properties" : {
20798+
"overwrite" : {
20799+
"type" : "boolean"
20800+
}
20801+
}
20802+
} ]
20803+
},
2075120804
"StatisticField" : {
2075220805
"type" : "object",
2075320806
"properties" : {
@@ -21638,6 +21691,44 @@
2163821691
}
2163921692
}
2164021693
},
21694+
"TemporalRangedStateSettings" : {
21695+
"type" : "object",
21696+
"allOf" : [ {
21697+
"$ref" : "#/components/schemas/AbstractPlanBSettings"
21698+
}, {
21699+
"type" : "object",
21700+
"properties" : {
21701+
"condense" : {
21702+
"$ref" : "#/components/schemas/DurationSetting"
21703+
},
21704+
"overwrite" : {
21705+
"type" : "boolean"
21706+
},
21707+
"retention" : {
21708+
"$ref" : "#/components/schemas/DurationSetting"
21709+
}
21710+
}
21711+
} ]
21712+
},
21713+
"TemporalStateSettings" : {
21714+
"type" : "object",
21715+
"allOf" : [ {
21716+
"$ref" : "#/components/schemas/AbstractPlanBSettings"
21717+
}, {
21718+
"type" : "object",
21719+
"properties" : {
21720+
"condense" : {
21721+
"$ref" : "#/components/schemas/DurationSetting"
21722+
},
21723+
"overwrite" : {
21724+
"type" : "boolean"
21725+
},
21726+
"retention" : {
21727+
"$ref" : "#/components/schemas/DurationSetting"
21728+
}
21729+
}
21730+
} ]
21731+
},
2164121732
"TerminateTaskProgressRequest" : {
2164221733
"type" : "object",
2164321734
"properties" : {

Diff for: v7.8/stroom.yaml

+73-34
Original file line numberDiff line numberDiff line change
@@ -7715,6 +7715,18 @@ components:
77157715
type: string
77167716
required:
77177717
- type
7718+
AbstractPlanBSettings:
7719+
type: object
7720+
discriminator:
7721+
propertyName: type
7722+
properties:
7723+
maxStoreSize:
7724+
type: integer
7725+
format: int64
7726+
type:
7727+
type: string
7728+
required:
7729+
- type
77187730
Account:
77197731
type: object
77207732
properties:
@@ -9942,6 +9954,13 @@ components:
99429954
type: boolean
99439955
suppressDuplicateNotifications:
99449956
type: boolean
9957+
DurationSetting:
9958+
type: object
9959+
properties:
9960+
duration:
9961+
$ref: "#/components/schemas/SimpleDuration"
9962+
enabled:
9963+
type: boolean
99459964
ElasticClusterDoc:
99469965
type: object
99479966
properties:
@@ -12893,23 +12912,6 @@ components:
1289312912
PlanBDoc:
1289412913
type: object
1289512914
properties:
12896-
condense:
12897-
type: boolean
12898-
condenseAge:
12899-
type: integer
12900-
format: int32
12901-
condenseTimeUnit:
12902-
type: string
12903-
enum:
12904-
- NANOSECONDS
12905-
- MILLISECONDS
12906-
- SECONDS
12907-
- MINUTES
12908-
- HOURS
12909-
- DAYS
12910-
- WEEKS
12911-
- MONTHS
12912-
- YEARS
1291312915
createTimeMs:
1291412916
type: integer
1291512917
format: int64
@@ -12919,23 +12921,8 @@ components:
1291912921
type: string
1292012922
name:
1292112923
type: string
12922-
retainAge:
12923-
type: integer
12924-
format: int32
12925-
retainForever:
12926-
type: boolean
12927-
retainTimeUnit:
12928-
type: string
12929-
enum:
12930-
- NANOSECONDS
12931-
- MILLISECONDS
12932-
- SECONDS
12933-
- MINUTES
12934-
- HOURS
12935-
- DAYS
12936-
- WEEKS
12937-
- MONTHS
12938-
- YEARS
12924+
settings:
12925+
$ref: "#/components/schemas/AbstractPlanBSettings"
1293912926
stateType:
1294012927
type: string
1294112928
enum:
@@ -13685,6 +13672,14 @@ components:
1368513672
to:
1368613673
type: integer
1368713674
format: int64
13675+
RangedStateSettings:
13676+
type: object
13677+
allOf:
13678+
- $ref: "#/components/schemas/AbstractPlanBSettings"
13679+
- type: object
13680+
properties:
13681+
overwrite:
13682+
type: boolean
1368813683
Rec:
1368913684
type: object
1369013685
properties:
@@ -14937,6 +14932,18 @@ components:
1493714932
type: array
1493814933
items:
1493914934
$ref: "#/components/schemas/SessionDetails"
14935+
SessionSettings:
14936+
type: object
14937+
allOf:
14938+
- $ref: "#/components/schemas/AbstractPlanBSettings"
14939+
- type: object
14940+
properties:
14941+
condense:
14942+
$ref: "#/components/schemas/DurationSetting"
14943+
overwrite:
14944+
type: boolean
14945+
retention:
14946+
$ref: "#/components/schemas/DurationSetting"
1494014947
SetAllPermissionsFrom:
1494114948
type: object
1494214949
allOf:
@@ -15362,6 +15369,14 @@ components:
1536215369
type: string
1536315370
version:
1536415371
type: string
15372+
StateSettings:
15373+
type: object
15374+
allOf:
15375+
- $ref: "#/components/schemas/AbstractPlanBSettings"
15376+
- type: object
15377+
properties:
15378+
overwrite:
15379+
type: boolean
1536515380
StatisticField:
1536615381
type: object
1536715382
properties:
@@ -16041,6 +16056,30 @@ components:
1604116056
type: array
1604216057
items:
1604316058
$ref: "#/components/schemas/TaskProgress"
16059+
TemporalRangedStateSettings:
16060+
type: object
16061+
allOf:
16062+
- $ref: "#/components/schemas/AbstractPlanBSettings"
16063+
- type: object
16064+
properties:
16065+
condense:
16066+
$ref: "#/components/schemas/DurationSetting"
16067+
overwrite:
16068+
type: boolean
16069+
retention:
16070+
$ref: "#/components/schemas/DurationSetting"
16071+
TemporalStateSettings:
16072+
type: object
16073+
allOf:
16074+
- $ref: "#/components/schemas/AbstractPlanBSettings"
16075+
- type: object
16076+
properties:
16077+
condense:
16078+
$ref: "#/components/schemas/DurationSetting"
16079+
overwrite:
16080+
type: boolean
16081+
retention:
16082+
$ref: "#/components/schemas/DurationSetting"
1604416083
TerminateTaskProgressRequest:
1604516084
type: object
1604616085
properties:

Diff for: v7.8/version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v7.8-beta.14
1+
v7.8-beta.15

0 commit comments

Comments
 (0)