Skip to content

Commit

Permalink
#4682 PlanB State Store
Browse files Browse the repository at this point in the history
  • Loading branch information
stroomdev66 committed Jan 15, 2025
1 parent e9e806b commit d304e30
Show file tree
Hide file tree
Showing 67 changed files with 1,524 additions and 1,329 deletions.
158 changes: 79 additions & 79 deletions stroom-app/src/main/resources/ui/noauth/swagger/stroom.json
Original file line number Diff line number Diff line change
Expand Up @@ -4392,6 +4392,85 @@
"tags" : [ "Feed Status" ]
}
},
"/fileTransfer/v1/fetchSnapshot" : {
"post" : {
"operationId" : "fetchSnapshot",
"requestBody" : {
"content" : {
"application/json" : {
"schema" : {
"$ref" : "#/components/schemas/SnapshotRequest"
}
}
}
},
"responses" : {
"default" : {
"content" : {
"application/octet-stream" : { }
},
"description" : "default response"
}
},
"summary" : "Fetch Plan B snapshot",
"tags" : [ "File Transfer" ]
}
},
"/fileTransfer/v1/sendPart" : {
"post" : {
"operationId" : "sendPart",
"parameters" : [ {
"in" : "header",
"name" : "createTime",
"schema" : {
"type" : "integer",
"format" : "int64"
}
}, {
"in" : "header",
"name" : "metaId",
"schema" : {
"type" : "integer",
"format" : "int64"
}
}, {
"in" : "header",
"name" : "fileHash",
"schema" : {
"type" : "string"
}
}, {
"in" : "header",
"name" : "fileName",
"schema" : {
"type" : "string"
}
} ],
"requestBody" : {
"content" : {
"application/octet-stream" : {
"schema" : {
"type" : "object"
}
}
}
},
"responses" : {
"default" : {
"content" : {
"application/json" : {
"schema" : {
"type" : "boolean"
}
}
},
"description" : "default response"
}
},
"summary" : "Send Plan B part",
"tags" : [ "File Transfer" ]
}
},
"/fsVolume/v1" : {
"post" : {
"operationId" : "createFsVolume",
Expand Down Expand Up @@ -8993,85 +9072,6 @@
"tags" : [ "Session Info" ]
}
},
"/snapshot/v1/fetchSnapshot" : {
"post" : {
"operationId" : "fetchSnapshot",
"requestBody" : {
"content" : {
"application/json" : {
"schema" : {
"$ref" : "#/components/schemas/SnapshotRequest"
}
}
}
},
"responses" : {
"default" : {
"content" : {
"application/octet-stream" : { }
},
"description" : "default response"
}
},
"summary" : "Fetch Plan B snapshot",
"tags" : [ "File Transfer" ]
}
},
"/snapshot/v1/sendPart" : {
"post" : {
"operationId" : "sendPart",
"parameters" : [ {
"in" : "header",
"name" : "createTime",
"schema" : {
"type" : "integer",
"format" : "int64"
}
}, {
"in" : "header",
"name" : "metaId",
"schema" : {
"type" : "integer",
"format" : "int64"
}
}, {
"in" : "header",
"name" : "fileHash",
"schema" : {
"type" : "string"
}
}, {
"in" : "header",
"name" : "fileName",
"schema" : {
"type" : "string"
}
} ],
"requestBody" : {
"content" : {
"application/octet-stream" : {
"schema" : {
"type" : "object"
}
}
}
},
"responses" : {
"default" : {
"content" : {
"application/json" : {
"schema" : {
"type" : "boolean"
}
}
},
"description" : "default response"
}
},
"summary" : "Send Plan B part",
"tags" : [ "File Transfer" ]
}
},
"/solrIndex/v1/fetchSolrTypes" : {
"post" : {
"operationId" : "fetchSolrTypes",
Expand Down
106 changes: 53 additions & 53 deletions stroom-app/src/main/resources/ui/noauth/swagger/stroom.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3005,6 +3005,59 @@ paths:
summary: Submit a request to get the status of a feed
tags:
- Feed Status
/fileTransfer/v1/fetchSnapshot:
post:
operationId: fetchSnapshot
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/SnapshotRequest"
responses:
default:
content:
application/octet-stream: {}
description: default response
summary: Fetch Plan B snapshot
tags:
- File Transfer
/fileTransfer/v1/sendPart:
post:
operationId: sendPart
parameters:
- in: header
name: createTime
schema:
type: integer
format: int64
- in: header
name: metaId
schema:
type: integer
format: int64
- in: header
name: fileHash
schema:
type: string
- in: header
name: fileName
schema:
type: string
requestBody:
content:
application/octet-stream:
schema:
type: object
responses:
default:
content:
application/json:
schema:
type: boolean
description: default response
summary: Send Plan B part
tags:
- File Transfer
/fsVolume/v1:
post:
operationId: createFsVolume
Expand Down Expand Up @@ -6179,59 +6232,6 @@ paths:
summary: Get information for the current session
tags:
- Session Info
/snapshot/v1/fetchSnapshot:
post:
operationId: fetchSnapshot
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/SnapshotRequest"
responses:
default:
content:
application/octet-stream: {}
description: default response
summary: Fetch Plan B snapshot
tags:
- File Transfer
/snapshot/v1/sendPart:
post:
operationId: sendPart
parameters:
- in: header
name: createTime
schema:
type: integer
format: int64
- in: header
name: metaId
schema:
type: integer
format: int64
- in: header
name: fileHash
schema:
type: string
- in: header
name: fileName
schema:
type: string
requestBody:
content:
application/octet-stream:
schema:
type: object
responses:
default:
content:
application/json:
schema:
type: boolean
description: default response
summary: Send Plan B part
tags:
- File Transfer
/solrIndex/v1/fetchSolrTypes:
post:
operationId: fetchSolrTypes
Expand Down
Loading

0 comments on commit d304e30

Please sign in to comment.